1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright(c) 2020 Intel Corporation. All rights reserved. */
3 #include <uapi/linux/cxl_mem.h>
4 #include <linux/security.h>
5 #include <linux/debugfs.h>
6 #include <linux/module.h>
7 #include <linux/mutex.h>
8 #include <linux/cdev.h>
10 #include <linux/pci.h>
12 #include <linux/io-64-nonatomic-lo-hi.h>
19 * This implements a CXL memory device ("type-3") as it is defined by the
20 * Compute Express Link specification.
22 * The driver has several responsibilities, mainly:
23 * - Create the memX device and register on the CXL bus.
24 * - Enumerate device's register interface and map them.
25 * - Probe the device attributes to establish sysfs interface.
26 * - Provide an IOCTL interface to userspace to communicate with the device for
27 * things like firmware update.
28 * - Support management of interleave sets.
29 * - Handle and manage error conditions.
33 * An entire PCI topology full of devices should be enough for any
36 #define CXL_MEM_MAX_DEVS 65536
38 #define cxl_doorbell_busy(cxlm) \
39 (readl((cxlm)->mbox_regs + CXLDEV_MBOX_CTRL_OFFSET) & \
40 CXLDEV_MBOX_CTRL_DOORBELL)
42 /* CXL 2.0 - 8.2.8.4 */
43 #define CXL_MAILBOX_TIMEOUT_MS (2 * HZ)
46 CXL_MBOX_OP_INVALID = 0x0000,
47 CXL_MBOX_OP_RAW = CXL_MBOX_OP_INVALID,
48 CXL_MBOX_OP_GET_FW_INFO = 0x0200,
49 CXL_MBOX_OP_ACTIVATE_FW = 0x0202,
50 CXL_MBOX_OP_GET_SUPPORTED_LOGS = 0x0400,
51 CXL_MBOX_OP_GET_LOG = 0x0401,
52 CXL_MBOX_OP_IDENTIFY = 0x4000,
53 CXL_MBOX_OP_GET_PARTITION_INFO = 0x4100,
54 CXL_MBOX_OP_SET_PARTITION_INFO = 0x4101,
55 CXL_MBOX_OP_GET_LSA = 0x4102,
56 CXL_MBOX_OP_SET_LSA = 0x4103,
57 CXL_MBOX_OP_GET_HEALTH_INFO = 0x4200,
58 CXL_MBOX_OP_SET_SHUTDOWN_STATE = 0x4204,
59 CXL_MBOX_OP_SCAN_MEDIA = 0x4304,
60 CXL_MBOX_OP_GET_SCAN_MEDIA = 0x4305,
61 CXL_MBOX_OP_MAX = 0x10000
65 * struct mbox_cmd - A command to be submitted to hardware.
66 * @opcode: (input) The command set and command submitted to hardware.
67 * @payload_in: (input) Pointer to the input payload.
68 * @payload_out: (output) Pointer to the output payload. Must be allocated by
70 * @size_in: (input) Number of bytes to load from @payload_in.
71 * @size_out: (input) Max number of bytes loaded into @payload_out.
72 * (output) Number of bytes generated by the device. For fixed size
73 * outputs commands this is always expected to be deterministic. For
74 * variable sized output commands, it tells the exact number of bytes
76 * @return_code: (output) Error code returned from hardware.
78 * This is the primary mechanism used to send commands to the hardware.
79 * All the fields except @payload_* correspond exactly to the fields described in
80 * Command Register section of the CXL 2.0 8.2.8.4.5. @payload_in and
81 * @payload_out are written to, and read from the Command Payload Registers
82 * defined in CXL 2.0 8.2.8.4.8.
91 #define CXL_MBOX_SUCCESS 0
95 * struct cxl_memdev - CXL bus object representing a Type-3 Memory Device
96 * @dev: driver core device object
97 * @cdev: char dev core object for ioctl operations
98 * @cxlm: pointer to the parent device driver data
99 * @ops_active: active user of @cxlm in ops handlers
100 * @ops_dead: completion when all @cxlm ops users have exited
101 * @id: id number of this memdev instance.
106 struct cxl_mem *cxlm;
107 struct percpu_ref ops_active;
108 struct completion ops_dead;
112 static int cxl_mem_major;
113 static DEFINE_IDA(cxl_memdev_ida);
114 static struct dentry *cxl_debugfs;
115 static bool cxl_raw_allow_all;
122 /* See CXL 2.0 Table 170. Get Log Input Payload */
123 static const uuid_t log_uuid[] = {
124 [CEL_UUID] = UUID_INIT(0xda9c0b5, 0xbf41, 0x4b78, 0x8f, 0x79, 0x96,
125 0xb1, 0x62, 0x3b, 0x3f, 0x17),
126 [VENDOR_DEBUG_UUID] = UUID_INIT(0xe1819d9, 0x11a9, 0x400c, 0x81, 0x1f,
127 0xd6, 0x07, 0x19, 0x40, 0x3d, 0x86),
131 * struct cxl_mem_command - Driver representation of a memory device command
132 * @info: Command information as it exists for the UAPI
133 * @opcode: The actual bits used for the mailbox protocol
134 * @flags: Set of flags effecting driver behavior.
136 * * %CXL_CMD_FLAG_FORCE_ENABLE: In cases of error, commands with this flag
137 * will be enabled by the driver regardless of what hardware may have
140 * The cxl_mem_command is the driver's internal representation of commands that
141 * are supported by the driver. Some of these commands may not be supported by
142 * the hardware. The driver will use @info to validate the fields passed in by
143 * the user then submit the @opcode to the hardware.
145 * See struct cxl_command_info.
147 struct cxl_mem_command {
148 struct cxl_command_info info;
151 #define CXL_CMD_FLAG_NONE 0
152 #define CXL_CMD_FLAG_FORCE_ENABLE BIT(0)
155 #define CXL_CMD(_id, sin, sout, _flags) \
156 [CXL_MEM_COMMAND_ID_##_id] = { \
158 .id = CXL_MEM_COMMAND_ID_##_id, \
162 .opcode = CXL_MBOX_OP_##_id, \
167 * This table defines the supported mailbox commands for the driver. This table
168 * is made up of a UAPI structure. Non-negative values as parameters in the
169 * table will be validated against the user's input. For example, if size_in is
170 * 0, and the user passed in 1, it is an error.
172 static struct cxl_mem_command mem_commands[] = {
173 CXL_CMD(IDENTIFY, 0, 0x43, CXL_CMD_FLAG_FORCE_ENABLE),
174 #ifdef CONFIG_CXL_MEM_RAW_COMMANDS
175 CXL_CMD(RAW, ~0, ~0, 0),
177 CXL_CMD(GET_SUPPORTED_LOGS, 0, ~0, CXL_CMD_FLAG_FORCE_ENABLE),
178 CXL_CMD(GET_FW_INFO, 0, 0x50, 0),
179 CXL_CMD(GET_PARTITION_INFO, 0, 0x20, 0),
180 CXL_CMD(GET_LSA, 0x8, ~0, 0),
181 CXL_CMD(GET_HEALTH_INFO, 0, 0x12, 0),
182 CXL_CMD(GET_LOG, 0x18, ~0, CXL_CMD_FLAG_FORCE_ENABLE),
186 * Commands that RAW doesn't permit. The rationale for each:
188 * CXL_MBOX_OP_ACTIVATE_FW: Firmware activation requires adjustment /
189 * coordination of transaction timeout values at the root bridge level.
191 * CXL_MBOX_OP_SET_PARTITION_INFO: The device memory map may change live
192 * and needs to be coordinated with HDM updates.
194 * CXL_MBOX_OP_SET_LSA: The label storage area may be cached by the
195 * driver and any writes from userspace invalidates those contents.
197 * CXL_MBOX_OP_SET_SHUTDOWN_STATE: Set shutdown state assumes no writes
198 * to the device after it is marked clean, userspace can not make that
201 * CXL_MBOX_OP_[GET_]SCAN_MEDIA: The kernel provides a native error list that
202 * is kept up to date with patrol notifications and error management.
204 static u16 cxl_disabled_raw_commands[] = {
205 CXL_MBOX_OP_ACTIVATE_FW,
206 CXL_MBOX_OP_SET_PARTITION_INFO,
208 CXL_MBOX_OP_SET_SHUTDOWN_STATE,
209 CXL_MBOX_OP_SCAN_MEDIA,
210 CXL_MBOX_OP_GET_SCAN_MEDIA,
214 * Command sets that RAW doesn't permit. All opcodes in this set are
215 * disabled because they pass plain text security payloads over the
216 * user/kernel boundary. This functionality is intended to be wrapped
217 * behind the keys ABI which allows for encrypted payloads in the UAPI
219 static u8 security_command_sets[] = {
221 0x45, /* Persistent Memory Data-at-rest Security */
222 0x46, /* Security Passthrough */
225 #define cxl_for_each_cmd(cmd) \
226 for ((cmd) = &mem_commands[0]; \
227 ((cmd) - mem_commands) < ARRAY_SIZE(mem_commands); (cmd)++)
229 #define cxl_cmd_count ARRAY_SIZE(mem_commands)
231 static int cxl_mem_wait_for_doorbell(struct cxl_mem *cxlm)
233 const unsigned long start = jiffies;
234 unsigned long end = start;
236 while (cxl_doorbell_busy(cxlm)) {
239 if (time_after(end, start + CXL_MAILBOX_TIMEOUT_MS)) {
240 /* Check again in case preempted before timeout test */
241 if (!cxl_doorbell_busy(cxlm))
248 dev_dbg(&cxlm->pdev->dev, "Doorbell wait took %dms",
249 jiffies_to_msecs(end) - jiffies_to_msecs(start));
253 static bool cxl_is_security_command(u16 opcode)
257 for (i = 0; i < ARRAY_SIZE(security_command_sets); i++)
258 if (security_command_sets[i] == (opcode >> 8))
263 static void cxl_mem_mbox_timeout(struct cxl_mem *cxlm,
264 struct mbox_cmd *mbox_cmd)
266 struct device *dev = &cxlm->pdev->dev;
268 dev_dbg(dev, "Mailbox command (opcode: %#x size: %zub) timed out\n",
269 mbox_cmd->opcode, mbox_cmd->size_in);
273 * __cxl_mem_mbox_send_cmd() - Execute a mailbox command
274 * @cxlm: The CXL memory device to communicate with.
275 * @mbox_cmd: Command to send to the memory device.
277 * Context: Any context. Expects mbox_mutex to be held.
278 * Return: -ETIMEDOUT if timeout occurred waiting for completion. 0 on success.
279 * Caller should check the return code in @mbox_cmd to make sure it
282 * This is a generic form of the CXL mailbox send command thus only using the
283 * registers defined by the mailbox capability ID - CXL 2.0 8.2.8.4. Memory
284 * devices, and perhaps other types of CXL devices may have further information
285 * available upon error conditions. Driver facilities wishing to send mailbox
286 * commands should use the wrapper command.
288 * The CXL spec allows for up to two mailboxes. The intention is for the primary
289 * mailbox to be OS controlled and the secondary mailbox to be used by system
290 * firmware. This allows the OS and firmware to communicate with the device and
291 * not need to coordinate with each other. The driver only uses the primary
294 static int __cxl_mem_mbox_send_cmd(struct cxl_mem *cxlm,
295 struct mbox_cmd *mbox_cmd)
297 void __iomem *payload = cxlm->mbox_regs + CXLDEV_MBOX_PAYLOAD_OFFSET;
298 u64 cmd_reg, status_reg;
302 lockdep_assert_held(&cxlm->mbox_mutex);
305 * Here are the steps from 8.2.8.4 of the CXL 2.0 spec.
306 * 1. Caller reads MB Control Register to verify doorbell is clear
307 * 2. Caller writes Command Register
308 * 3. Caller writes Command Payload Registers if input payload is non-empty
309 * 4. Caller writes MB Control Register to set doorbell
310 * 5. Caller either polls for doorbell to be clear or waits for interrupt if configured
311 * 6. Caller reads MB Status Register to fetch Return code
312 * 7. If command successful, Caller reads Command Register to get Payload Length
313 * 8. If output payload is non-empty, host reads Command Payload Registers
315 * Hardware is free to do whatever it wants before the doorbell is rung,
316 * and isn't allowed to change anything after it clears the doorbell. As
317 * such, steps 2 and 3 can happen in any order, and steps 6, 7, 8 can
318 * also happen in any order (though some orders might not make sense).
322 if (cxl_doorbell_busy(cxlm)) {
323 dev_err_ratelimited(&cxlm->pdev->dev,
324 "Mailbox re-busy after acquiring\n");
328 cmd_reg = FIELD_PREP(CXLDEV_MBOX_CMD_COMMAND_OPCODE_MASK,
330 if (mbox_cmd->size_in) {
331 if (WARN_ON(!mbox_cmd->payload_in))
334 cmd_reg |= FIELD_PREP(CXLDEV_MBOX_CMD_PAYLOAD_LENGTH_MASK,
336 memcpy_toio(payload, mbox_cmd->payload_in, mbox_cmd->size_in);
340 writeq(cmd_reg, cxlm->mbox_regs + CXLDEV_MBOX_CMD_OFFSET);
343 dev_dbg(&cxlm->pdev->dev, "Sending command\n");
344 writel(CXLDEV_MBOX_CTRL_DOORBELL,
345 cxlm->mbox_regs + CXLDEV_MBOX_CTRL_OFFSET);
348 rc = cxl_mem_wait_for_doorbell(cxlm);
349 if (rc == -ETIMEDOUT) {
350 cxl_mem_mbox_timeout(cxlm, mbox_cmd);
355 status_reg = readq(cxlm->mbox_regs + CXLDEV_MBOX_STATUS_OFFSET);
356 mbox_cmd->return_code =
357 FIELD_GET(CXLDEV_MBOX_STATUS_RET_CODE_MASK, status_reg);
359 if (mbox_cmd->return_code != 0) {
360 dev_dbg(&cxlm->pdev->dev, "Mailbox operation had an error\n");
365 cmd_reg = readq(cxlm->mbox_regs + CXLDEV_MBOX_CMD_OFFSET);
366 out_len = FIELD_GET(CXLDEV_MBOX_CMD_PAYLOAD_LENGTH_MASK, cmd_reg);
369 if (out_len && mbox_cmd->payload_out) {
371 * Sanitize the copy. If hardware misbehaves, out_len per the
372 * spec can actually be greater than the max allowed size (21
373 * bits available but spec defined 1M max). The caller also may
374 * have requested less data than the hardware supplied even
377 size_t n = min3(mbox_cmd->size_out, cxlm->payload_size, out_len);
379 memcpy_fromio(mbox_cmd->payload_out, payload, n);
380 mbox_cmd->size_out = n;
382 mbox_cmd->size_out = 0;
389 * cxl_mem_mbox_get() - Acquire exclusive access to the mailbox.
390 * @cxlm: The memory device to gain access to.
392 * Context: Any context. Takes the mbox_mutex.
393 * Return: 0 if exclusive access was acquired.
395 static int cxl_mem_mbox_get(struct cxl_mem *cxlm)
397 struct device *dev = &cxlm->pdev->dev;
401 mutex_lock_io(&cxlm->mbox_mutex);
404 * XXX: There is some amount of ambiguity in the 2.0 version of the spec
405 * around the mailbox interface ready (8.2.8.5.1.1). The purpose of the
406 * bit is to allow firmware running on the device to notify the driver
407 * that it's ready to receive commands. It is unclear if the bit needs
408 * to be read for each transaction mailbox, ie. the firmware can switch
409 * it on and off as needed. Second, there is no defined timeout for
410 * mailbox ready, like there is for the doorbell interface.
413 * 1. The firmware might toggle the Mailbox Interface Ready bit, check
414 * it for every command.
416 * 2. If the doorbell is clear, the firmware should have first set the
417 * Mailbox Interface Ready bit. Therefore, waiting for the doorbell
418 * to be ready is sufficient.
420 rc = cxl_mem_wait_for_doorbell(cxlm);
422 dev_warn(dev, "Mailbox interface not ready\n");
426 md_status = readq(cxlm->memdev_regs + CXLMDEV_STATUS_OFFSET);
427 if (!(md_status & CXLMDEV_MBOX_IF_READY && CXLMDEV_READY(md_status))) {
428 dev_err(dev, "mbox: reported doorbell ready, but not mbox ready\n");
434 * Hardware shouldn't allow a ready status but also have failure bits
435 * set. Spit out an error, this should be a bug report
438 if (md_status & CXLMDEV_DEV_FATAL) {
439 dev_err(dev, "mbox: reported ready, but fatal\n");
442 if (md_status & CXLMDEV_FW_HALT) {
443 dev_err(dev, "mbox: reported ready, but halted\n");
446 if (CXLMDEV_RESET_NEEDED(md_status)) {
447 dev_err(dev, "mbox: reported ready, but reset needed\n");
455 mutex_unlock(&cxlm->mbox_mutex);
460 * cxl_mem_mbox_put() - Release exclusive access to the mailbox.
461 * @cxlm: The CXL memory device to communicate with.
463 * Context: Any context. Expects mbox_mutex to be held.
465 static void cxl_mem_mbox_put(struct cxl_mem *cxlm)
467 mutex_unlock(&cxlm->mbox_mutex);
471 * handle_mailbox_cmd_from_user() - Dispatch a mailbox command for userspace.
472 * @cxlm: The CXL memory device to communicate with.
473 * @cmd: The validated command.
474 * @in_payload: Pointer to userspace's input payload.
475 * @out_payload: Pointer to userspace's output payload.
476 * @size_out: (Input) Max payload size to copy out.
477 * (Output) Payload size hardware generated.
478 * @retval: Hardware generated return code from the operation.
481 * * %0 - Mailbox transaction succeeded. This implies the mailbox
482 * protocol completed successfully not that the operation itself
484 * * %-ENOMEM - Couldn't allocate a bounce buffer.
485 * * %-EFAULT - Something happened with copy_to/from_user.
486 * * %-EINTR - Mailbox acquisition interrupted.
487 * * %-EXXX - Transaction level failures.
489 * Creates the appropriate mailbox command and dispatches it on behalf of a
490 * userspace request. The input and output payloads are copied between
493 * See cxl_send_cmd().
495 static int handle_mailbox_cmd_from_user(struct cxl_mem *cxlm,
496 const struct cxl_mem_command *cmd,
497 u64 in_payload, u64 out_payload,
498 s32 *size_out, u32 *retval)
500 struct device *dev = &cxlm->pdev->dev;
501 struct mbox_cmd mbox_cmd = {
502 .opcode = cmd->opcode,
503 .size_in = cmd->info.size_in,
504 .size_out = cmd->info.size_out,
508 if (cmd->info.size_out) {
509 mbox_cmd.payload_out = kvzalloc(cmd->info.size_out, GFP_KERNEL);
510 if (!mbox_cmd.payload_out)
514 if (cmd->info.size_in) {
515 mbox_cmd.payload_in = vmemdup_user(u64_to_user_ptr(in_payload),
517 if (IS_ERR(mbox_cmd.payload_in))
518 return PTR_ERR(mbox_cmd.payload_in);
521 rc = cxl_mem_mbox_get(cxlm);
526 "Submitting %s command for user\n"
529 cxl_command_names[cmd->info.id].name, mbox_cmd.opcode,
532 dev_WARN_ONCE(dev, cmd->info.id == CXL_MEM_COMMAND_ID_RAW,
533 "raw command path used\n");
535 rc = __cxl_mem_mbox_send_cmd(cxlm, &mbox_cmd);
536 cxl_mem_mbox_put(cxlm);
541 * @size_out contains the max size that's allowed to be written back out
542 * to userspace. While the payload may have written more output than
543 * this it will have to be ignored.
545 if (mbox_cmd.size_out) {
546 dev_WARN_ONCE(dev, mbox_cmd.size_out > *size_out,
547 "Invalid return size\n");
548 if (copy_to_user(u64_to_user_ptr(out_payload),
549 mbox_cmd.payload_out, mbox_cmd.size_out)) {
555 *size_out = mbox_cmd.size_out;
556 *retval = mbox_cmd.return_code;
559 kvfree(mbox_cmd.payload_in);
560 kvfree(mbox_cmd.payload_out);
564 static bool cxl_mem_raw_command_allowed(u16 opcode)
568 if (!IS_ENABLED(CONFIG_CXL_MEM_RAW_COMMANDS))
571 if (security_locked_down(LOCKDOWN_NONE))
574 if (cxl_raw_allow_all)
577 if (cxl_is_security_command(opcode))
580 for (i = 0; i < ARRAY_SIZE(cxl_disabled_raw_commands); i++)
581 if (cxl_disabled_raw_commands[i] == opcode)
588 * cxl_validate_cmd_from_user() - Check fields for CXL_MEM_SEND_COMMAND.
589 * @cxlm: &struct cxl_mem device whose mailbox will be used.
590 * @send_cmd: &struct cxl_send_command copied in from userspace.
591 * @out_cmd: Sanitized and populated &struct cxl_mem_command.
594 * * %0 - @out_cmd is ready to send.
595 * * %-ENOTTY - Invalid command specified.
596 * * %-EINVAL - Reserved fields or invalid values were used.
597 * * %-ENOMEM - Input or output buffer wasn't sized properly.
598 * * %-EPERM - Attempted to use a protected command.
600 * The result of this command is a fully validated command in @out_cmd that is
601 * safe to send to the hardware.
603 * See handle_mailbox_cmd_from_user()
605 static int cxl_validate_cmd_from_user(struct cxl_mem *cxlm,
606 const struct cxl_send_command *send_cmd,
607 struct cxl_mem_command *out_cmd)
609 const struct cxl_command_info *info;
610 struct cxl_mem_command *c;
612 if (send_cmd->id == 0 || send_cmd->id >= CXL_MEM_COMMAND_ID_MAX)
616 * The user can never specify an input payload larger than what hardware
617 * supports, but output can be arbitrarily large (simply write out as
618 * much data as the hardware provides).
620 if (send_cmd->in.size > cxlm->payload_size)
624 * Checks are bypassed for raw commands but a WARN/taint will occur
625 * later in the callchain
627 if (send_cmd->id == CXL_MEM_COMMAND_ID_RAW) {
628 const struct cxl_mem_command temp = {
630 .id = CXL_MEM_COMMAND_ID_RAW,
632 .size_in = send_cmd->in.size,
633 .size_out = send_cmd->out.size,
635 .opcode = send_cmd->raw.opcode
638 if (send_cmd->raw.rsvd)
642 * Unlike supported commands, the output size of RAW commands
643 * gets passed along without further checking, so it must be
646 if (send_cmd->out.size > cxlm->payload_size)
649 if (!cxl_mem_raw_command_allowed(send_cmd->raw.opcode))
652 memcpy(out_cmd, &temp, sizeof(temp));
657 if (send_cmd->flags & ~CXL_MEM_COMMAND_FLAG_MASK)
663 if (send_cmd->in.rsvd || send_cmd->out.rsvd)
666 /* Convert user's command into the internal representation */
667 c = &mem_commands[send_cmd->id];
670 /* Check that the command is enabled for hardware */
671 if (!test_bit(info->id, cxlm->enabled_cmds))
674 /* Check the input buffer is the expected size */
675 if (info->size_in >= 0 && info->size_in != send_cmd->in.size)
678 /* Check the output buffer is at least large enough */
679 if (info->size_out >= 0 && send_cmd->out.size < info->size_out)
682 memcpy(out_cmd, c, sizeof(*c));
683 out_cmd->info.size_in = send_cmd->in.size;
685 * XXX: out_cmd->info.size_out will be controlled by the driver, and the
686 * specified number of bytes @send_cmd->out.size will be copied back out
693 static int cxl_query_cmd(struct cxl_memdev *cxlmd,
694 struct cxl_mem_query_commands __user *q)
696 struct device *dev = &cxlmd->dev;
697 struct cxl_mem_command *cmd;
701 dev_dbg(dev, "Query IOCTL\n");
703 if (get_user(n_commands, &q->n_commands))
706 /* returns the total number if 0 elements are requested. */
708 return put_user(cxl_cmd_count, &q->n_commands);
711 * otherwise, return max(n_commands, total commands) cxl_command_info
714 cxl_for_each_cmd(cmd) {
715 const struct cxl_command_info *info = &cmd->info;
717 if (copy_to_user(&q->commands[j++], info, sizeof(*info)))
727 static int cxl_send_cmd(struct cxl_memdev *cxlmd,
728 struct cxl_send_command __user *s)
730 struct cxl_mem *cxlm = cxlmd->cxlm;
731 struct device *dev = &cxlmd->dev;
732 struct cxl_send_command send;
733 struct cxl_mem_command c;
736 dev_dbg(dev, "Send IOCTL\n");
738 if (copy_from_user(&send, s, sizeof(send)))
741 rc = cxl_validate_cmd_from_user(cxlmd->cxlm, &send, &c);
745 /* Prepare to handle a full payload for variable sized output */
746 if (c.info.size_out < 0)
747 c.info.size_out = cxlm->payload_size;
749 rc = handle_mailbox_cmd_from_user(cxlm, &c, send.in.payload,
750 send.out.payload, &send.out.size,
755 if (copy_to_user(s, &send, sizeof(send)))
761 static long __cxl_memdev_ioctl(struct cxl_memdev *cxlmd, unsigned int cmd,
765 case CXL_MEM_QUERY_COMMANDS:
766 return cxl_query_cmd(cxlmd, (void __user *)arg);
767 case CXL_MEM_SEND_COMMAND:
768 return cxl_send_cmd(cxlmd, (void __user *)arg);
774 static long cxl_memdev_ioctl(struct file *file, unsigned int cmd,
777 struct cxl_memdev *cxlmd;
781 inode = file_inode(file);
782 cxlmd = container_of(inode->i_cdev, typeof(*cxlmd), cdev);
784 if (!percpu_ref_tryget_live(&cxlmd->ops_active))
787 rc = __cxl_memdev_ioctl(cxlmd, cmd, arg);
789 percpu_ref_put(&cxlmd->ops_active);
794 static const struct file_operations cxl_memdev_fops = {
795 .owner = THIS_MODULE,
796 .unlocked_ioctl = cxl_memdev_ioctl,
797 .compat_ioctl = compat_ptr_ioctl,
798 .llseek = noop_llseek,
801 static inline struct cxl_mem_command *cxl_mem_find_command(u16 opcode)
803 struct cxl_mem_command *c;
806 if (c->opcode == opcode)
813 * cxl_mem_mbox_send_cmd() - Send a mailbox command to a memory device.
814 * @cxlm: The CXL memory device to communicate with.
815 * @opcode: Opcode for the mailbox command.
816 * @in: The input payload for the mailbox command.
817 * @in_size: The length of the input payload
818 * @out: Caller allocated buffer for the output.
819 * @out_size: Expected size of output.
821 * Context: Any context. Will acquire and release mbox_mutex.
823 * * %>=0 - Number of bytes returned in @out.
824 * * %-E2BIG - Payload is too large for hardware.
825 * * %-EBUSY - Couldn't acquire exclusive mailbox access.
826 * * %-EFAULT - Hardware error occurred.
827 * * %-ENXIO - Command completed, but device reported an error.
828 * * %-EIO - Unexpected output size.
830 * Mailbox commands may execute successfully yet the device itself reported an
831 * error. While this distinction can be useful for commands from userspace, the
832 * kernel will only be able to use results when both are successful.
834 * See __cxl_mem_mbox_send_cmd()
836 static int cxl_mem_mbox_send_cmd(struct cxl_mem *cxlm, u16 opcode,
837 void *in, size_t in_size,
838 void *out, size_t out_size)
840 const struct cxl_mem_command *cmd = cxl_mem_find_command(opcode);
841 struct mbox_cmd mbox_cmd = {
845 .size_out = out_size,
850 if (out_size > cxlm->payload_size)
853 rc = cxl_mem_mbox_get(cxlm);
857 rc = __cxl_mem_mbox_send_cmd(cxlm, &mbox_cmd);
858 cxl_mem_mbox_put(cxlm);
862 /* TODO: Map return code to proper kernel style errno */
863 if (mbox_cmd.return_code != CXL_MBOX_SUCCESS)
867 * Variable sized commands can't be validated and so it's up to the
868 * caller to do that if they wish.
870 if (cmd->info.size_out >= 0 && mbox_cmd.size_out != out_size)
877 * cxl_mem_setup_regs() - Setup necessary MMIO.
878 * @cxlm: The CXL memory device to communicate with.
880 * Return: 0 if all necessary registers mapped.
882 * A memory device is required by spec to implement a certain set of MMIO
883 * regions. The purpose of this function is to enumerate and map those
886 static int cxl_mem_setup_regs(struct cxl_mem *cxlm)
888 struct device *dev = &cxlm->pdev->dev;
892 cap_array = readq(cxlm->regs + CXLDEV_CAP_ARRAY_OFFSET);
893 if (FIELD_GET(CXLDEV_CAP_ARRAY_ID_MASK, cap_array) !=
894 CXLDEV_CAP_ARRAY_CAP_ID)
897 cap_count = FIELD_GET(CXLDEV_CAP_ARRAY_COUNT_MASK, cap_array);
899 for (cap = 1; cap <= cap_count; cap++) {
900 void __iomem *register_block;
904 cap_id = FIELD_GET(CXLDEV_CAP_HDR_CAP_ID_MASK,
905 readl(cxlm->regs + cap * 0x10));
906 offset = readl(cxlm->regs + cap * 0x10 + 0x4);
907 register_block = cxlm->regs + offset;
910 case CXLDEV_CAP_CAP_ID_DEVICE_STATUS:
911 dev_dbg(dev, "found Status capability (0x%x)\n", offset);
912 cxlm->status_regs = register_block;
914 case CXLDEV_CAP_CAP_ID_PRIMARY_MAILBOX:
915 dev_dbg(dev, "found Mailbox capability (0x%x)\n", offset);
916 cxlm->mbox_regs = register_block;
918 case CXLDEV_CAP_CAP_ID_SECONDARY_MAILBOX:
919 dev_dbg(dev, "found Secondary Mailbox capability (0x%x)\n", offset);
921 case CXLDEV_CAP_CAP_ID_MEMDEV:
922 dev_dbg(dev, "found Memory Device capability (0x%x)\n", offset);
923 cxlm->memdev_regs = register_block;
926 dev_dbg(dev, "Unknown cap ID: %d (0x%x)\n", cap_id, offset);
931 if (!cxlm->status_regs || !cxlm->mbox_regs || !cxlm->memdev_regs) {
932 dev_err(dev, "registers not found: %s%s%s\n",
933 !cxlm->status_regs ? "status " : "",
934 !cxlm->mbox_regs ? "mbox " : "",
935 !cxlm->memdev_regs ? "memdev" : "");
942 static int cxl_mem_setup_mailbox(struct cxl_mem *cxlm)
944 const int cap = readl(cxlm->mbox_regs + CXLDEV_MBOX_CAPS_OFFSET);
947 1 << FIELD_GET(CXLDEV_MBOX_CAP_PAYLOAD_SIZE_MASK, cap);
950 * CXL 2.0 8.2.8.4.3 Mailbox Capabilities Register
952 * If the size is too small, mandatory commands will not work and so
953 * there's no point in going forward. If the size is too large, there's
954 * no harm is soft limiting it.
956 cxlm->payload_size = min_t(size_t, cxlm->payload_size, SZ_1M);
957 if (cxlm->payload_size < 256) {
958 dev_err(&cxlm->pdev->dev, "Mailbox is too small (%zub)",
963 dev_dbg(&cxlm->pdev->dev, "Mailbox payload sized %zu",
969 static struct cxl_mem *cxl_mem_create(struct pci_dev *pdev, u32 reg_lo,
972 struct device *dev = &pdev->dev;
973 struct cxl_mem *cxlm;
979 cxlm = devm_kzalloc(&pdev->dev, sizeof(*cxlm), GFP_KERNEL);
981 dev_err(dev, "No memory available\n");
985 offset = ((u64)reg_hi << 32) | FIELD_GET(CXL_REGLOC_ADDR_MASK, reg_lo);
986 bar = FIELD_GET(CXL_REGLOC_BIR_MASK, reg_lo);
988 /* Basic sanity check that BAR is big enough */
989 if (pci_resource_len(pdev, bar) < offset) {
990 dev_err(dev, "BAR%d: %pr: too small (offset: %#llx)\n", bar,
991 &pdev->resource[bar], (unsigned long long)offset);
995 rc = pcim_iomap_regions(pdev, BIT(bar), pci_name(pdev));
997 dev_err(dev, "failed to map registers\n");
1000 regs = pcim_iomap_table(pdev)[bar];
1002 mutex_init(&cxlm->mbox_mutex);
1004 cxlm->regs = regs + offset;
1005 cxlm->enabled_cmds =
1006 devm_kmalloc_array(dev, BITS_TO_LONGS(cxl_cmd_count),
1007 sizeof(unsigned long),
1008 GFP_KERNEL | __GFP_ZERO);
1009 if (!cxlm->enabled_cmds) {
1010 dev_err(dev, "No memory available for bitmap\n");
1014 dev_dbg(dev, "Mapped CXL Memory Device resource\n");
1018 static int cxl_mem_dvsec(struct pci_dev *pdev, int dvsec)
1022 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_DVSEC);
1029 pci_read_config_word(pdev, pos + PCI_DVSEC_HEADER1, &vendor);
1030 pci_read_config_word(pdev, pos + PCI_DVSEC_HEADER2, &id);
1031 if (vendor == PCI_DVSEC_VENDOR_ID_CXL && dvsec == id)
1034 pos = pci_find_next_ext_capability(pdev, pos,
1035 PCI_EXT_CAP_ID_DVSEC);
1041 static struct cxl_memdev *to_cxl_memdev(struct device *dev)
1043 return container_of(dev, struct cxl_memdev, dev);
1046 static void cxl_memdev_release(struct device *dev)
1048 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
1050 percpu_ref_exit(&cxlmd->ops_active);
1051 ida_free(&cxl_memdev_ida, cxlmd->id);
1055 static char *cxl_memdev_devnode(struct device *dev, umode_t *mode, kuid_t *uid,
1058 return kasprintf(GFP_KERNEL, "cxl/%s", dev_name(dev));
1061 static ssize_t firmware_version_show(struct device *dev,
1062 struct device_attribute *attr, char *buf)
1064 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
1065 struct cxl_mem *cxlm = cxlmd->cxlm;
1067 return sprintf(buf, "%.16s\n", cxlm->firmware_version);
1069 static DEVICE_ATTR_RO(firmware_version);
1071 static ssize_t payload_max_show(struct device *dev,
1072 struct device_attribute *attr, char *buf)
1074 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
1075 struct cxl_mem *cxlm = cxlmd->cxlm;
1077 return sprintf(buf, "%zu\n", cxlm->payload_size);
1079 static DEVICE_ATTR_RO(payload_max);
1081 static ssize_t ram_size_show(struct device *dev, struct device_attribute *attr,
1084 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
1085 struct cxl_mem *cxlm = cxlmd->cxlm;
1086 unsigned long long len = range_len(&cxlm->ram_range);
1088 return sprintf(buf, "%#llx\n", len);
1091 static struct device_attribute dev_attr_ram_size =
1092 __ATTR(size, 0444, ram_size_show, NULL);
1094 static ssize_t pmem_size_show(struct device *dev, struct device_attribute *attr,
1097 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
1098 struct cxl_mem *cxlm = cxlmd->cxlm;
1099 unsigned long long len = range_len(&cxlm->pmem_range);
1101 return sprintf(buf, "%#llx\n", len);
1104 static struct device_attribute dev_attr_pmem_size =
1105 __ATTR(size, 0444, pmem_size_show, NULL);
1107 static struct attribute *cxl_memdev_attributes[] = {
1108 &dev_attr_firmware_version.attr,
1109 &dev_attr_payload_max.attr,
1113 static struct attribute *cxl_memdev_pmem_attributes[] = {
1114 &dev_attr_pmem_size.attr,
1118 static struct attribute *cxl_memdev_ram_attributes[] = {
1119 &dev_attr_ram_size.attr,
1123 static struct attribute_group cxl_memdev_attribute_group = {
1124 .attrs = cxl_memdev_attributes,
1127 static struct attribute_group cxl_memdev_ram_attribute_group = {
1129 .attrs = cxl_memdev_ram_attributes,
1132 static struct attribute_group cxl_memdev_pmem_attribute_group = {
1134 .attrs = cxl_memdev_pmem_attributes,
1137 static const struct attribute_group *cxl_memdev_attribute_groups[] = {
1138 &cxl_memdev_attribute_group,
1139 &cxl_memdev_ram_attribute_group,
1140 &cxl_memdev_pmem_attribute_group,
1144 static const struct device_type cxl_memdev_type = {
1145 .name = "cxl_memdev",
1146 .release = cxl_memdev_release,
1147 .devnode = cxl_memdev_devnode,
1148 .groups = cxl_memdev_attribute_groups,
1151 static void cxlmdev_unregister(void *_cxlmd)
1153 struct cxl_memdev *cxlmd = _cxlmd;
1154 struct device *dev = &cxlmd->dev;
1156 percpu_ref_kill(&cxlmd->ops_active);
1157 cdev_device_del(&cxlmd->cdev, dev);
1158 wait_for_completion(&cxlmd->ops_dead);
1163 static void cxlmdev_ops_active_release(struct percpu_ref *ref)
1165 struct cxl_memdev *cxlmd =
1166 container_of(ref, typeof(*cxlmd), ops_active);
1168 complete(&cxlmd->ops_dead);
1171 static int cxl_mem_add_memdev(struct cxl_mem *cxlm)
1173 struct pci_dev *pdev = cxlm->pdev;
1174 struct cxl_memdev *cxlmd;
1179 cxlmd = kzalloc(sizeof(*cxlmd), GFP_KERNEL);
1182 init_completion(&cxlmd->ops_dead);
1185 * @cxlm is deallocated when the driver unbinds so operations
1186 * that are using it need to hold a live reference.
1189 rc = percpu_ref_init(&cxlmd->ops_active, cxlmdev_ops_active_release, 0,
1194 rc = ida_alloc_range(&cxl_memdev_ida, 0, CXL_MEM_MAX_DEVS, GFP_KERNEL);
1200 device_initialize(dev);
1201 dev->parent = &pdev->dev;
1202 dev->bus = &cxl_bus_type;
1203 dev->devt = MKDEV(cxl_mem_major, cxlmd->id);
1204 dev->type = &cxl_memdev_type;
1205 dev_set_name(dev, "mem%d", cxlmd->id);
1207 cdev = &cxlmd->cdev;
1208 cdev_init(cdev, &cxl_memdev_fops);
1210 rc = cdev_device_add(cdev, dev);
1214 return devm_add_action_or_reset(dev->parent, cxlmdev_unregister, cxlmd);
1217 ida_free(&cxl_memdev_ida, cxlmd->id);
1220 * Theoretically userspace could have already entered the fops,
1221 * so flush ops_active.
1223 percpu_ref_kill(&cxlmd->ops_active);
1224 wait_for_completion(&cxlmd->ops_dead);
1225 percpu_ref_exit(&cxlmd->ops_active);
1232 static int cxl_xfer_log(struct cxl_mem *cxlm, uuid_t *uuid, u32 size, u8 *out)
1234 u32 remaining = size;
1238 u32 xfer_size = min_t(u32, remaining, cxlm->payload_size);
1239 struct cxl_mbox_get_log {
1245 .offset = cpu_to_le32(offset),
1246 .length = cpu_to_le32(xfer_size)
1250 rc = cxl_mem_mbox_send_cmd(cxlm, CXL_MBOX_OP_GET_LOG, &log,
1251 sizeof(log), out, xfer_size);
1256 remaining -= xfer_size;
1257 offset += xfer_size;
1264 * cxl_walk_cel() - Walk through the Command Effects Log.
1266 * @size: Length of the Command Effects Log.
1269 * Iterate over each entry in the CEL and determine if the driver supports the
1270 * command. If so, the command is enabled for the device and can be used later.
1272 static void cxl_walk_cel(struct cxl_mem *cxlm, size_t size, u8 *cel)
1277 } __packed * cel_entry;
1278 const int cel_entries = size / sizeof(*cel_entry);
1281 cel_entry = (struct cel_entry *)cel;
1283 for (i = 0; i < cel_entries; i++) {
1284 u16 opcode = le16_to_cpu(cel_entry[i].opcode);
1285 struct cxl_mem_command *cmd = cxl_mem_find_command(opcode);
1288 dev_dbg(&cxlm->pdev->dev,
1289 "Opcode 0x%04x unsupported by driver", opcode);
1293 set_bit(cmd->info.id, cxlm->enabled_cmds);
1297 struct cxl_mbox_get_supported_logs {
1306 static struct cxl_mbox_get_supported_logs *cxl_get_gsl(struct cxl_mem *cxlm)
1308 struct cxl_mbox_get_supported_logs *ret;
1311 ret = kvmalloc(cxlm->payload_size, GFP_KERNEL);
1313 return ERR_PTR(-ENOMEM);
1315 rc = cxl_mem_mbox_send_cmd(cxlm, CXL_MBOX_OP_GET_SUPPORTED_LOGS, NULL,
1316 0, ret, cxlm->payload_size);
1326 * cxl_mem_enumerate_cmds() - Enumerate commands for a device.
1327 * @cxlm: The device.
1329 * Returns 0 if enumerate completed successfully.
1331 * CXL devices have optional support for certain commands. This function will
1332 * determine the set of supported commands for the hardware and update the
1333 * enabled_cmds bitmap in the @cxlm.
1335 static int cxl_mem_enumerate_cmds(struct cxl_mem *cxlm)
1337 struct cxl_mbox_get_supported_logs *gsl;
1338 struct device *dev = &cxlm->pdev->dev;
1339 struct cxl_mem_command *cmd;
1342 gsl = cxl_get_gsl(cxlm);
1344 return PTR_ERR(gsl);
1347 for (i = 0; i < le16_to_cpu(gsl->entries); i++) {
1348 u32 size = le32_to_cpu(gsl->entry[i].size);
1349 uuid_t uuid = gsl->entry[i].uuid;
1352 dev_dbg(dev, "Found LOG type %pU of size %d", &uuid, size);
1354 if (!uuid_equal(&uuid, &log_uuid[CEL_UUID]))
1357 log = kvmalloc(size, GFP_KERNEL);
1363 rc = cxl_xfer_log(cxlm, &uuid, size, log);
1369 cxl_walk_cel(cxlm, size, log);
1372 /* In case CEL was bogus, enable some default commands. */
1373 cxl_for_each_cmd(cmd)
1374 if (cmd->flags & CXL_CMD_FLAG_FORCE_ENABLE)
1375 set_bit(cmd->info.id, cxlm->enabled_cmds);
1377 /* Found the required CEL */
1387 * cxl_mem_identify() - Send the IDENTIFY command to the device.
1388 * @cxlm: The device to identify.
1390 * Return: 0 if identify was executed successfully.
1392 * This will dispatch the identify command to the device and on success populate
1393 * structures to be exported to sysfs.
1395 static int cxl_mem_identify(struct cxl_mem *cxlm)
1397 struct cxl_mbox_identify {
1398 char fw_revision[0x10];
1399 __le64 total_capacity;
1400 __le64 volatile_capacity;
1401 __le64 persistent_capacity;
1402 __le64 partition_align;
1403 __le16 info_event_log_size;
1404 __le16 warning_event_log_size;
1405 __le16 failure_event_log_size;
1406 __le16 fatal_event_log_size;
1408 u8 poison_list_max_mer[3];
1409 __le16 inject_poison_limit;
1411 u8 qos_telemetry_caps;
1415 rc = cxl_mem_mbox_send_cmd(cxlm, CXL_MBOX_OP_IDENTIFY, NULL, 0, &id,
1421 * TODO: enumerate DPA map, as 'ram' and 'pmem' do not alias.
1422 * For now, only the capacity is exported in sysfs
1424 cxlm->ram_range.start = 0;
1425 cxlm->ram_range.end = le64_to_cpu(id.volatile_capacity) - 1;
1427 cxlm->pmem_range.start = 0;
1428 cxlm->pmem_range.end = le64_to_cpu(id.persistent_capacity) - 1;
1430 memcpy(cxlm->firmware_version, id.fw_revision, sizeof(id.fw_revision));
1435 static int cxl_mem_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1437 struct device *dev = &pdev->dev;
1438 struct cxl_mem *cxlm = NULL;
1439 u32 regloc_size, regblocks;
1442 rc = pcim_enable_device(pdev);
1446 regloc = cxl_mem_dvsec(pdev, PCI_DVSEC_ID_CXL_REGLOC_OFFSET);
1448 dev_err(dev, "register location dvsec not found\n");
1452 /* Get the size of the Register Locator DVSEC */
1453 pci_read_config_dword(pdev, regloc + PCI_DVSEC_HEADER1, ®loc_size);
1454 regloc_size = FIELD_GET(PCI_DVSEC_HEADER1_LENGTH_MASK, regloc_size);
1456 regloc += PCI_DVSEC_ID_CXL_REGLOC_BLOCK1_OFFSET;
1457 regblocks = (regloc_size - PCI_DVSEC_ID_CXL_REGLOC_BLOCK1_OFFSET) / 8;
1459 for (i = 0; i < regblocks; i++, regloc += 8) {
1463 /* "register low and high" contain other bits */
1464 pci_read_config_dword(pdev, regloc, ®_lo);
1465 pci_read_config_dword(pdev, regloc + 4, ®_hi);
1467 reg_type = FIELD_GET(CXL_REGLOC_RBI_MASK, reg_lo);
1469 if (reg_type == CXL_REGLOC_RBI_MEMDEV) {
1470 cxlm = cxl_mem_create(pdev, reg_lo, reg_hi);
1478 rc = cxl_mem_setup_regs(cxlm);
1482 rc = cxl_mem_setup_mailbox(cxlm);
1486 rc = cxl_mem_enumerate_cmds(cxlm);
1490 rc = cxl_mem_identify(cxlm);
1494 return cxl_mem_add_memdev(cxlm);
1497 static const struct pci_device_id cxl_mem_pci_tbl[] = {
1498 /* PCI class code for CXL.mem Type-3 Devices */
1499 { PCI_DEVICE_CLASS((PCI_CLASS_MEMORY_CXL << 8 | CXL_MEMORY_PROGIF), ~0)},
1500 { /* terminate list */ },
1502 MODULE_DEVICE_TABLE(pci, cxl_mem_pci_tbl);
1504 static struct pci_driver cxl_mem_driver = {
1505 .name = KBUILD_MODNAME,
1506 .id_table = cxl_mem_pci_tbl,
1507 .probe = cxl_mem_probe,
1509 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
1513 static __init int cxl_mem_init(void)
1515 struct dentry *mbox_debugfs;
1519 rc = alloc_chrdev_region(&devt, 0, CXL_MEM_MAX_DEVS, "cxl");
1523 cxl_mem_major = MAJOR(devt);
1525 rc = pci_register_driver(&cxl_mem_driver);
1527 unregister_chrdev_region(MKDEV(cxl_mem_major, 0),
1532 cxl_debugfs = debugfs_create_dir("cxl", NULL);
1533 mbox_debugfs = debugfs_create_dir("mbox", cxl_debugfs);
1534 debugfs_create_bool("raw_allow_all", 0600, mbox_debugfs,
1535 &cxl_raw_allow_all);
1540 static __exit void cxl_mem_exit(void)
1542 debugfs_remove_recursive(cxl_debugfs);
1543 pci_unregister_driver(&cxl_mem_driver);
1544 unregister_chrdev_region(MKDEV(cxl_mem_major, 0), CXL_MEM_MAX_DEVS);
1547 MODULE_LICENSE("GPL v2");
1548 module_init(cxl_mem_init);
1549 module_exit(cxl_mem_exit);
1550 MODULE_IMPORT_NS(CXL);