Kconfig 595 B

1234567891011121314151617181920212223
  1. menuconfig RT_USING_NVME
  2. bool "Using Non-Volatile Memory Express (NVME) device drivers"
  3. depends on RT_USING_DM
  4. depends on RT_USING_BLK
  5. depends on RT_USING_DMA
  6. default n
  7. config RT_USING_NVME_IO_QUEUE
  8. int "Number of I/O Command queue"
  9. depends on RT_USING_NVME
  10. default 2 if RT_THREAD_PRIORITY_8
  11. default 4 if RT_THREAD_PRIORITY_32
  12. default 8 if RT_THREAD_PRIORITY_256
  13. config RT_NVME_PCI
  14. bool "NVME support on PCI bus"
  15. depends on RT_USING_NVME
  16. depends on RT_USING_PCI
  17. default y
  18. if RT_USING_NVME
  19. osource "$(SOC_DM_NVME_DIR)/Kconfig"
  20. endif