brcm,ns-thermal.txt 716 B

12345678910111213141516171819202122232425262728293031323334353637
  1. * Broadcom Northstar Thermal
  2. This binding describes thermal sensor that is part of Northstar's DMU (Device
  3. Management Unit).
  4. Required properties:
  5. - compatible : Must be "brcm,ns-thermal"
  6. - reg : iomem address range of PVTMON registers
  7. - #thermal-sensor-cells : Should be <0>
  8. Example:
  9. thermal: thermal@1800c2c0 {
  10. compatible = "brcm,ns-thermal";
  11. reg = <0x1800c2c0 0x10>;
  12. #thermal-sensor-cells = <0>;
  13. };
  14. thermal-zones {
  15. cpu_thermal: cpu-thermal {
  16. polling-delay-passive = <0>;
  17. polling-delay = <1000>;
  18. coefficients = <(-556) 418000>;
  19. thermal-sensors = <&thermal>;
  20. trips {
  21. cpu-crit {
  22. temperature = <125000>;
  23. hysteresis = <0>;
  24. type = "critical";
  25. };
  26. };
  27. cooling-maps {
  28. };
  29. };
  30. };