1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright(c) 2022 Intel Corporation. All rights reserved. */
3 #include <linux/device.h>
4 #include <linux/module.h>
5 #include <linux/slab.h>
13 * The port driver enumerates dport via PCI and scans for HDM
14 * (Host-managed-Device-Memory) decoder resources via the
15 * @component_reg_phys value passed in by the agent that registered the
16 * port. All descendant ports of a CXL root port (described by platform
17 * firmware) are managed in this drivers context. Each driver instance
18 * is responsible for tearing down the driver context of immediate
19 * descendant ports. The locking for this is validated by
20 * CONFIG_PROVE_CXL_LOCKING.
22 * The primary service this driver provides is presenting APIs to other
23 * drivers to utilize the decoders, and indicating to userspace (via bind
24 * status) the connectivity of the CXL.mem protocol throughout the
28 static void schedule_detach(void *cxlmd)
30 schedule_cxl_memdev_detach(cxlmd);
33 static int cxl_port_probe(struct device *dev)
35 struct cxl_port *port = to_cxl_port(dev);
36 struct cxl_hdm *cxlhdm;
40 if (!is_cxl_endpoint(port)) {
41 rc = devm_cxl_port_enumerate_dports(port);
45 return devm_cxl_add_passthrough_decoder(port);
48 cxlhdm = devm_cxl_setup_hdm(port);
50 return PTR_ERR(cxlhdm);
52 if (is_cxl_endpoint(port)) {
53 struct cxl_memdev *cxlmd = to_cxl_memdev(port->uport);
54 struct cxl_dev_state *cxlds = cxlmd->cxlds;
56 get_device(&cxlmd->dev);
57 rc = devm_add_action_or_reset(dev, schedule_detach, cxlmd);
61 rc = cxl_hdm_decode_init(cxlds, cxlhdm);
65 rc = cxl_await_media_ready(cxlds);
67 dev_err(dev, "Media not active (%d)\n", rc);
72 rc = devm_cxl_enumerate_decoders(cxlhdm);
74 dev_err(dev, "Couldn't enumerate decoders (%d)\n", rc);
81 static struct cxl_driver cxl_port_driver = {
83 .probe = cxl_port_probe,
84 .id = CXL_DEVICE_PORT,
87 module_cxl_driver(cxl_port_driver);
88 MODULE_LICENSE("GPL v2");
89 MODULE_IMPORT_NS(CXL);
90 MODULE_ALIAS_CXL(CXL_DEVICE_PORT);