5bd2927ace
Apple SoCs such as the M1 come with an embedded NVMe controller that is not attached to any PCIe bus. Additionally, it doesn't conform to the NVMe specification and requires a bunch of changes to command submission and IOMMU configuration to work. Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Sven Peter <sven@svenpeter.dev>
31 lines
784 B
Makefile
31 lines
784 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
ccflags-y += -I$(src)
|
|
|
|
obj-$(CONFIG_NVME_CORE) += nvme-core.o
|
|
obj-$(CONFIG_BLK_DEV_NVME) += nvme.o
|
|
obj-$(CONFIG_NVME_FABRICS) += nvme-fabrics.o
|
|
obj-$(CONFIG_NVME_RDMA) += nvme-rdma.o
|
|
obj-$(CONFIG_NVME_FC) += nvme-fc.o
|
|
obj-$(CONFIG_NVME_TCP) += nvme-tcp.o
|
|
obj-$(CONFIG_NVME_APPLE) += nvme-apple.o
|
|
|
|
nvme-core-y := core.o ioctl.o constants.o
|
|
nvme-core-$(CONFIG_TRACING) += trace.o
|
|
nvme-core-$(CONFIG_NVME_MULTIPATH) += multipath.o
|
|
nvme-core-$(CONFIG_BLK_DEV_ZONED) += zns.o
|
|
nvme-core-$(CONFIG_FAULT_INJECTION_DEBUG_FS) += fault_inject.o
|
|
nvme-core-$(CONFIG_NVME_HWMON) += hwmon.o
|
|
|
|
nvme-y += pci.o
|
|
|
|
nvme-fabrics-y += fabrics.o
|
|
|
|
nvme-rdma-y += rdma.o
|
|
|
|
nvme-fc-y += fc.o
|
|
|
|
nvme-tcp-y += tcp.o
|
|
|
|
nvme-apple-y += apple.o
|