xref: /openbmc/linux/drivers/cxl/core/pmem.c (revision 79d949a2)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright(c) 2020 Intel Corporation. */
3 #include <linux/device.h>
4 #include <linux/slab.h>
5 #include <linux/idr.h>
6 #include <cxlmem.h>
7 #include <cxl.h>
8 #include "core.h"
9 
10 /**
11  * DOC: cxl pmem
12  *
13  * The core CXL PMEM infrastructure supports persistent memory
14  * provisioning and serves as a bridge to the LIBNVDIMM subsystem. A CXL
15  * 'bridge' device is added at the root of a CXL device topology if
16  * platform firmware advertises at least one persistent memory capable
17  * CXL window. That root-level bridge corresponds to a LIBNVDIMM 'bus'
18  * device. Then for each cxl_memdev in the CXL device topology a bridge
19  * device is added to host a LIBNVDIMM dimm object. When these bridges
20  * are registered native LIBNVDIMM uapis are translated to CXL
21  * operations, for example, namespace label access commands.
22  */
23 
24 static DEFINE_IDA(cxl_nvdimm_bridge_ida);
25 
26 static void cxl_nvdimm_bridge_release(struct device *dev)
27 {
28 	struct cxl_nvdimm_bridge *cxl_nvb = to_cxl_nvdimm_bridge(dev);
29 
30 	ida_free(&cxl_nvdimm_bridge_ida, cxl_nvb->id);
31 	kfree(cxl_nvb);
32 }
33 
34 static const struct attribute_group *cxl_nvdimm_bridge_attribute_groups[] = {
35 	&cxl_base_attribute_group,
36 	NULL,
37 };
38 
39 const struct device_type cxl_nvdimm_bridge_type = {
40 	.name = "cxl_nvdimm_bridge",
41 	.release = cxl_nvdimm_bridge_release,
42 	.groups = cxl_nvdimm_bridge_attribute_groups,
43 };
44 
45 struct cxl_nvdimm_bridge *to_cxl_nvdimm_bridge(struct device *dev)
46 {
47 	if (dev_WARN_ONCE(dev, dev->type != &cxl_nvdimm_bridge_type,
48 			  "not a cxl_nvdimm_bridge device\n"))
49 		return NULL;
50 	return container_of(dev, struct cxl_nvdimm_bridge, dev);
51 }
52 EXPORT_SYMBOL_NS_GPL(to_cxl_nvdimm_bridge, CXL);
53 
54 bool is_cxl_nvdimm_bridge(struct device *dev)
55 {
56 	return dev->type == &cxl_nvdimm_bridge_type;
57 }
58 EXPORT_SYMBOL_NS_GPL(is_cxl_nvdimm_bridge, CXL);
59 
60 static int match_nvdimm_bridge(struct device *dev, void *data)
61 {
62 	return is_cxl_nvdimm_bridge(dev);
63 }
64 
65 struct cxl_nvdimm_bridge *cxl_find_nvdimm_bridge(struct device *start)
66 {
67 	struct cxl_port *port = find_cxl_root(start);
68 	struct device *dev;
69 
70 	if (!port)
71 		return NULL;
72 
73 	dev = device_find_child(&port->dev, NULL, match_nvdimm_bridge);
74 	put_device(&port->dev);
75 
76 	if (!dev)
77 		return NULL;
78 
79 	return to_cxl_nvdimm_bridge(dev);
80 }
81 EXPORT_SYMBOL_NS_GPL(cxl_find_nvdimm_bridge, CXL);
82 
83 static struct lock_class_key cxl_nvdimm_bridge_key;
84 
85 static struct cxl_nvdimm_bridge *cxl_nvdimm_bridge_alloc(struct cxl_port *port)
86 {
87 	struct cxl_nvdimm_bridge *cxl_nvb;
88 	struct device *dev;
89 	int rc;
90 
91 	cxl_nvb = kzalloc(sizeof(*cxl_nvb), GFP_KERNEL);
92 	if (!cxl_nvb)
93 		return ERR_PTR(-ENOMEM);
94 
95 	rc = ida_alloc(&cxl_nvdimm_bridge_ida, GFP_KERNEL);
96 	if (rc < 0)
97 		goto err;
98 	cxl_nvb->id = rc;
99 
100 	dev = &cxl_nvb->dev;
101 	cxl_nvb->port = port;
102 	cxl_nvb->state = CXL_NVB_NEW;
103 	device_initialize(dev);
104 	lockdep_set_class(&dev->mutex, &cxl_nvdimm_bridge_key);
105 	device_set_pm_not_required(dev);
106 	dev->parent = &port->dev;
107 	dev->bus = &cxl_bus_type;
108 	dev->type = &cxl_nvdimm_bridge_type;
109 
110 	return cxl_nvb;
111 
112 err:
113 	kfree(cxl_nvb);
114 	return ERR_PTR(rc);
115 }
116 
117 static void unregister_nvb(void *_cxl_nvb)
118 {
119 	struct cxl_nvdimm_bridge *cxl_nvb = _cxl_nvb;
120 	bool flush;
121 
122 	/*
123 	 * If the bridge was ever activated then there might be in-flight state
124 	 * work to flush. Once the state has been changed to 'dead' then no new
125 	 * work can be queued by user-triggered bind.
126 	 */
127 	device_lock(&cxl_nvb->dev);
128 	flush = cxl_nvb->state != CXL_NVB_NEW;
129 	cxl_nvb->state = CXL_NVB_DEAD;
130 	device_unlock(&cxl_nvb->dev);
131 
132 	/*
133 	 * Even though the device core will trigger device_release_driver()
134 	 * before the unregister, it does not know about the fact that
135 	 * cxl_nvdimm_bridge_driver defers ->remove() work. So, do the driver
136 	 * release not and flush it before tearing down the nvdimm device
137 	 * hierarchy.
138 	 */
139 	device_release_driver(&cxl_nvb->dev);
140 	if (flush)
141 		flush_work(&cxl_nvb->state_work);
142 	device_unregister(&cxl_nvb->dev);
143 }
144 
145 /**
146  * devm_cxl_add_nvdimm_bridge() - add the root of a LIBNVDIMM topology
147  * @host: platform firmware root device
148  * @port: CXL port at the root of a CXL topology
149  *
150  * Return: bridge device that can host cxl_nvdimm objects
151  */
152 struct cxl_nvdimm_bridge *devm_cxl_add_nvdimm_bridge(struct device *host,
153 						     struct cxl_port *port)
154 {
155 	struct cxl_nvdimm_bridge *cxl_nvb;
156 	struct device *dev;
157 	int rc;
158 
159 	if (!IS_ENABLED(CONFIG_CXL_PMEM))
160 		return ERR_PTR(-ENXIO);
161 
162 	cxl_nvb = cxl_nvdimm_bridge_alloc(port);
163 	if (IS_ERR(cxl_nvb))
164 		return cxl_nvb;
165 
166 	dev = &cxl_nvb->dev;
167 	rc = dev_set_name(dev, "nvdimm-bridge%d", cxl_nvb->id);
168 	if (rc)
169 		goto err;
170 
171 	rc = device_add(dev);
172 	if (rc)
173 		goto err;
174 
175 	rc = devm_add_action_or_reset(host, unregister_nvb, cxl_nvb);
176 	if (rc)
177 		return ERR_PTR(rc);
178 
179 	return cxl_nvb;
180 
181 err:
182 	put_device(dev);
183 	return ERR_PTR(rc);
184 }
185 EXPORT_SYMBOL_NS_GPL(devm_cxl_add_nvdimm_bridge, CXL);
186 
187 static void cxl_nvdimm_release(struct device *dev)
188 {
189 	struct cxl_nvdimm *cxl_nvd = to_cxl_nvdimm(dev);
190 
191 	xa_destroy(&cxl_nvd->pmem_regions);
192 	kfree(cxl_nvd);
193 }
194 
195 static const struct attribute_group *cxl_nvdimm_attribute_groups[] = {
196 	&cxl_base_attribute_group,
197 	NULL,
198 };
199 
200 const struct device_type cxl_nvdimm_type = {
201 	.name = "cxl_nvdimm",
202 	.release = cxl_nvdimm_release,
203 	.groups = cxl_nvdimm_attribute_groups,
204 };
205 
206 bool is_cxl_nvdimm(struct device *dev)
207 {
208 	return dev->type == &cxl_nvdimm_type;
209 }
210 EXPORT_SYMBOL_NS_GPL(is_cxl_nvdimm, CXL);
211 
212 struct cxl_nvdimm *to_cxl_nvdimm(struct device *dev)
213 {
214 	if (dev_WARN_ONCE(dev, !is_cxl_nvdimm(dev),
215 			  "not a cxl_nvdimm device\n"))
216 		return NULL;
217 	return container_of(dev, struct cxl_nvdimm, dev);
218 }
219 EXPORT_SYMBOL_NS_GPL(to_cxl_nvdimm, CXL);
220 
221 static struct lock_class_key cxl_nvdimm_key;
222 
223 static struct cxl_nvdimm *cxl_nvdimm_alloc(struct cxl_memdev *cxlmd)
224 {
225 	struct cxl_nvdimm *cxl_nvd;
226 	struct device *dev;
227 
228 	cxl_nvd = kzalloc(sizeof(*cxl_nvd), GFP_KERNEL);
229 	if (!cxl_nvd)
230 		return ERR_PTR(-ENOMEM);
231 
232 	dev = &cxl_nvd->dev;
233 	cxl_nvd->cxlmd = cxlmd;
234 	xa_init(&cxl_nvd->pmem_regions);
235 	device_initialize(dev);
236 	lockdep_set_class(&dev->mutex, &cxl_nvdimm_key);
237 	device_set_pm_not_required(dev);
238 	dev->parent = &cxlmd->dev;
239 	dev->bus = &cxl_bus_type;
240 	dev->type = &cxl_nvdimm_type;
241 
242 	return cxl_nvd;
243 }
244 
245 static void cxl_nvd_unregister(void *dev)
246 {
247 	device_unregister(dev);
248 }
249 
250 /**
251  * devm_cxl_add_nvdimm() - add a bridge between a cxl_memdev and an nvdimm
252  * @host: same host as @cxlmd
253  * @cxlmd: cxl_memdev instance that will perform LIBNVDIMM operations
254  *
255  * Return: 0 on success negative error code on failure.
256  */
257 int devm_cxl_add_nvdimm(struct device *host, struct cxl_memdev *cxlmd)
258 {
259 	struct cxl_nvdimm *cxl_nvd;
260 	struct device *dev;
261 	int rc;
262 
263 	cxl_nvd = cxl_nvdimm_alloc(cxlmd);
264 	if (IS_ERR(cxl_nvd))
265 		return PTR_ERR(cxl_nvd);
266 
267 	dev = &cxl_nvd->dev;
268 	rc = dev_set_name(dev, "pmem%d", cxlmd->id);
269 	if (rc)
270 		goto err;
271 
272 	rc = device_add(dev);
273 	if (rc)
274 		goto err;
275 
276 	dev_dbg(host, "%s: register %s\n", dev_name(dev->parent),
277 		dev_name(dev));
278 
279 	return devm_add_action_or_reset(host, cxl_nvd_unregister, dev);
280 
281 err:
282 	put_device(dev);
283 	return rc;
284 }
285 EXPORT_SYMBOL_NS_GPL(devm_cxl_add_nvdimm, CXL);
286