tmu.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Exynos Thermal management Unit
  2. Required properties:
  3. - compatible : Should be "samsung,exynos-tmu" for TMU
  4. - samsung,min-temp : Minimum temperature value (25 degree celsius)
  5. - Current temperature of SoC should be more than this value.
  6. - samsung,max-temp : Maximum temperature value (125 degree celsius)
  7. - Current temperature of SoC should be less than this value.
  8. - samsung,start-warning : Temperature at which TMU starts giving warning (degree celsius)
  9. - samsung,start-tripping : Temperature at which TMU shuts down the system (degree celsius)
  10. - samsung,hw-tripping : Temperature at which hardware tripping should happen
  11. in case TMU fails to power off (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. Example:
  27. tmu@10060000 {
  28. compatible = "samsung,exynos-tmu"
  29. samsung,min-temp = <25>;
  30. samsung,max-temp = <125>;
  31. samsung,start-warning = <95>;
  32. samsung,start-tripping = <105>;
  33. samsung,hw-tripping = <110>;
  34. samsung,efuse-min-value = <40>;
  35. samsung,efuse-value = <55>;
  36. samsung,efuse-max-value = <100>;
  37. samsung,slope = <274761730>;
  38. samsung,dc-value = <25>;
  39. };