armada-thermal.txt 1018 B

1234567891011121314151617181920212223242526272829303132
  1. * Marvell Armada 370/375/380/XP thermal management
  2. Required properties:
  3. - compatible: Should be set to one of the following:
  4. marvell,armada370-thermal
  5. marvell,armada375-thermal
  6. marvell,armada375-z1-thermal
  7. marvell,armada380-thermal
  8. marvell,armadaxp-thermal
  9. Note: As the name suggests, "marvell,armada375-z1-thermal"
  10. applies for the SoC Z1 stepping only. On such stepping
  11. some quirks need to be done and the register offset differs
  12. from the one in the A0 stepping.
  13. The operating system may auto-detect the SoC stepping and
  14. update the compatible and register offsets at runtime.
  15. - reg: Device's register space.
  16. Two entries are expected, see the examples below.
  17. The first one is required for the sensor register;
  18. the second one is required for the control register
  19. to be used for sensor initialization (a.k.a. calibration).
  20. Example:
  21. thermal@d0018300 {
  22. compatible = "marvell,armada370-thermal";
  23. reg = <0xd0018300 0x4
  24. 0xd0018304 0x4>;
  25. status = "okay";
  26. };