Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # SPDX-License-Identifier: GPL-2.0
  2. menuconfig ACPI_DPTF
  3. bool "Intel DPTF (Dynamic Platform and Thermal Framework) Support"
  4. depends on X86
  5. help
  6. Intel Dynamic Platform and Thermal Framework (DPTF) is a platform
  7. level hardware/software solution for power and thermal management.
  8. As a container for multiple power/thermal technologies, DPTF provides
  9. a coordinated approach for different policies to effect the hardware
  10. state of a system.
  11. if ACPI_DPTF
  12. config DPTF_POWER
  13. tristate "Platform Power DPTF Participant"
  14. default m
  15. help
  16. This driver adds support for Dynamic Platform and Thermal Framework
  17. (DPTF) Platform Power Participant device (INT3407) support.
  18. This participant is responsible for exposing platform telemetry:
  19. max_platform_power
  20. platform_power_source
  21. adapter_rating
  22. battery_steady_power
  23. charger_type
  24. To compile this driver as a module, choose M here:
  25. the module will be called dptf_power.
  26. config DPTF_PCH_FIVR
  27. tristate "PCH FIVR DPTF Participant"
  28. default m
  29. help
  30. This driver adds support for Dynamic Platform and Thermal Framework
  31. (DPTF) PCH FIVR Participant device support. This driver allows to
  32. switch the PCH FIVR (Fully Integrated Voltage Regulator) frequency.
  33. This participant is responsible for exposing:
  34. freq_mhz_low_clock
  35. freq_mhz_high_clock
  36. To compile this driver as a module, choose M here:
  37. the module will be called dptf_pch_fivr.
  38. endif