Kconfig 879 B

1234567891011121314151617181920212223242526
  1. config ACPI_NFIT
  2. tristate "ACPI NVDIMM Firmware Interface Table (NFIT)"
  3. depends on PHYS_ADDR_T_64BIT
  4. depends on BLK_DEV
  5. depends on ARCH_HAS_MMIO_FLUSH
  6. select LIBNVDIMM
  7. help
  8. Infrastructure to probe ACPI 6 compliant platforms for
  9. NVDIMMs (NFIT) and register a libnvdimm device tree. In
  10. addition to storage devices this also enables libnvdimm to pass
  11. ACPI._DSM messages for platform/dimm configuration.
  12. To compile this driver as a module, choose M here:
  13. the module will be called nfit.
  14. config ACPI_NFIT_DEBUG
  15. bool "NFIT DSM debug"
  16. depends on ACPI_NFIT
  17. depends on DYNAMIC_DEBUG
  18. default n
  19. help
  20. Enabling this option causes the nfit driver to dump the
  21. input and output buffers of _DSM operations on the ACPI0012
  22. device and its children. This can be very verbose, so leave
  23. it disabled unless you are debugging a hardware / firmware
  24. issue.