linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] ND: NFIT-Defined / NVDIMM Subsystem
@ 2015-04-18  1:35 Dan Williams
  2015-04-18  1:35 ` [PATCH 01/21] e820, efi: add ACPI 6.0 persistent memory types Dan Williams
                   ` (22 more replies)
  0 siblings, 23 replies; 84+ messages in thread
From: Dan Williams @ 2015-04-18  1:35 UTC (permalink / raw)
  To: linux-nvdimm
  Cc: Boaz Harrosh, Vishal Verma, Neil Brown, Greg KH,
	Rafael J. Wysocki, Dave Chinner, Robert Moore, Andy Lutomirski,
	Jens Axboe, linux-acpi, Jeff Moyer, Nicholas Moulin,
	H. Peter Anvin, Ross Zwisler, Christoph Hellwig, Ingo Molnar,
	linux-kernel

Since 2010 Intel has included non-volatile memory support on a few
storage-focused platforms with a feature named ADR (Asynchronous DRAM
Refresh).  These platforms were mostly targeted at custom applications
and never enjoyed standard discovery mechanisms for platform firmware
to advertise non-volatile memory capabilities.  This now changes with
the publication of version 6 of the ACPI specification [1] and its
inclusion of a new table for describing platform memory capabilities.
The NVDIMM Firmware Interface Table (NFIT), along with new EFI and E820
memory types, enumerates persistent memory ranges, memory-mapped-I/O
apertures, physical memory devices (DIMMs), and their associated
properties.

The ND-subsystem wraps a Linux device driver model around the objects
and address boundaries defined in the specification and introduces 3 new
drivers.

  nd_pmem: NFIT enabled version of the existing 'pmem' driver [2]
  nd_blk: mmio aperture method for accessing persistent storage
  nd_btt: give persistent memory disk semantics (atomic sector update)

See the documentation in patch2 for more details, and there is
supplemental documentation on pmem.io [4].  Please review, and
patches welcome...

For kicking the tires, this release is accompanied by a userspace
management library 'ndctl' that includes unit tests (make check) for all
of the kernel ABIs.  The nfit_test.ko module can be used to explore a
sample NFIT topology.

[1]: http://www.uefi.org/sites/default/files/resources/ACPI_6.0.pdf
[2]: https://git.kernel.org/cgit/linux/kernel/git/tip/tip.git/log/?h=x86/pmem
[3]: https://github.com/pmem/ndctl
[4]: http://pmem.io/documents/

--
Dan for the NFIT driver development team Andy Rudoff, Matthew Wilcox, Ross
Zwisler, and Vishal Verma


---

Dan Williams (19):
      e820, efi: add ACPI 6.0 persistent memory types
      ND NFIT-Defined/NVIDIMM Subsystem
      nd_acpi: initial core implementation and nfit skeleton
      nd: create an 'nd_bus' from an 'nfit_desc'
      nfit-test: manufactured NFITs for interface development
      nd: ndctl class device, and nd bus attributes
      nd: dimm devices (nfit "memory-devices")
      nd: ndctl.h, the nd ioctl abi
      nd_dimm: dimm driver and base nd-bus device-driver infrastructure
      nd: regions (block-data-window, persistent memory, volatile memory)
      nd_region: support for legacy nvdimms
      nd_pmem: add NFIT support to the pmem driver
      nd: add interleave-set state-tracking infrastructure
      nd: namespace indices: read and validate
      nd: pmem label sets and namespace instantiation.
      nd: blk labels and namespace instantiation
      nd: write pmem label set
      nd: write blk label set
      nd: infrastructure for btt devices

Ross Zwisler (1):
      nd_blk: nfit blk driver

