blob: bb734dcaca3b038dad646c275a345b2296757096 [file] [log] [blame]
Akshay Saraswataa773182013-02-25 01:13:01 +00001Exynos Thermal management Unit
2
3Required properties:
4
5 - compatible : Should be "samsung,exynos-tmu" for TMU
6 - samsung,min-temp : Minimum temperature value (25 degree celsius)
7 - Current temperature of SoC should be more than this value.
8 - samsung,max-temp : Maximum temperature value (125 degree celsius)
9 - Current temperature of SoC should be less than this value.
10 - samsung,start-warning : Temperature at which TMU starts giving warning (degree celsius)
11 - samsung,start-tripping : Temperature at which system will trip and shutdown (degree celsius)
12 - samsung,efuse-min-value : SOC efuse min value (Constant 40)
13 - efuse-value should be more than this value.
14 - samsung,efuse-value : SOC actual efuse value (Literal value)
15 - This is the data trimming info.
16 - This value is used to calculate measuring error.
17 - samsung,efuse-max-value : SoC max efuse value (Constant 100)
18 - efuse-value should be less than this value.
19 - samsung,slope : Default value 274761730 (Constant 0x1060_8802).
20 - This is the default value for TMU_CONTROL register.
21 - It sets the gain of amplifier to the positive-tc generator block.
22 - It selects thermal tripping mode and enables thermal tripping.
23 - samsung,dc-value : Measured data calibration value (Constant 25)
24 - Used for tempearture calculation.
25 - This is 25 because temperature measured is always above 25 degrees.
26
27
28Example:
29
30tmu@10060000 {
31 compatible = "samsung,exynos-tmu"
32 samsung,min-temp = <25>;
33 samsung,max-temp = <125>;
34 samsung,start-warning = <95>;
35 samsung,start-tripping = <105>;
36 samsung,efuse-min-value = <40>;
37 samsung,efuse-value = <55>;
38 samsung,efuse-max-value = <100>;
39 samsung,slope = <274761730>;
40 samsung,dc-value = <25>;
41};