Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. config MTK_THERMAL
  2. tristate "MediaTek thermal drivers"
  3. depends on THERMAL_OF
  4. help
  5. This is the option for MediaTek thermal software solutions.
  6. Please enable corresponding options to get temperature
  7. information from thermal sensors or turn on throttle
  8. mechaisms for thermal mitigation.
  9. if MTK_THERMAL
  10. config MTK_SOC_THERMAL
  11. tristate "AUXADC temperature sensor driver for MediaTek SoCs"
  12. depends on HAS_IOMEM
  13. help
  14. Enable this option if you want to get SoC temperature
  15. information for MediaTek platforms.
  16. This driver configures thermal controllers to collect
  17. temperature via AUXADC interface.
  18. config MTK_LVTS_THERMAL
  19. tristate "LVTS Thermal Driver for MediaTek SoCs"
  20. depends on HAS_IOMEM
  21. help
  22. Enable this option if you want to get SoC temperature
  23. information for supported MediaTek platforms.
  24. This driver configures LVTS (Low Voltage Thermal Sensor)
  25. thermal controllers to collect temperatures via ASIF
  26. (Analog Serial Interface).
  27. config MTK_LVTS_THERMAL_DEBUGFS
  28. bool "LVTS thermal debugfs"
  29. depends on MTK_LVTS_THERMAL && DEBUG_FS
  30. help
  31. Enable this option to debug the internals of the device driver.
  32. endif