From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EF2A22FB8 for ; Tue, 15 Jun 2021 23:18:07 +0000 (UTC) IronPort-SDR: NlSTign2uCdHlrlvixbDUEtTAZRw31367ZXRa9KkrK59WsqtwKo7El+7dKIS+uem3aYGhvpfhU 2m22gC20JkDA== X-IronPort-AV: E=McAfee;i="6200,9189,10016"; a="203061455" X-IronPort-AV: E=Sophos;i="5.83,276,1616482800"; d="scan'208";a="203061455" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2021 16:18:07 -0700 IronPort-SDR: 7CS7bSGFCR2P7DxJ8Xv6xbM7B/H/KkOXT1XRPdPL6IOALDFZnwsRK74XUOvF/vVzDm9eFTTgHl kyua522vK3wA== X-IronPort-AV: E=Sophos;i="5.83,276,1616482800"; d="scan'208";a="484649160" Received: from dwillia2-desk3.jf.intel.com (HELO dwillia2-desk3.amr.corp.intel.com) ([10.54.39.25]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2021 16:18:06 -0700 Subject: [PATCH v2 0/5] cxl/pmem: Add core infrastructure for PMEM support From: Dan Williams To: linux-cxl@vger.kernel.org Cc: Jonathan Cameron , linux-kernel@vger.kernel.org, nvdimm@lists.linux.dev Date: Tue, 15 Jun 2021 16:18:06 -0700 Message-ID: <162379908663.2993820.16543025953842049041.stgit@dwillia2-desk3.amr.corp.intel.com> User-Agent: StGit/0.18-3-g996c X-Mailing-List: nvdimm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Changes since v1 [1]: - cleanup @flush determination in unregister_nvb() (Jonathan) - cleanup online_nvdimm_bus() to return a status code (Jonathan) - drop unnecessary header includes (Jonathan) - drop unused cxl_nvdimm driver data (Jonathan) - rename the bus to be unregistered as @victim_bus in cxl_nvb_update_state() (Jonathan) - miscellaneous cleanups and pick up reviewed-by's (Jonathan) --- CXL Memory Expander devices (CXL 2.0 Type-3) support persistent memory in addition to volatile memory expansion. The most significant changes this requires of the existing LIBNVDIMM infrastructure, compared to what was needed to support ACPI NFIT defined PMEM, is the ability to dynamically provision regions in addition to namespaces, and a formal model for hotplug. Before region provisioning can be added the CXL enabling needs to enumerate "nvdimm" devices on a CXL nvdimm-bus. This is modeled as a CXL-nvdimm-bridge device (bridging CXL to nvdimm) and an associated driver to activate and deactivate that bus-bridge. Once the bridge is registered it scans for CXL nvdimm devices registered by endpoints. The CXL core bus is used as a rendezvous for nvdimm bridges and endpoints allowing them to be registered and enabled in any order. At the end of this series the ndctl utility can see CXL nvdimm resources just like any other nvdimm bus. # ndctl list -BDiu -b CXL { "provider":"CXL", "dev":"ndbus1", "dimms":[ { "dev":"nmem1", "state":"disabled" }, { "dev":"nmem0", "state":"disabled" } ] } Follow-on patches extend the nvdimm core label support for CXL region and namespace labels. For now just add the machinery to register the bus and nvdimm base objects. --- Dan Williams (5): cxl/core: Add cxl-bus driver infrastructure cxl/pmem: Add initial infrastructure for pmem support libnvdimm: Export nvdimm shutdown helper, nvdimm_delete() libnvdimm: Drop unused device power management support cxl/pmem: Register 'pmem' / cxl_nvdimm devices drivers/cxl/Kconfig | 13 ++ drivers/cxl/Makefile | 2 drivers/cxl/acpi.c | 37 ++++++ drivers/cxl/core.c | 280 ++++++++++++++++++++++++++++++++++++++++++++ drivers/cxl/cxl.h | 56 +++++++++ drivers/cxl/mem.h | 1 drivers/cxl/pci.c | 23 +++- drivers/cxl/pmem.c | 230 ++++++++++++++++++++++++++++++++++++ drivers/nvdimm/bus.c | 64 ++++++---- drivers/nvdimm/dimm_devs.c | 18 +++ include/linux/libnvdimm.h | 1 11 files changed, 694 insertions(+), 31 deletions(-) create mode 100644 drivers/cxl/pmem.c base-commit: 87815ee9d0060a91bdf18266e42837a9adb5972e