OSDN Git Service

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