Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1* Thermal Monitoring Unit (TMU) on Freescale i.MX8MM SoC
2
3Required properties:
4- compatible : Must be "fsl,imx8mm-tmu" or "fsl,imx8mp-tmu".
5- reg : Address range of TMU registers.
6- clocks : TMU's clock source.
7- #thermal-sensor-cells : Should be 0 or 1. See ./thermal.txt for a description.
8
9Example:
10tmu: tmu@30260000 {
11 compatible = "fsl,imx8mm-tmu";
12 reg = <0x30260000 0x10000>;
13 clocks = <&clk IMX8MM_CLK_TMU_ROOT>;
14 #thermal-sensor-cells = <0>;
15};