diff options
author | Zhang Rui <rui.zhang@intel.com> | 2013-08-15 07:57:14 +0200 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-08-15 07:57:14 +0200 |
commit | cba77f5312caa17c3d107593846cbeb35d9273dc (patch) | |
tree | 7256c0f8a5c2304b805e6830c059ed9e5297cbf4 /Documentation | |
parent | Merge branch 'for-next' of git://git.samba.org/sfrench/cifs-2.6 (diff) | |
parent | thermal: add imx thermal driver support (diff) | |
download | linux-cba77f5312caa17c3d107593846cbeb35d9273dc.tar.xz linux-cba77f5312caa17c3d107593846cbeb35d9273dc.zip |
Merge branch 'for_3.12/imx' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal into imx
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/thermal/imx-thermal.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/thermal/imx-thermal.txt b/Documentation/devicetree/bindings/thermal/imx-thermal.txt new file mode 100644 index 000000000000..541c25e49abf --- /dev/null +++ b/Documentation/devicetree/bindings/thermal/imx-thermal.txt @@ -0,0 +1,17 @@ +* Temperature Monitor (TEMPMON) on Freescale i.MX SoCs + +Required properties: +- compatible : "fsl,imx6q-thermal" +- fsl,tempmon : phandle pointer to system controller that contains TEMPMON + control registers, e.g. ANATOP on imx6q. +- fsl,tempmon-data : phandle pointer to fuse controller that contains TEMPMON + calibration data, e.g. OCOTP on imx6q. The details about calibration data + can be found in SoC Reference Manual. + +Example: + +tempmon { + compatible = "fsl,imx6q-tempmon"; + fsl,tempmon = <&anatop>; + fsl,tempmon-data = <&ocotp>; +}; |