Vishal Verma (1):
      nd_btt: atomic sector updates


 Documentation/blockdev/btt.txt    |  273 ++++++
 Documentation/blockdev/nd.txt     |  867 +++++++++++++++++++
 MAINTAINERS                       |   34 +
 arch/arm64/kernel/efi.c           |    1 
 arch/ia64/kernel/efi.c            |    1 
 arch/x86/boot/compressed/eboot.c  |    4 
 arch/x86/include/uapi/asm/e820.h  |    1 
 arch/x86/kernel/e820.c            |   25 -
 arch/x86/platform/efi/efi.c       |    3 
 drivers/block/Kconfig             |   13 
 drivers/block/Makefile            |    2 
 drivers/block/nd/Kconfig          |  130 +++
 drivers/block/nd/Makefile         |   39 +
 drivers/block/nd/acpi.c           |  443 ++++++++++
 drivers/block/nd/blk.c            |  269 ++++++
 drivers/block/nd/btt.c            | 1423 +++++++++++++++++++++++++++++++
 drivers/block/nd/btt.h            |  185 ++++
 drivers/block/nd/btt_devs.c       |  443 ++++++++++
 drivers/block/nd/bus.c            |  703 +++++++++++++++
 drivers/block/nd/core.c           |  963 +++++++++++++++++++++
 drivers/block/nd/dimm.c           |  126 +++
 drivers/block/nd/dimm_devs.c      |  701 +++++++++++++++
 drivers/block/nd/label.c          |  925 ++++++++++++++++++++
 drivers/block/nd/label.h          |  143 +++
 drivers/block/nd/namespace_devs.c | 1697 +++++++++++++++++++++++++++++++++++++
 drivers/block/nd/nd-private.h     |  203 ++++
 drivers/block/nd/nd.h             |  310 +++++++
 drivers/block/nd/nfit.h           |  238 +++++
 drivers/block/nd/pmem.c           |  122 ++-
 drivers/block/nd/region.c         |   95 ++
 drivers/block/nd/region_devs.c    | 1196 ++++++++++++++++++++++++++
 drivers/block/nd/test/Makefile    |    5 
 drivers/block/nd/test/iomap.c     |  199 ++++
 drivers/block/nd/test/nfit.c      | 1018 ++++++++++++++++++++++
 drivers/block/nd/test/nfit_test.h |   37 +
 include/linux/efi.h               |    3 
 include/linux/nd.h                |   98 ++
 include/uapi/linux/Kbuild         |    1 
 include/uapi/linux/ndctl.h        |  199 ++++
 39 files changed, 13102 insertions(+), 36 deletions(-)
 create mode 100644 Documentation/blockdev/btt.txt
 create mode 100644 Documentation/blockdev/nd.txt
 create mode 100644 drivers/block/nd/Kconfig
 create mode 100644 drivers/block/nd/Makefile
 create mode 100644 drivers/block/nd/acpi.c
 create mode 100644 drivers/block/nd/blk.c
 create mode 100644 drivers/block/nd/btt.c
 create mode 100644 drivers/block/nd/btt.h
 create mode 100644 drivers/block/nd/btt_devs.c
 create mode 100644 drivers/block/nd/bus.c
 create mode 100644 drivers/block/nd/core.c
 create mode 100644 drivers/block/nd/dimm.c
 create mode 100644 drivers/block/nd/dimm_devs.c
 create mode 100644 drivers/block/nd/label.c
 create mode 100644 drivers/block/nd/label.h
 create mode 100644 drivers/block/nd/namespace_devs.c
 create mode 100644 drivers/block/nd/nd-private.h
 create mode 100644 drivers/block/nd/nd.h
 create mode 100644 drivers/block/nd/nfit.h
 rename drivers/block/{pmem.c => nd/pmem.c} (68%)
 create mode 100644 drivers/block/nd/region.c
 create mode 100644 drivers/block/nd/region_devs.c
 create mode 100644 drivers/block/nd/test/Makefile
 create mode 100644 drivers/block/nd/test/iomap.c
 create mode 100644 drivers/block/nd/test/nfit.c
 create mode 100644 drivers/block/nd/test/nfit_test.h
 create mode 100644 include/linux/nd.h
 create mode 100644 include/uapi/linux/ndctl.h

^ permalink raw reply	[flat|nested] 84+ messages in thread

end of thread, other threads:[~2015-04-28 19:37 UTC | newest]

