mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
045474be5e
Apple SoCs have an integrated NVMe controller that isn't connected over a PCIe bus. In preparation for adding support for this NVMe controller, split out the PCI support into its own file. This file is selected through a new CONFIG_NVME_PCI Kconfig option, so do a wholesale replacement of CONFIG_NVME with CONFIG_NVME_PCI. Signed-off-by: Mark Kettenis <kettenis@openbsd.org> Reviewed-by: Simon Glass <sjg@chromium.org> Tested on: Macbook Air M1 Tested-by: Simon Glass <sjg@chromium.org>
19 lines
449 B
Text
19 lines
449 B
Text
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
config NVME
|
|
bool "NVM Express device support"
|
|
depends on BLK
|
|
select HAVE_BLOCK_DEVICE
|
|
help
|
|
This option enables support for NVM Express devices.
|
|
It supports basic functions of NVMe (read/write).
|
|
|
|
config NVME_PCI
|
|
bool "NVM Express PCI device support"
|
|
depends on PCI
|
|
select NVME
|
|
help
|
|
This option enables support for NVM Express PCI
|
|
devices.
|