Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. config DM_THERMAL
  2. bool "Driver support for thermal devices"
  3. help
  4. Enable support for temperature-sensing devices. Some SoCs have on-chip
  5. temperature sensors to permit warnings, speed throttling or even
  6. automatic power-off when the temperature gets too high or low. Other
  7. devices may be discrete but connected on a suitable bus.
  8. if DM_THERMAL
  9. config IMX_THERMAL
  10. bool "Temperature sensor driver for Freescale i.MX SoCs"
  11. depends on MX6 || MX7
  12. help
  13. Support for Temperature Monitor (TEMPMON) found on Freescale i.MX SoCs.
  14. It supports one critical trip point and one passive trip point. The
  15. cpufreq is used as the cooling device to throttle CPUs when the
  16. passive trip is crossed.
  17. config IMX_SCU_THERMAL
  18. bool "Temperature sensor driver for NXP i.MX8"
  19. depends on ARCH_IMX8
  20. help
  21. Support for Temperature sensors on NXP i.MX8.
  22. It supports one critical trip point and one passive trip point. The
  23. boot is hold to the cool device to throttle CPUs when the passive
  24. trip is crossed
  25. config IMX_TMU
  26. bool "Thermal Management Unit driver for NXP i.MX8M"
  27. depends on ARCH_IMX8M
  28. help
  29. Support for Temperature sensors on NXP i.MX8M.
  30. It supports one critical trip point and one passive trip point.
  31. The boot is hold to the cool device to throttle CPUs when the
  32. passive trip is crossed
  33. config TI_DRA7_THERMAL
  34. bool "Temperature sensor driver for TI dra7xx SOCs"
  35. help
  36. Enable thermal support for for the Texas Instruments DRA752 SoC family.
  37. The driver supports reading CPU temperature.
  38. endif # if DM_THERMAL