diff options
author | Andrew Lunn <andrew@lunn.ch> | 2013-02-06 01:35:26 -0500 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-02-08 07:26:02 -0500 |
commit | 74ffa64c23616706381c30064a47888382bba30f (patch) | |
tree | 9d97a2a194cc3444535e2decc9ff4fb2d6a53d46 /Documentation | |
parent | 7060aa36645c51d1205ef0e0cbf7b564f1f52f36 (diff) |
Thermal: Dove: Add Themal sensor support for Dove.
The Marvell Dove SoC has a thermal sensor. Add a driver using the
thermal framework.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/thermal/dove-thermal.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/thermal/dove-thermal.txt b/Documentation/devicetree/bindings/thermal/dove-thermal.txt new file mode 100644 index 000000000000..6f474677d472 --- /dev/null +++ b/Documentation/devicetree/bindings/thermal/dove-thermal.txt | |||
@@ -0,0 +1,18 @@ | |||
1 | * Dove Thermal | ||
2 | |||
3 | This driver is for Dove SoCs which contain a thermal sensor. | ||
4 | |||
5 | Required properties: | ||
6 | - compatible : "marvell,dove-thermal" | ||
7 | - reg : Address range of the thermal registers | ||
8 | |||
9 | The reg properties should contain two ranges. The first is for the | ||
10 | three Thermal Manager registers, while the second range contains the | ||
11 | Thermal Diode Control Registers. | ||
12 | |||
13 | Example: | ||
14 | |||
15 | thermal@10078 { | ||
16 | compatible = "marvell,dove-thermal"; | ||
17 | reg = <0xd001c 0x0c>, <0xd005c 0x08>; | ||
18 | }; | ||