1menuconfig 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 8config RT_USING_NVME_IO_QUEUE 9 int "Number of I/O Command queue" 10 depends on RT_USING_NVME 11 default 2 if RT_THREAD_PRIORITY_8 12 default 4 if RT_THREAD_PRIORITY_32 13 default 8 if RT_THREAD_PRIORITY_256 14 15config RT_NVME_PCI 16 bool "NVME support on PCI bus" 17 depends on RT_USING_NVME 18 depends on RT_USING_PCI 19 default y 20 21if RT_USING_NVME 22 osource "$(SOC_DM_NVME_DIR)/Kconfig" 23endif 24