1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright(c) 2020 Intel Corporation. All rights reserved. */
3 #include <linux/io-64-nonatomic-lo-hi.h>
4 #include <linux/security.h>
5 #include <linux/debugfs.h>
6 #include <linux/mutex.h>
12 static bool cxl_raw_allow_all;
17 * Core implementation of the CXL 2.0 Type-3 Memory Device Mailbox. The
18 * implementation is used by the cxl_pci driver to initialize the device
19 * and implement the cxl_mem.h IOCTL UAPI. It also implements the
20 * backend of the cxl_pmem_ctl() transport for LIBNVDIMM.
23 #define cxl_for_each_cmd(cmd) \
24 for ((cmd) = &cxl_mem_commands[0]; \
25 ((cmd) - cxl_mem_commands) < ARRAY_SIZE(cxl_mem_commands); (cmd)++)
27 #define CXL_CMD(_id, sin, sout, _flags) \
28 [CXL_MEM_COMMAND_ID_##_id] = { \
30 .id = CXL_MEM_COMMAND_ID_##_id, \
34 .opcode = CXL_MBOX_OP_##_id, \
38 #define CXL_VARIABLE_PAYLOAD ~0U
40 * This table defines the supported mailbox commands for the driver. This table
41 * is made up of a UAPI structure. Non-negative values as parameters in the
42 * table will be validated against the user's input. For example, if size_in is
43 * 0, and the user passed in 1, it is an error.
45 static struct cxl_mem_command cxl_mem_commands[CXL_MEM_COMMAND_ID_MAX] = {
46 CXL_CMD(IDENTIFY, 0, 0x43, CXL_CMD_FLAG_FORCE_ENABLE),
47 #ifdef CONFIG_CXL_MEM_RAW_COMMANDS
48 CXL_CMD(RAW, CXL_VARIABLE_PAYLOAD, CXL_VARIABLE_PAYLOAD, 0),
50 CXL_CMD(GET_SUPPORTED_LOGS, 0, CXL_VARIABLE_PAYLOAD, CXL_CMD_FLAG_FORCE_ENABLE),
51 CXL_CMD(GET_FW_INFO, 0, 0x50, 0),
52 CXL_CMD(GET_PARTITION_INFO, 0, 0x20, 0),
53 CXL_CMD(GET_LSA, 0x8, CXL_VARIABLE_PAYLOAD, 0),
54 CXL_CMD(GET_HEALTH_INFO, 0, 0x12, 0),
55 CXL_CMD(GET_LOG, 0x18, CXL_VARIABLE_PAYLOAD, CXL_CMD_FLAG_FORCE_ENABLE),
56 CXL_CMD(SET_PARTITION_INFO, 0x0a, 0, 0),
57 CXL_CMD(SET_LSA, CXL_VARIABLE_PAYLOAD, 0, 0),
58 CXL_CMD(GET_ALERT_CONFIG, 0, 0x10, 0),
59 CXL_CMD(SET_ALERT_CONFIG, 0xc, 0, 0),
60 CXL_CMD(GET_SHUTDOWN_STATE, 0, 0x1, 0),
61 CXL_CMD(SET_SHUTDOWN_STATE, 0x1, 0, 0),
62 CXL_CMD(GET_POISON, 0x10, CXL_VARIABLE_PAYLOAD, 0),
63 CXL_CMD(INJECT_POISON, 0x8, 0, 0),
64 CXL_CMD(CLEAR_POISON, 0x48, 0, 0),
65 CXL_CMD(GET_SCAN_MEDIA_CAPS, 0x10, 0x4, 0),
66 CXL_CMD(SCAN_MEDIA, 0x11, 0, 0),
67 CXL_CMD(GET_SCAN_MEDIA, 0, CXL_VARIABLE_PAYLOAD, 0),
71 * Commands that RAW doesn't permit. The rationale for each:
73 * CXL_MBOX_OP_ACTIVATE_FW: Firmware activation requires adjustment /
74 * coordination of transaction timeout values at the root bridge level.
76 * CXL_MBOX_OP_SET_PARTITION_INFO: The device memory map may change live
77 * and needs to be coordinated with HDM updates.
79 * CXL_MBOX_OP_SET_LSA: The label storage area may be cached by the
80 * driver and any writes from userspace invalidates those contents.
82 * CXL_MBOX_OP_SET_SHUTDOWN_STATE: Set shutdown state assumes no writes
83 * to the device after it is marked clean, userspace can not make that
86 * CXL_MBOX_OP_[GET_]SCAN_MEDIA: The kernel provides a native error list that
87 * is kept up to date with patrol notifications and error management.
89 static u16 cxl_disabled_raw_commands[] = {
90 CXL_MBOX_OP_ACTIVATE_FW,
91 CXL_MBOX_OP_SET_PARTITION_INFO,
93 CXL_MBOX_OP_SET_SHUTDOWN_STATE,
94 CXL_MBOX_OP_SCAN_MEDIA,
95 CXL_MBOX_OP_GET_SCAN_MEDIA,
99 * Command sets that RAW doesn't permit. All opcodes in this set are
100 * disabled because they pass plain text security payloads over the
101 * user/kernel boundary. This functionality is intended to be wrapped
102 * behind the keys ABI which allows for encrypted payloads in the UAPI
104 static u8 security_command_sets[] = {
106 0x45, /* Persistent Memory Data-at-rest Security */
107 0x46, /* Security Passthrough */
110 static bool cxl_is_security_command(u16 opcode)
114 for (i = 0; i < ARRAY_SIZE(security_command_sets); i++)
115 if (security_command_sets[i] == (opcode >> 8))
120 static struct cxl_mem_command *cxl_mem_find_command(u16 opcode)
122 struct cxl_mem_command *c;
125 if (c->opcode == opcode)
131 static const char *cxl_mem_opcode_to_name(u16 opcode)
133 struct cxl_mem_command *c;
135 c = cxl_mem_find_command(opcode);
139 return cxl_command_names[c->info.id].name;
143 * cxl_internal_send_cmd() - Kernel internal interface to send a mailbox command
144 * @cxlds: The device data for the operation
145 * @mbox_cmd: initialized command to execute
147 * Context: Any context.
149 * * %>=0 - Number of bytes returned in @out.
150 * * %-E2BIG - Payload is too large for hardware.
151 * * %-EBUSY - Couldn't acquire exclusive mailbox access.
152 * * %-EFAULT - Hardware error occurred.
153 * * %-ENXIO - Command completed, but device reported an error.
154 * * %-EIO - Unexpected output size.
156 * Mailbox commands may execute successfully yet the device itself reported an
157 * error. While this distinction can be useful for commands from userspace, the
158 * kernel will only be able to use results when both are successful.
160 int cxl_internal_send_cmd(struct cxl_dev_state *cxlds,
161 struct cxl_mbox_cmd *mbox_cmd)
163 size_t out_size, min_out;
166 if (mbox_cmd->size_in > cxlds->payload_size ||
167 mbox_cmd->size_out > cxlds->payload_size)
170 out_size = mbox_cmd->size_out;
171 min_out = mbox_cmd->min_out;
172 rc = cxlds->mbox_send(cxlds, mbox_cmd);
174 * EIO is reserved for a payload size mismatch and mbox_send()
175 * may not return this error.
177 if (WARN_ONCE(rc == -EIO, "Bad return code: -EIO"))
182 if (mbox_cmd->return_code != CXL_MBOX_CMD_RC_SUCCESS)
183 return cxl_mbox_cmd_rc2errno(mbox_cmd);
189 * Variable sized output needs to at least satisfy the caller's
190 * minimum if not the fully requested size.
195 if (mbox_cmd->size_out < min_out)
199 EXPORT_SYMBOL_NS_GPL(cxl_internal_send_cmd, CXL);
201 static bool cxl_mem_raw_command_allowed(u16 opcode)
205 if (!IS_ENABLED(CONFIG_CXL_MEM_RAW_COMMANDS))
208 if (security_locked_down(LOCKDOWN_PCI_ACCESS))
211 if (cxl_raw_allow_all)
214 if (cxl_is_security_command(opcode))
217 for (i = 0; i < ARRAY_SIZE(cxl_disabled_raw_commands); i++)
218 if (cxl_disabled_raw_commands[i] == opcode)
225 * cxl_payload_from_user_allowed() - Check contents of in_payload.
226 * @opcode: The mailbox command opcode.
227 * @payload_in: Pointer to the input payload passed in from user space.
230 * * true - payload_in passes check for @opcode.
231 * * false - payload_in contains invalid or unsupported values.
233 * The driver may inspect payload contents before sending a mailbox
234 * command from user space to the device. The intent is to reject
235 * commands with input payloads that are known to be unsafe. This
236 * check is not intended to replace the users careful selection of
237 * mailbox command parameters and makes no guarantee that the user
238 * command will succeed, nor that it is appropriate.
240 * The specific checks are determined by the opcode.
242 static bool cxl_payload_from_user_allowed(u16 opcode, void *payload_in)
245 case CXL_MBOX_OP_SET_PARTITION_INFO: {
246 struct cxl_mbox_set_partition_info *pi = payload_in;
248 if (pi->flags & CXL_SET_PARTITION_IMMEDIATE_FLAG)
258 static int cxl_mbox_cmd_ctor(struct cxl_mbox_cmd *mbox,
259 struct cxl_dev_state *cxlds, u16 opcode,
260 size_t in_size, size_t out_size, u64 in_payload)
262 *mbox = (struct cxl_mbox_cmd) {
268 mbox->payload_in = vmemdup_user(u64_to_user_ptr(in_payload),
270 if (IS_ERR(mbox->payload_in))
271 return PTR_ERR(mbox->payload_in);
273 if (!cxl_payload_from_user_allowed(opcode, mbox->payload_in)) {
274 dev_dbg(cxlds->dev, "%s: input payload not allowed\n",
275 cxl_mem_opcode_to_name(opcode));
276 kvfree(mbox->payload_in);
281 /* Prepare to handle a full payload for variable sized output */
282 if (out_size == CXL_VARIABLE_PAYLOAD)
283 mbox->size_out = cxlds->payload_size;
285 mbox->size_out = out_size;
287 if (mbox->size_out) {
288 mbox->payload_out = kvzalloc(mbox->size_out, GFP_KERNEL);
289 if (!mbox->payload_out) {
290 kvfree(mbox->payload_in);
297 static void cxl_mbox_cmd_dtor(struct cxl_mbox_cmd *mbox)
299 kvfree(mbox->payload_in);
300 kvfree(mbox->payload_out);
303 static int cxl_to_mem_cmd_raw(struct cxl_mem_command *mem_cmd,
304 const struct cxl_send_command *send_cmd,
305 struct cxl_dev_state *cxlds)
307 if (send_cmd->raw.rsvd)
311 * Unlike supported commands, the output size of RAW commands
312 * gets passed along without further checking, so it must be
315 if (send_cmd->out.size > cxlds->payload_size)
318 if (!cxl_mem_raw_command_allowed(send_cmd->raw.opcode))
321 dev_WARN_ONCE(cxlds->dev, true, "raw command path used\n");
323 *mem_cmd = (struct cxl_mem_command) {
325 .id = CXL_MEM_COMMAND_ID_RAW,
326 .size_in = send_cmd->in.size,
327 .size_out = send_cmd->out.size,
329 .opcode = send_cmd->raw.opcode
335 static int cxl_to_mem_cmd(struct cxl_mem_command *mem_cmd,
336 const struct cxl_send_command *send_cmd,
337 struct cxl_dev_state *cxlds)
339 struct cxl_mem_command *c = &cxl_mem_commands[send_cmd->id];
340 const struct cxl_command_info *info = &c->info;
342 if (send_cmd->flags & ~CXL_MEM_COMMAND_FLAG_MASK)
348 if (send_cmd->in.rsvd || send_cmd->out.rsvd)
351 /* Check that the command is enabled for hardware */
352 if (!test_bit(info->id, cxlds->enabled_cmds))
355 /* Check that the command is not claimed for exclusive kernel use */
356 if (test_bit(info->id, cxlds->exclusive_cmds))
359 /* Check the input buffer is the expected size */
360 if ((info->size_in != CXL_VARIABLE_PAYLOAD) &&
361 (info->size_in != send_cmd->in.size))
364 /* Check the output buffer is at least large enough */
365 if ((info->size_out != CXL_VARIABLE_PAYLOAD) &&
366 (send_cmd->out.size < info->size_out))
369 *mem_cmd = (struct cxl_mem_command) {
372 .flags = info->flags,
373 .size_in = send_cmd->in.size,
374 .size_out = send_cmd->out.size,
383 * cxl_validate_cmd_from_user() - Check fields for CXL_MEM_SEND_COMMAND.
384 * @mbox_cmd: Sanitized and populated &struct cxl_mbox_cmd.
385 * @cxlds: The device data for the operation
386 * @send_cmd: &struct cxl_send_command copied in from userspace.
389 * * %0 - @out_cmd is ready to send.
390 * * %-ENOTTY - Invalid command specified.
391 * * %-EINVAL - Reserved fields or invalid values were used.
392 * * %-ENOMEM - Input or output buffer wasn't sized properly.
393 * * %-EPERM - Attempted to use a protected command.
394 * * %-EBUSY - Kernel has claimed exclusive access to this opcode
396 * The result of this command is a fully validated command in @mbox_cmd that is
397 * safe to send to the hardware.
399 static int cxl_validate_cmd_from_user(struct cxl_mbox_cmd *mbox_cmd,
400 struct cxl_dev_state *cxlds,
401 const struct cxl_send_command *send_cmd)
403 struct cxl_mem_command mem_cmd;
406 if (send_cmd->id == 0 || send_cmd->id >= CXL_MEM_COMMAND_ID_MAX)
410 * The user can never specify an input payload larger than what hardware
411 * supports, but output can be arbitrarily large (simply write out as
412 * much data as the hardware provides).
414 if (send_cmd->in.size > cxlds->payload_size)
417 /* Sanitize and construct a cxl_mem_command */
418 if (send_cmd->id == CXL_MEM_COMMAND_ID_RAW)
419 rc = cxl_to_mem_cmd_raw(&mem_cmd, send_cmd, cxlds);
421 rc = cxl_to_mem_cmd(&mem_cmd, send_cmd, cxlds);
426 /* Sanitize and construct a cxl_mbox_cmd */
427 return cxl_mbox_cmd_ctor(mbox_cmd, cxlds, mem_cmd.opcode,
428 mem_cmd.info.size_in, mem_cmd.info.size_out,
429 send_cmd->in.payload);
432 int cxl_query_cmd(struct cxl_memdev *cxlmd,
433 struct cxl_mem_query_commands __user *q)
435 struct device *dev = &cxlmd->dev;
436 struct cxl_mem_command *cmd;
440 dev_dbg(dev, "Query IOCTL\n");
442 if (get_user(n_commands, &q->n_commands))
445 /* returns the total number if 0 elements are requested. */
447 return put_user(ARRAY_SIZE(cxl_mem_commands), &q->n_commands);
450 * otherwise, return max(n_commands, total commands) cxl_command_info
453 cxl_for_each_cmd(cmd) {
454 const struct cxl_command_info *info = &cmd->info;
456 if (copy_to_user(&q->commands[j++], info, sizeof(*info)))
467 * handle_mailbox_cmd_from_user() - Dispatch a mailbox command for userspace.
468 * @cxlds: The device data for the operation
469 * @mbox_cmd: The validated mailbox command.
470 * @out_payload: Pointer to userspace's output payload.
471 * @size_out: (Input) Max payload size to copy out.
472 * (Output) Payload size hardware generated.
473 * @retval: Hardware generated return code from the operation.
476 * * %0 - Mailbox transaction succeeded. This implies the mailbox
477 * protocol completed successfully not that the operation itself
479 * * %-ENOMEM - Couldn't allocate a bounce buffer.
480 * * %-EFAULT - Something happened with copy_to/from_user.
481 * * %-EINTR - Mailbox acquisition interrupted.
482 * * %-EXXX - Transaction level failures.
484 * Dispatches a mailbox command on behalf of a userspace request.
485 * The output payload is copied to userspace.
487 * See cxl_send_cmd().
489 static int handle_mailbox_cmd_from_user(struct cxl_dev_state *cxlds,
490 struct cxl_mbox_cmd *mbox_cmd,
491 u64 out_payload, s32 *size_out,
494 struct device *dev = cxlds->dev;
498 "Submitting %s command for user\n"
501 cxl_mem_opcode_to_name(mbox_cmd->opcode),
502 mbox_cmd->opcode, mbox_cmd->size_in);
504 rc = cxlds->mbox_send(cxlds, mbox_cmd);
509 * @size_out contains the max size that's allowed to be written back out
510 * to userspace. While the payload may have written more output than
511 * this it will have to be ignored.
513 if (mbox_cmd->size_out) {
514 dev_WARN_ONCE(dev, mbox_cmd->size_out > *size_out,
515 "Invalid return size\n");
516 if (copy_to_user(u64_to_user_ptr(out_payload),
517 mbox_cmd->payload_out, mbox_cmd->size_out)) {
523 *size_out = mbox_cmd->size_out;
524 *retval = mbox_cmd->return_code;
527 cxl_mbox_cmd_dtor(mbox_cmd);
531 int cxl_send_cmd(struct cxl_memdev *cxlmd, struct cxl_send_command __user *s)
533 struct cxl_dev_state *cxlds = cxlmd->cxlds;
534 struct device *dev = &cxlmd->dev;
535 struct cxl_send_command send;
536 struct cxl_mbox_cmd mbox_cmd;
539 dev_dbg(dev, "Send IOCTL\n");
541 if (copy_from_user(&send, s, sizeof(send)))
544 rc = cxl_validate_cmd_from_user(&mbox_cmd, cxlmd->cxlds, &send);
548 rc = handle_mailbox_cmd_from_user(cxlds, &mbox_cmd, send.out.payload,
549 &send.out.size, &send.retval);
553 if (copy_to_user(s, &send, sizeof(send)))
559 static int cxl_xfer_log(struct cxl_dev_state *cxlds, uuid_t *uuid, u32 *size, u8 *out)
561 u32 remaining = *size;
565 u32 xfer_size = min_t(u32, remaining, cxlds->payload_size);
566 struct cxl_mbox_cmd mbox_cmd;
567 struct cxl_mbox_get_log log;
570 log = (struct cxl_mbox_get_log) {
572 .offset = cpu_to_le32(offset),
573 .length = cpu_to_le32(xfer_size),
576 mbox_cmd = (struct cxl_mbox_cmd) {
577 .opcode = CXL_MBOX_OP_GET_LOG,
578 .size_in = sizeof(log),
580 .size_out = xfer_size,
584 rc = cxl_internal_send_cmd(cxlds, &mbox_cmd);
587 * The output payload length that indicates the number
588 * of valid bytes can be smaller than the Log buffer
591 if (rc == -EIO && mbox_cmd.size_out < xfer_size) {
592 offset += mbox_cmd.size_out;
600 remaining -= xfer_size;
610 * cxl_walk_cel() - Walk through the Command Effects Log.
611 * @cxlds: The device data for the operation
612 * @size: Length of the Command Effects Log.
615 * Iterate over each entry in the CEL and determine if the driver supports the
616 * command. If so, the command is enabled for the device and can be used later.
618 static void cxl_walk_cel(struct cxl_dev_state *cxlds, size_t size, u8 *cel)
620 struct cxl_cel_entry *cel_entry;
621 const int cel_entries = size / sizeof(*cel_entry);
624 cel_entry = (struct cxl_cel_entry *) cel;
626 for (i = 0; i < cel_entries; i++) {
627 u16 opcode = le16_to_cpu(cel_entry[i].opcode);
628 struct cxl_mem_command *cmd = cxl_mem_find_command(opcode);
632 "Opcode 0x%04x unsupported by driver\n", opcode);
636 set_bit(cmd->info.id, cxlds->enabled_cmds);
637 dev_dbg(cxlds->dev, "Opcode 0x%04x enabled\n", opcode);
641 static struct cxl_mbox_get_supported_logs *cxl_get_gsl(struct cxl_dev_state *cxlds)
643 struct cxl_mbox_get_supported_logs *ret;
644 struct cxl_mbox_cmd mbox_cmd;
647 ret = kvmalloc(cxlds->payload_size, GFP_KERNEL);
649 return ERR_PTR(-ENOMEM);
651 mbox_cmd = (struct cxl_mbox_cmd) {
652 .opcode = CXL_MBOX_OP_GET_SUPPORTED_LOGS,
653 .size_out = cxlds->payload_size,
655 /* At least the record number field must be valid */
658 rc = cxl_internal_send_cmd(cxlds, &mbox_cmd);
673 /* See CXL 2.0 Table 170. Get Log Input Payload */
674 static const uuid_t log_uuid[] = {
675 [CEL_UUID] = DEFINE_CXL_CEL_UUID,
676 [VENDOR_DEBUG_UUID] = DEFINE_CXL_VENDOR_DEBUG_UUID,
680 * cxl_enumerate_cmds() - Enumerate commands for a device.
681 * @cxlds: The device data for the operation
683 * Returns 0 if enumerate completed successfully.
685 * CXL devices have optional support for certain commands. This function will
686 * determine the set of supported commands for the hardware and update the
687 * enabled_cmds bitmap in the @cxlds.
689 int cxl_enumerate_cmds(struct cxl_dev_state *cxlds)
691 struct cxl_mbox_get_supported_logs *gsl;
692 struct device *dev = cxlds->dev;
693 struct cxl_mem_command *cmd;
696 gsl = cxl_get_gsl(cxlds);
701 for (i = 0; i < le16_to_cpu(gsl->entries); i++) {
702 u32 size = le32_to_cpu(gsl->entry[i].size);
703 uuid_t uuid = gsl->entry[i].uuid;
706 dev_dbg(dev, "Found LOG type %pU of size %d", &uuid, size);
708 if (!uuid_equal(&uuid, &log_uuid[CEL_UUID]))
711 log = kvmalloc(size, GFP_KERNEL);
717 rc = cxl_xfer_log(cxlds, &uuid, &size, log);
723 cxl_walk_cel(cxlds, size, log);
726 /* In case CEL was bogus, enable some default commands. */
727 cxl_for_each_cmd(cmd)
728 if (cmd->flags & CXL_CMD_FLAG_FORCE_ENABLE)
729 set_bit(cmd->info.id, cxlds->enabled_cmds);
731 /* Found the required CEL */
738 EXPORT_SYMBOL_NS_GPL(cxl_enumerate_cmds, CXL);
741 * cxl_mem_get_partition_info - Get partition info
742 * @cxlds: The device data for the operation
744 * Retrieve the current partition info for the device specified. The active
745 * values are the current capacity in bytes. If not 0, the 'next' values are
746 * the pending values, in bytes, which take affect on next cold reset.
748 * Return: 0 if no error: or the result of the mailbox command.
750 * See CXL @8.2.9.5.2.1 Get Partition Info
752 static int cxl_mem_get_partition_info(struct cxl_dev_state *cxlds)
754 struct cxl_mbox_get_partition_info pi;
755 struct cxl_mbox_cmd mbox_cmd;
758 mbox_cmd = (struct cxl_mbox_cmd) {
759 .opcode = CXL_MBOX_OP_GET_PARTITION_INFO,
760 .size_out = sizeof(pi),
763 rc = cxl_internal_send_cmd(cxlds, &mbox_cmd);
767 cxlds->active_volatile_bytes =
768 le64_to_cpu(pi.active_volatile_cap) * CXL_CAPACITY_MULTIPLIER;
769 cxlds->active_persistent_bytes =
770 le64_to_cpu(pi.active_persistent_cap) * CXL_CAPACITY_MULTIPLIER;
771 cxlds->next_volatile_bytes =
772 le64_to_cpu(pi.next_volatile_cap) * CXL_CAPACITY_MULTIPLIER;
773 cxlds->next_persistent_bytes =
774 le64_to_cpu(pi.next_volatile_cap) * CXL_CAPACITY_MULTIPLIER;
780 * cxl_dev_state_identify() - Send the IDENTIFY command to the device.
781 * @cxlds: The device data for the operation
783 * Return: 0 if identify was executed successfully.
785 * This will dispatch the identify command to the device and on success populate
786 * structures to be exported to sysfs.
788 int cxl_dev_state_identify(struct cxl_dev_state *cxlds)
790 /* See CXL 2.0 Table 175 Identify Memory Device Output Payload */
791 struct cxl_mbox_identify id;
792 struct cxl_mbox_cmd mbox_cmd;
795 mbox_cmd = (struct cxl_mbox_cmd) {
796 .opcode = CXL_MBOX_OP_IDENTIFY,
797 .size_out = sizeof(id),
800 rc = cxl_internal_send_cmd(cxlds, &mbox_cmd);
805 le64_to_cpu(id.total_capacity) * CXL_CAPACITY_MULTIPLIER;
806 cxlds->volatile_only_bytes =
807 le64_to_cpu(id.volatile_capacity) * CXL_CAPACITY_MULTIPLIER;
808 cxlds->persistent_only_bytes =
809 le64_to_cpu(id.persistent_capacity) * CXL_CAPACITY_MULTIPLIER;
810 cxlds->partition_align_bytes =
811 le64_to_cpu(id.partition_align) * CXL_CAPACITY_MULTIPLIER;
813 cxlds->lsa_size = le32_to_cpu(id.lsa_size);
814 memcpy(cxlds->firmware_version, id.fw_revision, sizeof(id.fw_revision));
818 EXPORT_SYMBOL_NS_GPL(cxl_dev_state_identify, CXL);
820 static int add_dpa_res(struct device *dev, struct resource *parent,
821 struct resource *res, resource_size_t start,
822 resource_size_t size, const char *type)
828 res->end = start + size - 1;
829 res->flags = IORESOURCE_MEM;
830 if (resource_size(res) == 0) {
831 dev_dbg(dev, "DPA(%s): no capacity\n", res->name);
834 rc = request_resource(parent, res);
836 dev_err(dev, "DPA(%s): failed to track %pr (%d)\n", res->name,
841 dev_dbg(dev, "DPA(%s): %pr\n", res->name, res);
846 int cxl_mem_create_range_info(struct cxl_dev_state *cxlds)
848 struct device *dev = cxlds->dev;
852 (struct resource)DEFINE_RES_MEM(0, cxlds->total_bytes);
854 if (cxlds->partition_align_bytes == 0) {
855 rc = add_dpa_res(dev, &cxlds->dpa_res, &cxlds->ram_res, 0,
856 cxlds->volatile_only_bytes, "ram");
859 return add_dpa_res(dev, &cxlds->dpa_res, &cxlds->pmem_res,
860 cxlds->volatile_only_bytes,
861 cxlds->persistent_only_bytes, "pmem");
864 rc = cxl_mem_get_partition_info(cxlds);
866 dev_err(dev, "Failed to query partition information\n");
870 rc = add_dpa_res(dev, &cxlds->dpa_res, &cxlds->ram_res, 0,
871 cxlds->active_volatile_bytes, "ram");
874 return add_dpa_res(dev, &cxlds->dpa_res, &cxlds->pmem_res,
875 cxlds->active_volatile_bytes,
876 cxlds->active_persistent_bytes, "pmem");
878 EXPORT_SYMBOL_NS_GPL(cxl_mem_create_range_info, CXL);
880 struct cxl_dev_state *cxl_dev_state_create(struct device *dev)
882 struct cxl_dev_state *cxlds;
884 cxlds = devm_kzalloc(dev, sizeof(*cxlds), GFP_KERNEL);
886 dev_err(dev, "No memory available\n");
887 return ERR_PTR(-ENOMEM);
890 mutex_init(&cxlds->mbox_mutex);
895 EXPORT_SYMBOL_NS_GPL(cxl_dev_state_create, CXL);
897 void __init cxl_mbox_init(void)
899 struct dentry *mbox_debugfs;
901 mbox_debugfs = cxl_debugfs_create_dir("mbox");
902 debugfs_create_bool("raw_allow_all", 0600, mbox_debugfs,