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: |
Anson Huang | 3c94f17 | 2014-08-06 15:12:09 +0800 | [diff] [blame] | 4 | - compatible : "fsl,imx6q-tempmon" for i.MX6Q, "fsl,imx6sx-tempmon" for i.MX6SX. |
| 5 | i.MX6SX has two more IRQs than i.MX6Q, one is IRQ_LOW and the other is IRQ_PANIC, |
| 6 | when temperature is below than low threshold, IRQ_LOW will be triggered, when temperature |
| 7 | is higher than panic threshold, system will auto reboot by SRC module. |
Shawn Guo | ca3de46 | 2013-06-24 14:30:44 +0800 | [diff] [blame] | 8 | - fsl,tempmon : phandle pointer to system controller that contains TEMPMON |
| 9 | control registers, e.g. ANATOP on imx6q. |
| 10 | - fsl,tempmon-data : phandle pointer to fuse controller that contains TEMPMON |
| 11 | calibration data, e.g. OCOTP on imx6q. The details about calibration data |
| 12 | can be found in SoC Reference Manual. |
| 13 | |
Anson Huang | 329fe7b | 2013-12-23 15:49:22 -0500 | [diff] [blame] | 14 | Optional properties: |
| 15 | - clocks : thermal sensor's clock source. |
| 16 | |
Shawn Guo | ca3de46 | 2013-06-24 14:30:44 +0800 | [diff] [blame] | 17 | Example: |
| 18 | |
| 19 | tempmon { |
| 20 | compatible = "fsl,imx6q-tempmon"; |
| 21 | fsl,tempmon = <&anatop>; |
| 22 | fsl,tempmon-data = <&ocotp>; |
Anson Huang | 329fe7b | 2013-12-23 15:49:22 -0500 | [diff] [blame] | 23 | clocks = <&clks 172>; |
Shawn Guo | ca3de46 | 2013-06-24 14:30:44 +0800 | [diff] [blame] | 24 | }; |