f3c507adcd
Initial commit for emulated Non-Volatile-Memory Express (NVMe) pci storage device. NVMe is an open, industry driven storage specification defining an optimized register and command set designed to deliver the full capabilities of non-volatile memory on PCIe SSDs. Further information may be found on the organizations website at: http://www.nvmexpress.org/ This commit implements the minimum from the specification to work with existing drivers. Cc: Keith Busch <keith.busch@gmail.com> Signed-off-by: Keith Busch <keith.busch@intel.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
17 lines
591 B
Makefile
17 lines
591 B
Makefile
common-obj-y += block.o cdrom.o hd-geometry.o
|
|
common-obj-$(CONFIG_FDC) += fdc.o
|
|
common-obj-$(CONFIG_SSI_M25P80) += m25p80.o
|
|
common-obj-$(CONFIG_NAND) += nand.o
|
|
common-obj-$(CONFIG_PFLASH_CFI01) += pflash_cfi01.o
|
|
common-obj-$(CONFIG_PFLASH_CFI02) += pflash_cfi02.o
|
|
common-obj-$(CONFIG_XEN_BACKEND) += xen_disk.o
|
|
common-obj-$(CONFIG_ECC) += ecc.o
|
|
common-obj-$(CONFIG_ONENAND) += onenand.o
|
|
common-obj-$(CONFIG_PC_SYSFW) += pc_sysfw.o
|
|
common-obj-$(CONFIG_NVME_PCI) += nvme.o
|
|
|
|
obj-$(CONFIG_SH4) += tc58128.o
|
|
|
|
obj-$(CONFIG_VIRTIO) += virtio-blk.o
|
|
obj-$(CONFIG_VIRTIO_BLK_DATA_PLANE) += dataplane/
|