nvdimm.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/4] ndctl: Add pcdctl tool with pcdctl list and reconfigure-region commands
@ 2021-07-08 18:37 James Anandraj
  2021-07-08 18:37 ` [PATCH v1 1/4] Documentation/pcdctl: Add documentation for pcdctl tool and commands James Anandraj
                   ` (4 more replies)
  0 siblings, 5 replies; 14+ messages in thread
From: James Anandraj @ 2021-07-08 18:37 UTC (permalink / raw)
  To: nvdimm, james.sushanth.anandraj

From: James Sushanth Anandraj <james.sushanth.anandraj@intel.com>

The Intel Optane Persistent Memory OS provisioning specification
describes how to support basic provisioning for Intel Optane
persistent memory 100 and 200 series for use in different
operating modes using OS software.

This patch set introduces a new utility pcdctl that implements
basic provisioning as described in the provisioning specification
document at https://cdrdv2.intel.com/v1/dl/getContent/634430 .

The pcdctl utility provides enumeration and region reconfiguration
commands for "nvdimm" subsystem devices (Non-volatile Memory). This
is implemented as a separate tool rather than as a feature of ndctl as
the steps for provisioning are specific to Intel Optane devices and 
are as follows.
1..Generate a new region configuration request using this utility.
2. Reset the platform.
3. Use this utility to list the status of operation.

James Sushanth Anandraj (4):
  Documentation/pcdctl: Add documentation for pcdctl tool and commands
  pcdctl/list: Add pcdctl-list command to enumerate 'nvdimm' devices
  pcdctl/reconfigure: Add pcdctl-reconfigure-region command
  pcdctl/reconfigure: Add support for pmem and iso-pmem modes

 Documentation/pcdctl/Makefile.am              |   59 +
 .../pcdctl/asciidoctor-extensions.rb          |   30 +
 Documentation/pcdctl/pcdctl-list.txt          |   56 +
 .../pcdctl/pcdctl-reconfigure-region.txt      |   50 +
 Documentation/pcdctl/pcdctl.txt               |   40 +
 Documentation/pcdctl/theory-of-operation.txt  |   28 +
 Makefile.am                                   |    4 +-
 configure.ac                                  |    2 +
 pcdctl/Makefile.am                            |   18 +
 pcdctl/builtin.h                              |    9 +
 pcdctl/list.c                                 |  114 ++
 pcdctl/list.h                                 |   11 +
 pcdctl/pcat.c                                 |   59 +
 pcdctl/pcat.h                                 |   13 +
 pcdctl/pcd.h                                  |  381 +++++
 pcdctl/pcdctl.c                               |   88 +
 pcdctl/reconfigure.c                          | 1458 +++++++++++++++++
 pcdctl/reconfigure.h                          |   12 +
 util/main.h                                   |    1 +
 19 files changed, 2431 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/pcdctl/Makefile.am
 create mode 100644 Documentation/pcdctl/asciidoctor-extensions.rb
 create mode 100644 Documentation/pcdctl/pcdctl-list.txt
 create mode 100644 Documentation/pcdctl/pcdctl-reconfigure-region.txt
 create mode 100644 Documentation/pcdctl/pcdctl.txt
 create mode 100644 Documentation/pcdctl/theory-of-operation.txt
 create mode 100644 pcdctl/Makefile.am
 create mode 100644 pcdctl/builtin.h
 create mode 100644 pcdctl/list.c
 create mode 100644 pcdctl/list.h
 create mode 100644 pcdctl/pcat.c
 create mode 100644 pcdctl/pcat.h
 create mode 100644 pcdctl/pcd.h
 create mode 100644 pcdctl/pcdctl.c
 create mode 100644 pcdctl/reconfigure.c
 create mode 100644 pcdctl/reconfigure.h

-- 
2.20.1


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

end of thread, other threads:[~2021-07-12 20:19 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-08 18:37 [PATCH v1 0/4] ndctl: Add pcdctl tool with pcdctl list and reconfigure-region commands James Anandraj
2021-07-08 18:37 ` [PATCH v1 1/4] Documentation/pcdctl: Add documentation for pcdctl tool and commands James Anandraj
2021-07-08 21:42   ` Dan Williams
2021-07-08 18:37 ` [PATCH v1 2/4] pcdctl/list: Add pcdctl-list command to enumerate 'nvdimm' devices James Anandraj
2021-07-08 18:37 ` [PATCH v1 3/4] pcdctl/reconfigure: Add pcdctl-reconfigure-region command James Anandraj
2021-07-08 18:37 ` [PATCH v1 4/4] pcdctl/reconfigure: Add support for pmem and iso-pmem modes James Anandraj
2021-07-08 21:24 ` [PATCH v1 0/4] ndctl: Add pcdctl tool with pcdctl list and reconfigure-region commands Dan Williams
2021-07-09 12:23   ` Adam Borowski
2021-07-09 19:01     ` Dan Williams
2021-07-09 19:21       ` Jeff Moyer
2021-07-09 15:25   ` Jeff Moyer
2021-07-09 18:58     ` Dan Williams
2021-07-12 14:00       ` Michal Suchánek
2021-07-12 20:19         ` Dan Williams

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).