tmu.txt 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 system will trip and shutdown (degree celsius)
  10. - samsung,efuse-min-value : SOC efuse min value (Constant 40)
  11. - efuse-value should be more than this value.
  12. - samsung,efuse-value : SOC actual efuse value (Literal value)
  13. - This is the data trimming info.
  14. - This value is used to calculate measuring error.
  15. - samsung,efuse-max-value : SoC max efuse value (Constant 100)
  16. - efuse-value should be less than this value.
  17. - samsung,slope : Default value 274761730 (Constant 0x1060_8802).
  18. - This is the default value for TMU_CONTROL register.
  19. - It sets the gain of amplifier to the positive-tc generator block.
  20. - It selects thermal tripping mode and enables thermal tripping.
  21. - samsung,dc-value : Measured data calibration value (Constant 25)
  22. - Used for tempearture calculation.
  23. - This is 25 because temperature measured is always above 25 degrees.
  24. Example:
  25. tmu@10060000 {
  26. compatible = "samsung,exynos-tmu"
  27. samsung,min-temp = <25>;
  28. samsung,max-temp = <125>;
  29. samsung,start-warning = <95>;
  30. samsung,start-tripping = <105>;
  31. samsung,efuse-min-value = <40>;
  32. samsung,efuse-value = <55>;
  33. samsung,efuse-max-value = <100>;
  34. samsung,slope = <274761730>;
  35. samsung,dc-value = <25>;
  36. };