]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/thermal/imx-thermal.txt
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless
[karo-tx-linux.git] / Documentation / devicetree / bindings / thermal / imx-thermal.txt
1 * Temperature Monitor (TEMPMON) on Freescale i.MX SoCs
2
3 Required properties:
4 - compatible : "fsl,imx6q-thermal"
5 - fsl,tempmon : phandle pointer to system controller that contains TEMPMON
6   control registers, e.g. ANATOP on imx6q.
7 - fsl,tempmon-data : phandle pointer to fuse controller that contains TEMPMON
8   calibration data, e.g. OCOTP on imx6q.  The details about calibration data
9   can be found in SoC Reference Manual.
10
11 Optional properties:
12 - clocks : thermal sensor's clock source.
13
14 Example:
15
16 tempmon {
17         compatible = "fsl,imx6q-tempmon";
18         fsl,tempmon = <&anatop>;
19         fsl,tempmon-data = <&ocotp>;
20         clocks = <&clks 172>;
21 };