Shawn Guo | ca3de46 | 2013-06-24 14:30:44 +0800 | [diff] [blame] | 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 | |
Anson Huang | 329fe7b | 2013-12-23 15:49:22 -0500 | [diff] [blame] | 11 | Optional properties: |
| 12 | - clocks : thermal sensor's clock source. |
| 13 | |
Shawn Guo | ca3de46 | 2013-06-24 14:30:44 +0800 | [diff] [blame] | 14 | Example: |
| 15 | |
| 16 | tempmon { |
| 17 | compatible = "fsl,imx6q-tempmon"; |
| 18 | fsl,tempmon = <&anatop>; |
| 19 | fsl,tempmon-data = <&ocotp>; |
Anson Huang | 329fe7b | 2013-12-23 15:49:22 -0500 | [diff] [blame] | 20 | clocks = <&clks 172>; |
Shawn Guo | ca3de46 | 2013-06-24 14:30:44 +0800 | [diff] [blame] | 21 | }; |