Kconfig 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Intel Platform Monitoring Technology drivers
  4. #
  5. config INTEL_PMT_CLASS
  6. tristate
  7. help
  8. The Intel Platform Monitoring Technology (PMT) class driver provides
  9. the basic sysfs interface and file hierarchy used by PMT devices.
  10. For more information, see:
  11. <file:Documentation/ABI/testing/sysfs-class-intel_pmt>
  12. To compile this driver as a module, choose M here: the module
  13. will be called intel_pmt_class.
  14. config INTEL_PMT_TELEMETRY
  15. tristate "Intel Platform Monitoring Technology (PMT) Telemetry driver"
  16. depends on INTEL_VSEC
  17. select INTEL_PMT_DISCOVERY
  18. select INTEL_PMT_CLASS
  19. help
  20. The Intel Platform Monitory Technology (PMT) Telemetry driver provides
  21. access to hardware telemetry metrics on devices that support the
  22. feature.
  23. To compile this driver as a module, choose M here: the module
  24. will be called intel_pmt_telemetry.
  25. config INTEL_PMT_CRASHLOG
  26. tristate "Intel Platform Monitoring Technology (PMT) Crashlog driver"
  27. depends on INTEL_VSEC
  28. select INTEL_PMT_CLASS
  29. help
  30. The Intel Platform Monitoring Technology (PMT) crashlog driver provides
  31. access to hardware crashlog capabilities on devices that support the
  32. feature.
  33. To compile this driver as a module, choose M here: the module
  34. will be called intel_pmt_crashlog.
  35. config INTEL_PMT_DISCOVERY
  36. tristate "Intel Platform Monitoring Technology (PMT) Discovery driver"
  37. depends on INTEL_VSEC
  38. select INTEL_PMT_CLASS
  39. help
  40. The Intel Platform Monitoring Technology (PMT) discovery driver provides
  41. access to details about the various PMT features and feature specific
  42. attributes.
  43. To compile this driver as a module, choose M here: the module
  44. will be called pmt_discovery.
  45. config INTEL_PMT_KUNIT_TEST
  46. tristate "KUnit tests for Intel PMT driver"
  47. depends on INTEL_PMT_DISCOVERY
  48. depends on INTEL_PMT_TELEMETRY || !INTEL_PMT_TELEMETRY
  49. depends on KUNIT
  50. help
  51. Enable this option to compile and run a suite of KUnit tests for the Intel
  52. Platform Monitoring Technology (PMT) driver. These tests are designed to
  53. validate the driver's functionality, error handling, and overall stability,
  54. helping developers catch regressions and ensure code quality during changes.
  55. This option is intended for development and testing environments. It is
  56. recommended to disable it in production builds. To compile this driver as a
  57. module, choose M here: the module will be called pmt-discovery-kunit.