diff options
author | Andrew Lunn <andrew@lunn.ch> | 2013-02-06 10:35:26 +0400 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-02-08 16:26:02 +0400 |
commit | 74ffa64c23616706381c30064a47888382bba30f (patch) | |
tree | 9d97a2a194cc3444535e2decc9ff4fb2d6a53d46 /Documentation/devicetree/bindings/thermal | |
parent | 7060aa36645c51d1205ef0e0cbf7b564f1f52f36 (diff) | |
download | linux-74ffa64c23616706381c30064a47888382bba30f.tar.xz |
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/devicetree/bindings/thermal')
-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 @@ +* Dove Thermal + +This driver is for Dove SoCs which contain a thermal sensor. + +Required properties: +- compatible : "marvell,dove-thermal" +- reg : Address range of the thermal registers + +The reg properties should contain two ranges. The first is for the +three Thermal Manager registers, while the second range contains the +Thermal Diode Control Registers. + +Example: + + thermal@10078 { + compatible = "marvell,dove-thermal"; + reg = <0xd001c 0x0c>, <0xd005c 0x08>; + }; |