armada-thermal.txt 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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,armada380-thermal
  7. * marvell,armadaxp-thermal
  8. * marvell,armada-ap806-thermal
  9. * marvell,armada-cp110-thermal
  10. Note: these bindings are deprecated for AP806/CP110 and should instead
  11. follow the rules described in:
  12. Documentation/devicetree/bindings/arm/marvell/ap806-system-controller.txt
  13. Documentation/devicetree/bindings/arm/marvell/cp110-system-controller.txt
  14. - reg: Device's register space.
  15. Two entries are expected, see the examples below. The first one points
  16. to the status register (4B). The second one points to the control
  17. registers (8B).
  18. Note: The compatibles marvell,armada370-thermal,
  19. marvell,armada380-thermal, and marvell,armadaxp-thermal must point to
  20. "control MSB/control 1", with size of 4 (deprecated binding), or point
  21. to "control LSB/control 0" with size of 8 (current binding). All other
  22. compatibles must point to "control LSB/control 0" with size of 8.
  23. Examples:
  24. /* Legacy bindings */
  25. thermal@d0018300 {
  26. compatible = "marvell,armada370-thermal";
  27. reg = <0xd0018300 0x4
  28. 0xd0018304 0x4>;
  29. };
  30. ap_thermal: thermal@6f8084 {
  31. compatible = "marvell,armada-ap806-thermal";
  32. reg = <0x6f808C 0x4>,
  33. <0x6f8084 0x8>;
  34. };