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 discover_region(struct device
*dev
, void *root
)
35 struct cxl_endpoint_decoder
*cxled
;
38 if (!is_endpoint_decoder(dev
))
41 cxled
= to_cxl_endpoint_decoder(dev
);
42 if ((cxled
->cxld
.flags
& CXL_DECODER_F_ENABLE
) == 0)
45 if (cxled
->state
!= CXL_DECODER_STATE_AUTO
)
49 * Region enumeration is opportunistic, if this add-event fails,
50 * continue to the next endpoint decoder.
52 rc
= cxl_add_to_region(root
, cxled
);
54 dev_dbg(dev
, "failed to add to region: %#llx-%#llx\n",
55 cxled
->cxld
.hpa_range
.start
, cxled
->cxld
.hpa_range
.end
);
60 static int cxl_switch_port_probe(struct cxl_port
*port
)
62 struct cxl_hdm
*cxlhdm
;
65 /* Cache the data early to ensure is_visible() works */
68 rc
= devm_cxl_port_enumerate_dports(port
);
72 cxl_switch_parse_cdat(port
);
74 cxlhdm
= devm_cxl_setup_hdm(port
, NULL
);
76 return devm_cxl_enumerate_decoders(cxlhdm
, NULL
);
78 if (PTR_ERR(cxlhdm
) != -ENODEV
) {
79 dev_err(&port
->dev
, "Failed to map HDM decoder capability\n");
80 return PTR_ERR(cxlhdm
);
84 dev_dbg(&port
->dev
, "Fallback to passthrough decoder\n");
85 return devm_cxl_add_passthrough_decoder(port
);
88 dev_err(&port
->dev
, "HDM decoder capability not found\n");
92 static int cxl_endpoint_port_probe(struct cxl_port
*port
)
94 struct cxl_endpoint_dvsec_info info
= { .port
= port
};
95 struct cxl_memdev
*cxlmd
= to_cxl_memdev(port
->uport_dev
);
96 struct cxl_dev_state
*cxlds
= cxlmd
->cxlds
;
97 struct cxl_hdm
*cxlhdm
;
98 struct cxl_port
*root
;
101 rc
= cxl_dvsec_rr_decode(cxlds
->dev
, port
, &info
);
105 cxlhdm
= devm_cxl_setup_hdm(port
, &info
);
106 if (IS_ERR(cxlhdm
)) {
107 if (PTR_ERR(cxlhdm
) == -ENODEV
)
108 dev_err(&port
->dev
, "HDM decoder registers not found\n");
109 return PTR_ERR(cxlhdm
);
112 /* Cache the data early to ensure is_visible() works */
113 read_cdat_data(port
);
114 cxl_endpoint_parse_cdat(port
);
116 get_device(&cxlmd
->dev
);
117 rc
= devm_add_action_or_reset(&port
->dev
, schedule_detach
, cxlmd
);
121 rc
= cxl_hdm_decode_init(cxlds
, cxlhdm
, &info
);
125 rc
= devm_cxl_enumerate_decoders(cxlhdm
, &info
);
130 * This can't fail in practice as CXL root exit unregisters all
131 * descendant ports and that in turn synchronizes with cxl_port_probe()
133 struct cxl_root
*cxl_root
__free(put_cxl_root
) = find_cxl_root(port
);
135 root
= &cxl_root
->port
;
138 * Now that all endpoint decoders are successfully enumerated, try to
139 * assemble regions from committed decoders
141 device_for_each_child(&port
->dev
, root
, discover_region
);
146 static int cxl_port_probe(struct device
*dev
)
148 struct cxl_port
*port
= to_cxl_port(dev
);
150 if (is_cxl_endpoint(port
))
151 return cxl_endpoint_port_probe(port
);
152 return cxl_switch_port_probe(port
);
155 static ssize_t
CDAT_read(struct file
*filp
, struct kobject
*kobj
,
156 struct bin_attribute
*bin_attr
, char *buf
,
157 loff_t offset
, size_t count
)
159 struct device
*dev
= kobj_to_dev(kobj
);
160 struct cxl_port
*port
= to_cxl_port(dev
);
162 if (!port
->cdat_available
)
165 if (!port
->cdat
.table
)
168 return memory_read_from_buffer(buf
, count
, &offset
,
173 static BIN_ATTR_ADMIN_RO(CDAT
, 0);
175 static umode_t
cxl_port_bin_attr_is_visible(struct kobject
*kobj
,
176 const struct bin_attribute
*attr
, int i
)
178 struct device
*dev
= kobj_to_dev(kobj
);
179 struct cxl_port
*port
= to_cxl_port(dev
);
181 if ((attr
== &bin_attr_CDAT
) && port
->cdat_available
)
182 return attr
->attr
.mode
;
187 static struct bin_attribute
*cxl_cdat_bin_attributes
[] = {
192 static struct attribute_group cxl_cdat_attribute_group
= {
193 .bin_attrs
= cxl_cdat_bin_attributes
,
194 .is_bin_visible
= cxl_port_bin_attr_is_visible
,
197 static const struct attribute_group
*cxl_port_attribute_groups
[] = {
198 &cxl_cdat_attribute_group
,
202 static struct cxl_driver cxl_port_driver
= {
204 .probe
= cxl_port_probe
,
205 .id
= CXL_DEVICE_PORT
,
207 .dev_groups
= cxl_port_attribute_groups
,
211 static int __init
cxl_port_init(void)
213 return cxl_driver_register(&cxl_port_driver
);
216 * Be ready to immediately enable ports emitted by the platform CXL root
217 * (e.g. cxl_acpi) when CONFIG_CXL_PORT=y.
219 subsys_initcall(cxl_port_init
);
221 static void __exit
cxl_port_exit(void)
223 cxl_driver_unregister(&cxl_port_driver
);
225 module_exit(cxl_port_exit
);
227 MODULE_DESCRIPTION("CXL: Port enumeration and services");
228 MODULE_LICENSE("GPL v2");
229 MODULE_IMPORT_NS("CXL");
230 MODULE_ALIAS_CXL(CXL_DEVICE_PORT
);