aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/thermal/armada-thermal.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/thermal/armada-thermal.txt b/Documentation/devicetree/bindings/thermal/armada-thermal.txt
new file mode 100644
index 000000000000..fff93d5f92de
--- /dev/null
+++ b/Documentation/devicetree/bindings/thermal/armada-thermal.txt
@@ -0,0 +1,22 @@
1* Marvell Armada 370/XP thermal management
2
3Required properties:
4
5- compatible: Should be set to one of the following:
6 marvell,armada370-thermal
7 marvell,armadaxp-thermal
8
9- reg: Device's register space.
10 Two entries are expected, see the examples below.
11 The first one is required for the sensor register;
12 the second one is required for the control register
13 to be used for sensor initialization (a.k.a. calibration).
14
15Example:
16
17 thermal@d0018300 {
18 compatible = "marvell,armada370-thermal";
19 reg = <0xd0018300 0x4
20 0xd0018304 0x4>;
21 status = "okay";
22 };