Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Performance monitoring"
  2. config PERF_EVENTS_INTEL_UNCORE
  3. tristate "Intel uncore performance events"
  4. depends on PERF_EVENTS && CPU_SUP_INTEL && PCI
  5. default y
  6. ---help---
  7. Include support for Intel uncore performance events. These are
  8. available on NehalemEX and more modern processors.
  9. config PERF_EVENTS_INTEL_RAPL
  10. tristate "Intel rapl performance events"
  11. depends on PERF_EVENTS && CPU_SUP_INTEL && PCI
  12. default y
  13. ---help---
  14. Include support for Intel rapl performance events for power
  15. monitoring on modern processors.
  16. config PERF_EVENTS_INTEL_CSTATE
  17. tristate "Intel cstate performance events"
  18. depends on PERF_EVENTS && CPU_SUP_INTEL && PCI
  19. default y
  20. ---help---
  21. Include support for Intel cstate performance events for power
  22. monitoring on modern processors.
  23. config PERF_EVENTS_AMD_POWER
  24. depends on PERF_EVENTS && CPU_SUP_AMD
  25. tristate "AMD Processor Power Reporting Mechanism"
  26. ---help---
  27. Provide power reporting mechanism support for AMD processors.
  28. Currently, it leverages X86_FEATURE_ACC_POWER
  29. (CPUID Fn8000_0007_EDX[12]) interface to calculate the
  30. average power consumption on Family 15h processors.
  31. endmenu