Thread overview: 84+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-18  1:35 [PATCH 00/21] ND: NFIT-Defined / NVDIMM Subsystem Dan Williams
2015-04-18  1:35 ` [PATCH 01/21] e820, efi: add ACPI 6.0 persistent memory types Dan Williams
2015-04-18  4:41   ` Andy Lutomirski
2015-04-19  7:46   ` Boaz Harrosh
2015-04-20 17:08     ` Dan Williams
2015-04-28 12:46   ` [Linux-nvdimm] " Christoph Hellwig
2015-04-28 19:20     ` Dan Williams
2015-04-18  1:35 ` [PATCH 02/21] ND NFIT-Defined/NVIDIMM Subsystem Dan Williams
2015-04-20  7:06   ` Ingo Molnar
2015-04-20  8:14     ` Dan Williams
2015-04-20 12:53       ` Christoph Hellwig
2015-04-20 15:57         ` Dan Williams
2015-04-21 13:38           ` Dan Williams
2015-04-28 12:48   ` [Linux-nvdimm] " Christoph Hellwig
2015-04-18  1:35 ` [PATCH 03/21] nd_acpi: initial core implementation and nfit skeleton Dan Williams
2015-04-18 19:41   ` Paul Bolle
2015-04-19 19:12   ` Rafael J. Wysocki
2015-04-28 12:53   ` [Linux-nvdimm] " Christoph Hellwig
2015-04-28 19:21     ` Dan Williams
2015-04-18  1:35 ` [PATCH 04/21] nd: create an 'nd_bus' from an 'nfit_desc' Dan Williams
2015-04-21 19:35   ` [Linux-nvdimm] " Toshi Kani
2015-04-21 19:58     ` Dan Williams
2015-04-21 19:55       ` Toshi Kani
2015-04-21 20:35         ` Dan Williams
2015-04-21 20:32           ` Toshi Kani
2015-04-22 16:39           ` Toshi Kani
2015-04-22 17:03             ` Dan Williams
2015-04-22 18:00               ` Linda Knippers
2015-04-22 18:20                 ` Dan Williams
2015-04-22 18:23                   ` Toshi Kani
2015-04-22 19:28                     ` Dan Williams
2015-04-22 19:38                       ` Toshi Kani
2015-04-22 20:00                         ` Dan Williams
2015-04-28 16:47                           ` Toshi Kani
2015-04-28 17:14                             ` Toshi Kani
2015-04-18  1:35 ` [PATCH 05/21] nfit-test: manufactured NFITs for interface development Dan Williams
2015-04-24 21:47   ` [Linux-nvdimm] " Linda Knippers
2015-04-24 21:50     ` Dan Williams
2015-04-24 21:59       ` Linda Knippers
2015-04-24 23:02         ` Dan Williams
2015-04-28 12:54   ` Christoph Hellwig
2015-04-28 19:35     ` Dan Williams
2015-04-18  1:35 ` [PATCH 06/21] nd: ndctl class device, and nd bus attributes Dan Williams
2015-04-18  8:07   ` Greg KH
2015-04-18 20:08     ` Dan Williams
2015-04-18  1:35 ` [PATCH 07/21] nd: dimm devices (nfit "memory-devices") Dan Williams
2015-04-18  8:06   ` Greg KH
2015-04-18 20:12     ` Dan Williams
2015-04-18  1:35 ` [PATCH 08/21] nd: ndctl.h, the nd ioctl abi Dan Williams
2015-04-21 21:20   ` [Linux-nvdimm] " Toshi Kani
2015-04-21 22:05     ` Dan Williams
2015-04-21 22:16       ` Toshi Kani
2015-04-24 15:56   ` Toshi Kani
2015-04-24 16:09     ` Toshi Kani
2015-04-24 16:31       ` Dan Williams
2015-04-24 16:25     ` Dan Williams
2015-04-24 17:18       ` Toshi Kani
2015-04-24 17:45         ` Dan Williams
2015-04-25  0:35           ` Toshi Kani
2015-04-18  1:36 ` [PATCH 09/21] nd_dimm: dimm driver and base nd-bus device-driver infrastructure Dan Williams
2015-04-18  1:36 ` [PATCH 10/21] nd: regions (block-data-window, persistent memory, volatile memory) Dan Williams
2015-04-18  1:36 ` [PATCH 11/21] nd_region: support for legacy nvdimms Dan Williams
2015-04-18  1:36 ` [PATCH 12/21] nd_pmem: add NFIT support to the pmem driver Dan Williams
2015-04-18  6:38   ` Christoph Hellwig
2015-04-18 19:37     ` Dan Williams
2015-04-28 12:56       ` [Linux-nvdimm] " Christoph Hellwig
2015-04-28 19:37         ` Dan Williams
2015-04-18  1:36 ` [PATCH 13/21] nd: add interleave-set state-tracking infrastructure Dan Williams
2015-04-18  1:36 ` [PATCH 14/21] nd: namespace indices: read and validate Dan Williams
2015-04-18  1:36 ` [PATCH 15/21] nd: pmem label sets and namespace instantiation Dan Williams
2015-04-18  1:36 ` [PATCH 16/21] nd: blk labels " Dan Williams
2015-04-18  1:36 ` [PATCH 17/21] nd: write pmem label set Dan Williams
2015-04-18  1:36 ` [PATCH 18/21] nd: write blk " Dan Williams
2015-04-18  1:36 ` [PATCH 19/21] nd: infrastructure for btt devices Dan Williams
2015-04-22 19:12   ` [Linux-nvdimm] " Elliott, Robert (Server Storage)
2015-04-22 19:39     ` Dan Williams
2015-04-28 13:01   ` Christoph Hellwig
2015-04-28 15:42     ` Matthew Wilcox
2015-04-18  1:37 ` [PATCH 20/21] nd_btt: atomic sector updates Dan Williams
2015-04-18  1:37 ` [PATCH 21/21] nd_blk: nfit blk driver Dan Williams
2015-04-18 19:29 ` [PATCH 00/21] ND: NFIT-Defined / NVDIMM Subsystem Dan Williams
2015-04-22 19:06 ` [Linux-nvdimm] " Elliott, Robert (Server Storage)
2015-04-22 19:39   ` Dan Williams
2015-04-23  5:43   ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).