]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | # SPDX-License-Identifier: GPL-2.0+ |
982388ea ZZ |
2 | # |
3 | # Copyright (C) 2017, Bin Meng <[email protected]> | |
982388ea ZZ |
4 | |
5 | config NVME | |
6 | bool "NVM Express device support" | |
a72fa7f2 | 7 | select BLK |
982388ea ZZ |
8 | help |
9 | This option enables support for NVM Express devices. | |
10 | It supports basic functions of NVMe (read/write). | |
045474be | 11 | |
50333c94 MK |
12 | config NVME_APPLE |
13 | bool "Apple NVMe controller support" | |
14 | select NVME | |
15 | help | |
16 | This option enables support for the NVMe storage | |
17 | controller integrated on Apple SoCs. This controller | |
18 | isn't PCI-based based and deviates from the NVMe | |
19 | standard implementation in its implementation of | |
20 | the command submission queue and the integration | |
21 | of an NVMMU that needs to be managed. | |
22 | ||
045474be MK |
23 | config NVME_PCI |
24 | bool "NVM Express PCI device support" | |
25 | depends on PCI | |
26 | select NVME | |
27 | help | |
28 | This option enables support for NVM Express PCI | |
29 | devices. |