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