diff options
author | Sven Peter <sven@svenpeter.dev> | 2022-05-01 16:55:12 +0200 |
---|---|---|
committer | Sven Peter <sven@svenpeter.dev> | 2022-05-02 17:24:45 +0200 |
commit | 5bd2927aceba181b84286e00aa2f56e117e699c3 (patch) | |
tree | 79170f6a873ce446d36b540d8db1715180293270 /drivers/nvme/host/Kconfig | |
parent | 82b96552f15a05ee9f31813178e024720aa5b9bc (diff) | |
download | linux-5bd2927aceba181b84286e00aa2f56e117e699c3.tar.gz |
nvme-apple: Add initial Apple SoC NVMe driver
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>
Diffstat (limited to 'drivers/nvme/host/Kconfig')
-rw-r--r-- | drivers/nvme/host/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/nvme/host/Kconfig b/drivers/nvme/host/Kconfig index d6d056963c06..877d2ec4ea9f 100644 --- a/drivers/nvme/host/Kconfig +++ b/drivers/nvme/host/Kconfig @@ -91,3 +91,16 @@ config NVME_TCP from https://github.com/linux-nvme/nvme-cli. If unsure, say N. + +config NVME_APPLE + tristate "Apple ANS2 NVM Express host driver" + depends on OF && BLOCK + depends on APPLE_RTKIT && APPLE_SART + depends on ARCH_APPLE || COMPILE_TEST + select NVME_CORE + help + This provides support for the NVMe controller embedded in Apple SoCs + such as the M1. + + To compile this driver as a module, choose M here: the + module will be called nvme-apple. |