da9062-thermal.txt 992 B

123456789101112131415161718192021222324252627282930313233343536
  1. * Dialog DA9062/61 TJUNC Thermal Module
  2. This module is part of the DA9061/DA9062. For more details about entire
  3. DA9062 and DA9061 chips see Documentation/devicetree/bindings/mfd/da9062.txt
  4. Junction temperature thermal module uses an interrupt signal to identify
  5. high THERMAL_TRIP_HOT temperatures for the PMIC device.
  6. Required properties:
  7. - compatible: should be one of the following valid compatible string lines:
  8. "dlg,da9061-thermal", "dlg,da9062-thermal"
  9. "dlg,da9062-thermal"
  10. Optional properties:
  11. - polling-delay-passive : Specify the polling period, measured in
  12. milliseconds, between thermal zone device update checks.
  13. Example: DA9062
  14. pmic0: da9062@58 {
  15. thermal {
  16. compatible = "dlg,da9062-thermal";
  17. polling-delay-passive = <3000>;
  18. };
  19. };
  20. Example: DA9061 using a fall-back compatible for the DA9062 onkey driver
  21. pmic0: da9061@58 {
  22. thermal {
  23. compatible = "dlg,da9061-thermal", "dlg,da9062-thermal";
  24. polling-delay-passive = <3000>;
  25. };
  26. };