forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'cxl-for-5.12' of git://git.kernel.org/pub/scm/linux/kernel…
…/git/nvdimm/nvdimm Pull initial support for CXL (Compute Express Link) from Dan Williams: "Introduce an initial driver for CXL 2.0 Type-3 Memory Devices. CXL is Compute Express Link which released the 2.0 specification in November. The Linux relevant changes in CXL 2.0 are support for an OS to dynamically assign address space to memory devices, support for switches, persistent memory, and hotplug. A Type-3 Memory Device is a PCI enumerated device presenting the CXL Memory Device Class Code and implementing the CXL.mem protocol. CXL.mem allows device to advertise CPU and I/O coherent memory to the system, i.e. typical "System RAM" and "Persistent Memory" in Linux /proc/iomem terms. In addition to the CXL.mem fast path there is an administrative command hardware mailbox interface for maintenance and provisioning. It is this command interface that is the focus of the initial driver. With this driver a CXL device that is mapped by the BIOS can be administered by Linux. Linux support for CXL PMEM and dynamic CXL address space management are to be implemented post v5.12" Reviewed-by: Konrad Rzeszutek Wilk <[email protected]> 4cdadfd ("cxl/mem: Introduce a driver for CXL-2.0-Type-3 endpoints") 1323718 ("cxl/mem: Add a "RAW" send command") 472b1ce ("cxl/mem: Enable commands via CEL") 57ee605 ("cxl/mem: Add set of informational commands") Reviewed-by: Jonathan Cameron <[email protected]> 8adaf74 ("cxl/mem: Find device capabilities") b39cb10 ("cxl/mem: Register CXL memX devices") * tag 'cxl-for-5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm: cxl/mem: Fix potential memory leak cxl/mem: Return -EFAULT if copy_to_user() fails MAINTAINERS: Add maintainers of the CXL driver cxl/mem: Add set of informational commands cxl/mem: Enable commands via CEL cxl/mem: Add a "RAW" send command cxl/mem: Add basic IOCTL interface cxl/mem: Register CXL memX devices cxl/mem: Find device capabilities cxl/mem: Introduce a driver for CXL-2.0-Type-3 endpoints
- Loading branch information
Showing
17 changed files
with
2,040 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
What: /sys/bus/cxl/devices/memX/firmware_version | ||
Date: December, 2020 | ||
KernelVersion: v5.12 | ||
Contact: [email protected] | ||
Description: | ||
(RO) "FW Revision" string as reported by the Identify | ||
Memory Device Output Payload in the CXL-2.0 | ||
specification. | ||
|
||
What: /sys/bus/cxl/devices/memX/ram/size | ||
Date: December, 2020 | ||
KernelVersion: v5.12 | ||
Contact: [email protected] | ||
Description: | ||
(RO) "Volatile Only Capacity" as bytes. Represents the | ||
identically named field in the Identify Memory Device Output | ||
Payload in the CXL-2.0 specification. | ||
|
||
What: /sys/bus/cxl/devices/memX/pmem/size | ||
Date: December, 2020 | ||
KernelVersion: v5.12 | ||
Contact: [email protected] | ||
Description: | ||
(RO) "Persistent Only Capacity" as bytes. Represents the | ||
identically named field in the Identify Memory Device Output | ||
Payload in the CXL-2.0 specification. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.. SPDX-License-Identifier: GPL-2.0 | ||
==================== | ||
Compute Express Link | ||
==================== | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
memory-devices | ||
|
||
.. only:: subproject and html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
.. SPDX-License-Identifier: GPL-2.0 | ||
.. include:: <isonum.txt> | ||
|
||
=================================== | ||
Compute Express Link Memory Devices | ||
=================================== | ||
|
||
A Compute Express Link Memory Device is a CXL component that implements the | ||
CXL.mem protocol. It contains some amount of volatile memory, persistent memory, | ||
or both. It is enumerated as a PCI device for configuration and passing | ||
messages over an MMIO mailbox. Its contribution to the System Physical | ||
Address space is handled via HDM (Host Managed Device Memory) decoders | ||
that optionally define a device's contribution to an interleaved address | ||
range across multiple devices underneath a host-bridge or interleaved | ||
across host-bridges. | ||
|
||
Driver Infrastructure | ||
===================== | ||
|
||
This section covers the driver infrastructure for a CXL memory device. | ||
|
||
CXL Memory Device | ||
----------------- | ||
|
||
.. kernel-doc:: drivers/cxl/mem.c | ||
:doc: cxl mem | ||
|
||
.. kernel-doc:: drivers/cxl/mem.c | ||
:internal: | ||
|
||
CXL Bus | ||
------- | ||
.. kernel-doc:: drivers/cxl/bus.c | ||
:doc: cxl bus | ||
|
||
External Interfaces | ||
=================== | ||
|
||
CXL IOCTL Interface | ||
------------------- | ||
|
||
.. kernel-doc:: include/uapi/linux/cxl_mem.h | ||
:doc: UAPI | ||
|
||
.. kernel-doc:: include/uapi/linux/cxl_mem.h | ||
:internal: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ available subsections can be seen below. | |
usb/index | ||
firewire | ||
pci/index | ||
cxl/index | ||
spi | ||
i2c | ||
ipmb | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -353,6 +353,7 @@ Code Seq# Include File Comments | |
<mailto:[email protected]> | ||
0xCC 00-0F drivers/misc/ibmvmc.h pseries VMC driver | ||
0xCD 01 linux/reiserfs_fs.h | ||
0xCE 01-02 uapi/linux/cxl_mem.h Compute Express Link Memory Devices | ||
0xCF 02 fs/cifs/ioctl.c | ||
0xDB 00-0F drivers/char/mwave/mwavepub.h | ||
0xDD 00-3F ZFCP device driver see drivers/s390/scsi/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4434,6 +4434,17 @@ M: Miguel Ojeda <[email protected]> | |
S: Maintained | ||
F: include/linux/compiler_attributes.h | ||
|
||
COMPUTE EXPRESS LINK (CXL) | ||
M: Alison Schofield <[email protected]> | ||
M: Vishal Verma <[email protected]> | ||
M: Ira Weiny <[email protected]> | ||
M: Ben Widawsky <[email protected]> | ||
M: Dan Williams <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/cxl/ | ||
F: include/uapi/linux/cxl_mem.h | ||
|
||
CONEXANT ACCESSRUNNER USB DRIVER | ||
L: [email protected] | ||
S: Orphan | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
menuconfig CXL_BUS | ||
tristate "CXL (Compute Express Link) Devices Support" | ||
depends on PCI | ||
help | ||
CXL is a bus that is electrically compatible with PCI Express, but | ||
layers three protocols on that signalling (CXL.io, CXL.cache, and | ||
CXL.mem). The CXL.cache protocol allows devices to hold cachelines | ||
locally, the CXL.mem protocol allows devices to be fully coherent | ||
memory targets, the CXL.io protocol is equivalent to PCI Express. | ||
Say 'y' to enable support for the configuration and management of | ||
devices supporting these protocols. | ||
|
||
if CXL_BUS | ||
|
||
config CXL_MEM | ||
tristate "CXL.mem: Memory Devices" | ||
help | ||
The CXL.mem protocol allows a device to act as a provider of | ||
"System RAM" and/or "Persistent Memory" that is fully coherent | ||
as if the memory was attached to the typical CPU memory | ||
controller. | ||
|
||
Say 'y/m' to enable a driver (named "cxl_mem.ko" when built as | ||
a module) that will attach to CXL.mem devices for | ||
configuration, provisioning, and health monitoring. This | ||
driver is required for dynamic provisioning of CXL.mem | ||
attached memory which is a prerequisite for persistent memory | ||
support. Typically volatile memory is mapped by platform | ||
firmware and included in the platform memory map, but in some | ||
cases the OS is responsible for mapping that memory. See | ||
Chapter 2.3 Type 3 CXL Device in the CXL 2.0 specification. | ||
|
||
If unsure say 'm'. | ||
|
||
config CXL_MEM_RAW_COMMANDS | ||
bool "RAW Command Interface for Memory Devices" | ||
depends on CXL_MEM | ||
help | ||
Enable CXL RAW command interface. | ||
|
||
The CXL driver ioctl interface may assign a kernel ioctl command | ||
number for each specification defined opcode. At any given point in | ||
time the number of opcodes that the specification defines and a device | ||
may implement may exceed the kernel's set of associated ioctl function | ||
numbers. The mismatch is either by omission, specification is too new, | ||
or by design. When prototyping new hardware, or developing / debugging | ||
the driver it is useful to be able to submit any possible command to | ||
the hardware, even commands that may crash the kernel due to their | ||
potential impact to memory currently in use by the kernel. | ||
|
||
If developing CXL hardware or the driver say Y, otherwise say N. | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
obj-$(CONFIG_CXL_BUS) += cxl_bus.o | ||
obj-$(CONFIG_CXL_MEM) += cxl_mem.o | ||
|
||
ccflags-y += -DDEFAULT_SYMBOL_NAMESPACE=CXL | ||
cxl_bus-y := bus.o | ||
cxl_mem-y := mem.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
/* Copyright(c) 2020 Intel Corporation. All rights reserved. */ | ||
#include <linux/device.h> | ||
#include <linux/module.h> | ||
|
||
/** | ||
* DOC: cxl bus | ||
* | ||
* The CXL bus provides namespace for control devices and a rendezvous | ||
* point for cross-device interleave coordination. | ||
*/ | ||
struct bus_type cxl_bus_type = { | ||
.name = "cxl", | ||
}; | ||
EXPORT_SYMBOL_GPL(cxl_bus_type); | ||
|
||
static __init int cxl_bus_init(void) | ||
{ | ||
return bus_register(&cxl_bus_type); | ||
} | ||
|
||
static void cxl_bus_exit(void) | ||
{ | ||
bus_unregister(&cxl_bus_type); | ||
} | ||
|
||
module_init(cxl_bus_init); | ||
module_exit(cxl_bus_exit); | ||
MODULE_LICENSE("GPL v2"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-only */ | ||
/* Copyright(c) 2020 Intel Corporation. */ | ||
|
||
#ifndef __CXL_H__ | ||
#define __CXL_H__ | ||
|
||
#include <linux/bitfield.h> | ||
#include <linux/bitops.h> | ||
#include <linux/io.h> | ||
|
||
/* CXL 2.0 8.2.8.1 Device Capabilities Array Register */ | ||
#define CXLDEV_CAP_ARRAY_OFFSET 0x0 | ||
#define CXLDEV_CAP_ARRAY_CAP_ID 0 | ||
#define CXLDEV_CAP_ARRAY_ID_MASK GENMASK_ULL(15, 0) | ||
#define CXLDEV_CAP_ARRAY_COUNT_MASK GENMASK_ULL(47, 32) | ||
/* CXL 2.0 8.2.8.2 CXL Device Capability Header Register */ | ||
#define CXLDEV_CAP_HDR_CAP_ID_MASK GENMASK(15, 0) | ||
/* CXL 2.0 8.2.8.2.1 CXL Device Capabilities */ | ||
#define CXLDEV_CAP_CAP_ID_DEVICE_STATUS 0x1 | ||
#define CXLDEV_CAP_CAP_ID_PRIMARY_MAILBOX 0x2 | ||
#define CXLDEV_CAP_CAP_ID_SECONDARY_MAILBOX 0x3 | ||
#define CXLDEV_CAP_CAP_ID_MEMDEV 0x4000 | ||
|
||
/* CXL 2.0 8.2.8.4 Mailbox Registers */ | ||
#define CXLDEV_MBOX_CAPS_OFFSET 0x00 | ||
#define CXLDEV_MBOX_CAP_PAYLOAD_SIZE_MASK GENMASK(4, 0) | ||
#define CXLDEV_MBOX_CTRL_OFFSET 0x04 | ||
#define CXLDEV_MBOX_CTRL_DOORBELL BIT(0) | ||
#define CXLDEV_MBOX_CMD_OFFSET 0x08 | ||
#define CXLDEV_MBOX_CMD_COMMAND_OPCODE_MASK GENMASK_ULL(15, 0) | ||
#define CXLDEV_MBOX_CMD_PAYLOAD_LENGTH_MASK GENMASK_ULL(36, 16) | ||
#define CXLDEV_MBOX_STATUS_OFFSET 0x10 | ||
#define CXLDEV_MBOX_STATUS_RET_CODE_MASK GENMASK_ULL(47, 32) | ||
#define CXLDEV_MBOX_BG_CMD_STATUS_OFFSET 0x18 | ||
#define CXLDEV_MBOX_PAYLOAD_OFFSET 0x20 | ||
|
||
/* CXL 2.0 8.2.8.5.1.1 Memory Device Status Register */ | ||
#define CXLMDEV_STATUS_OFFSET 0x0 | ||
#define CXLMDEV_DEV_FATAL BIT(0) | ||
#define CXLMDEV_FW_HALT BIT(1) | ||
#define CXLMDEV_STATUS_MEDIA_STATUS_MASK GENMASK(3, 2) | ||
#define CXLMDEV_MS_NOT_READY 0 | ||
#define CXLMDEV_MS_READY 1 | ||
#define CXLMDEV_MS_ERROR 2 | ||
#define CXLMDEV_MS_DISABLED 3 | ||
#define CXLMDEV_READY(status) \ | ||
(FIELD_GET(CXLMDEV_STATUS_MEDIA_STATUS_MASK, status) == \ | ||
CXLMDEV_MS_READY) | ||
#define CXLMDEV_MBOX_IF_READY BIT(4) | ||
#define CXLMDEV_RESET_NEEDED_MASK GENMASK(7, 5) | ||
#define CXLMDEV_RESET_NEEDED_NOT 0 | ||
#define CXLMDEV_RESET_NEEDED_COLD 1 | ||
#define CXLMDEV_RESET_NEEDED_WARM 2 | ||
#define CXLMDEV_RESET_NEEDED_HOT 3 | ||
#define CXLMDEV_RESET_NEEDED_CXL 4 | ||
#define CXLMDEV_RESET_NEEDED(status) \ | ||
(FIELD_GET(CXLMDEV_RESET_NEEDED_MASK, status) != \ | ||
CXLMDEV_RESET_NEEDED_NOT) | ||
|
||
struct cxl_memdev; | ||
/** | ||
* struct cxl_mem - A CXL memory device | ||
* @pdev: The PCI device associated with this CXL device. | ||
* @regs: IO mappings to the device's MMIO | ||
* @status_regs: CXL 2.0 8.2.8.3 Device Status Registers | ||
* @mbox_regs: CXL 2.0 8.2.8.4 Mailbox Registers | ||
* @memdev_regs: CXL 2.0 8.2.8.5 Memory Device Registers | ||
* @payload_size: Size of space for payload | ||
* (CXL 2.0 8.2.8.4.3 Mailbox Capabilities Register) | ||
* @mbox_mutex: Mutex to synchronize mailbox access. | ||
* @firmware_version: Firmware version for the memory device. | ||
* @enabled_commands: Hardware commands found enabled in CEL. | ||
* @pmem_range: Persistent memory capacity information. | ||
* @ram_range: Volatile memory capacity information. | ||
*/ | ||
struct cxl_mem { | ||
struct pci_dev *pdev; | ||
void __iomem *regs; | ||
struct cxl_memdev *cxlmd; | ||
|
||
void __iomem *status_regs; | ||
void __iomem *mbox_regs; | ||
void __iomem *memdev_regs; | ||
|
||
size_t payload_size; | ||
struct mutex mbox_mutex; /* Protects device mailbox and firmware */ | ||
char firmware_version[0x10]; | ||
unsigned long *enabled_cmds; | ||
|
||
struct range pmem_range; | ||
struct range ram_range; | ||
}; | ||
|
||
extern struct bus_type cxl_bus_type; | ||
#endif /* __CXL_H__ */ |
Oops, something went wrong.