b7d4d74e03
Based on FreeBSD's implementation made by James Harris, Intel Copyright 2012-2016. Since Zephyr does not propose any advanced interfaces as FreeBSD (bus abstractions, memory and DMA abstraction and many more), this comes with a much simplified and Zephyr-ish way to instanciate, initialize and use NVMe controller. ToDo: IO Queues cannot be more than 1. Macros will need to be improved to manage the case of 2+ IO queues. Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
19 lines
369 B
Plaintext
19 lines
369 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig DISK_DRIVERS
|
|
bool "Disk drivers"
|
|
help
|
|
Disk Driver configuration
|
|
|
|
if DISK_DRIVERS
|
|
|
|
source "drivers/disk/Kconfig.ram"
|
|
source "drivers/disk/Kconfig.flash"
|
|
source "drivers/disk/Kconfig.sdmmc"
|
|
source "drivers/disk/Kconfig.mmc"
|
|
|
|
rsource "nvme/Kconfig"
|
|
|
|
endif # DISK_DRIVERS
|