diff options
author | Zhikang Zhang <zhikang.zhang@nxp.com> | 2017-08-03 02:30:57 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-13 15:17:31 -0400 |
commit | 982388eaa991d251290676f25868eecefa08c0be (patch) | |
tree | 0c3a5d3d8b6d2145f2e61a55d4ad0e294d4cf498 /drivers/Makefile | |
parent | ffab6945eca97c23612d8434833dcdaa4a8556dd (diff) | |
download | u-boot-982388eaa991d251290676f25868eecefa08c0be.tar.gz |
nvme: Add NVM Express driver support
NVM Express (NVMe) is a register level interface that allows host
software to communicate with a non-volatile memory subsystem. This
interface is optimized for enterprise and client solid state drives,
typically attached to the PCI express interface.
This adds a U-Boot driver support of devices that follow the NVMe
standard [1] and supports basic read/write operations.
Tested with a 400GB Intel SSD 750 series NVMe card with controller
id 8086:0953.
[1] http://www.nvmexpress.org/resources/specifications/
Signed-off-by: Zhikang Zhang <zhikang.zhang@nxp.com>
Signed-off-by: Wenbin Song <wenbin.song@nxp.com>
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index e4a9cb4195..0cbfa5d07b 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -78,6 +78,7 @@ obj-y += firmware/ obj-$(CONFIG_FPGA) += fpga/ obj-y += misc/ obj-$(CONFIG_MMC) += mmc/ +obj-$(CONFIG_NVME) += nvme/ obj-y += pcmcia/ obj-y += dfu/ obj-$(CONFIG_X86) += pch/ |