xref: /linux/drivers/cxl/core/region.c (revision 09d09e04d2fcf88c4620dd28097e0e2a8f720eac)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright(c) 2022 Intel Corporation. All rights reserved. */
3 #include <linux/memregion.h>
4 #include <linux/genalloc.h>
5 #include <linux/device.h>
6 #include <linux/module.h>
7 #include <linux/slab.h>
8 #include <linux/uuid.h>
9 #include <linux/sort.h>
10 #include <linux/idr.h>
11 #include <cxlmem.h>
12 #include <cxl.h>
13 #include "core.h"
14 
15 /**
16  * DOC: cxl core region
17  *
18  * CXL Regions represent mapped memory capacity in system physical address
19  * space. Whereas the CXL Root Decoders identify the bounds of potential CXL
20  * Memory ranges, Regions represent the active mapped capacity by the HDM
21  * Decoder Capability structures throughout the Host Bridges, Switches, and
22  * Endpoints in the topology.
23  *
24  * Region configuration has ordering constraints. UUID may be set at any time
25  * but is only visible for persistent regions.
26  * 1. Interleave granularity
27  * 2. Interleave size
28  * 3. Decoder targets
29  */
30 
31 /*
32  * All changes to the interleave configuration occur with this lock held
33  * for write.
34  */
35 static DECLARE_RWSEM(cxl_region_rwsem);
36 
37 static struct cxl_region *to_cxl_region(struct device *dev);
38 
39 static ssize_t uuid_show(struct device *dev, struct device_attribute *attr,
40 			 char *buf)
41 {
42 	struct cxl_region *cxlr = to_cxl_region(dev);
43 	struct cxl_region_params *p = &cxlr->params;
44 	ssize_t rc;
45 
46 	rc = down_read_interruptible(&cxl_region_rwsem);
47 	if (rc)
48 		return rc;
49 	if (cxlr->mode != CXL_DECODER_PMEM)
50 		rc = sysfs_emit(buf, "\n");
51 	else
52 		rc = sysfs_emit(buf, "%pUb\n", &p->uuid);
53 	up_read(&cxl_region_rwsem);
54 
55 	return rc;
56 }
57 
58 static int is_dup(struct device *match, void *data)
59 {
60 	struct cxl_region_params *p;
61 	struct cxl_region *cxlr;
62 	uuid_t *uuid = data;
63 
64 	if (!is_cxl_region(match))
65 		return 0;
66 
67 	lockdep_assert_held(&cxl_region_rwsem);
68 	cxlr = to_cxl_region(match);
69 	p = &cxlr->params;
70 
71 	if (uuid_equal(&p->uuid, uuid)) {
72 		dev_dbg(match, "already has uuid: %pUb\n", uuid);
73 		return -EBUSY;
74 	}
75 
76 	return 0;
77 }
78 
79 static ssize_t uuid_store(struct device *dev, struct device_attribute *attr,
80 			  const char *buf, size_t len)
81 {
82 	struct cxl_region *cxlr = to_cxl_region(dev);
83 	struct cxl_region_params *p = &cxlr->params;
84 	uuid_t temp;
85 	ssize_t rc;
86 
87 	if (len != UUID_STRING_LEN + 1)
88 		return -EINVAL;
89 
90 	rc = uuid_parse(buf, &temp);
91 	if (rc)
92 		return rc;
93 
94 	if (uuid_is_null(&temp))
95 		return -EINVAL;
96 
97 	rc = down_write_killable(&cxl_region_rwsem);
98 	if (rc)
99 		return rc;
100 
101 	if (uuid_equal(&p->uuid, &temp))
102 		goto out;
103 
104 	rc = -EBUSY;
105 	if (p->state >= CXL_CONFIG_ACTIVE)
106 		goto out;
107 
108 	rc = bus_for_each_dev(&cxl_bus_type, NULL, &temp, is_dup);
109 	if (rc < 0)
110 		goto out;
111 
112 	uuid_copy(&p->uuid, &temp);
113 out:
114 	up_write(&cxl_region_rwsem);
115 
116 	if (rc)
117 		return rc;
118 	return len;
119 }
120 static DEVICE_ATTR_RW(uuid);
121 
122 static struct cxl_region_ref *cxl_rr_load(struct cxl_port *port,
123 					  struct cxl_region *cxlr)
124 {
125 	return xa_load(&port->regions, (unsigned long)cxlr);
126 }
127 
128 static int cxl_region_decode_reset(struct cxl_region *cxlr, int count)
129 {
130 	struct cxl_region_params *p = &cxlr->params;
131 	int i;
132 
133 	for (i = count - 1; i >= 0; i--) {
134 		struct cxl_endpoint_decoder *cxled = p->targets[i];
135 		struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
136 		struct cxl_port *iter = cxled_to_port(cxled);
137 		struct cxl_ep *ep;
138 		int rc;
139 
140 		while (!is_cxl_root(to_cxl_port(iter->dev.parent)))
141 			iter = to_cxl_port(iter->dev.parent);
142 
143 		for (ep = cxl_ep_load(iter, cxlmd); iter;
144 		     iter = ep->next, ep = cxl_ep_load(iter, cxlmd)) {
145 			struct cxl_region_ref *cxl_rr;
146 			struct cxl_decoder *cxld;
147 
148 			cxl_rr = cxl_rr_load(iter, cxlr);
149 			cxld = cxl_rr->decoder;
150 			rc = cxld->reset(cxld);
151 			if (rc)
152 				return rc;
153 		}
154 
155 		rc = cxled->cxld.reset(&cxled->cxld);
156 		if (rc)
157 			return rc;
158 	}
159 
160 	return 0;
161 }
162 
163 static int commit_decoder(struct cxl_decoder *cxld)
164 {
165 	struct cxl_switch_decoder *cxlsd = NULL;
166 
167 	if (cxld->commit)
168 		return cxld->commit(cxld);
169 
170 	if (is_switch_decoder(&cxld->dev))
171 		cxlsd = to_cxl_switch_decoder(&cxld->dev);
172 
173 	if (dev_WARN_ONCE(&cxld->dev, !cxlsd || cxlsd->nr_targets > 1,
174 			  "->commit() is required\n"))
175 		return -ENXIO;
176 	return 0;
177 }
178 
179 static int cxl_region_decode_commit(struct cxl_region *cxlr)
180 {
181 	struct cxl_region_params *p = &cxlr->params;
182 	int i, rc = 0;
183 
184 	for (i = 0; i < p->nr_targets; i++) {
185 		struct cxl_endpoint_decoder *cxled = p->targets[i];
186 		struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
187 		struct cxl_region_ref *cxl_rr;
188 		struct cxl_decoder *cxld;
189 		struct cxl_port *iter;
190 		struct cxl_ep *ep;
191 
192 		/* commit bottom up */
193 		for (iter = cxled_to_port(cxled); !is_cxl_root(iter);
194 		     iter = to_cxl_port(iter->dev.parent)) {
195 			cxl_rr = cxl_rr_load(iter, cxlr);
196 			cxld = cxl_rr->decoder;
197 			rc = commit_decoder(cxld);
198 			if (rc)
199 				break;
200 		}
201 
202 		if (rc) {
203 			/* programming @iter failed, teardown */
204 			for (ep = cxl_ep_load(iter, cxlmd); ep && iter;
205 			     iter = ep->next, ep = cxl_ep_load(iter, cxlmd)) {
206 				cxl_rr = cxl_rr_load(iter, cxlr);
207 				cxld = cxl_rr->decoder;
208 				cxld->reset(cxld);
209 			}
210 
211 			cxled->cxld.reset(&cxled->cxld);
212 			goto err;
213 		}
214 	}
215 
216 	return 0;
217 
218 err:
219 	/* undo the targets that were successfully committed */
220 	cxl_region_decode_reset(cxlr, i);
221 	return rc;
222 }
223 
224 static ssize_t commit_store(struct device *dev, struct device_attribute *attr,
225 			    const char *buf, size_t len)
226 {
227 	struct cxl_region *cxlr = to_cxl_region(dev);
228 	struct cxl_region_params *p = &cxlr->params;
229 	bool commit;
230 	ssize_t rc;
231 
232 	rc = kstrtobool(buf, &commit);
233 	if (rc)
234 		return rc;
235 
236 	rc = down_write_killable(&cxl_region_rwsem);
237 	if (rc)
238 		return rc;
239 
240 	/* Already in the requested state? */
241 	if (commit && p->state >= CXL_CONFIG_COMMIT)
242 		goto out;
243 	if (!commit && p->state < CXL_CONFIG_COMMIT)
244 		goto out;
245 
246 	/* Not ready to commit? */
247 	if (commit && p->state < CXL_CONFIG_ACTIVE) {
248 		rc = -ENXIO;
249 		goto out;
250 	}
251 
252 	if (commit)
253 		rc = cxl_region_decode_commit(cxlr);
254 	else {
255 		p->state = CXL_CONFIG_RESET_PENDING;
256 		up_write(&cxl_region_rwsem);
257 		device_release_driver(&cxlr->dev);
258 		down_write(&cxl_region_rwsem);
259 
260 		/*
261 		 * The lock was dropped, so need to revalidate that the reset is
262 		 * still pending.
263 		 */
264 		if (p->state == CXL_CONFIG_RESET_PENDING)
265 			rc = cxl_region_decode_reset(cxlr, p->interleave_ways);
266 	}
267 
268 	if (rc)
269 		goto out;
270 
271 	if (commit)
272 		p->state = CXL_CONFIG_COMMIT;
273 	else if (p->state == CXL_CONFIG_RESET_PENDING)
274 		p->state = CXL_CONFIG_ACTIVE;
275 
276 out:
277 	up_write(&cxl_region_rwsem);
278 
279 	if (rc)
280 		return rc;
281 	return len;
282 }
283 
284 static ssize_t commit_show(struct device *dev, struct device_attribute *attr,
285 			   char *buf)
286 {
287 	struct cxl_region *cxlr = to_cxl_region(dev);
288 	struct cxl_region_params *p = &cxlr->params;
289 	ssize_t rc;
290 
291 	rc = down_read_interruptible(&cxl_region_rwsem);
292 	if (rc)
293 		return rc;
294 	rc = sysfs_emit(buf, "%d\n", p->state >= CXL_CONFIG_COMMIT);
295 	up_read(&cxl_region_rwsem);
296 
297 	return rc;
298 }
299 static DEVICE_ATTR_RW(commit);
300 
301 static umode_t cxl_region_visible(struct kobject *kobj, struct attribute *a,
302 				  int n)
303 {
304 	struct device *dev = kobj_to_dev(kobj);
305 	struct cxl_region *cxlr = to_cxl_region(dev);
306 
307 	/*
308 	 * Support tooling that expects to find a 'uuid' attribute for all
309 	 * regions regardless of mode.
310 	 */
311 	if (a == &dev_attr_uuid.attr && cxlr->mode != CXL_DECODER_PMEM)
312 		return 0444;
313 	return a->mode;
314 }
315 
316 static ssize_t interleave_ways_show(struct device *dev,
317 				    struct device_attribute *attr, char *buf)
318 {
319 	struct cxl_region *cxlr = to_cxl_region(dev);
320 	struct cxl_region_params *p = &cxlr->params;
321 	ssize_t rc;
322 
323 	rc = down_read_interruptible(&cxl_region_rwsem);
324 	if (rc)
325 		return rc;
326 	rc = sysfs_emit(buf, "%d\n", p->interleave_ways);
327 	up_read(&cxl_region_rwsem);
328 
329 	return rc;
330 }
331 
332 static const struct attribute_group *get_cxl_region_target_group(void);
333 
334 static ssize_t interleave_ways_store(struct device *dev,
335 				     struct device_attribute *attr,
336 				     const char *buf, size_t len)
337 {
338 	struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(dev->parent);
339 	struct cxl_decoder *cxld = &cxlrd->cxlsd.cxld;
340 	struct cxl_region *cxlr = to_cxl_region(dev);
341 	struct cxl_region_params *p = &cxlr->params;
342 	unsigned int val, save;
343 	int rc;
344 	u8 iw;
345 
346 	rc = kstrtouint(buf, 0, &val);
347 	if (rc)
348 		return rc;
349 
350 	rc = ways_to_eiw(val, &iw);
351 	if (rc)
352 		return rc;
353 
354 	/*
355 	 * Even for x3, x9, and x12 interleaves the region interleave must be a
356 	 * power of 2 multiple of the host bridge interleave.
357 	 */
358 	if (!is_power_of_2(val / cxld->interleave_ways) ||
359 	    (val % cxld->interleave_ways)) {
360 		dev_dbg(&cxlr->dev, "invalid interleave: %d\n", val);
361 		return -EINVAL;
362 	}
363 
364 	rc = down_write_killable(&cxl_region_rwsem);
365 	if (rc)
366 		return rc;
367 	if (p->state >= CXL_CONFIG_INTERLEAVE_ACTIVE) {
368 		rc = -EBUSY;
369 		goto out;
370 	}
371 
372 	save = p->interleave_ways;
373 	p->interleave_ways = val;
374 	rc = sysfs_update_group(&cxlr->dev.kobj, get_cxl_region_target_group());
375 	if (rc)
376 		p->interleave_ways = save;
377 out:
378 	up_write(&cxl_region_rwsem);
379 	if (rc)
380 		return rc;
381 	return len;
382 }
383 static DEVICE_ATTR_RW(interleave_ways);
384 
385 static ssize_t interleave_granularity_show(struct device *dev,
386 					   struct device_attribute *attr,
387 					   char *buf)
388 {
389 	struct cxl_region *cxlr = to_cxl_region(dev);
390 	struct cxl_region_params *p = &cxlr->params;
391 	ssize_t rc;
392 
393 	rc = down_read_interruptible(&cxl_region_rwsem);
394 	if (rc)
395 		return rc;
396 	rc = sysfs_emit(buf, "%d\n", p->interleave_granularity);
397 	up_read(&cxl_region_rwsem);
398 
399 	return rc;
400 }
401 
402 static ssize_t interleave_granularity_store(struct device *dev,
403 					    struct device_attribute *attr,
404 					    const char *buf, size_t len)
405 {
406 	struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(dev->parent);
407 	struct cxl_decoder *cxld = &cxlrd->cxlsd.cxld;
408 	struct cxl_region *cxlr = to_cxl_region(dev);
409 	struct cxl_region_params *p = &cxlr->params;
410 	int rc, val;
411 	u16 ig;
412 
413 	rc = kstrtoint(buf, 0, &val);
414 	if (rc)
415 		return rc;
416 
417 	rc = granularity_to_eig(val, &ig);
418 	if (rc)
419 		return rc;
420 
421 	/*
422 	 * When the host-bridge is interleaved, disallow region granularity !=
423 	 * root granularity. Regions with a granularity less than the root
424 	 * interleave result in needing multiple endpoints to support a single
425 	 * slot in the interleave (possible to suport in the future). Regions
426 	 * with a granularity greater than the root interleave result in invalid
427 	 * DPA translations (invalid to support).
428 	 */
429 	if (cxld->interleave_ways > 1 && val != cxld->interleave_granularity)
430 		return -EINVAL;
431 
432 	rc = down_write_killable(&cxl_region_rwsem);
433 	if (rc)
434 		return rc;
435 	if (p->state >= CXL_CONFIG_INTERLEAVE_ACTIVE) {
436 		rc = -EBUSY;
437 		goto out;
438 	}
439 
440 	p->interleave_granularity = val;
441 out:
442 	up_write(&cxl_region_rwsem);
443 	if (rc)
444 		return rc;
445 	return len;
446 }
447 static DEVICE_ATTR_RW(interleave_granularity);
448 
449 static ssize_t resource_show(struct device *dev, struct device_attribute *attr,
450 			     char *buf)
451 {
452 	struct cxl_region *cxlr = to_cxl_region(dev);
453 	struct cxl_region_params *p = &cxlr->params;
454 	u64 resource = -1ULL;
455 	ssize_t rc;
456 
457 	rc = down_read_interruptible(&cxl_region_rwsem);
458 	if (rc)
459 		return rc;
460 	if (p->res)
461 		resource = p->res->start;
462 	rc = sysfs_emit(buf, "%#llx\n", resource);
463 	up_read(&cxl_region_rwsem);
464 
465 	return rc;
466 }
467 static DEVICE_ATTR_RO(resource);
468 
469 static ssize_t mode_show(struct device *dev, struct device_attribute *attr,
470 			 char *buf)
471 {
472 	struct cxl_region *cxlr = to_cxl_region(dev);
473 
474 	return sysfs_emit(buf, "%s\n", cxl_decoder_mode_name(cxlr->mode));
475 }
476 static DEVICE_ATTR_RO(mode);
477 
478 static int alloc_hpa(struct cxl_region *cxlr, resource_size_t size)
479 {
480 	struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(cxlr->dev.parent);
481 	struct cxl_region_params *p = &cxlr->params;
482 	struct resource *res;
483 	u32 remainder = 0;
484 
485 	lockdep_assert_held_write(&cxl_region_rwsem);
486 
487 	/* Nothing to do... */
488 	if (p->res && resource_size(p->res) == size)
489 		return 0;
490 
491 	/* To change size the old size must be freed first */
492 	if (p->res)
493 		return -EBUSY;
494 
495 	if (p->state >= CXL_CONFIG_INTERLEAVE_ACTIVE)
496 		return -EBUSY;
497 
498 	/* ways, granularity and uuid (if PMEM) need to be set before HPA */
499 	if (!p->interleave_ways || !p->interleave_granularity ||
500 	    (cxlr->mode == CXL_DECODER_PMEM && uuid_is_null(&p->uuid)))
501 		return -ENXIO;
502 
503 	div_u64_rem(size, SZ_256M * p->interleave_ways, &remainder);
504 	if (remainder)
505 		return -EINVAL;
506 
507 	res = alloc_free_mem_region(cxlrd->res, size, SZ_256M,
508 				    dev_name(&cxlr->dev));
509 	if (IS_ERR(res)) {
510 		dev_dbg(&cxlr->dev, "failed to allocate HPA: %ld\n",
511 			PTR_ERR(res));
512 		return PTR_ERR(res);
513 	}
514 
515 	p->res = res;
516 	p->state = CXL_CONFIG_INTERLEAVE_ACTIVE;
517 
518 	return 0;
519 }
520 
521 static void cxl_region_iomem_release(struct cxl_region *cxlr)
522 {
523 	struct cxl_region_params *p = &cxlr->params;
524 
525 	if (device_is_registered(&cxlr->dev))
526 		lockdep_assert_held_write(&cxl_region_rwsem);
527 	if (p->res) {
528 		/*
529 		 * Autodiscovered regions may not have been able to insert their
530 		 * resource.
531 		 */
532 		if (p->res->parent)
533 			remove_resource(p->res);
534 		kfree(p->res);
535 		p->res = NULL;
536 	}
537 }
538 
539 static int free_hpa(struct cxl_region *cxlr)
540 {
541 	struct cxl_region_params *p = &cxlr->params;
542 
543 	lockdep_assert_held_write(&cxl_region_rwsem);
544 
545 	if (!p->res)
546 		return 0;
547 
548 	if (p->state >= CXL_CONFIG_ACTIVE)
549 		return -EBUSY;
550 
551 	cxl_region_iomem_release(cxlr);
552 	p->state = CXL_CONFIG_IDLE;
553 	return 0;
554 }
555 
556 static ssize_t size_store(struct device *dev, struct device_attribute *attr,
557 			  const char *buf, size_t len)
558 {
559 	struct cxl_region *cxlr = to_cxl_region(dev);
560 	u64 val;
561 	int rc;
562 
563 	rc = kstrtou64(buf, 0, &val);
564 	if (rc)
565 		return rc;
566 
567 	rc = down_write_killable(&cxl_region_rwsem);
568 	if (rc)
569 		return rc;
570 
571 	if (val)
572 		rc = alloc_hpa(cxlr, val);
573 	else
574 		rc = free_hpa(cxlr);
575 	up_write(&cxl_region_rwsem);
576 
577 	if (rc)
578 		return rc;
579 
580 	return len;
581 }
582 
583 static ssize_t size_show(struct device *dev, struct device_attribute *attr,
584 			 char *buf)
585 {
586 	struct cxl_region *cxlr = to_cxl_region(dev);
587 	struct cxl_region_params *p = &cxlr->params;
588 	u64 size = 0;
589 	ssize_t rc;
590 
591 	rc = down_read_interruptible(&cxl_region_rwsem);
592 	if (rc)
593 		return rc;
594 	if (p->res)
595 		size = resource_size(p->res);
596 	rc = sysfs_emit(buf, "%#llx\n", size);
597 	up_read(&cxl_region_rwsem);
598 
599 	return rc;
600 }
601 static DEVICE_ATTR_RW(size);
602 
603 static struct attribute *cxl_region_attrs[] = {
604 	&dev_attr_uuid.attr,
605 	&dev_attr_commit.attr,
606 	&dev_attr_interleave_ways.attr,
607 	&dev_attr_interleave_granularity.attr,
608 	&dev_attr_resource.attr,
609 	&dev_attr_size.attr,
610 	&dev_attr_mode.attr,
611 	NULL,
612 };
613 
614 static const struct attribute_group cxl_region_group = {
615 	.attrs = cxl_region_attrs,
616 	.is_visible = cxl_region_visible,
617 };
618 
619 static size_t show_targetN(struct cxl_region *cxlr, char *buf, int pos)
620 {
621 	struct cxl_region_params *p = &cxlr->params;
622 	struct cxl_endpoint_decoder *cxled;
623 	int rc;
624 
625 	rc = down_read_interruptible(&cxl_region_rwsem);
626 	if (rc)
627 		return rc;
628 
629 	if (pos >= p->interleave_ways) {
630 		dev_dbg(&cxlr->dev, "position %d out of range %d\n", pos,
631 			p->interleave_ways);
632 		rc = -ENXIO;
633 		goto out;
634 	}
635 
636 	cxled = p->targets[pos];
637 	if (!cxled)
638 		rc = sysfs_emit(buf, "\n");
639 	else
640 		rc = sysfs_emit(buf, "%s\n", dev_name(&cxled->cxld.dev));
641 out:
642 	up_read(&cxl_region_rwsem);
643 
644 	return rc;
645 }
646 
647 static int match_free_decoder(struct device *dev, void *data)
648 {
649 	struct cxl_decoder *cxld;
650 	int *id = data;
651 
652 	if (!is_switch_decoder(dev))
653 		return 0;
654 
655 	cxld = to_cxl_decoder(dev);
656 
657 	/* enforce ordered allocation */
658 	if (cxld->id != *id)
659 		return 0;
660 
661 	if (!cxld->region)
662 		return 1;
663 
664 	(*id)++;
665 
666 	return 0;
667 }
668 
669 static struct cxl_decoder *cxl_region_find_decoder(struct cxl_port *port,
670 						   struct cxl_region *cxlr)
671 {
672 	struct device *dev;
673 	int id = 0;
674 
675 	dev = device_find_child(&port->dev, &id, match_free_decoder);
676 	if (!dev)
677 		return NULL;
678 	/*
679 	 * This decoder is pinned registered as long as the endpoint decoder is
680 	 * registered, and endpoint decoder unregistration holds the
681 	 * cxl_region_rwsem over unregister events, so no need to hold on to
682 	 * this extra reference.
683 	 */
684 	put_device(dev);
685 	return to_cxl_decoder(dev);
686 }
687 
688 static struct cxl_region_ref *alloc_region_ref(struct cxl_port *port,
689 					       struct cxl_region *cxlr)
690 {
691 	struct cxl_region_params *p = &cxlr->params;
692 	struct cxl_region_ref *cxl_rr, *iter;
693 	unsigned long index;
694 	int rc;
695 
696 	xa_for_each(&port->regions, index, iter) {
697 		struct cxl_region_params *ip = &iter->region->params;
698 
699 		if (!ip->res)
700 			continue;
701 
702 		if (ip->res->start > p->res->start) {
703 			dev_dbg(&cxlr->dev,
704 				"%s: HPA order violation %s:%pr vs %pr\n",
705 				dev_name(&port->dev),
706 				dev_name(&iter->region->dev), ip->res, p->res);
707 			return ERR_PTR(-EBUSY);
708 		}
709 	}
710 
711 	cxl_rr = kzalloc(sizeof(*cxl_rr), GFP_KERNEL);
712 	if (!cxl_rr)
713 		return ERR_PTR(-ENOMEM);
714 	cxl_rr->port = port;
715 	cxl_rr->region = cxlr;
716 	cxl_rr->nr_targets = 1;
717 	xa_init(&cxl_rr->endpoints);
718 
719 	rc = xa_insert(&port->regions, (unsigned long)cxlr, cxl_rr, GFP_KERNEL);
720 	if (rc) {
721 		dev_dbg(&cxlr->dev,
722 			"%s: failed to track region reference: %d\n",
723 			dev_name(&port->dev), rc);
724 		kfree(cxl_rr);
725 		return ERR_PTR(rc);
726 	}
727 
728 	return cxl_rr;
729 }
730 
731 static void cxl_rr_free_decoder(struct cxl_region_ref *cxl_rr)
732 {
733 	struct cxl_region *cxlr = cxl_rr->region;
734 	struct cxl_decoder *cxld = cxl_rr->decoder;
735 
736 	if (!cxld)
737 		return;
738 
739 	dev_WARN_ONCE(&cxlr->dev, cxld->region != cxlr, "region mismatch\n");
740 	if (cxld->region == cxlr) {
741 		cxld->region = NULL;
742 		put_device(&cxlr->dev);
743 	}
744 }
745 
746 static void free_region_ref(struct cxl_region_ref *cxl_rr)
747 {
748 	struct cxl_port *port = cxl_rr->port;
749 	struct cxl_region *cxlr = cxl_rr->region;
750 
751 	cxl_rr_free_decoder(cxl_rr);
752 	xa_erase(&port->regions, (unsigned long)cxlr);
753 	xa_destroy(&cxl_rr->endpoints);
754 	kfree(cxl_rr);
755 }
756 
757 static int cxl_rr_ep_add(struct cxl_region_ref *cxl_rr,
758 			 struct cxl_endpoint_decoder *cxled)
759 {
760 	int rc;
761 	struct cxl_port *port = cxl_rr->port;
762 	struct cxl_region *cxlr = cxl_rr->region;
763 	struct cxl_decoder *cxld = cxl_rr->decoder;
764 	struct cxl_ep *ep = cxl_ep_load(port, cxled_to_memdev(cxled));
765 
766 	if (ep) {
767 		rc = xa_insert(&cxl_rr->endpoints, (unsigned long)cxled, ep,
768 			       GFP_KERNEL);
769 		if (rc)
770 			return rc;
771 	}
772 	cxl_rr->nr_eps++;
773 
774 	if (!cxld->region) {
775 		cxld->region = cxlr;
776 		get_device(&cxlr->dev);
777 	}
778 
779 	return 0;
780 }
781 
782 static int cxl_rr_alloc_decoder(struct cxl_port *port, struct cxl_region *cxlr,
783 				struct cxl_endpoint_decoder *cxled,
784 				struct cxl_region_ref *cxl_rr)
785 {
786 	struct cxl_decoder *cxld;
787 
788 	if (port == cxled_to_port(cxled))
789 		cxld = &cxled->cxld;
790 	else
791 		cxld = cxl_region_find_decoder(port, cxlr);
792 	if (!cxld) {
793 		dev_dbg(&cxlr->dev, "%s: no decoder available\n",
794 			dev_name(&port->dev));
795 		return -EBUSY;
796 	}
797 
798 	if (cxld->region) {
799 		dev_dbg(&cxlr->dev, "%s: %s already attached to %s\n",
800 			dev_name(&port->dev), dev_name(&cxld->dev),
801 			dev_name(&cxld->region->dev));
802 		return -EBUSY;
803 	}
804 
805 	cxl_rr->decoder = cxld;
806 	return 0;
807 }
808 
809 /**
810  * cxl_port_attach_region() - track a region's interest in a port by endpoint
811  * @port: port to add a new region reference 'struct cxl_region_ref'
812  * @cxlr: region to attach to @port
813  * @cxled: endpoint decoder used to create or further pin a region reference
814  * @pos: interleave position of @cxled in @cxlr
815  *
816  * The attach event is an opportunity to validate CXL decode setup
817  * constraints and record metadata needed for programming HDM decoders,
818  * in particular decoder target lists.
819  *
820  * The steps are:
821  *
822  * - validate that there are no other regions with a higher HPA already
823  *   associated with @port
824  * - establish a region reference if one is not already present
825  *
826  *   - additionally allocate a decoder instance that will host @cxlr on
827  *     @port
828  *
829  * - pin the region reference by the endpoint
830  * - account for how many entries in @port's target list are needed to
831  *   cover all of the added endpoints.
832  */
833 static int cxl_port_attach_region(struct cxl_port *port,
834 				  struct cxl_region *cxlr,
835 				  struct cxl_endpoint_decoder *cxled, int pos)
836 {
837 	struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
838 	struct cxl_ep *ep = cxl_ep_load(port, cxlmd);
839 	struct cxl_region_ref *cxl_rr;
840 	bool nr_targets_inc = false;
841 	struct cxl_decoder *cxld;
842 	unsigned long index;
843 	int rc = -EBUSY;
844 
845 	lockdep_assert_held_write(&cxl_region_rwsem);
846 
847 	cxl_rr = cxl_rr_load(port, cxlr);
848 	if (cxl_rr) {
849 		struct cxl_ep *ep_iter;
850 		int found = 0;
851 
852 		/*
853 		 * Walk the existing endpoints that have been attached to
854 		 * @cxlr at @port and see if they share the same 'next' port
855 		 * in the downstream direction. I.e. endpoints that share common
856 		 * upstream switch.
857 		 */
858 		xa_for_each(&cxl_rr->endpoints, index, ep_iter) {
859 			if (ep_iter == ep)
860 				continue;
861 			if (ep_iter->next == ep->next) {
862 				found++;
863 				break;
864 			}
865 		}
866 
867 		/*
868 		 * New target port, or @port is an endpoint port that always
869 		 * accounts its own local decode as a target.
870 		 */
871 		if (!found || !ep->next) {
872 			cxl_rr->nr_targets++;
873 			nr_targets_inc = true;
874 		}
875 	} else {
876 		cxl_rr = alloc_region_ref(port, cxlr);
877 		if (IS_ERR(cxl_rr)) {
878 			dev_dbg(&cxlr->dev,
879 				"%s: failed to allocate region reference\n",
880 				dev_name(&port->dev));
881 			return PTR_ERR(cxl_rr);
882 		}
883 		nr_targets_inc = true;
884 
885 		rc = cxl_rr_alloc_decoder(port, cxlr, cxled, cxl_rr);
886 		if (rc)
887 			goto out_erase;
888 	}
889 	cxld = cxl_rr->decoder;
890 
891 	rc = cxl_rr_ep_add(cxl_rr, cxled);
892 	if (rc) {
893 		dev_dbg(&cxlr->dev,
894 			"%s: failed to track endpoint %s:%s reference\n",
895 			dev_name(&port->dev), dev_name(&cxlmd->dev),
896 			dev_name(&cxld->dev));
897 		goto out_erase;
898 	}
899 
900 	dev_dbg(&cxlr->dev,
901 		"%s:%s %s add: %s:%s @ %d next: %s nr_eps: %d nr_targets: %d\n",
902 		dev_name(port->uport), dev_name(&port->dev),
903 		dev_name(&cxld->dev), dev_name(&cxlmd->dev),
904 		dev_name(&cxled->cxld.dev), pos,
905 		ep ? ep->next ? dev_name(ep->next->uport) :
906 				      dev_name(&cxlmd->dev) :
907 			   "none",
908 		cxl_rr->nr_eps, cxl_rr->nr_targets);
909 
910 	return 0;
911 out_erase:
912 	if (nr_targets_inc)
913 		cxl_rr->nr_targets--;
914 	if (cxl_rr->nr_eps == 0)
915 		free_region_ref(cxl_rr);
916 	return rc;
917 }
918 
919 static void cxl_port_detach_region(struct cxl_port *port,
920 				   struct cxl_region *cxlr,
921 				   struct cxl_endpoint_decoder *cxled)
922 {
923 	struct cxl_region_ref *cxl_rr;
924 	struct cxl_ep *ep = NULL;
925 
926 	lockdep_assert_held_write(&cxl_region_rwsem);
927 
928 	cxl_rr = cxl_rr_load(port, cxlr);
929 	if (!cxl_rr)
930 		return;
931 
932 	/*
933 	 * Endpoint ports do not carry cxl_ep references, and they
934 	 * never target more than one endpoint by definition
935 	 */
936 	if (cxl_rr->decoder == &cxled->cxld)
937 		cxl_rr->nr_eps--;
938 	else
939 		ep = xa_erase(&cxl_rr->endpoints, (unsigned long)cxled);
940 	if (ep) {
941 		struct cxl_ep *ep_iter;
942 		unsigned long index;
943 		int found = 0;
944 
945 		cxl_rr->nr_eps--;
946 		xa_for_each(&cxl_rr->endpoints, index, ep_iter) {
947 			if (ep_iter->next == ep->next) {
948 				found++;
949 				break;
950 			}
951 		}
952 		if (!found)
953 			cxl_rr->nr_targets--;
954 	}
955 
956 	if (cxl_rr->nr_eps == 0)
957 		free_region_ref(cxl_rr);
958 }
959 
960 static int check_last_peer(struct cxl_endpoint_decoder *cxled,
961 			   struct cxl_ep *ep, struct cxl_region_ref *cxl_rr,
962 			   int distance)
963 {
964 	struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
965 	struct cxl_region *cxlr = cxl_rr->region;
966 	struct cxl_region_params *p = &cxlr->params;
967 	struct cxl_endpoint_decoder *cxled_peer;
968 	struct cxl_port *port = cxl_rr->port;
969 	struct cxl_memdev *cxlmd_peer;
970 	struct cxl_ep *ep_peer;
971 	int pos = cxled->pos;
972 
973 	/*
974 	 * If this position wants to share a dport with the last endpoint mapped
975 	 * then that endpoint, at index 'position - distance', must also be
976 	 * mapped by this dport.
977 	 */
978 	if (pos < distance) {
979 		dev_dbg(&cxlr->dev, "%s:%s: cannot host %s:%s at %d\n",
980 			dev_name(port->uport), dev_name(&port->dev),
981 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev), pos);
982 		return -ENXIO;
983 	}
984 	cxled_peer = p->targets[pos - distance];
985 	cxlmd_peer = cxled_to_memdev(cxled_peer);
986 	ep_peer = cxl_ep_load(port, cxlmd_peer);
987 	if (ep->dport != ep_peer->dport) {
988 		dev_dbg(&cxlr->dev,
989 			"%s:%s: %s:%s pos %d mismatched peer %s:%s\n",
990 			dev_name(port->uport), dev_name(&port->dev),
991 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev), pos,
992 			dev_name(&cxlmd_peer->dev),
993 			dev_name(&cxled_peer->cxld.dev));
994 		return -ENXIO;
995 	}
996 
997 	return 0;
998 }
999 
1000 static int cxl_port_setup_targets(struct cxl_port *port,
1001 				  struct cxl_region *cxlr,
1002 				  struct cxl_endpoint_decoder *cxled)
1003 {
1004 	struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(cxlr->dev.parent);
1005 	int parent_iw, parent_ig, ig, iw, rc, inc = 0, pos = cxled->pos;
1006 	struct cxl_port *parent_port = to_cxl_port(port->dev.parent);
1007 	struct cxl_region_ref *cxl_rr = cxl_rr_load(port, cxlr);
1008 	struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
1009 	struct cxl_ep *ep = cxl_ep_load(port, cxlmd);
1010 	struct cxl_region_params *p = &cxlr->params;
1011 	struct cxl_decoder *cxld = cxl_rr->decoder;
1012 	struct cxl_switch_decoder *cxlsd;
1013 	u16 eig, peig;
1014 	u8 eiw, peiw;
1015 
1016 	/*
1017 	 * While root level decoders support x3, x6, x12, switch level
1018 	 * decoders only support powers of 2 up to x16.
1019 	 */
1020 	if (!is_power_of_2(cxl_rr->nr_targets)) {
1021 		dev_dbg(&cxlr->dev, "%s:%s: invalid target count %d\n",
1022 			dev_name(port->uport), dev_name(&port->dev),
1023 			cxl_rr->nr_targets);
1024 		return -EINVAL;
1025 	}
1026 
1027 	cxlsd = to_cxl_switch_decoder(&cxld->dev);
1028 	if (cxl_rr->nr_targets_set) {
1029 		int i, distance;
1030 
1031 		/*
1032 		 * Passthrough ports impose no distance requirements between
1033 		 * peers
1034 		 */
1035 		if (port->nr_dports == 1)
1036 			distance = 0;
1037 		else
1038 			distance = p->nr_targets / cxl_rr->nr_targets;
1039 		for (i = 0; i < cxl_rr->nr_targets_set; i++)
1040 			if (ep->dport == cxlsd->target[i]) {
1041 				rc = check_last_peer(cxled, ep, cxl_rr,
1042 						     distance);
1043 				if (rc)
1044 					return rc;
1045 				goto out_target_set;
1046 			}
1047 		goto add_target;
1048 	}
1049 
1050 	if (is_cxl_root(parent_port)) {
1051 		parent_ig = cxlrd->cxlsd.cxld.interleave_granularity;
1052 		parent_iw = cxlrd->cxlsd.cxld.interleave_ways;
1053 		/*
1054 		 * For purposes of address bit routing, use power-of-2 math for
1055 		 * switch ports.
1056 		 */
1057 		if (!is_power_of_2(parent_iw))
1058 			parent_iw /= 3;
1059 	} else {
1060 		struct cxl_region_ref *parent_rr;
1061 		struct cxl_decoder *parent_cxld;
1062 
1063 		parent_rr = cxl_rr_load(parent_port, cxlr);
1064 		parent_cxld = parent_rr->decoder;
1065 		parent_ig = parent_cxld->interleave_granularity;
1066 		parent_iw = parent_cxld->interleave_ways;
1067 	}
1068 
1069 	rc = granularity_to_eig(parent_ig, &peig);
1070 	if (rc) {
1071 		dev_dbg(&cxlr->dev, "%s:%s: invalid parent granularity: %d\n",
1072 			dev_name(parent_port->uport),
1073 			dev_name(&parent_port->dev), parent_ig);
1074 		return rc;
1075 	}
1076 
1077 	rc = ways_to_eiw(parent_iw, &peiw);
1078 	if (rc) {
1079 		dev_dbg(&cxlr->dev, "%s:%s: invalid parent interleave: %d\n",
1080 			dev_name(parent_port->uport),
1081 			dev_name(&parent_port->dev), parent_iw);
1082 		return rc;
1083 	}
1084 
1085 	iw = cxl_rr->nr_targets;
1086 	rc = ways_to_eiw(iw, &eiw);
1087 	if (rc) {
1088 		dev_dbg(&cxlr->dev, "%s:%s: invalid port interleave: %d\n",
1089 			dev_name(port->uport), dev_name(&port->dev), iw);
1090 		return rc;
1091 	}
1092 
1093 	/*
1094 	 * If @parent_port is masking address bits, pick the next unused address
1095 	 * bit to route @port's targets.
1096 	 */
1097 	if (parent_iw > 1 && cxl_rr->nr_targets > 1) {
1098 		u32 address_bit = max(peig + peiw, eiw + peig);
1099 
1100 		eig = address_bit - eiw + 1;
1101 	} else {
1102 		eiw = peiw;
1103 		eig = peig;
1104 	}
1105 
1106 	rc = eig_to_granularity(eig, &ig);
1107 	if (rc) {
1108 		dev_dbg(&cxlr->dev, "%s:%s: invalid interleave: %d\n",
1109 			dev_name(port->uport), dev_name(&port->dev),
1110 			256 << eig);
1111 		return rc;
1112 	}
1113 
1114 	if (test_bit(CXL_REGION_F_AUTO, &cxlr->flags)) {
1115 		if (cxld->interleave_ways != iw ||
1116 		    cxld->interleave_granularity != ig ||
1117 		    cxld->hpa_range.start != p->res->start ||
1118 		    cxld->hpa_range.end != p->res->end ||
1119 		    ((cxld->flags & CXL_DECODER_F_ENABLE) == 0)) {
1120 			dev_err(&cxlr->dev,
1121 				"%s:%s %s expected iw: %d ig: %d %pr\n",
1122 				dev_name(port->uport), dev_name(&port->dev),
1123 				__func__, iw, ig, p->res);
1124 			dev_err(&cxlr->dev,
1125 				"%s:%s %s got iw: %d ig: %d state: %s %#llx:%#llx\n",
1126 				dev_name(port->uport), dev_name(&port->dev),
1127 				__func__, cxld->interleave_ways,
1128 				cxld->interleave_granularity,
1129 				(cxld->flags & CXL_DECODER_F_ENABLE) ?
1130 					"enabled" :
1131 					"disabled",
1132 				cxld->hpa_range.start, cxld->hpa_range.end);
1133 			return -ENXIO;
1134 		}
1135 	} else {
1136 		cxld->interleave_ways = iw;
1137 		cxld->interleave_granularity = ig;
1138 		cxld->hpa_range = (struct range) {
1139 			.start = p->res->start,
1140 			.end = p->res->end,
1141 		};
1142 	}
1143 	dev_dbg(&cxlr->dev, "%s:%s iw: %d ig: %d\n", dev_name(port->uport),
1144 		dev_name(&port->dev), iw, ig);
1145 add_target:
1146 	if (cxl_rr->nr_targets_set == cxl_rr->nr_targets) {
1147 		dev_dbg(&cxlr->dev,
1148 			"%s:%s: targets full trying to add %s:%s at %d\n",
1149 			dev_name(port->uport), dev_name(&port->dev),
1150 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev), pos);
1151 		return -ENXIO;
1152 	}
1153 	if (test_bit(CXL_REGION_F_AUTO, &cxlr->flags)) {
1154 		if (cxlsd->target[cxl_rr->nr_targets_set] != ep->dport) {
1155 			dev_dbg(&cxlr->dev, "%s:%s: %s expected %s at %d\n",
1156 				dev_name(port->uport), dev_name(&port->dev),
1157 				dev_name(&cxlsd->cxld.dev),
1158 				dev_name(ep->dport->dport),
1159 				cxl_rr->nr_targets_set);
1160 			return -ENXIO;
1161 		}
1162 	} else
1163 		cxlsd->target[cxl_rr->nr_targets_set] = ep->dport;
1164 	inc = 1;
1165 out_target_set:
1166 	cxl_rr->nr_targets_set += inc;
1167 	dev_dbg(&cxlr->dev, "%s:%s target[%d] = %s for %s:%s @ %d\n",
1168 		dev_name(port->uport), dev_name(&port->dev),
1169 		cxl_rr->nr_targets_set - 1, dev_name(ep->dport->dport),
1170 		dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev), pos);
1171 
1172 	return 0;
1173 }
1174 
1175 static void cxl_port_reset_targets(struct cxl_port *port,
1176 				   struct cxl_region *cxlr)
1177 {
1178 	struct cxl_region_ref *cxl_rr = cxl_rr_load(port, cxlr);
1179 	struct cxl_decoder *cxld;
1180 
1181 	/*
1182 	 * After the last endpoint has been detached the entire cxl_rr may now
1183 	 * be gone.
1184 	 */
1185 	if (!cxl_rr)
1186 		return;
1187 	cxl_rr->nr_targets_set = 0;
1188 
1189 	cxld = cxl_rr->decoder;
1190 	cxld->hpa_range = (struct range) {
1191 		.start = 0,
1192 		.end = -1,
1193 	};
1194 }
1195 
1196 static void cxl_region_teardown_targets(struct cxl_region *cxlr)
1197 {
1198 	struct cxl_region_params *p = &cxlr->params;
1199 	struct cxl_endpoint_decoder *cxled;
1200 	struct cxl_memdev *cxlmd;
1201 	struct cxl_port *iter;
1202 	struct cxl_ep *ep;
1203 	int i;
1204 
1205 	/*
1206 	 * In the auto-discovery case skip automatic teardown since the
1207 	 * address space is already active
1208 	 */
1209 	if (test_bit(CXL_REGION_F_AUTO, &cxlr->flags))
1210 		return;
1211 
1212 	for (i = 0; i < p->nr_targets; i++) {
1213 		cxled = p->targets[i];
1214 		cxlmd = cxled_to_memdev(cxled);
1215 
1216 		iter = cxled_to_port(cxled);
1217 		while (!is_cxl_root(to_cxl_port(iter->dev.parent)))
1218 			iter = to_cxl_port(iter->dev.parent);
1219 
1220 		for (ep = cxl_ep_load(iter, cxlmd); iter;
1221 		     iter = ep->next, ep = cxl_ep_load(iter, cxlmd))
1222 			cxl_port_reset_targets(iter, cxlr);
1223 	}
1224 }
1225 
1226 static int cxl_region_setup_targets(struct cxl_region *cxlr)
1227 {
1228 	struct cxl_region_params *p = &cxlr->params;
1229 	struct cxl_endpoint_decoder *cxled;
1230 	struct cxl_memdev *cxlmd;
1231 	struct cxl_port *iter;
1232 	struct cxl_ep *ep;
1233 	int i, rc;
1234 
1235 	for (i = 0; i < p->nr_targets; i++) {
1236 		cxled = p->targets[i];
1237 		cxlmd = cxled_to_memdev(cxled);
1238 
1239 		iter = cxled_to_port(cxled);
1240 		while (!is_cxl_root(to_cxl_port(iter->dev.parent)))
1241 			iter = to_cxl_port(iter->dev.parent);
1242 
1243 		/*
1244 		 * Descend the topology tree programming / validating
1245 		 * targets while looking for conflicts.
1246 		 */
1247 		for (ep = cxl_ep_load(iter, cxlmd); iter;
1248 		     iter = ep->next, ep = cxl_ep_load(iter, cxlmd)) {
1249 			rc = cxl_port_setup_targets(iter, cxlr, cxled);
1250 			if (rc) {
1251 				cxl_region_teardown_targets(cxlr);
1252 				return rc;
1253 			}
1254 		}
1255 	}
1256 
1257 	return 0;
1258 }
1259 
1260 static int cxl_region_validate_position(struct cxl_region *cxlr,
1261 					struct cxl_endpoint_decoder *cxled,
1262 					int pos)
1263 {
1264 	struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
1265 	struct cxl_region_params *p = &cxlr->params;
1266 	int i;
1267 
1268 	if (pos < 0 || pos >= p->interleave_ways) {
1269 		dev_dbg(&cxlr->dev, "position %d out of range %d\n", pos,
1270 			p->interleave_ways);
1271 		return -ENXIO;
1272 	}
1273 
1274 	if (p->targets[pos] == cxled)
1275 		return 0;
1276 
1277 	if (p->targets[pos]) {
1278 		struct cxl_endpoint_decoder *cxled_target = p->targets[pos];
1279 		struct cxl_memdev *cxlmd_target = cxled_to_memdev(cxled_target);
1280 
1281 		dev_dbg(&cxlr->dev, "position %d already assigned to %s:%s\n",
1282 			pos, dev_name(&cxlmd_target->dev),
1283 			dev_name(&cxled_target->cxld.dev));
1284 		return -EBUSY;
1285 	}
1286 
1287 	for (i = 0; i < p->interleave_ways; i++) {
1288 		struct cxl_endpoint_decoder *cxled_target;
1289 		struct cxl_memdev *cxlmd_target;
1290 
1291 		cxled_target = p->targets[i];
1292 		if (!cxled_target)
1293 			continue;
1294 
1295 		cxlmd_target = cxled_to_memdev(cxled_target);
1296 		if (cxlmd_target == cxlmd) {
1297 			dev_dbg(&cxlr->dev,
1298 				"%s already specified at position %d via: %s\n",
1299 				dev_name(&cxlmd->dev), pos,
1300 				dev_name(&cxled_target->cxld.dev));
1301 			return -EBUSY;
1302 		}
1303 	}
1304 
1305 	return 0;
1306 }
1307 
1308 static int cxl_region_attach_position(struct cxl_region *cxlr,
1309 				      struct cxl_root_decoder *cxlrd,
1310 				      struct cxl_endpoint_decoder *cxled,
1311 				      const struct cxl_dport *dport, int pos)
1312 {
1313 	struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
1314 	struct cxl_port *iter;
1315 	int rc;
1316 
1317 	if (cxlrd->calc_hb(cxlrd, pos) != dport) {
1318 		dev_dbg(&cxlr->dev, "%s:%s invalid target position for %s\n",
1319 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev),
1320 			dev_name(&cxlrd->cxlsd.cxld.dev));
1321 		return -ENXIO;
1322 	}
1323 
1324 	for (iter = cxled_to_port(cxled); !is_cxl_root(iter);
1325 	     iter = to_cxl_port(iter->dev.parent)) {
1326 		rc = cxl_port_attach_region(iter, cxlr, cxled, pos);
1327 		if (rc)
1328 			goto err;
1329 	}
1330 
1331 	return 0;
1332 
1333 err:
1334 	for (iter = cxled_to_port(cxled); !is_cxl_root(iter);
1335 	     iter = to_cxl_port(iter->dev.parent))
1336 		cxl_port_detach_region(iter, cxlr, cxled);
1337 	return rc;
1338 }
1339 
1340 static int cxl_region_attach_auto(struct cxl_region *cxlr,
1341 				  struct cxl_endpoint_decoder *cxled, int pos)
1342 {
1343 	struct cxl_region_params *p = &cxlr->params;
1344 
1345 	if (cxled->state != CXL_DECODER_STATE_AUTO) {
1346 		dev_err(&cxlr->dev,
1347 			"%s: unable to add decoder to autodetected region\n",
1348 			dev_name(&cxled->cxld.dev));
1349 		return -EINVAL;
1350 	}
1351 
1352 	if (pos >= 0) {
1353 		dev_dbg(&cxlr->dev, "%s: expected auto position, not %d\n",
1354 			dev_name(&cxled->cxld.dev), pos);
1355 		return -EINVAL;
1356 	}
1357 
1358 	if (p->nr_targets >= p->interleave_ways) {
1359 		dev_err(&cxlr->dev, "%s: no more target slots available\n",
1360 			dev_name(&cxled->cxld.dev));
1361 		return -ENXIO;
1362 	}
1363 
1364 	/*
1365 	 * Temporarily record the endpoint decoder into the target array. Yes,
1366 	 * this means that userspace can view devices in the wrong position
1367 	 * before the region activates, and must be careful to understand when
1368 	 * it might be racing region autodiscovery.
1369 	 */
1370 	pos = p->nr_targets;
1371 	p->targets[pos] = cxled;
1372 	cxled->pos = pos;
1373 	p->nr_targets++;
1374 
1375 	return 0;
1376 }
1377 
1378 static struct cxl_port *next_port(struct cxl_port *port)
1379 {
1380 	if (!port->parent_dport)
1381 		return NULL;
1382 	return port->parent_dport->port;
1383 }
1384 
1385 static int decoder_match_range(struct device *dev, void *data)
1386 {
1387 	struct cxl_endpoint_decoder *cxled = data;
1388 	struct cxl_switch_decoder *cxlsd;
1389 
1390 	if (!is_switch_decoder(dev))
1391 		return 0;
1392 
1393 	cxlsd = to_cxl_switch_decoder(dev);
1394 	return range_contains(&cxlsd->cxld.hpa_range, &cxled->cxld.hpa_range);
1395 }
1396 
1397 static void find_positions(const struct cxl_switch_decoder *cxlsd,
1398 			   const struct cxl_port *iter_a,
1399 			   const struct cxl_port *iter_b, int *a_pos,
1400 			   int *b_pos)
1401 {
1402 	int i;
1403 
1404 	for (i = 0, *a_pos = -1, *b_pos = -1; i < cxlsd->nr_targets; i++) {
1405 		if (cxlsd->target[i] == iter_a->parent_dport)
1406 			*a_pos = i;
1407 		else if (cxlsd->target[i] == iter_b->parent_dport)
1408 			*b_pos = i;
1409 		if (*a_pos >= 0 && *b_pos >= 0)
1410 			break;
1411 	}
1412 }
1413 
1414 static int cmp_decode_pos(const void *a, const void *b)
1415 {
1416 	struct cxl_endpoint_decoder *cxled_a = *(typeof(cxled_a) *)a;
1417 	struct cxl_endpoint_decoder *cxled_b = *(typeof(cxled_b) *)b;
1418 	struct cxl_memdev *cxlmd_a = cxled_to_memdev(cxled_a);
1419 	struct cxl_memdev *cxlmd_b = cxled_to_memdev(cxled_b);
1420 	struct cxl_port *port_a = cxled_to_port(cxled_a);
1421 	struct cxl_port *port_b = cxled_to_port(cxled_b);
1422 	struct cxl_port *iter_a, *iter_b, *port = NULL;
1423 	struct cxl_switch_decoder *cxlsd;
1424 	struct device *dev;
1425 	int a_pos, b_pos;
1426 	unsigned int seq;
1427 
1428 	/* Exit early if any prior sorting failed */
1429 	if (cxled_a->pos < 0 || cxled_b->pos < 0)
1430 		return 0;
1431 
1432 	/*
1433 	 * Walk up the hierarchy to find a shared port, find the decoder that
1434 	 * maps the range, compare the relative position of those dport
1435 	 * mappings.
1436 	 */
1437 	for (iter_a = port_a; iter_a; iter_a = next_port(iter_a)) {
1438 		struct cxl_port *next_a, *next_b;
1439 
1440 		next_a = next_port(iter_a);
1441 		if (!next_a)
1442 			break;
1443 
1444 		for (iter_b = port_b; iter_b; iter_b = next_port(iter_b)) {
1445 			next_b = next_port(iter_b);
1446 			if (next_a != next_b)
1447 				continue;
1448 			port = next_a;
1449 			break;
1450 		}
1451 
1452 		if (port)
1453 			break;
1454 	}
1455 
1456 	if (!port) {
1457 		dev_err(cxlmd_a->dev.parent,
1458 			"failed to find shared port with %s\n",
1459 			dev_name(cxlmd_b->dev.parent));
1460 		goto err;
1461 	}
1462 
1463 	dev = device_find_child(&port->dev, cxled_a, decoder_match_range);
1464 	if (!dev) {
1465 		struct range *range = &cxled_a->cxld.hpa_range;
1466 
1467 		dev_err(port->uport,
1468 			"failed to find decoder that maps %#llx-%#llx\n",
1469 			range->start, range->end);
1470 		goto err;
1471 	}
1472 
1473 	cxlsd = to_cxl_switch_decoder(dev);
1474 	do {
1475 		seq = read_seqbegin(&cxlsd->target_lock);
1476 		find_positions(cxlsd, iter_a, iter_b, &a_pos, &b_pos);
1477 	} while (read_seqretry(&cxlsd->target_lock, seq));
1478 
1479 	put_device(dev);
1480 
1481 	if (a_pos < 0 || b_pos < 0) {
1482 		dev_err(port->uport,
1483 			"failed to find shared decoder for %s and %s\n",
1484 			dev_name(cxlmd_a->dev.parent),
1485 			dev_name(cxlmd_b->dev.parent));
1486 		goto err;
1487 	}
1488 
1489 	dev_dbg(port->uport, "%s comes %s %s\n", dev_name(cxlmd_a->dev.parent),
1490 		a_pos - b_pos < 0 ? "before" : "after",
1491 		dev_name(cxlmd_b->dev.parent));
1492 
1493 	return a_pos - b_pos;
1494 err:
1495 	cxled_a->pos = -1;
1496 	return 0;
1497 }
1498 
1499 static int cxl_region_sort_targets(struct cxl_region *cxlr)
1500 {
1501 	struct cxl_region_params *p = &cxlr->params;
1502 	int i, rc = 0;
1503 
1504 	sort(p->targets, p->nr_targets, sizeof(p->targets[0]), cmp_decode_pos,
1505 	     NULL);
1506 
1507 	for (i = 0; i < p->nr_targets; i++) {
1508 		struct cxl_endpoint_decoder *cxled = p->targets[i];
1509 
1510 		/*
1511 		 * Record that sorting failed, but still continue to restore
1512 		 * cxled->pos with its ->targets[] position so that follow-on
1513 		 * code paths can reliably do p->targets[cxled->pos] to
1514 		 * self-reference their entry.
1515 		 */
1516 		if (cxled->pos < 0)
1517 			rc = -ENXIO;
1518 		cxled->pos = i;
1519 	}
1520 
1521 	dev_dbg(&cxlr->dev, "region sort %s\n", rc ? "failed" : "successful");
1522 	return rc;
1523 }
1524 
1525 static int cxl_region_attach(struct cxl_region *cxlr,
1526 			     struct cxl_endpoint_decoder *cxled, int pos)
1527 {
1528 	struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(cxlr->dev.parent);
1529 	struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
1530 	struct cxl_region_params *p = &cxlr->params;
1531 	struct cxl_port *ep_port, *root_port;
1532 	struct cxl_dport *dport;
1533 	int rc = -ENXIO;
1534 
1535 	if (cxled->mode != cxlr->mode) {
1536 		dev_dbg(&cxlr->dev, "%s region mode: %d mismatch: %d\n",
1537 			dev_name(&cxled->cxld.dev), cxlr->mode, cxled->mode);
1538 		return -EINVAL;
1539 	}
1540 
1541 	if (cxled->mode == CXL_DECODER_DEAD) {
1542 		dev_dbg(&cxlr->dev, "%s dead\n", dev_name(&cxled->cxld.dev));
1543 		return -ENODEV;
1544 	}
1545 
1546 	/* all full of members, or interleave config not established? */
1547 	if (p->state > CXL_CONFIG_INTERLEAVE_ACTIVE) {
1548 		dev_dbg(&cxlr->dev, "region already active\n");
1549 		return -EBUSY;
1550 	} else if (p->state < CXL_CONFIG_INTERLEAVE_ACTIVE) {
1551 		dev_dbg(&cxlr->dev, "interleave config missing\n");
1552 		return -ENXIO;
1553 	}
1554 
1555 	ep_port = cxled_to_port(cxled);
1556 	root_port = cxlrd_to_port(cxlrd);
1557 	dport = cxl_find_dport_by_dev(root_port, ep_port->host_bridge);
1558 	if (!dport) {
1559 		dev_dbg(&cxlr->dev, "%s:%s invalid target for %s\n",
1560 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev),
1561 			dev_name(cxlr->dev.parent));
1562 		return -ENXIO;
1563 	}
1564 
1565 	if (cxled->cxld.target_type != cxlr->type) {
1566 		dev_dbg(&cxlr->dev, "%s:%s type mismatch: %d vs %d\n",
1567 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev),
1568 			cxled->cxld.target_type, cxlr->type);
1569 		return -ENXIO;
1570 	}
1571 
1572 	if (!cxled->dpa_res) {
1573 		dev_dbg(&cxlr->dev, "%s:%s: missing DPA allocation.\n",
1574 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev));
1575 		return -ENXIO;
1576 	}
1577 
1578 	if (resource_size(cxled->dpa_res) * p->interleave_ways !=
1579 	    resource_size(p->res)) {
1580 		dev_dbg(&cxlr->dev,
1581 			"%s:%s: decoder-size-%#llx * ways-%d != region-size-%#llx\n",
1582 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev),
1583 			(u64)resource_size(cxled->dpa_res), p->interleave_ways,
1584 			(u64)resource_size(p->res));
1585 		return -EINVAL;
1586 	}
1587 
1588 	if (test_bit(CXL_REGION_F_AUTO, &cxlr->flags)) {
1589 		int i;
1590 
1591 		rc = cxl_region_attach_auto(cxlr, cxled, pos);
1592 		if (rc)
1593 			return rc;
1594 
1595 		/* await more targets to arrive... */
1596 		if (p->nr_targets < p->interleave_ways)
1597 			return 0;
1598 
1599 		/*
1600 		 * All targets are here, which implies all PCI enumeration that
1601 		 * affects this region has been completed. Walk the topology to
1602 		 * sort the devices into their relative region decode position.
1603 		 */
1604 		rc = cxl_region_sort_targets(cxlr);
1605 		if (rc)
1606 			return rc;
1607 
1608 		for (i = 0; i < p->nr_targets; i++) {
1609 			cxled = p->targets[i];
1610 			ep_port = cxled_to_port(cxled);
1611 			dport = cxl_find_dport_by_dev(root_port,
1612 						      ep_port->host_bridge);
1613 			rc = cxl_region_attach_position(cxlr, cxlrd, cxled,
1614 							dport, i);
1615 			if (rc)
1616 				return rc;
1617 		}
1618 
1619 		rc = cxl_region_setup_targets(cxlr);
1620 		if (rc)
1621 			return rc;
1622 
1623 		/*
1624 		 * If target setup succeeds in the autodiscovery case
1625 		 * then the region is already committed.
1626 		 */
1627 		p->state = CXL_CONFIG_COMMIT;
1628 
1629 		return 0;
1630 	}
1631 
1632 	rc = cxl_region_validate_position(cxlr, cxled, pos);
1633 	if (rc)
1634 		return rc;
1635 
1636 	rc = cxl_region_attach_position(cxlr, cxlrd, cxled, dport, pos);
1637 	if (rc)
1638 		return rc;
1639 
1640 	p->targets[pos] = cxled;
1641 	cxled->pos = pos;
1642 	p->nr_targets++;
1643 
1644 	if (p->nr_targets == p->interleave_ways) {
1645 		rc = cxl_region_setup_targets(cxlr);
1646 		if (rc)
1647 			goto err_decrement;
1648 		p->state = CXL_CONFIG_ACTIVE;
1649 	}
1650 
1651 	cxled->cxld.interleave_ways = p->interleave_ways;
1652 	cxled->cxld.interleave_granularity = p->interleave_granularity;
1653 	cxled->cxld.hpa_range = (struct range) {
1654 		.start = p->res->start,
1655 		.end = p->res->end,
1656 	};
1657 
1658 	return 0;
1659 
1660 err_decrement:
1661 	p->nr_targets--;
1662 	cxled->pos = -1;
1663 	p->targets[pos] = NULL;
1664 	return rc;
1665 }
1666 
1667 static int cxl_region_detach(struct cxl_endpoint_decoder *cxled)
1668 {
1669 	struct cxl_port *iter, *ep_port = cxled_to_port(cxled);
1670 	struct cxl_region *cxlr = cxled->cxld.region;
1671 	struct cxl_region_params *p;
1672 	int rc = 0;
1673 
1674 	lockdep_assert_held_write(&cxl_region_rwsem);
1675 
1676 	if (!cxlr)
1677 		return 0;
1678 
1679 	p = &cxlr->params;
1680 	get_device(&cxlr->dev);
1681 
1682 	if (p->state > CXL_CONFIG_ACTIVE) {
1683 		/*
1684 		 * TODO: tear down all impacted regions if a device is
1685 		 * removed out of order
1686 		 */
1687 		rc = cxl_region_decode_reset(cxlr, p->interleave_ways);
1688 		if (rc)
1689 			goto out;
1690 		p->state = CXL_CONFIG_ACTIVE;
1691 	}
1692 
1693 	for (iter = ep_port; !is_cxl_root(iter);
1694 	     iter = to_cxl_port(iter->dev.parent))
1695 		cxl_port_detach_region(iter, cxlr, cxled);
1696 
1697 	if (cxled->pos < 0 || cxled->pos >= p->interleave_ways ||
1698 	    p->targets[cxled->pos] != cxled) {
1699 		struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
1700 
1701 		dev_WARN_ONCE(&cxlr->dev, 1, "expected %s:%s at position %d\n",
1702 			      dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev),
1703 			      cxled->pos);
1704 		goto out;
1705 	}
1706 
1707 	if (p->state == CXL_CONFIG_ACTIVE) {
1708 		p->state = CXL_CONFIG_INTERLEAVE_ACTIVE;
1709 		cxl_region_teardown_targets(cxlr);
1710 	}
1711 	p->targets[cxled->pos] = NULL;
1712 	p->nr_targets--;
1713 	cxled->cxld.hpa_range = (struct range) {
1714 		.start = 0,
1715 		.end = -1,
1716 	};
1717 
1718 	/* notify the region driver that one of its targets has departed */
1719 	up_write(&cxl_region_rwsem);
1720 	device_release_driver(&cxlr->dev);
1721 	down_write(&cxl_region_rwsem);
1722 out:
1723 	put_device(&cxlr->dev);
1724 	return rc;
1725 }
1726 
1727 void cxl_decoder_kill_region(struct cxl_endpoint_decoder *cxled)
1728 {
1729 	down_write(&cxl_region_rwsem);
1730 	cxled->mode = CXL_DECODER_DEAD;
1731 	cxl_region_detach(cxled);
1732 	up_write(&cxl_region_rwsem);
1733 }
1734 
1735 static int attach_target(struct cxl_region *cxlr,
1736 			 struct cxl_endpoint_decoder *cxled, int pos,
1737 			 unsigned int state)
1738 {
1739 	int rc = 0;
1740 
1741 	if (state == TASK_INTERRUPTIBLE)
1742 		rc = down_write_killable(&cxl_region_rwsem);
1743 	else
1744 		down_write(&cxl_region_rwsem);
1745 	if (rc)
1746 		return rc;
1747 
1748 	down_read(&cxl_dpa_rwsem);
1749 	rc = cxl_region_attach(cxlr, cxled, pos);
1750 	if (rc == 0)
1751 		set_bit(CXL_REGION_F_INCOHERENT, &cxlr->flags);
1752 	up_read(&cxl_dpa_rwsem);
1753 	up_write(&cxl_region_rwsem);
1754 	return rc;
1755 }
1756 
1757 static int detach_target(struct cxl_region *cxlr, int pos)
1758 {
1759 	struct cxl_region_params *p = &cxlr->params;
1760 	int rc;
1761 
1762 	rc = down_write_killable(&cxl_region_rwsem);
1763 	if (rc)
1764 		return rc;
1765 
1766 	if (pos >= p->interleave_ways) {
1767 		dev_dbg(&cxlr->dev, "position %d out of range %d\n", pos,
1768 			p->interleave_ways);
1769 		rc = -ENXIO;
1770 		goto out;
1771 	}
1772 
1773 	if (!p->targets[pos]) {
1774 		rc = 0;
1775 		goto out;
1776 	}
1777 
1778 	rc = cxl_region_detach(p->targets[pos]);
1779 out:
1780 	up_write(&cxl_region_rwsem);
1781 	return rc;
1782 }
1783 
1784 static size_t store_targetN(struct cxl_region *cxlr, const char *buf, int pos,
1785 			    size_t len)
1786 {
1787 	int rc;
1788 
1789 	if (sysfs_streq(buf, "\n"))
1790 		rc = detach_target(cxlr, pos);
1791 	else {
1792 		struct device *dev;
1793 
1794 		dev = bus_find_device_by_name(&cxl_bus_type, NULL, buf);
1795 		if (!dev)
1796 			return -ENODEV;
1797 
1798 		if (!is_endpoint_decoder(dev)) {
1799 			rc = -EINVAL;
1800 			goto out;
1801 		}
1802 
1803 		rc = attach_target(cxlr, to_cxl_endpoint_decoder(dev), pos,
1804 				   TASK_INTERRUPTIBLE);
1805 out:
1806 		put_device(dev);
1807 	}
1808 
1809 	if (rc < 0)
1810 		return rc;
1811 	return len;
1812 }
1813 
1814 #define TARGET_ATTR_RW(n)                                              \
1815 static ssize_t target##n##_show(                                       \
1816 	struct device *dev, struct device_attribute *attr, char *buf)  \
1817 {                                                                      \
1818 	return show_targetN(to_cxl_region(dev), buf, (n));             \
1819 }                                                                      \
1820 static ssize_t target##n##_store(struct device *dev,                   \
1821 				 struct device_attribute *attr,        \
1822 				 const char *buf, size_t len)          \
1823 {                                                                      \
1824 	return store_targetN(to_cxl_region(dev), buf, (n), len);       \
1825 }                                                                      \
1826 static DEVICE_ATTR_RW(target##n)
1827 
1828 TARGET_ATTR_RW(0);
1829 TARGET_ATTR_RW(1);
1830 TARGET_ATTR_RW(2);
1831 TARGET_ATTR_RW(3);
1832 TARGET_ATTR_RW(4);
1833 TARGET_ATTR_RW(5);
1834 TARGET_ATTR_RW(6);
1835 TARGET_ATTR_RW(7);
1836 TARGET_ATTR_RW(8);
1837 TARGET_ATTR_RW(9);
1838 TARGET_ATTR_RW(10);
1839 TARGET_ATTR_RW(11);
1840 TARGET_ATTR_RW(12);
1841 TARGET_ATTR_RW(13);
1842 TARGET_ATTR_RW(14);
1843 TARGET_ATTR_RW(15);
1844 
1845 static struct attribute *target_attrs[] = {
1846 	&dev_attr_target0.attr,
1847 	&dev_attr_target1.attr,
1848 	&dev_attr_target2.attr,
1849 	&dev_attr_target3.attr,
1850 	&dev_attr_target4.attr,
1851 	&dev_attr_target5.attr,
1852 	&dev_attr_target6.attr,
1853 	&dev_attr_target7.attr,
1854 	&dev_attr_target8.attr,
1855 	&dev_attr_target9.attr,
1856 	&dev_attr_target10.attr,
1857 	&dev_attr_target11.attr,
1858 	&dev_attr_target12.attr,
1859 	&dev_attr_target13.attr,
1860 	&dev_attr_target14.attr,
1861 	&dev_attr_target15.attr,
1862 	NULL,
1863 };
1864 
1865 static umode_t cxl_region_target_visible(struct kobject *kobj,
1866 					 struct attribute *a, int n)
1867 {
1868 	struct device *dev = kobj_to_dev(kobj);
1869 	struct cxl_region *cxlr = to_cxl_region(dev);
1870 	struct cxl_region_params *p = &cxlr->params;
1871 
1872 	if (n < p->interleave_ways)
1873 		return a->mode;
1874 	return 0;
1875 }
1876 
1877 static const struct attribute_group cxl_region_target_group = {
1878 	.attrs = target_attrs,
1879 	.is_visible = cxl_region_target_visible,
1880 };
1881 
1882 static const struct attribute_group *get_cxl_region_target_group(void)
1883 {
1884 	return &cxl_region_target_group;
1885 }
1886 
1887 static const struct attribute_group *region_groups[] = {
1888 	&cxl_base_attribute_group,
1889 	&cxl_region_group,
1890 	&cxl_region_target_group,
1891 	NULL,
1892 };
1893 
1894 static void cxl_region_release(struct device *dev)
1895 {
1896 	struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(dev->parent);
1897 	struct cxl_region *cxlr = to_cxl_region(dev);
1898 	int id = atomic_read(&cxlrd->region_id);
1899 
1900 	/*
1901 	 * Try to reuse the recently idled id rather than the cached
1902 	 * next id to prevent the region id space from increasing
1903 	 * unnecessarily.
1904 	 */
1905 	if (cxlr->id < id)
1906 		if (atomic_try_cmpxchg(&cxlrd->region_id, &id, cxlr->id)) {
1907 			memregion_free(id);
1908 			goto out;
1909 		}
1910 
1911 	memregion_free(cxlr->id);
1912 out:
1913 	put_device(dev->parent);
1914 	kfree(cxlr);
1915 }
1916 
1917 const struct device_type cxl_region_type = {
1918 	.name = "cxl_region",
1919 	.release = cxl_region_release,
1920 	.groups = region_groups
1921 };
1922 
1923 bool is_cxl_region(struct device *dev)
1924 {
1925 	return dev->type == &cxl_region_type;
1926 }
1927 EXPORT_SYMBOL_NS_GPL(is_cxl_region, CXL);
1928 
1929 static struct cxl_region *to_cxl_region(struct device *dev)
1930 {
1931 	if (dev_WARN_ONCE(dev, dev->type != &cxl_region_type,
1932 			  "not a cxl_region device\n"))
1933 		return NULL;
1934 
1935 	return container_of(dev, struct cxl_region, dev);
1936 }
1937 
1938 static void unregister_region(void *dev)
1939 {
1940 	struct cxl_region *cxlr = to_cxl_region(dev);
1941 	struct cxl_region_params *p = &cxlr->params;
1942 	int i;
1943 
1944 	device_del(dev);
1945 
1946 	/*
1947 	 * Now that region sysfs is shutdown, the parameter block is now
1948 	 * read-only, so no need to hold the region rwsem to access the
1949 	 * region parameters.
1950 	 */
1951 	for (i = 0; i < p->interleave_ways; i++)
1952 		detach_target(cxlr, i);
1953 
1954 	cxl_region_iomem_release(cxlr);
1955 	put_device(dev);
1956 }
1957 
1958 static struct lock_class_key cxl_region_key;
1959 
1960 static struct cxl_region *cxl_region_alloc(struct cxl_root_decoder *cxlrd, int id)
1961 {
1962 	struct cxl_region *cxlr;
1963 	struct device *dev;
1964 
1965 	cxlr = kzalloc(sizeof(*cxlr), GFP_KERNEL);
1966 	if (!cxlr) {
1967 		memregion_free(id);
1968 		return ERR_PTR(-ENOMEM);
1969 	}
1970 
1971 	dev = &cxlr->dev;
1972 	device_initialize(dev);
1973 	lockdep_set_class(&dev->mutex, &cxl_region_key);
1974 	dev->parent = &cxlrd->cxlsd.cxld.dev;
1975 	/*
1976 	 * Keep root decoder pinned through cxl_region_release to fixup
1977 	 * region id allocations
1978 	 */
1979 	get_device(dev->parent);
1980 	device_set_pm_not_required(dev);
1981 	dev->bus = &cxl_bus_type;
1982 	dev->type = &cxl_region_type;
1983 	cxlr->id = id;
1984 
1985 	return cxlr;
1986 }
1987 
1988 /**
1989  * devm_cxl_add_region - Adds a region to a decoder
1990  * @cxlrd: root decoder
1991  * @id: memregion id to create, or memregion_free() on failure
1992  * @mode: mode for the endpoint decoders of this region
1993  * @type: select whether this is an expander or accelerator (type-2 or type-3)
1994  *
1995  * This is the second step of region initialization. Regions exist within an
1996  * address space which is mapped by a @cxlrd.
1997  *
1998  * Return: 0 if the region was added to the @cxlrd, else returns negative error
1999  * code. The region will be named "regionZ" where Z is the unique region number.
2000  */
2001 static struct cxl_region *devm_cxl_add_region(struct cxl_root_decoder *cxlrd,
2002 					      int id,
2003 					      enum cxl_decoder_mode mode,
2004 					      enum cxl_decoder_type type)
2005 {
2006 	struct cxl_port *port = to_cxl_port(cxlrd->cxlsd.cxld.dev.parent);
2007 	struct cxl_region *cxlr;
2008 	struct device *dev;
2009 	int rc;
2010 
2011 	switch (mode) {
2012 	case CXL_DECODER_RAM:
2013 	case CXL_DECODER_PMEM:
2014 		break;
2015 	default:
2016 		dev_err(&cxlrd->cxlsd.cxld.dev, "unsupported mode %d\n", mode);
2017 		return ERR_PTR(-EINVAL);
2018 	}
2019 
2020 	cxlr = cxl_region_alloc(cxlrd, id);
2021 	if (IS_ERR(cxlr))
2022 		return cxlr;
2023 	cxlr->mode = mode;
2024 	cxlr->type = type;
2025 
2026 	dev = &cxlr->dev;
2027 	rc = dev_set_name(dev, "region%d", id);
2028 	if (rc)
2029 		goto err;
2030 
2031 	rc = device_add(dev);
2032 	if (rc)
2033 		goto err;
2034 
2035 	rc = devm_add_action_or_reset(port->uport, unregister_region, cxlr);
2036 	if (rc)
2037 		return ERR_PTR(rc);
2038 
2039 	dev_dbg(port->uport, "%s: created %s\n",
2040 		dev_name(&cxlrd->cxlsd.cxld.dev), dev_name(dev));
2041 	return cxlr;
2042 
2043 err:
2044 	put_device(dev);
2045 	return ERR_PTR(rc);
2046 }
2047 
2048 static ssize_t __create_region_show(struct cxl_root_decoder *cxlrd, char *buf)
2049 {
2050 	return sysfs_emit(buf, "region%u\n", atomic_read(&cxlrd->region_id));
2051 }
2052 
2053 static ssize_t create_pmem_region_show(struct device *dev,
2054 				       struct device_attribute *attr, char *buf)
2055 {
2056 	return __create_region_show(to_cxl_root_decoder(dev), buf);
2057 }
2058 
2059 static ssize_t create_ram_region_show(struct device *dev,
2060 				      struct device_attribute *attr, char *buf)
2061 {
2062 	return __create_region_show(to_cxl_root_decoder(dev), buf);
2063 }
2064 
2065 static struct cxl_region *__create_region(struct cxl_root_decoder *cxlrd,
2066 					  enum cxl_decoder_mode mode, int id)
2067 {
2068 	int rc;
2069 
2070 	rc = memregion_alloc(GFP_KERNEL);
2071 	if (rc < 0)
2072 		return ERR_PTR(rc);
2073 
2074 	if (atomic_cmpxchg(&cxlrd->region_id, id, rc) != id) {
2075 		memregion_free(rc);
2076 		return ERR_PTR(-EBUSY);
2077 	}
2078 
2079 	return devm_cxl_add_region(cxlrd, id, mode, CXL_DECODER_EXPANDER);
2080 }
2081 
2082 static ssize_t create_pmem_region_store(struct device *dev,
2083 					struct device_attribute *attr,
2084 					const char *buf, size_t len)
2085 {
2086 	struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(dev);
2087 	struct cxl_region *cxlr;
2088 	int rc, id;
2089 
2090 	rc = sscanf(buf, "region%d\n", &id);
2091 	if (rc != 1)
2092 		return -EINVAL;
2093 
2094 	cxlr = __create_region(cxlrd, CXL_DECODER_PMEM, id);
2095 	if (IS_ERR(cxlr))
2096 		return PTR_ERR(cxlr);
2097 
2098 	return len;
2099 }
2100 DEVICE_ATTR_RW(create_pmem_region);
2101 
2102 static ssize_t create_ram_region_store(struct device *dev,
2103 				       struct device_attribute *attr,
2104 				       const char *buf, size_t len)
2105 {
2106 	struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(dev);
2107 	struct cxl_region *cxlr;
2108 	int rc, id;
2109 
2110 	rc = sscanf(buf, "region%d\n", &id);
2111 	if (rc != 1)
2112 		return -EINVAL;
2113 
2114 	cxlr = __create_region(cxlrd, CXL_DECODER_RAM, id);
2115 	if (IS_ERR(cxlr))
2116 		return PTR_ERR(cxlr);
2117 
2118 	return len;
2119 }
2120 DEVICE_ATTR_RW(create_ram_region);
2121 
2122 static ssize_t region_show(struct device *dev, struct device_attribute *attr,
2123 			   char *buf)
2124 {
2125 	struct cxl_decoder *cxld = to_cxl_decoder(dev);
2126 	ssize_t rc;
2127 
2128 	rc = down_read_interruptible(&cxl_region_rwsem);
2129 	if (rc)
2130 		return rc;
2131 
2132 	if (cxld->region)
2133 		rc = sysfs_emit(buf, "%s\n", dev_name(&cxld->region->dev));
2134 	else
2135 		rc = sysfs_emit(buf, "\n");
2136 	up_read(&cxl_region_rwsem);
2137 
2138 	return rc;
2139 }
2140 DEVICE_ATTR_RO(region);
2141 
2142 static struct cxl_region *
2143 cxl_find_region_by_name(struct cxl_root_decoder *cxlrd, const char *name)
2144 {
2145 	struct cxl_decoder *cxld = &cxlrd->cxlsd.cxld;
2146 	struct device *region_dev;
2147 
2148 	region_dev = device_find_child_by_name(&cxld->dev, name);
2149 	if (!region_dev)
2150 		return ERR_PTR(-ENODEV);
2151 
2152 	return to_cxl_region(region_dev);
2153 }
2154 
2155 static ssize_t delete_region_store(struct device *dev,
2156 				   struct device_attribute *attr,
2157 				   const char *buf, size_t len)
2158 {
2159 	struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(dev);
2160 	struct cxl_port *port = to_cxl_port(dev->parent);
2161 	struct cxl_region *cxlr;
2162 
2163 	cxlr = cxl_find_region_by_name(cxlrd, buf);
2164 	if (IS_ERR(cxlr))
2165 		return PTR_ERR(cxlr);
2166 
2167 	devm_release_action(port->uport, unregister_region, cxlr);
2168 	put_device(&cxlr->dev);
2169 
2170 	return len;
2171 }
2172 DEVICE_ATTR_WO(delete_region);
2173 
2174 static void cxl_pmem_region_release(struct device *dev)
2175 {
2176 	struct cxl_pmem_region *cxlr_pmem = to_cxl_pmem_region(dev);
2177 	int i;
2178 
2179 	for (i = 0; i < cxlr_pmem->nr_mappings; i++) {
2180 		struct cxl_memdev *cxlmd = cxlr_pmem->mapping[i].cxlmd;
2181 
2182 		put_device(&cxlmd->dev);
2183 	}
2184 
2185 	kfree(cxlr_pmem);
2186 }
2187 
2188 static const struct attribute_group *cxl_pmem_region_attribute_groups[] = {
2189 	&cxl_base_attribute_group,
2190 	NULL,
2191 };
2192 
2193 const struct device_type cxl_pmem_region_type = {
2194 	.name = "cxl_pmem_region",
2195 	.release = cxl_pmem_region_release,
2196 	.groups = cxl_pmem_region_attribute_groups,
2197 };
2198 
2199 bool is_cxl_pmem_region(struct device *dev)
2200 {
2201 	return dev->type == &cxl_pmem_region_type;
2202 }
2203 EXPORT_SYMBOL_NS_GPL(is_cxl_pmem_region, CXL);
2204 
2205 struct cxl_pmem_region *to_cxl_pmem_region(struct device *dev)
2206 {
2207 	if (dev_WARN_ONCE(dev, !is_cxl_pmem_region(dev),
2208 			  "not a cxl_pmem_region device\n"))
2209 		return NULL;
2210 	return container_of(dev, struct cxl_pmem_region, dev);
2211 }
2212 EXPORT_SYMBOL_NS_GPL(to_cxl_pmem_region, CXL);
2213 
2214 static struct lock_class_key cxl_pmem_region_key;
2215 
2216 static struct cxl_pmem_region *cxl_pmem_region_alloc(struct cxl_region *cxlr)
2217 {
2218 	struct cxl_region_params *p = &cxlr->params;
2219 	struct cxl_nvdimm_bridge *cxl_nvb;
2220 	struct cxl_pmem_region *cxlr_pmem;
2221 	struct device *dev;
2222 	int i;
2223 
2224 	down_read(&cxl_region_rwsem);
2225 	if (p->state != CXL_CONFIG_COMMIT) {
2226 		cxlr_pmem = ERR_PTR(-ENXIO);
2227 		goto out;
2228 	}
2229 
2230 	cxlr_pmem = kzalloc(struct_size(cxlr_pmem, mapping, p->nr_targets),
2231 			    GFP_KERNEL);
2232 	if (!cxlr_pmem) {
2233 		cxlr_pmem = ERR_PTR(-ENOMEM);
2234 		goto out;
2235 	}
2236 
2237 	cxlr_pmem->hpa_range.start = p->res->start;
2238 	cxlr_pmem->hpa_range.end = p->res->end;
2239 
2240 	/* Snapshot the region configuration underneath the cxl_region_rwsem */
2241 	cxlr_pmem->nr_mappings = p->nr_targets;
2242 	for (i = 0; i < p->nr_targets; i++) {
2243 		struct cxl_endpoint_decoder *cxled = p->targets[i];
2244 		struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
2245 		struct cxl_pmem_region_mapping *m = &cxlr_pmem->mapping[i];
2246 
2247 		/*
2248 		 * Regions never span CXL root devices, so by definition the
2249 		 * bridge for one device is the same for all.
2250 		 */
2251 		if (i == 0) {
2252 			cxl_nvb = cxl_find_nvdimm_bridge(&cxlmd->dev);
2253 			if (!cxl_nvb) {
2254 				cxlr_pmem = ERR_PTR(-ENODEV);
2255 				goto out;
2256 			}
2257 			cxlr->cxl_nvb = cxl_nvb;
2258 		}
2259 		m->cxlmd = cxlmd;
2260 		get_device(&cxlmd->dev);
2261 		m->start = cxled->dpa_res->start;
2262 		m->size = resource_size(cxled->dpa_res);
2263 		m->position = i;
2264 	}
2265 
2266 	dev = &cxlr_pmem->dev;
2267 	cxlr_pmem->cxlr = cxlr;
2268 	cxlr->cxlr_pmem = cxlr_pmem;
2269 	device_initialize(dev);
2270 	lockdep_set_class(&dev->mutex, &cxl_pmem_region_key);
2271 	device_set_pm_not_required(dev);
2272 	dev->parent = &cxlr->dev;
2273 	dev->bus = &cxl_bus_type;
2274 	dev->type = &cxl_pmem_region_type;
2275 out:
2276 	up_read(&cxl_region_rwsem);
2277 
2278 	return cxlr_pmem;
2279 }
2280 
2281 static void cxl_dax_region_release(struct device *dev)
2282 {
2283 	struct cxl_dax_region *cxlr_dax = to_cxl_dax_region(dev);
2284 
2285 	kfree(cxlr_dax);
2286 }
2287 
2288 static const struct attribute_group *cxl_dax_region_attribute_groups[] = {
2289 	&cxl_base_attribute_group,
2290 	NULL,
2291 };
2292 
2293 const struct device_type cxl_dax_region_type = {
2294 	.name = "cxl_dax_region",
2295 	.release = cxl_dax_region_release,
2296 	.groups = cxl_dax_region_attribute_groups,
2297 };
2298 
2299 static bool is_cxl_dax_region(struct device *dev)
2300 {
2301 	return dev->type == &cxl_dax_region_type;
2302 }
2303 
2304 struct cxl_dax_region *to_cxl_dax_region(struct device *dev)
2305 {
2306 	if (dev_WARN_ONCE(dev, !is_cxl_dax_region(dev),
2307 			  "not a cxl_dax_region device\n"))
2308 		return NULL;
2309 	return container_of(dev, struct cxl_dax_region, dev);
2310 }
2311 EXPORT_SYMBOL_NS_GPL(to_cxl_dax_region, CXL);
2312 
2313 static struct lock_class_key cxl_dax_region_key;
2314 
2315 static struct cxl_dax_region *cxl_dax_region_alloc(struct cxl_region *cxlr)
2316 {
2317 	struct cxl_region_params *p = &cxlr->params;
2318 	struct cxl_dax_region *cxlr_dax;
2319 	struct device *dev;
2320 
2321 	down_read(&cxl_region_rwsem);
2322 	if (p->state != CXL_CONFIG_COMMIT) {
2323 		cxlr_dax = ERR_PTR(-ENXIO);
2324 		goto out;
2325 	}
2326 
2327 	cxlr_dax = kzalloc(sizeof(*cxlr_dax), GFP_KERNEL);
2328 	if (!cxlr_dax) {
2329 		cxlr_dax = ERR_PTR(-ENOMEM);
2330 		goto out;
2331 	}
2332 
2333 	cxlr_dax->hpa_range.start = p->res->start;
2334 	cxlr_dax->hpa_range.end = p->res->end;
2335 
2336 	dev = &cxlr_dax->dev;
2337 	cxlr_dax->cxlr = cxlr;
2338 	device_initialize(dev);
2339 	lockdep_set_class(&dev->mutex, &cxl_dax_region_key);
2340 	device_set_pm_not_required(dev);
2341 	dev->parent = &cxlr->dev;
2342 	dev->bus = &cxl_bus_type;
2343 	dev->type = &cxl_dax_region_type;
2344 out:
2345 	up_read(&cxl_region_rwsem);
2346 
2347 	return cxlr_dax;
2348 }
2349 
2350 static void cxlr_pmem_unregister(void *_cxlr_pmem)
2351 {
2352 	struct cxl_pmem_region *cxlr_pmem = _cxlr_pmem;
2353 	struct cxl_region *cxlr = cxlr_pmem->cxlr;
2354 	struct cxl_nvdimm_bridge *cxl_nvb = cxlr->cxl_nvb;
2355 
2356 	/*
2357 	 * Either the bridge is in ->remove() context under the device_lock(),
2358 	 * or cxlr_release_nvdimm() is cancelling the bridge's release action
2359 	 * for @cxlr_pmem and doing it itself (while manually holding the bridge
2360 	 * lock).
2361 	 */
2362 	device_lock_assert(&cxl_nvb->dev);
2363 	cxlr->cxlr_pmem = NULL;
2364 	cxlr_pmem->cxlr = NULL;
2365 	device_unregister(&cxlr_pmem->dev);
2366 }
2367 
2368 static void cxlr_release_nvdimm(void *_cxlr)
2369 {
2370 	struct cxl_region *cxlr = _cxlr;
2371 	struct cxl_nvdimm_bridge *cxl_nvb = cxlr->cxl_nvb;
2372 
2373 	device_lock(&cxl_nvb->dev);
2374 	if (cxlr->cxlr_pmem)
2375 		devm_release_action(&cxl_nvb->dev, cxlr_pmem_unregister,
2376 				    cxlr->cxlr_pmem);
2377 	device_unlock(&cxl_nvb->dev);
2378 	cxlr->cxl_nvb = NULL;
2379 	put_device(&cxl_nvb->dev);
2380 }
2381 
2382 /**
2383  * devm_cxl_add_pmem_region() - add a cxl_region-to-nd_region bridge
2384  * @cxlr: parent CXL region for this pmem region bridge device
2385  *
2386  * Return: 0 on success negative error code on failure.
2387  */
2388 static int devm_cxl_add_pmem_region(struct cxl_region *cxlr)
2389 {
2390 	struct cxl_pmem_region *cxlr_pmem;
2391 	struct cxl_nvdimm_bridge *cxl_nvb;
2392 	struct device *dev;
2393 	int rc;
2394 
2395 	cxlr_pmem = cxl_pmem_region_alloc(cxlr);
2396 	if (IS_ERR(cxlr_pmem))
2397 		return PTR_ERR(cxlr_pmem);
2398 	cxl_nvb = cxlr->cxl_nvb;
2399 
2400 	dev = &cxlr_pmem->dev;
2401 	rc = dev_set_name(dev, "pmem_region%d", cxlr->id);
2402 	if (rc)
2403 		goto err;
2404 
2405 	rc = device_add(dev);
2406 	if (rc)
2407 		goto err;
2408 
2409 	dev_dbg(&cxlr->dev, "%s: register %s\n", dev_name(dev->parent),
2410 		dev_name(dev));
2411 
2412 	device_lock(&cxl_nvb->dev);
2413 	if (cxl_nvb->dev.driver)
2414 		rc = devm_add_action_or_reset(&cxl_nvb->dev,
2415 					      cxlr_pmem_unregister, cxlr_pmem);
2416 	else
2417 		rc = -ENXIO;
2418 	device_unlock(&cxl_nvb->dev);
2419 
2420 	if (rc)
2421 		goto err_bridge;
2422 
2423 	/* @cxlr carries a reference on @cxl_nvb until cxlr_release_nvdimm */
2424 	return devm_add_action_or_reset(&cxlr->dev, cxlr_release_nvdimm, cxlr);
2425 
2426 err:
2427 	put_device(dev);
2428 err_bridge:
2429 	put_device(&cxl_nvb->dev);
2430 	cxlr->cxl_nvb = NULL;
2431 	return rc;
2432 }
2433 
2434 static void cxlr_dax_unregister(void *_cxlr_dax)
2435 {
2436 	struct cxl_dax_region *cxlr_dax = _cxlr_dax;
2437 
2438 	device_unregister(&cxlr_dax->dev);
2439 }
2440 
2441 static int devm_cxl_add_dax_region(struct cxl_region *cxlr)
2442 {
2443 	struct cxl_dax_region *cxlr_dax;
2444 	struct device *dev;
2445 	int rc;
2446 
2447 	cxlr_dax = cxl_dax_region_alloc(cxlr);
2448 	if (IS_ERR(cxlr_dax))
2449 		return PTR_ERR(cxlr_dax);
2450 
2451 	dev = &cxlr_dax->dev;
2452 	rc = dev_set_name(dev, "dax_region%d", cxlr->id);
2453 	if (rc)
2454 		goto err;
2455 
2456 	rc = device_add(dev);
2457 	if (rc)
2458 		goto err;
2459 
2460 	dev_dbg(&cxlr->dev, "%s: register %s\n", dev_name(dev->parent),
2461 		dev_name(dev));
2462 
2463 	return devm_add_action_or_reset(&cxlr->dev, cxlr_dax_unregister,
2464 					cxlr_dax);
2465 err:
2466 	put_device(dev);
2467 	return rc;
2468 }
2469 
2470 static int match_decoder_by_range(struct device *dev, void *data)
2471 {
2472 	struct range *r1, *r2 = data;
2473 	struct cxl_root_decoder *cxlrd;
2474 
2475 	if (!is_root_decoder(dev))
2476 		return 0;
2477 
2478 	cxlrd = to_cxl_root_decoder(dev);
2479 	r1 = &cxlrd->cxlsd.cxld.hpa_range;
2480 	return range_contains(r1, r2);
2481 }
2482 
2483 static int match_region_by_range(struct device *dev, void *data)
2484 {
2485 	struct cxl_region_params *p;
2486 	struct cxl_region *cxlr;
2487 	struct range *r = data;
2488 	int rc = 0;
2489 
2490 	if (!is_cxl_region(dev))
2491 		return 0;
2492 
2493 	cxlr = to_cxl_region(dev);
2494 	p = &cxlr->params;
2495 
2496 	down_read(&cxl_region_rwsem);
2497 	if (p->res && p->res->start == r->start && p->res->end == r->end)
2498 		rc = 1;
2499 	up_read(&cxl_region_rwsem);
2500 
2501 	return rc;
2502 }
2503 
2504 /* Establish an empty region covering the given HPA range */
2505 static struct cxl_region *construct_region(struct cxl_root_decoder *cxlrd,
2506 					   struct cxl_endpoint_decoder *cxled)
2507 {
2508 	struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
2509 	struct cxl_port *port = cxlrd_to_port(cxlrd);
2510 	struct range *hpa = &cxled->cxld.hpa_range;
2511 	struct cxl_region_params *p;
2512 	struct cxl_region *cxlr;
2513 	struct resource *res;
2514 	int rc;
2515 
2516 	do {
2517 		cxlr = __create_region(cxlrd, cxled->mode,
2518 				       atomic_read(&cxlrd->region_id));
2519 	} while (IS_ERR(cxlr) && PTR_ERR(cxlr) == -EBUSY);
2520 
2521 	if (IS_ERR(cxlr)) {
2522 		dev_err(cxlmd->dev.parent,
2523 			"%s:%s: %s failed assign region: %ld\n",
2524 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev),
2525 			__func__, PTR_ERR(cxlr));
2526 		return cxlr;
2527 	}
2528 
2529 	down_write(&cxl_region_rwsem);
2530 	p = &cxlr->params;
2531 	if (p->state >= CXL_CONFIG_INTERLEAVE_ACTIVE) {
2532 		dev_err(cxlmd->dev.parent,
2533 			"%s:%s: %s autodiscovery interrupted\n",
2534 			dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev),
2535 			__func__);
2536 		rc = -EBUSY;
2537 		goto err;
2538 	}
2539 
2540 	set_bit(CXL_REGION_F_AUTO, &cxlr->flags);
2541 
2542 	res = kmalloc(sizeof(*res), GFP_KERNEL);
2543 	if (!res) {
2544 		rc = -ENOMEM;
2545 		goto err;
2546 	}
2547 
2548 	*res = DEFINE_RES_MEM_NAMED(hpa->start, range_len(hpa),
2549 				    dev_name(&cxlr->dev));
2550 	rc = insert_resource(cxlrd->res, res);
2551 	if (rc) {
2552 		/*
2553 		 * Platform-firmware may not have split resources like "System
2554 		 * RAM" on CXL window boundaries see cxl_region_iomem_release()
2555 		 */
2556 		dev_warn(cxlmd->dev.parent,
2557 			 "%s:%s: %s %s cannot insert resource\n",
2558 			 dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev),
2559 			 __func__, dev_name(&cxlr->dev));
2560 	}
2561 
2562 	p->res = res;
2563 	p->interleave_ways = cxled->cxld.interleave_ways;
2564 	p->interleave_granularity = cxled->cxld.interleave_granularity;
2565 	p->state = CXL_CONFIG_INTERLEAVE_ACTIVE;
2566 
2567 	rc = sysfs_update_group(&cxlr->dev.kobj, get_cxl_region_target_group());
2568 	if (rc)
2569 		goto err;
2570 
2571 	dev_dbg(cxlmd->dev.parent, "%s:%s: %s %s res: %pr iw: %d ig: %d\n",
2572 		dev_name(&cxlmd->dev), dev_name(&cxled->cxld.dev), __func__,
2573 		dev_name(&cxlr->dev), p->res, p->interleave_ways,
2574 		p->interleave_granularity);
2575 
2576 	/* ...to match put_device() in cxl_add_to_region() */
2577 	get_device(&cxlr->dev);
2578 	up_write(&cxl_region_rwsem);
2579 
2580 	return cxlr;
2581 
2582 err:
2583 	up_write(&cxl_region_rwsem);
2584 	devm_release_action(port->uport, unregister_region, cxlr);
2585 	return ERR_PTR(rc);
2586 }
2587 
2588 int cxl_add_to_region(struct cxl_port *root, struct cxl_endpoint_decoder *cxled)
2589 {
2590 	struct cxl_memdev *cxlmd = cxled_to_memdev(cxled);
2591 	struct range *hpa = &cxled->cxld.hpa_range;
2592 	struct cxl_decoder *cxld = &cxled->cxld;
2593 	struct device *cxlrd_dev, *region_dev;
2594 	struct cxl_root_decoder *cxlrd;
2595 	struct cxl_region_params *p;
2596 	struct cxl_region *cxlr;
2597 	bool attach = false;
2598 	int rc;
2599 
2600 	cxlrd_dev = device_find_child(&root->dev, &cxld->hpa_range,
2601 				      match_decoder_by_range);
2602 	if (!cxlrd_dev) {
2603 		dev_err(cxlmd->dev.parent,
2604 			"%s:%s no CXL window for range %#llx:%#llx\n",
2605 			dev_name(&cxlmd->dev), dev_name(&cxld->dev),
2606 			cxld->hpa_range.start, cxld->hpa_range.end);
2607 		return -ENXIO;
2608 	}
2609 
2610 	cxlrd = to_cxl_root_decoder(cxlrd_dev);
2611 
2612 	/*
2613 	 * Ensure that if multiple threads race to construct_region() for @hpa
2614 	 * one does the construction and the others add to that.
2615 	 */
2616 	mutex_lock(&cxlrd->range_lock);
2617 	region_dev = device_find_child(&cxlrd->cxlsd.cxld.dev, hpa,
2618 				       match_region_by_range);
2619 	if (!region_dev) {
2620 		cxlr = construct_region(cxlrd, cxled);
2621 		region_dev = &cxlr->dev;
2622 	} else
2623 		cxlr = to_cxl_region(region_dev);
2624 	mutex_unlock(&cxlrd->range_lock);
2625 
2626 	if (IS_ERR(cxlr)) {
2627 		rc = PTR_ERR(cxlr);
2628 		goto out;
2629 	}
2630 
2631 	attach_target(cxlr, cxled, -1, TASK_UNINTERRUPTIBLE);
2632 
2633 	down_read(&cxl_region_rwsem);
2634 	p = &cxlr->params;
2635 	attach = p->state == CXL_CONFIG_COMMIT;
2636 	up_read(&cxl_region_rwsem);
2637 
2638 	if (attach) {
2639 		/*
2640 		 * If device_attach() fails the range may still be active via
2641 		 * the platform-firmware memory map, otherwise the driver for
2642 		 * regions is local to this file, so driver matching can't fail.
2643 		 */
2644 		if (device_attach(&cxlr->dev) < 0)
2645 			dev_err(&cxlr->dev, "failed to enable, range: %pr\n",
2646 				p->res);
2647 	}
2648 
2649 	put_device(region_dev);
2650 out:
2651 	put_device(cxlrd_dev);
2652 	return rc;
2653 }
2654 EXPORT_SYMBOL_NS_GPL(cxl_add_to_region, CXL);
2655 
2656 static int cxl_region_invalidate_memregion(struct cxl_region *cxlr)
2657 {
2658 	if (!test_bit(CXL_REGION_F_INCOHERENT, &cxlr->flags))
2659 		return 0;
2660 
2661 	if (!cpu_cache_has_invalidate_memregion()) {
2662 		if (IS_ENABLED(CONFIG_CXL_REGION_INVALIDATION_TEST)) {
2663 			dev_warn_once(
2664 				&cxlr->dev,
2665 				"Bypassing cpu_cache_invalidate_memregion() for testing!\n");
2666 			clear_bit(CXL_REGION_F_INCOHERENT, &cxlr->flags);
2667 			return 0;
2668 		} else {
2669 			dev_err(&cxlr->dev,
2670 				"Failed to synchronize CPU cache state\n");
2671 			return -ENXIO;
2672 		}
2673 	}
2674 
2675 	cpu_cache_invalidate_memregion(IORES_DESC_CXL);
2676 	clear_bit(CXL_REGION_F_INCOHERENT, &cxlr->flags);
2677 	return 0;
2678 }
2679 
2680 static int is_system_ram(struct resource *res, void *arg)
2681 {
2682 	struct cxl_region *cxlr = arg;
2683 	struct cxl_region_params *p = &cxlr->params;
2684 
2685 	dev_dbg(&cxlr->dev, "%pr has System RAM: %pr\n", p->res, res);
2686 	return 1;
2687 }
2688 
2689 static int cxl_region_probe(struct device *dev)
2690 {
2691 	struct cxl_region *cxlr = to_cxl_region(dev);
2692 	struct cxl_region_params *p = &cxlr->params;
2693 	int rc;
2694 
2695 	rc = down_read_interruptible(&cxl_region_rwsem);
2696 	if (rc) {
2697 		dev_dbg(&cxlr->dev, "probe interrupted\n");
2698 		return rc;
2699 	}
2700 
2701 	if (p->state < CXL_CONFIG_COMMIT) {
2702 		dev_dbg(&cxlr->dev, "config state: %d\n", p->state);
2703 		rc = -ENXIO;
2704 		goto out;
2705 	}
2706 
2707 	rc = cxl_region_invalidate_memregion(cxlr);
2708 
2709 	/*
2710 	 * From this point on any path that changes the region's state away from
2711 	 * CXL_CONFIG_COMMIT is also responsible for releasing the driver.
2712 	 */
2713 out:
2714 	up_read(&cxl_region_rwsem);
2715 
2716 	if (rc)
2717 		return rc;
2718 
2719 	switch (cxlr->mode) {
2720 	case CXL_DECODER_PMEM:
2721 		return devm_cxl_add_pmem_region(cxlr);
2722 	case CXL_DECODER_RAM:
2723 		/*
2724 		 * The region can not be manged by CXL if any portion of
2725 		 * it is already online as 'System RAM'
2726 		 */
2727 		if (walk_iomem_res_desc(IORES_DESC_NONE,
2728 					IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY,
2729 					p->res->start, p->res->end, cxlr,
2730 					is_system_ram) > 0)
2731 			return 0;
2732 		return devm_cxl_add_dax_region(cxlr);
2733 	default:
2734 		dev_dbg(&cxlr->dev, "unsupported region mode: %d\n",
2735 			cxlr->mode);
2736 		return -ENXIO;
2737 	}
2738 }
2739 
2740 static struct cxl_driver cxl_region_driver = {
2741 	.name = "cxl_region",
2742 	.probe = cxl_region_probe,
2743 	.id = CXL_DEVICE_REGION,
2744 };
2745 
2746 int cxl_region_init(void)
2747 {
2748 	return cxl_driver_register(&cxl_region_driver);
2749 }
2750 
2751 void cxl_region_exit(void)
2752 {
2753 	cxl_driver_unregister(&cxl_region_driver);
2754 }
2755 
2756 MODULE_IMPORT_NS(CXL);
2757 MODULE_IMPORT_NS(DEVMEM);
2758 MODULE_ALIAS_CXL(CXL_DEVICE_REGION);
2759