omap5-gpu-thermal.dtsi 615 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Device Tree Source for OMAP543x SoC GPU thermal
  4. *
  5. * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
  6. * Contact: Eduardo Valentin <[email protected]>
  7. */
  8. #include <dt-bindings/thermal/thermal.h>
  9. gpu_thermal: gpu_thermal {
  10. polling-delay-passive = <250>; /* milliseconds */
  11. polling-delay = <500>; /* milliseconds */
  12. /* sensor ID */
  13. thermal-sensors = <&bandgap 1>;
  14. trips {
  15. gpu_crit: gpu_crit {
  16. temperature = <125000>; /* milliCelsius */
  17. hysteresis = <2000>; /* milliCelsius */
  18. type = "critical";
  19. };
  20. };
  21. };