1 // SPDX-License-Identifier: GPL-2.0-only 2 /* Copyright(c) 2020 Intel Corporation. */ 3 4 #include <linux/io-64-nonatomic-lo-hi.h> 5 #include <linux/firmware.h> 6 #include <linux/device.h> 7 #include <linux/slab.h> 8 #include <linux/idr.h> 9 #include <linux/pci.h> 10 #include <cxlmem.h> 11 #include "trace.h" 12 #include "core.h" 13 14 static DECLARE_RWSEM(cxl_memdev_rwsem); 15 16 /* 17 * An entire PCI topology full of devices should be enough for any 18 * config 19 */ 20 #define CXL_MEM_MAX_DEVS 65536 21 22 static int cxl_mem_major; 23 static DEFINE_IDA(cxl_memdev_ida); 24 25 static void cxl_memdev_release(struct device *dev) 26 { 27 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 28 29 ida_free(&cxl_memdev_ida, cxlmd->id); 30 kfree(cxlmd); 31 } 32 33 static char *cxl_memdev_devnode(const struct device *dev, umode_t *mode, kuid_t *uid, 34 kgid_t *gid) 35 { 36 return kasprintf(GFP_KERNEL, "cxl/%s", dev_name(dev)); 37 } 38 39 static ssize_t firmware_version_show(struct device *dev, 40 struct device_attribute *attr, char *buf) 41 { 42 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 43 struct cxl_dev_state *cxlds = cxlmd->cxlds; 44 struct cxl_memdev_state *mds = to_cxl_memdev_state(cxlds); 45 46 if (!mds) 47 return sysfs_emit(buf, "\n"); 48 return sysfs_emit(buf, "%.16s\n", mds->firmware_version); 49 } 50 static DEVICE_ATTR_RO(firmware_version); 51 52 static ssize_t payload_max_show(struct device *dev, 53 struct device_attribute *attr, char *buf) 54 { 55 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 56 struct cxl_dev_state *cxlds = cxlmd->cxlds; 57 struct cxl_memdev_state *mds = to_cxl_memdev_state(cxlds); 58 59 if (!mds) 60 return sysfs_emit(buf, "\n"); 61 return sysfs_emit(buf, "%zu\n", cxlds->cxl_mbox.payload_size); 62 } 63 static DEVICE_ATTR_RO(payload_max); 64 65 static ssize_t label_storage_size_show(struct device *dev, 66 struct device_attribute *attr, char *buf) 67 { 68 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 69 struct cxl_dev_state *cxlds = cxlmd->cxlds; 70 struct cxl_memdev_state *mds = to_cxl_memdev_state(cxlds); 71 72 if (!mds) 73 return sysfs_emit(buf, "\n"); 74 return sysfs_emit(buf, "%zu\n", mds->lsa_size); 75 } 76 static DEVICE_ATTR_RO(label_storage_size); 77 78 static resource_size_t cxl_ram_size(struct cxl_dev_state *cxlds) 79 { 80 /* Static RAM is only expected at partition 0. */ 81 if (cxlds->part[0].mode != CXL_PARTMODE_RAM) 82 return 0; 83 return resource_size(&cxlds->part[0].res); 84 } 85 86 static ssize_t ram_size_show(struct device *dev, struct device_attribute *attr, 87 char *buf) 88 { 89 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 90 struct cxl_dev_state *cxlds = cxlmd->cxlds; 91 unsigned long long len = cxl_ram_size(cxlds); 92 93 return sysfs_emit(buf, "%#llx\n", len); 94 } 95 96 static struct device_attribute dev_attr_ram_size = 97 __ATTR(size, 0444, ram_size_show, NULL); 98 99 static ssize_t pmem_size_show(struct device *dev, struct device_attribute *attr, 100 char *buf) 101 { 102 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 103 struct cxl_dev_state *cxlds = cxlmd->cxlds; 104 unsigned long long len = cxl_pmem_size(cxlds); 105 106 return sysfs_emit(buf, "%#llx\n", len); 107 } 108 109 static struct device_attribute dev_attr_pmem_size = 110 __ATTR(size, 0444, pmem_size_show, NULL); 111 112 static ssize_t serial_show(struct device *dev, struct device_attribute *attr, 113 char *buf) 114 { 115 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 116 struct cxl_dev_state *cxlds = cxlmd->cxlds; 117 118 return sysfs_emit(buf, "%#llx\n", cxlds->serial); 119 } 120 static DEVICE_ATTR_RO(serial); 121 122 static ssize_t numa_node_show(struct device *dev, struct device_attribute *attr, 123 char *buf) 124 { 125 return sysfs_emit(buf, "%d\n", dev_to_node(dev)); 126 } 127 static DEVICE_ATTR_RO(numa_node); 128 129 static ssize_t security_state_show(struct device *dev, 130 struct device_attribute *attr, 131 char *buf) 132 { 133 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 134 struct cxl_dev_state *cxlds = cxlmd->cxlds; 135 struct cxl_mailbox *cxl_mbox = &cxlds->cxl_mbox; 136 struct cxl_memdev_state *mds = to_cxl_memdev_state(cxlds); 137 unsigned long state = mds->security.state; 138 int rc = 0; 139 140 /* sync with latest submission state */ 141 mutex_lock(&cxl_mbox->mbox_mutex); 142 if (mds->security.sanitize_active) 143 rc = sysfs_emit(buf, "sanitize\n"); 144 mutex_unlock(&cxl_mbox->mbox_mutex); 145 if (rc) 146 return rc; 147 148 if (!(state & CXL_PMEM_SEC_STATE_USER_PASS_SET)) 149 return sysfs_emit(buf, "disabled\n"); 150 if (state & CXL_PMEM_SEC_STATE_FROZEN || 151 state & CXL_PMEM_SEC_STATE_MASTER_PLIMIT || 152 state & CXL_PMEM_SEC_STATE_USER_PLIMIT) 153 return sysfs_emit(buf, "frozen\n"); 154 if (state & CXL_PMEM_SEC_STATE_LOCKED) 155 return sysfs_emit(buf, "locked\n"); 156 157 return sysfs_emit(buf, "unlocked\n"); 158 } 159 static struct device_attribute dev_attr_security_state = 160 __ATTR(state, 0444, security_state_show, NULL); 161 162 static ssize_t security_sanitize_store(struct device *dev, 163 struct device_attribute *attr, 164 const char *buf, size_t len) 165 { 166 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 167 bool sanitize; 168 ssize_t rc; 169 170 if (kstrtobool(buf, &sanitize) || !sanitize) 171 return -EINVAL; 172 173 rc = cxl_mem_sanitize(cxlmd, CXL_MBOX_OP_SANITIZE); 174 if (rc) 175 return rc; 176 177 return len; 178 } 179 static struct device_attribute dev_attr_security_sanitize = 180 __ATTR(sanitize, 0200, NULL, security_sanitize_store); 181 182 static ssize_t security_erase_store(struct device *dev, 183 struct device_attribute *attr, 184 const char *buf, size_t len) 185 { 186 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 187 ssize_t rc; 188 bool erase; 189 190 if (kstrtobool(buf, &erase) || !erase) 191 return -EINVAL; 192 193 rc = cxl_mem_sanitize(cxlmd, CXL_MBOX_OP_SECURE_ERASE); 194 if (rc) 195 return rc; 196 197 return len; 198 } 199 static struct device_attribute dev_attr_security_erase = 200 __ATTR(erase, 0200, NULL, security_erase_store); 201 202 bool cxl_memdev_has_poison_cmd(struct cxl_memdev *cxlmd, 203 enum poison_cmd_enabled_bits cmd) 204 { 205 struct cxl_memdev_state *mds = to_cxl_memdev_state(cxlmd->cxlds); 206 207 return test_bit(cmd, mds->poison.enabled_cmds); 208 } 209 210 static int cxl_get_poison_by_memdev(struct cxl_memdev *cxlmd) 211 { 212 struct cxl_dev_state *cxlds = cxlmd->cxlds; 213 u64 offset, length; 214 int rc = 0; 215 216 /* CXL 3.0 Spec 8.2.9.8.4.1 Separate pmem and ram poison requests */ 217 for (int i = 0; i < cxlds->nr_partitions; i++) { 218 const struct resource *res = &cxlds->part[i].res; 219 220 offset = res->start; 221 length = resource_size(res); 222 rc = cxl_mem_get_poison(cxlmd, offset, length, NULL); 223 /* 224 * Invalid Physical Address is not an error for 225 * volatile addresses. Device support is optional. 226 */ 227 if (rc == -EFAULT && cxlds->part[i].mode == CXL_PARTMODE_RAM) 228 rc = 0; 229 } 230 return rc; 231 } 232 233 int cxl_trigger_poison_list(struct cxl_memdev *cxlmd) 234 { 235 struct cxl_port *port; 236 int rc; 237 238 port = cxlmd->endpoint; 239 if (!port || !is_cxl_endpoint(port)) 240 return -EINVAL; 241 242 ACQUIRE(rwsem_read_intr, region_rwsem)(&cxl_rwsem.region); 243 if ((rc = ACQUIRE_ERR(rwsem_read_intr, ®ion_rwsem))) 244 return rc; 245 246 ACQUIRE(rwsem_read_intr, dpa_rwsem)(&cxl_rwsem.dpa); 247 if ((rc = ACQUIRE_ERR(rwsem_read_intr, &dpa_rwsem))) 248 return rc; 249 250 if (cxl_num_decoders_committed(port) == 0) { 251 /* No regions mapped to this memdev */ 252 rc = cxl_get_poison_by_memdev(cxlmd); 253 } else { 254 /* Regions mapped, collect poison by endpoint */ 255 rc = cxl_get_poison_by_endpoint(port); 256 } 257 258 return rc; 259 } 260 EXPORT_SYMBOL_NS_GPL(cxl_trigger_poison_list, "CXL"); 261 262 static int cxl_validate_poison_dpa(struct cxl_memdev *cxlmd, u64 dpa) 263 { 264 struct cxl_dev_state *cxlds = cxlmd->cxlds; 265 266 if (!IS_ENABLED(CONFIG_DEBUG_FS)) 267 return 0; 268 269 if (!resource_size(&cxlds->dpa_res)) { 270 dev_dbg(cxlds->dev, "device has no dpa resource\n"); 271 return -EINVAL; 272 } 273 if (!cxl_resource_contains_addr(&cxlds->dpa_res, dpa)) { 274 dev_dbg(cxlds->dev, "dpa:0x%llx not in resource:%pR\n", 275 dpa, &cxlds->dpa_res); 276 return -EINVAL; 277 } 278 if (!IS_ALIGNED(dpa, 64)) { 279 dev_dbg(cxlds->dev, "dpa:0x%llx is not 64-byte aligned\n", dpa); 280 return -EINVAL; 281 } 282 283 return 0; 284 } 285 286 int cxl_inject_poison_locked(struct cxl_memdev *cxlmd, u64 dpa) 287 { 288 struct cxl_mailbox *cxl_mbox = &cxlmd->cxlds->cxl_mbox; 289 struct cxl_mbox_inject_poison inject; 290 struct cxl_poison_record record; 291 struct cxl_mbox_cmd mbox_cmd; 292 struct cxl_region *cxlr; 293 int rc; 294 295 if (!IS_ENABLED(CONFIG_DEBUG_FS)) 296 return 0; 297 298 lockdep_assert_held(&cxl_rwsem.dpa); 299 lockdep_assert_held(&cxl_rwsem.region); 300 301 rc = cxl_validate_poison_dpa(cxlmd, dpa); 302 if (rc) 303 return rc; 304 305 inject.address = cpu_to_le64(dpa); 306 mbox_cmd = (struct cxl_mbox_cmd) { 307 .opcode = CXL_MBOX_OP_INJECT_POISON, 308 .size_in = sizeof(inject), 309 .payload_in = &inject, 310 }; 311 rc = cxl_internal_send_cmd(cxl_mbox, &mbox_cmd); 312 if (rc) 313 return rc; 314 315 cxlr = cxl_dpa_to_region(cxlmd, dpa); 316 if (cxlr) 317 dev_warn_once(cxl_mbox->host, 318 "poison inject dpa:%#llx region: %s\n", dpa, 319 dev_name(&cxlr->dev)); 320 321 record = (struct cxl_poison_record) { 322 .address = cpu_to_le64(dpa), 323 .length = cpu_to_le32(1), 324 }; 325 trace_cxl_poison(cxlmd, cxlr, &record, 0, 0, CXL_POISON_TRACE_INJECT); 326 327 return 0; 328 } 329 330 int cxl_inject_poison(struct cxl_memdev *cxlmd, u64 dpa) 331 { 332 int rc; 333 334 ACQUIRE(rwsem_read_intr, region_rwsem)(&cxl_rwsem.region); 335 if ((rc = ACQUIRE_ERR(rwsem_read_intr, ®ion_rwsem))) 336 return rc; 337 338 ACQUIRE(rwsem_read_intr, dpa_rwsem)(&cxl_rwsem.dpa); 339 if ((rc = ACQUIRE_ERR(rwsem_read_intr, &dpa_rwsem))) 340 return rc; 341 342 return cxl_inject_poison_locked(cxlmd, dpa); 343 } 344 EXPORT_SYMBOL_NS_GPL(cxl_inject_poison, "CXL"); 345 346 int cxl_clear_poison_locked(struct cxl_memdev *cxlmd, u64 dpa) 347 { 348 struct cxl_mailbox *cxl_mbox = &cxlmd->cxlds->cxl_mbox; 349 struct cxl_mbox_clear_poison clear; 350 struct cxl_poison_record record; 351 struct cxl_mbox_cmd mbox_cmd; 352 struct cxl_region *cxlr; 353 int rc; 354 355 if (!IS_ENABLED(CONFIG_DEBUG_FS)) 356 return 0; 357 358 lockdep_assert_held(&cxl_rwsem.dpa); 359 lockdep_assert_held(&cxl_rwsem.region); 360 361 rc = cxl_validate_poison_dpa(cxlmd, dpa); 362 if (rc) 363 return rc; 364 365 /* 366 * In CXL 3.0 Spec 8.2.9.8.4.3, the Clear Poison mailbox command 367 * is defined to accept 64 bytes of write-data, along with the 368 * address to clear. This driver uses zeroes as write-data. 369 */ 370 clear = (struct cxl_mbox_clear_poison) { 371 .address = cpu_to_le64(dpa) 372 }; 373 374 mbox_cmd = (struct cxl_mbox_cmd) { 375 .opcode = CXL_MBOX_OP_CLEAR_POISON, 376 .size_in = sizeof(clear), 377 .payload_in = &clear, 378 }; 379 380 rc = cxl_internal_send_cmd(cxl_mbox, &mbox_cmd); 381 if (rc) 382 return rc; 383 384 cxlr = cxl_dpa_to_region(cxlmd, dpa); 385 if (cxlr) 386 dev_warn_once(cxl_mbox->host, 387 "poison clear dpa:%#llx region: %s\n", dpa, 388 dev_name(&cxlr->dev)); 389 390 record = (struct cxl_poison_record) { 391 .address = cpu_to_le64(dpa), 392 .length = cpu_to_le32(1), 393 }; 394 trace_cxl_poison(cxlmd, cxlr, &record, 0, 0, CXL_POISON_TRACE_CLEAR); 395 396 return 0; 397 } 398 399 int cxl_clear_poison(struct cxl_memdev *cxlmd, u64 dpa) 400 { 401 int rc; 402 403 ACQUIRE(rwsem_read_intr, region_rwsem)(&cxl_rwsem.region); 404 if ((rc = ACQUIRE_ERR(rwsem_read_intr, ®ion_rwsem))) 405 return rc; 406 407 ACQUIRE(rwsem_read_intr, dpa_rwsem)(&cxl_rwsem.dpa); 408 if ((rc = ACQUIRE_ERR(rwsem_read_intr, &dpa_rwsem))) 409 return rc; 410 411 return cxl_clear_poison_locked(cxlmd, dpa); 412 } 413 EXPORT_SYMBOL_NS_GPL(cxl_clear_poison, "CXL"); 414 415 static struct attribute *cxl_memdev_attributes[] = { 416 &dev_attr_serial.attr, 417 &dev_attr_firmware_version.attr, 418 &dev_attr_payload_max.attr, 419 &dev_attr_label_storage_size.attr, 420 &dev_attr_numa_node.attr, 421 NULL, 422 }; 423 424 static struct cxl_dpa_perf *to_pmem_perf(struct cxl_dev_state *cxlds) 425 { 426 for (int i = 0; i < cxlds->nr_partitions; i++) 427 if (cxlds->part[i].mode == CXL_PARTMODE_PMEM) 428 return &cxlds->part[i].perf; 429 return NULL; 430 } 431 432 static ssize_t pmem_qos_class_show(struct device *dev, 433 struct device_attribute *attr, char *buf) 434 { 435 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 436 struct cxl_dev_state *cxlds = cxlmd->cxlds; 437 438 return sysfs_emit(buf, "%d\n", to_pmem_perf(cxlds)->qos_class); 439 } 440 441 static struct device_attribute dev_attr_pmem_qos_class = 442 __ATTR(qos_class, 0444, pmem_qos_class_show, NULL); 443 444 static struct attribute *cxl_memdev_pmem_attributes[] = { 445 &dev_attr_pmem_size.attr, 446 &dev_attr_pmem_qos_class.attr, 447 NULL, 448 }; 449 450 static struct cxl_dpa_perf *to_ram_perf(struct cxl_dev_state *cxlds) 451 { 452 if (cxlds->part[0].mode != CXL_PARTMODE_RAM) 453 return NULL; 454 return &cxlds->part[0].perf; 455 } 456 457 static ssize_t ram_qos_class_show(struct device *dev, 458 struct device_attribute *attr, char *buf) 459 { 460 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 461 struct cxl_dev_state *cxlds = cxlmd->cxlds; 462 463 return sysfs_emit(buf, "%d\n", to_ram_perf(cxlds)->qos_class); 464 } 465 466 static struct device_attribute dev_attr_ram_qos_class = 467 __ATTR(qos_class, 0444, ram_qos_class_show, NULL); 468 469 static struct attribute *cxl_memdev_ram_attributes[] = { 470 &dev_attr_ram_size.attr, 471 &dev_attr_ram_qos_class.attr, 472 NULL, 473 }; 474 475 static struct attribute *cxl_memdev_security_attributes[] = { 476 &dev_attr_security_state.attr, 477 &dev_attr_security_sanitize.attr, 478 &dev_attr_security_erase.attr, 479 NULL, 480 }; 481 482 static umode_t cxl_memdev_visible(struct kobject *kobj, struct attribute *a, 483 int n) 484 { 485 if (!IS_ENABLED(CONFIG_NUMA) && a == &dev_attr_numa_node.attr) 486 return 0; 487 return a->mode; 488 } 489 490 static struct attribute_group cxl_memdev_attribute_group = { 491 .attrs = cxl_memdev_attributes, 492 .is_visible = cxl_memdev_visible, 493 }; 494 495 static umode_t cxl_ram_visible(struct kobject *kobj, struct attribute *a, int n) 496 { 497 struct device *dev = kobj_to_dev(kobj); 498 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 499 struct cxl_dpa_perf *perf = to_ram_perf(cxlmd->cxlds); 500 501 if (a == &dev_attr_ram_qos_class.attr && 502 (!perf || perf->qos_class == CXL_QOS_CLASS_INVALID)) 503 return 0; 504 505 return a->mode; 506 } 507 508 static struct attribute_group cxl_memdev_ram_attribute_group = { 509 .name = "ram", 510 .attrs = cxl_memdev_ram_attributes, 511 .is_visible = cxl_ram_visible, 512 }; 513 514 static umode_t cxl_pmem_visible(struct kobject *kobj, struct attribute *a, int n) 515 { 516 struct device *dev = kobj_to_dev(kobj); 517 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 518 struct cxl_dpa_perf *perf = to_pmem_perf(cxlmd->cxlds); 519 520 if (a == &dev_attr_pmem_qos_class.attr && 521 (!perf || perf->qos_class == CXL_QOS_CLASS_INVALID)) 522 return 0; 523 524 return a->mode; 525 } 526 527 static struct attribute_group cxl_memdev_pmem_attribute_group = { 528 .name = "pmem", 529 .attrs = cxl_memdev_pmem_attributes, 530 .is_visible = cxl_pmem_visible, 531 }; 532 533 static umode_t cxl_memdev_security_visible(struct kobject *kobj, 534 struct attribute *a, int n) 535 { 536 struct device *dev = kobj_to_dev(kobj); 537 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 538 struct cxl_memdev_state *mds = to_cxl_memdev_state(cxlmd->cxlds); 539 540 if (a == &dev_attr_security_sanitize.attr && 541 !test_bit(CXL_SEC_ENABLED_SANITIZE, mds->security.enabled_cmds)) 542 return 0; 543 544 if (a == &dev_attr_security_erase.attr && 545 !test_bit(CXL_SEC_ENABLED_SECURE_ERASE, mds->security.enabled_cmds)) 546 return 0; 547 548 return a->mode; 549 } 550 551 static struct attribute_group cxl_memdev_security_attribute_group = { 552 .name = "security", 553 .attrs = cxl_memdev_security_attributes, 554 .is_visible = cxl_memdev_security_visible, 555 }; 556 557 static const struct attribute_group *cxl_memdev_attribute_groups[] = { 558 &cxl_memdev_attribute_group, 559 &cxl_memdev_ram_attribute_group, 560 &cxl_memdev_pmem_attribute_group, 561 &cxl_memdev_security_attribute_group, 562 NULL, 563 }; 564 565 void cxl_memdev_update_perf(struct cxl_memdev *cxlmd) 566 { 567 sysfs_update_group(&cxlmd->dev.kobj, &cxl_memdev_ram_attribute_group); 568 sysfs_update_group(&cxlmd->dev.kobj, &cxl_memdev_pmem_attribute_group); 569 } 570 EXPORT_SYMBOL_NS_GPL(cxl_memdev_update_perf, "CXL"); 571 572 static const struct device_type cxl_memdev_type = { 573 .name = "cxl_memdev", 574 .release = cxl_memdev_release, 575 .devnode = cxl_memdev_devnode, 576 .groups = cxl_memdev_attribute_groups, 577 }; 578 579 bool is_cxl_memdev(const struct device *dev) 580 { 581 return dev->type == &cxl_memdev_type; 582 } 583 EXPORT_SYMBOL_NS_GPL(is_cxl_memdev, "CXL"); 584 585 /** 586 * set_exclusive_cxl_commands() - atomically disable user cxl commands 587 * @mds: The device state to operate on 588 * @cmds: bitmap of commands to mark exclusive 589 * 590 * Grab the cxl_memdev_rwsem in write mode to flush in-flight 591 * invocations of the ioctl path and then disable future execution of 592 * commands with the command ids set in @cmds. 593 */ 594 void set_exclusive_cxl_commands(struct cxl_memdev_state *mds, 595 unsigned long *cmds) 596 { 597 struct cxl_mailbox *cxl_mbox = &mds->cxlds.cxl_mbox; 598 599 guard(rwsem_write)(&cxl_memdev_rwsem); 600 bitmap_or(cxl_mbox->exclusive_cmds, cxl_mbox->exclusive_cmds, 601 cmds, CXL_MEM_COMMAND_ID_MAX); 602 } 603 EXPORT_SYMBOL_NS_GPL(set_exclusive_cxl_commands, "CXL"); 604 605 /** 606 * clear_exclusive_cxl_commands() - atomically enable user cxl commands 607 * @mds: The device state to modify 608 * @cmds: bitmap of commands to mark available for userspace 609 */ 610 void clear_exclusive_cxl_commands(struct cxl_memdev_state *mds, 611 unsigned long *cmds) 612 { 613 struct cxl_mailbox *cxl_mbox = &mds->cxlds.cxl_mbox; 614 615 guard(rwsem_write)(&cxl_memdev_rwsem); 616 bitmap_andnot(cxl_mbox->exclusive_cmds, cxl_mbox->exclusive_cmds, 617 cmds, CXL_MEM_COMMAND_ID_MAX); 618 } 619 EXPORT_SYMBOL_NS_GPL(clear_exclusive_cxl_commands, "CXL"); 620 621 static void cxl_memdev_shutdown(struct device *dev) 622 { 623 struct cxl_memdev *cxlmd = to_cxl_memdev(dev); 624 625 guard(rwsem_write)(&cxl_memdev_rwsem); 626 cxlmd->cxlds = NULL; 627 } 628 629 static void cxl_memdev_unregister(void *_cxlmd) 630 { 631 struct cxl_memdev *cxlmd = _cxlmd; 632 struct device *dev = &cxlmd->dev; 633 634 cdev_device_del(&cxlmd->cdev, dev); 635 cxl_memdev_shutdown(dev); 636 put_device(dev); 637 } 638 639 static void detach_memdev(struct work_struct *work) 640 { 641 struct cxl_memdev *cxlmd; 642 643 cxlmd = container_of(work, typeof(*cxlmd), detach_work); 644 645 /* 646 * When the creator of @cxlmd sets ->attach it indicates CXL operation 647 * is required. In that case, @cxlmd detach escalates to parent device 648 * detach. 649 */ 650 if (cxlmd->attach) 651 device_release_driver(cxlmd->dev.parent); 652 else 653 device_release_driver(&cxlmd->dev); 654 put_device(&cxlmd->dev); 655 } 656 657 static struct lock_class_key cxl_memdev_key; 658 659 static struct cxl_memdev *cxl_memdev_alloc(struct cxl_dev_state *cxlds, 660 const struct file_operations *fops, 661 const struct cxl_memdev_attach *attach) 662 { 663 struct cxl_memdev *cxlmd; 664 struct device *dev; 665 struct cdev *cdev; 666 int rc; 667 668 cxlmd = kzalloc(sizeof(*cxlmd), GFP_KERNEL); 669 if (!cxlmd) 670 return ERR_PTR(-ENOMEM); 671 672 rc = ida_alloc_max(&cxl_memdev_ida, CXL_MEM_MAX_DEVS - 1, GFP_KERNEL); 673 if (rc < 0) 674 goto err; 675 cxlmd->id = rc; 676 cxlmd->depth = -1; 677 cxlmd->attach = attach; 678 cxlmd->endpoint = ERR_PTR(-ENXIO); 679 680 dev = &cxlmd->dev; 681 device_initialize(dev); 682 lockdep_set_class(&dev->mutex, &cxl_memdev_key); 683 dev->parent = cxlds->dev; 684 dev->bus = &cxl_bus_type; 685 dev->devt = MKDEV(cxl_mem_major, cxlmd->id); 686 dev->type = &cxl_memdev_type; 687 device_set_pm_not_required(dev); 688 INIT_WORK(&cxlmd->detach_work, detach_memdev); 689 690 cdev = &cxlmd->cdev; 691 cdev_init(cdev, fops); 692 return cxlmd; 693 694 err: 695 kfree(cxlmd); 696 return ERR_PTR(rc); 697 } 698 699 static long __cxl_memdev_ioctl(struct cxl_memdev *cxlmd, unsigned int cmd, 700 unsigned long arg) 701 { 702 struct cxl_memdev_state *mds = to_cxl_memdev_state(cxlmd->cxlds); 703 struct cxl_mailbox *cxl_mbox = &mds->cxlds.cxl_mbox; 704 705 switch (cmd) { 706 case CXL_MEM_QUERY_COMMANDS: 707 return cxl_query_cmd(cxl_mbox, (void __user *)arg); 708 case CXL_MEM_SEND_COMMAND: 709 return cxl_send_cmd(cxl_mbox, (void __user *)arg); 710 default: 711 return -ENOTTY; 712 } 713 } 714 715 static long cxl_memdev_ioctl(struct file *file, unsigned int cmd, 716 unsigned long arg) 717 { 718 struct cxl_memdev *cxlmd = file->private_data; 719 struct cxl_dev_state *cxlds; 720 721 guard(rwsem_read)(&cxl_memdev_rwsem); 722 cxlds = cxlmd->cxlds; 723 if (cxlds && cxlds->type == CXL_DEVTYPE_CLASSMEM) 724 return __cxl_memdev_ioctl(cxlmd, cmd, arg); 725 726 return -ENXIO; 727 } 728 729 static int cxl_memdev_open(struct inode *inode, struct file *file) 730 { 731 struct cxl_memdev *cxlmd = 732 container_of(inode->i_cdev, typeof(*cxlmd), cdev); 733 734 get_device(&cxlmd->dev); 735 file->private_data = cxlmd; 736 737 return 0; 738 } 739 740 static int cxl_memdev_release_file(struct inode *inode, struct file *file) 741 { 742 struct cxl_memdev *cxlmd = 743 container_of(inode->i_cdev, typeof(*cxlmd), cdev); 744 745 put_device(&cxlmd->dev); 746 747 return 0; 748 } 749 750 /** 751 * cxl_mem_get_fw_info - Get Firmware info 752 * @mds: The device data for the operation 753 * 754 * Retrieve firmware info for the device specified. 755 * 756 * Return: 0 if no error: or the result of the mailbox command. 757 * 758 * See CXL-3.0 8.2.9.3.1 Get FW Info 759 */ 760 static int cxl_mem_get_fw_info(struct cxl_memdev_state *mds) 761 { 762 struct cxl_mailbox *cxl_mbox = &mds->cxlds.cxl_mbox; 763 struct cxl_mbox_get_fw_info info; 764 struct cxl_mbox_cmd mbox_cmd; 765 int rc; 766 767 mbox_cmd = (struct cxl_mbox_cmd) { 768 .opcode = CXL_MBOX_OP_GET_FW_INFO, 769 .size_out = sizeof(info), 770 .payload_out = &info, 771 }; 772 773 rc = cxl_internal_send_cmd(cxl_mbox, &mbox_cmd); 774 if (rc < 0) 775 return rc; 776 777 mds->fw.num_slots = info.num_slots; 778 mds->fw.cur_slot = FIELD_GET(CXL_FW_INFO_SLOT_INFO_CUR_MASK, 779 info.slot_info); 780 781 return 0; 782 } 783 784 /** 785 * cxl_mem_activate_fw - Activate Firmware 786 * @mds: The device data for the operation 787 * @slot: slot number to activate 788 * 789 * Activate firmware in a given slot for the device specified. 790 * 791 * Return: 0 if no error: or the result of the mailbox command. 792 * 793 * See CXL-3.0 8.2.9.3.3 Activate FW 794 */ 795 static int cxl_mem_activate_fw(struct cxl_memdev_state *mds, int slot) 796 { 797 struct cxl_mailbox *cxl_mbox = &mds->cxlds.cxl_mbox; 798 struct cxl_mbox_activate_fw activate; 799 struct cxl_mbox_cmd mbox_cmd; 800 801 if (slot == 0 || slot > mds->fw.num_slots) 802 return -EINVAL; 803 804 mbox_cmd = (struct cxl_mbox_cmd) { 805 .opcode = CXL_MBOX_OP_ACTIVATE_FW, 806 .size_in = sizeof(activate), 807 .payload_in = &activate, 808 }; 809 810 /* Only offline activation supported for now */ 811 activate.action = CXL_FW_ACTIVATE_OFFLINE; 812 activate.slot = slot; 813 814 return cxl_internal_send_cmd(cxl_mbox, &mbox_cmd); 815 } 816 817 /** 818 * cxl_mem_abort_fw_xfer - Abort an in-progress FW transfer 819 * @mds: The device data for the operation 820 * 821 * Abort an in-progress firmware transfer for the device specified. 822 * 823 * Return: 0 if no error: or the result of the mailbox command. 824 * 825 * See CXL-3.0 8.2.9.3.2 Transfer FW 826 */ 827 static int cxl_mem_abort_fw_xfer(struct cxl_memdev_state *mds) 828 { 829 struct cxl_mailbox *cxl_mbox = &mds->cxlds.cxl_mbox; 830 struct cxl_mbox_transfer_fw *transfer; 831 struct cxl_mbox_cmd mbox_cmd; 832 int rc; 833 834 transfer = kzalloc(struct_size(transfer, data, 0), GFP_KERNEL); 835 if (!transfer) 836 return -ENOMEM; 837 838 /* Set a 1s poll interval and a total wait time of 30s */ 839 mbox_cmd = (struct cxl_mbox_cmd) { 840 .opcode = CXL_MBOX_OP_TRANSFER_FW, 841 .size_in = sizeof(*transfer), 842 .payload_in = transfer, 843 .poll_interval_ms = 1000, 844 .poll_count = 30, 845 }; 846 847 transfer->action = CXL_FW_TRANSFER_ACTION_ABORT; 848 849 rc = cxl_internal_send_cmd(cxl_mbox, &mbox_cmd); 850 kfree(transfer); 851 return rc; 852 } 853 854 static void cxl_fw_cleanup(struct fw_upload *fwl) 855 { 856 struct cxl_memdev_state *mds = fwl->dd_handle; 857 858 mds->fw.next_slot = 0; 859 } 860 861 static int cxl_fw_do_cancel(struct fw_upload *fwl) 862 { 863 struct cxl_memdev_state *mds = fwl->dd_handle; 864 struct cxl_dev_state *cxlds = &mds->cxlds; 865 struct cxl_memdev *cxlmd = cxlds->cxlmd; 866 int rc; 867 868 rc = cxl_mem_abort_fw_xfer(mds); 869 if (rc < 0) 870 dev_err(&cxlmd->dev, "Error aborting FW transfer: %d\n", rc); 871 872 return FW_UPLOAD_ERR_CANCELED; 873 } 874 875 static enum fw_upload_err cxl_fw_prepare(struct fw_upload *fwl, const u8 *data, 876 u32 size) 877 { 878 struct cxl_memdev_state *mds = fwl->dd_handle; 879 struct cxl_mbox_transfer_fw *transfer; 880 struct cxl_mailbox *cxl_mbox = &mds->cxlds.cxl_mbox; 881 882 if (!size) 883 return FW_UPLOAD_ERR_INVALID_SIZE; 884 885 mds->fw.oneshot = struct_size(transfer, data, size) < 886 cxl_mbox->payload_size; 887 888 if (cxl_mem_get_fw_info(mds)) 889 return FW_UPLOAD_ERR_HW_ERROR; 890 891 /* 892 * So far no state has been changed, hence no other cleanup is 893 * necessary. Simply return the cancelled status. 894 */ 895 if (test_and_clear_bit(CXL_FW_CANCEL, mds->fw.state)) 896 return FW_UPLOAD_ERR_CANCELED; 897 898 return FW_UPLOAD_ERR_NONE; 899 } 900 901 static enum fw_upload_err cxl_fw_write(struct fw_upload *fwl, const u8 *data, 902 u32 offset, u32 size, u32 *written) 903 { 904 struct cxl_memdev_state *mds = fwl->dd_handle; 905 struct cxl_dev_state *cxlds = &mds->cxlds; 906 struct cxl_mailbox *cxl_mbox = &cxlds->cxl_mbox; 907 struct cxl_memdev *cxlmd = cxlds->cxlmd; 908 struct cxl_mbox_transfer_fw *transfer; 909 struct cxl_mbox_cmd mbox_cmd; 910 u32 cur_size, remaining; 911 size_t size_in; 912 int rc; 913 914 *written = 0; 915 916 /* Offset has to be aligned to 128B (CXL-3.0 8.2.9.3.2 Table 8-57) */ 917 if (!IS_ALIGNED(offset, CXL_FW_TRANSFER_ALIGNMENT)) { 918 dev_err(&cxlmd->dev, 919 "misaligned offset for FW transfer slice (%u)\n", 920 offset); 921 return FW_UPLOAD_ERR_RW_ERROR; 922 } 923 924 /* 925 * Pick transfer size based on mds->payload_size @size must bw 128-byte 926 * aligned, ->payload_size is a power of 2 starting at 256 bytes, and 927 * sizeof(*transfer) is 128. These constraints imply that @cur_size 928 * will always be 128b aligned. 929 */ 930 cur_size = min_t(size_t, size, cxl_mbox->payload_size - sizeof(*transfer)); 931 932 remaining = size - cur_size; 933 size_in = struct_size(transfer, data, cur_size); 934 935 if (test_and_clear_bit(CXL_FW_CANCEL, mds->fw.state)) 936 return cxl_fw_do_cancel(fwl); 937 938 /* 939 * Slot numbers are 1-indexed 940 * cur_slot is the 0-indexed next_slot (i.e. 'cur_slot - 1 + 1') 941 * Check for rollover using modulo, and 1-index it by adding 1 942 */ 943 mds->fw.next_slot = (mds->fw.cur_slot % mds->fw.num_slots) + 1; 944 945 /* Do the transfer via mailbox cmd */ 946 transfer = kzalloc(size_in, GFP_KERNEL); 947 if (!transfer) 948 return FW_UPLOAD_ERR_RW_ERROR; 949 950 transfer->offset = cpu_to_le32(offset / CXL_FW_TRANSFER_ALIGNMENT); 951 memcpy(transfer->data, data + offset, cur_size); 952 if (mds->fw.oneshot) { 953 transfer->action = CXL_FW_TRANSFER_ACTION_FULL; 954 transfer->slot = mds->fw.next_slot; 955 } else { 956 if (offset == 0) { 957 transfer->action = CXL_FW_TRANSFER_ACTION_INITIATE; 958 } else if (remaining == 0) { 959 transfer->action = CXL_FW_TRANSFER_ACTION_END; 960 transfer->slot = mds->fw.next_slot; 961 } else { 962 transfer->action = CXL_FW_TRANSFER_ACTION_CONTINUE; 963 } 964 } 965 966 mbox_cmd = (struct cxl_mbox_cmd) { 967 .opcode = CXL_MBOX_OP_TRANSFER_FW, 968 .size_in = size_in, 969 .payload_in = transfer, 970 .poll_interval_ms = 1000, 971 .poll_count = 30, 972 }; 973 974 rc = cxl_internal_send_cmd(cxl_mbox, &mbox_cmd); 975 if (rc < 0) { 976 rc = FW_UPLOAD_ERR_RW_ERROR; 977 goto out_free; 978 } 979 980 *written = cur_size; 981 982 /* Activate FW if oneshot or if the last slice was written */ 983 if (mds->fw.oneshot || remaining == 0) { 984 dev_dbg(&cxlmd->dev, "Activating firmware slot: %d\n", 985 mds->fw.next_slot); 986 rc = cxl_mem_activate_fw(mds, mds->fw.next_slot); 987 if (rc < 0) { 988 dev_err(&cxlmd->dev, "Error activating firmware: %d\n", 989 rc); 990 rc = FW_UPLOAD_ERR_HW_ERROR; 991 goto out_free; 992 } 993 } 994 995 rc = FW_UPLOAD_ERR_NONE; 996 997 out_free: 998 kfree(transfer); 999 return rc; 1000 } 1001 1002 static enum fw_upload_err cxl_fw_poll_complete(struct fw_upload *fwl) 1003 { 1004 struct cxl_memdev_state *mds = fwl->dd_handle; 1005 1006 /* 1007 * cxl_internal_send_cmd() handles background operations synchronously. 1008 * No need to wait for completions here - any errors would've been 1009 * reported and handled during the ->write() call(s). 1010 * Just check if a cancel request was received, and return success. 1011 */ 1012 if (test_and_clear_bit(CXL_FW_CANCEL, mds->fw.state)) 1013 return cxl_fw_do_cancel(fwl); 1014 1015 return FW_UPLOAD_ERR_NONE; 1016 } 1017 1018 static void cxl_fw_cancel(struct fw_upload *fwl) 1019 { 1020 struct cxl_memdev_state *mds = fwl->dd_handle; 1021 1022 set_bit(CXL_FW_CANCEL, mds->fw.state); 1023 } 1024 1025 static const struct fw_upload_ops cxl_memdev_fw_ops = { 1026 .prepare = cxl_fw_prepare, 1027 .write = cxl_fw_write, 1028 .poll_complete = cxl_fw_poll_complete, 1029 .cancel = cxl_fw_cancel, 1030 .cleanup = cxl_fw_cleanup, 1031 }; 1032 1033 static void cxl_remove_fw_upload(void *fwl) 1034 { 1035 firmware_upload_unregister(fwl); 1036 } 1037 1038 int devm_cxl_setup_fw_upload(struct device *host, struct cxl_memdev_state *mds) 1039 { 1040 struct cxl_dev_state *cxlds = &mds->cxlds; 1041 struct cxl_mailbox *cxl_mbox = &cxlds->cxl_mbox; 1042 struct device *dev = &cxlds->cxlmd->dev; 1043 struct fw_upload *fwl; 1044 1045 if (!test_bit(CXL_MEM_COMMAND_ID_GET_FW_INFO, cxl_mbox->enabled_cmds)) 1046 return 0; 1047 1048 fwl = firmware_upload_register(THIS_MODULE, dev, dev_name(dev), 1049 &cxl_memdev_fw_ops, mds); 1050 if (IS_ERR(fwl)) 1051 return PTR_ERR(fwl); 1052 return devm_add_action_or_reset(host, cxl_remove_fw_upload, fwl); 1053 } 1054 EXPORT_SYMBOL_NS_GPL(devm_cxl_setup_fw_upload, "CXL"); 1055 1056 static const struct file_operations cxl_memdev_fops = { 1057 .owner = THIS_MODULE, 1058 .unlocked_ioctl = cxl_memdev_ioctl, 1059 .open = cxl_memdev_open, 1060 .release = cxl_memdev_release_file, 1061 .compat_ioctl = compat_ptr_ioctl, 1062 .llseek = noop_llseek, 1063 }; 1064 1065 /* 1066 * Activate ioctl operations, no cxl_memdev_rwsem manipulation needed as this is 1067 * ordered with cdev_add() publishing the device. 1068 */ 1069 static int cxlmd_add(struct cxl_memdev *cxlmd, struct cxl_dev_state *cxlds) 1070 { 1071 int rc; 1072 1073 cxlmd->cxlds = cxlds; 1074 cxlds->cxlmd = cxlmd; 1075 1076 rc = cdev_device_add(&cxlmd->cdev, &cxlmd->dev); 1077 if (rc) { 1078 /* 1079 * The cdev was briefly live, shutdown any ioctl operations that 1080 * saw that state. 1081 */ 1082 cxl_memdev_shutdown(&cxlmd->dev); 1083 return rc; 1084 } 1085 1086 return 0; 1087 } 1088 1089 DEFINE_FREE(put_cxlmd, struct cxl_memdev *, 1090 if (!IS_ERR_OR_NULL(_T)) put_device(&_T->dev)) 1091 1092 static struct cxl_memdev *cxl_memdev_autoremove(struct cxl_memdev *cxlmd) 1093 { 1094 int rc; 1095 1096 /* 1097 * If @attach is provided fail if the driver is not attached upon 1098 * return. Note that failure here could be the result of a race to 1099 * teardown the CXL port topology. I.e. cxl_mem_probe() could have 1100 * succeeded and then cxl_mem unbound before the lock is acquired. 1101 */ 1102 guard(device)(&cxlmd->dev); 1103 if (cxlmd->attach && !cxlmd->dev.driver) { 1104 cxl_memdev_unregister(cxlmd); 1105 return ERR_PTR(-ENXIO); 1106 } 1107 1108 rc = devm_add_action_or_reset(cxlmd->cxlds->dev, cxl_memdev_unregister, 1109 cxlmd); 1110 if (rc) 1111 return ERR_PTR(rc); 1112 1113 return cxlmd; 1114 } 1115 1116 /* 1117 * Core helper for devm_cxl_add_memdev() that wants to both create a device and 1118 * assert to the caller that upon return cxl_mem::probe() has been invoked. 1119 */ 1120 struct cxl_memdev *__devm_cxl_add_memdev(struct cxl_dev_state *cxlds, 1121 const struct cxl_memdev_attach *attach) 1122 { 1123 struct device *dev; 1124 int rc; 1125 1126 struct cxl_memdev *cxlmd __free(put_cxlmd) = 1127 cxl_memdev_alloc(cxlds, &cxl_memdev_fops, attach); 1128 if (IS_ERR(cxlmd)) 1129 return cxlmd; 1130 1131 dev = &cxlmd->dev; 1132 rc = dev_set_name(dev, "mem%d", cxlmd->id); 1133 if (rc) 1134 return ERR_PTR(rc); 1135 1136 rc = cxlmd_add(cxlmd, cxlds); 1137 if (rc) 1138 return ERR_PTR(rc); 1139 1140 return cxl_memdev_autoremove(no_free_ptr(cxlmd)); 1141 } 1142 EXPORT_SYMBOL_FOR_MODULES(__devm_cxl_add_memdev, "cxl_mem"); 1143 1144 static void sanitize_teardown_notifier(void *data) 1145 { 1146 struct cxl_memdev_state *mds = data; 1147 struct cxl_mailbox *cxl_mbox = &mds->cxlds.cxl_mbox; 1148 struct kernfs_node *state; 1149 1150 /* 1151 * Prevent new irq triggered invocations of the workqueue and 1152 * flush inflight invocations. 1153 */ 1154 mutex_lock(&cxl_mbox->mbox_mutex); 1155 state = mds->security.sanitize_node; 1156 mds->security.sanitize_node = NULL; 1157 mutex_unlock(&cxl_mbox->mbox_mutex); 1158 1159 cancel_delayed_work_sync(&mds->security.poll_dwork); 1160 sysfs_put(state); 1161 } 1162 1163 int devm_cxl_sanitize_setup_notifier(struct device *host, 1164 struct cxl_memdev *cxlmd) 1165 { 1166 struct cxl_dev_state *cxlds = cxlmd->cxlds; 1167 struct cxl_memdev_state *mds = to_cxl_memdev_state(cxlds); 1168 struct kernfs_node *sec; 1169 1170 if (!test_bit(CXL_SEC_ENABLED_SANITIZE, mds->security.enabled_cmds)) 1171 return 0; 1172 1173 /* 1174 * Note, the expectation is that @cxlmd would have failed to be 1175 * created if these sysfs_get_dirent calls fail. 1176 */ 1177 sec = sysfs_get_dirent(cxlmd->dev.kobj.sd, "security"); 1178 if (!sec) 1179 return -ENOENT; 1180 mds->security.sanitize_node = sysfs_get_dirent(sec, "state"); 1181 sysfs_put(sec); 1182 if (!mds->security.sanitize_node) 1183 return -ENOENT; 1184 1185 return devm_add_action_or_reset(host, sanitize_teardown_notifier, mds); 1186 } 1187 EXPORT_SYMBOL_NS_GPL(devm_cxl_sanitize_setup_notifier, "CXL"); 1188 1189 __init int cxl_memdev_init(void) 1190 { 1191 dev_t devt; 1192 int rc; 1193 1194 rc = alloc_chrdev_region(&devt, 0, CXL_MEM_MAX_DEVS, "cxl"); 1195 if (rc) 1196 return rc; 1197 1198 cxl_mem_major = MAJOR(devt); 1199 1200 return 0; 1201 } 1202 1203 void cxl_memdev_exit(void) 1204 { 1205 unregister_chrdev_region(MKDEV(cxl_mem_major, 0), CXL_MEM_MAX_DEVS); 1206 } 1207