Kconfig 609 B

123456789101112131415161718192021222324
  1. menuconfig ARM64_MPAM_DRIVER
  2. bool "MPAM driver"
  3. depends on ARM64 && ARM64_MPAM && EXPERT
  4. help
  5. Memory System Resource Partitioning and Monitoring (MPAM) driver for
  6. System IP, e.g. caches and memory controllers.
  7. if ARM64_MPAM_DRIVER
  8. config ARM64_MPAM_DRIVER_DEBUG
  9. bool "Enable debug messages from the MPAM driver"
  10. help
  11. Say yes here to enable debug messages from the MPAM driver.
  12. config MPAM_KUNIT_TEST
  13. bool "KUnit tests for MPAM driver " if !KUNIT_ALL_TESTS
  14. depends on KUNIT=y
  15. default KUNIT_ALL_TESTS
  16. help
  17. Enable this option to run tests in the MPAM driver.
  18. If unsure, say N.
  19. endif