diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2016-11-21 21:03:18 -0800 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2016-11-21 21:03:18 -0800 |
commit | 509f8342993be7ce2938edacec05b6e8d780c83e (patch) | |
tree | 1cfdb1f9537f3e9d01b700a426827ea8f05807e8 /Documentation/devicetree/bindings/thermal | |
parent | 1480986d68ce32706ff08586e111dcb769dd3962 (diff) | |
parent | 3a1689ea752436917c5ce4487527ed6c444630ee (diff) |
Merge tag 'bcm2835-dt-next-2016-11-18' into devicetree/next
This pull request brings in DT changes for BCM2835: pinctrl setup
cleanups, GPIO line naming, and the node for the new thermal driver.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Diffstat (limited to 'Documentation/devicetree/bindings/thermal')
-rw-r--r-- | Documentation/devicetree/bindings/thermal/brcm,bcm2835-thermal.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/thermal/brcm,bcm2835-thermal.txt b/Documentation/devicetree/bindings/thermal/brcm,bcm2835-thermal.txt new file mode 100644 index 000000000000..474531d2b2c5 --- /dev/null +++ b/Documentation/devicetree/bindings/thermal/brcm,bcm2835-thermal.txt @@ -0,0 +1,17 @@ +Binding for Thermal Sensor driver for BCM2835 SoCs. + +Required parameters: +------------------- + +compatible: should be one of: "brcm,bcm2835-thermal", + "brcm,bcm2836-thermal" or "brcm,bcm2837-thermal" +reg: Address range of the thermal registers. +clocks: Phandle of the clock used by the thermal sensor. + +Example: + +thermal: thermal@7e212000 { + compatible = "brcm,bcm2835-thermal"; + reg = <0x7e212000 0x8>; + clocks = <&clocks BCM2835_CLOCK_TSENS>; +}; |