Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/* Copyright(c) 2021 Intel Corporation. All rights reserved. */
3#include <linux/platform_device.h>
4#include <linux/module.h>
5#include <linux/device.h>
6#include <linux/kernel.h>
7#include <linux/acpi.h>
8#include <linux/pci.h>
9#include <linux/node.h>
10#include <asm/div64.h>
11#include "cxlpci.h"
12#include "cxl.h"
13
14#define CXL_RCRB_SIZE SZ_8K
15
16struct cxl_cxims_data {
17 int nr_maps;
18 u64 xormaps[] __counted_by(nr_maps);
19};
20
21static const guid_t acpi_cxl_qtg_id_guid =
22 GUID_INIT(0xF365F9A6, 0xA7DE, 0x4071,
23 0xA6, 0x6A, 0xB4, 0x0C, 0x0B, 0x4F, 0x8E, 0x52);
24
25
26static u64 cxl_xor_hpa_to_spa(struct cxl_root_decoder *cxlrd, u64 hpa)
27{
28 struct cxl_cxims_data *cximsd = cxlrd->platform_data;
29 int hbiw = cxlrd->cxlsd.nr_targets;
30 u64 val;
31 int pos;
32
33 /* No xormaps for host bridge interleave ways of 1 or 3 */
34 if (hbiw == 1 || hbiw == 3)
35 return hpa;
36
37 /*
38 * For root decoders using xormaps (hbiw: 2,4,6,8,12,16) restore
39 * the position bit to its value before the xormap was applied at
40 * HPA->DPA translation.
41 *
42 * pos is the lowest set bit in an XORMAP
43 * val is the XORALLBITS(HPA & XORMAP)
44 *
45 * XORALLBITS: The CXL spec (3.1 Table 9-22) defines XORALLBITS
46 * as an operation that outputs a single bit by XORing all the
47 * bits in the input (hpa & xormap). Implement XORALLBITS using
48 * hweight64(). If the hamming weight is even the XOR of those
49 * bits results in val==0, if odd the XOR result is val==1.
50 */
51
52 for (int i = 0; i < cximsd->nr_maps; i++) {
53 if (!cximsd->xormaps[i])
54 continue;
55 pos = __ffs(cximsd->xormaps[i]);
56 val = (hweight64(hpa & cximsd->xormaps[i]) & 1);
57 hpa = (hpa & ~(1ULL << pos)) | (val << pos);
58 }
59
60 return hpa;
61}
62
63struct cxl_cxims_context {
64 struct device *dev;
65 struct cxl_root_decoder *cxlrd;
66};
67
68static int cxl_parse_cxims(union acpi_subtable_headers *header, void *arg,
69 const unsigned long end)
70{
71 struct acpi_cedt_cxims *cxims = (struct acpi_cedt_cxims *)header;
72 struct cxl_cxims_context *ctx = arg;
73 struct cxl_root_decoder *cxlrd = ctx->cxlrd;
74 struct cxl_decoder *cxld = &cxlrd->cxlsd.cxld;
75 struct device *dev = ctx->dev;
76 struct cxl_cxims_data *cximsd;
77 unsigned int hbig, nr_maps;
78 int rc;
79
80 rc = eig_to_granularity(cxims->hbig, &hbig);
81 if (rc)
82 return rc;
83
84 /* Does this CXIMS entry apply to the given CXL Window? */
85 if (hbig != cxld->interleave_granularity)
86 return 0;
87
88 /* IW 1,3 do not use xormaps and skip this parsing entirely */
89 if (is_power_of_2(cxld->interleave_ways))
90 /* 2, 4, 8, 16 way */
91 nr_maps = ilog2(cxld->interleave_ways);
92 else
93 /* 6, 12 way */
94 nr_maps = ilog2(cxld->interleave_ways / 3);
95
96 if (cxims->nr_xormaps < nr_maps) {
97 dev_dbg(dev, "CXIMS nr_xormaps[%d] expected[%d]\n",
98 cxims->nr_xormaps, nr_maps);
99 return -ENXIO;
100 }
101
102 cximsd = devm_kzalloc(dev, struct_size(cximsd, xormaps, nr_maps),
103 GFP_KERNEL);
104 if (!cximsd)
105 return -ENOMEM;
106 cximsd->nr_maps = nr_maps;
107 memcpy(cximsd->xormaps, cxims->xormap_list,
108 nr_maps * sizeof(*cximsd->xormaps));
109 cxlrd->platform_data = cximsd;
110
111 return 0;
112}
113
114static unsigned long cfmws_to_decoder_flags(int restrictions)
115{
116 unsigned long flags = CXL_DECODER_F_ENABLE;
117
118 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_TYPE2)
119 flags |= CXL_DECODER_F_TYPE2;
120 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_TYPE3)
121 flags |= CXL_DECODER_F_TYPE3;
122 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_VOLATILE)
123 flags |= CXL_DECODER_F_RAM;
124 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_PMEM)
125 flags |= CXL_DECODER_F_PMEM;
126 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_FIXED)
127 flags |= CXL_DECODER_F_LOCK;
128
129 return flags;
130}
131
132static int cxl_acpi_cfmws_verify(struct device *dev,
133 struct acpi_cedt_cfmws *cfmws)
134{
135 int rc, expected_len;
136 unsigned int ways;
137
138 if (cfmws->interleave_arithmetic != ACPI_CEDT_CFMWS_ARITHMETIC_MODULO &&
139 cfmws->interleave_arithmetic != ACPI_CEDT_CFMWS_ARITHMETIC_XOR) {
140 dev_err(dev, "CFMWS Unknown Interleave Arithmetic: %d\n",
141 cfmws->interleave_arithmetic);
142 return -EINVAL;
143 }
144
145 if (!IS_ALIGNED(cfmws->base_hpa, SZ_256M)) {
146 dev_err(dev, "CFMWS Base HPA not 256MB aligned\n");
147 return -EINVAL;
148 }
149
150 if (!IS_ALIGNED(cfmws->window_size, SZ_256M)) {
151 dev_err(dev, "CFMWS Window Size not 256MB aligned\n");
152 return -EINVAL;
153 }
154
155 rc = eiw_to_ways(cfmws->interleave_ways, &ways);
156 if (rc) {
157 dev_err(dev, "CFMWS Interleave Ways (%d) invalid\n",
158 cfmws->interleave_ways);
159 return -EINVAL;
160 }
161
162 expected_len = struct_size(cfmws, interleave_targets, ways);
163
164 if (cfmws->header.length < expected_len) {
165 dev_err(dev, "CFMWS length %d less than expected %d\n",
166 cfmws->header.length, expected_len);
167 return -EINVAL;
168 }
169
170 if (cfmws->header.length > expected_len)
171 dev_dbg(dev, "CFMWS length %d greater than expected %d\n",
172 cfmws->header.length, expected_len);
173
174 return 0;
175}
176
177/*
178 * Note, @dev must be the first member, see 'struct cxl_chbs_context'
179 * and mock_acpi_table_parse_cedt()
180 */
181struct cxl_cfmws_context {
182 struct device *dev;
183 struct cxl_port *root_port;
184 struct resource *cxl_res;
185 int id;
186};
187
188/**
189 * cxl_acpi_evaluate_qtg_dsm - Retrieve QTG ids via ACPI _DSM
190 * @handle: ACPI handle
191 * @coord: performance access coordinates
192 * @entries: number of QTG IDs to return
193 * @qos_class: int array provided by caller to return QTG IDs
194 *
195 * Return: number of QTG IDs returned, or -errno for errors
196 *
197 * Issue QTG _DSM with accompanied bandwidth and latency data in order to get
198 * the QTG IDs that are suitable for the performance point in order of most
199 * suitable to least suitable. Write back array of QTG IDs and return the
200 * actual number of QTG IDs written back.
201 */
202static int
203cxl_acpi_evaluate_qtg_dsm(acpi_handle handle, struct access_coordinate *coord,
204 int entries, int *qos_class)
205{
206 union acpi_object *out_obj, *out_buf, *obj;
207 union acpi_object in_array[4] = {
208 [0].integer = { ACPI_TYPE_INTEGER, coord->read_latency },
209 [1].integer = { ACPI_TYPE_INTEGER, coord->write_latency },
210 [2].integer = { ACPI_TYPE_INTEGER, coord->read_bandwidth },
211 [3].integer = { ACPI_TYPE_INTEGER, coord->write_bandwidth },
212 };
213 union acpi_object in_obj = {
214 .package = {
215 .type = ACPI_TYPE_PACKAGE,
216 .count = 4,
217 .elements = in_array,
218 },
219 };
220 int count, pkg_entries, i;
221 u16 max_qtg;
222 int rc;
223
224 if (!entries)
225 return -EINVAL;
226
227 out_obj = acpi_evaluate_dsm(handle, &acpi_cxl_qtg_id_guid, 1, 1, &in_obj);
228 if (!out_obj)
229 return -ENXIO;
230
231 if (out_obj->type != ACPI_TYPE_PACKAGE) {
232 rc = -ENXIO;
233 goto out;
234 }
235
236 /* Check Max QTG ID */
237 obj = &out_obj->package.elements[0];
238 if (obj->type != ACPI_TYPE_INTEGER) {
239 rc = -ENXIO;
240 goto out;
241 }
242
243 max_qtg = obj->integer.value;
244
245 /* It's legal to have 0 QTG entries */
246 pkg_entries = out_obj->package.count;
247 if (pkg_entries <= 1) {
248 rc = 0;
249 goto out;
250 }
251
252 /* Retrieve QTG IDs package */
253 obj = &out_obj->package.elements[1];
254 if (obj->type != ACPI_TYPE_PACKAGE) {
255 rc = -ENXIO;
256 goto out;
257 }
258
259 pkg_entries = obj->package.count;
260 count = min(entries, pkg_entries);
261 for (i = 0; i < count; i++) {
262 u16 qtg_id;
263
264 out_buf = &obj->package.elements[i];
265 if (out_buf->type != ACPI_TYPE_INTEGER) {
266 rc = -ENXIO;
267 goto out;
268 }
269
270 qtg_id = out_buf->integer.value;
271 if (qtg_id > max_qtg)
272 pr_warn("QTG ID %u greater than MAX %u\n",
273 qtg_id, max_qtg);
274
275 qos_class[i] = qtg_id;
276 }
277 rc = count;
278
279out:
280 ACPI_FREE(out_obj);
281 return rc;
282}
283
284static int cxl_acpi_qos_class(struct cxl_root *cxl_root,
285 struct access_coordinate *coord, int entries,
286 int *qos_class)
287{
288 struct device *dev = cxl_root->port.uport_dev;
289 acpi_handle handle;
290
291 if (!dev_is_platform(dev))
292 return -ENODEV;
293
294 handle = ACPI_HANDLE(dev);
295 if (!handle)
296 return -ENODEV;
297
298 return cxl_acpi_evaluate_qtg_dsm(handle, coord, entries, qos_class);
299}
300
301static const struct cxl_root_ops acpi_root_ops = {
302 .qos_class = cxl_acpi_qos_class,
303};
304
305static void del_cxl_resource(struct resource *res)
306{
307 if (!res)
308 return;
309 kfree(res->name);
310 kfree(res);
311}
312
313static struct resource *alloc_cxl_resource(resource_size_t base,
314 resource_size_t n, int id)
315{
316 struct resource *res __free(kfree) = kzalloc(sizeof(*res), GFP_KERNEL);
317
318 if (!res)
319 return NULL;
320
321 res->start = base;
322 res->end = base + n - 1;
323 res->flags = IORESOURCE_MEM;
324 res->name = kasprintf(GFP_KERNEL, "CXL Window %d", id);
325 if (!res->name)
326 return NULL;
327
328 return no_free_ptr(res);
329}
330
331static int add_or_reset_cxl_resource(struct resource *parent, struct resource *res)
332{
333 int rc = insert_resource(parent, res);
334
335 if (rc)
336 del_cxl_resource(res);
337 return rc;
338}
339
340DEFINE_FREE(put_cxlrd, struct cxl_root_decoder *,
341 if (!IS_ERR_OR_NULL(_T)) put_device(&_T->cxlsd.cxld.dev))
342DEFINE_FREE(del_cxl_resource, struct resource *, if (_T) del_cxl_resource(_T))
343static int __cxl_parse_cfmws(struct acpi_cedt_cfmws *cfmws,
344 struct cxl_cfmws_context *ctx)
345{
346 int target_map[CXL_DECODER_MAX_INTERLEAVE];
347 struct cxl_port *root_port = ctx->root_port;
348 struct cxl_cxims_context cxims_ctx;
349 struct device *dev = ctx->dev;
350 struct cxl_decoder *cxld;
351 unsigned int ways, i, ig;
352 int rc;
353
354 rc = cxl_acpi_cfmws_verify(dev, cfmws);
355 if (rc)
356 return rc;
357
358 rc = eiw_to_ways(cfmws->interleave_ways, &ways);
359 if (rc)
360 return rc;
361 rc = eig_to_granularity(cfmws->granularity, &ig);
362 if (rc)
363 return rc;
364 for (i = 0; i < ways; i++)
365 target_map[i] = cfmws->interleave_targets[i];
366
367 struct resource *res __free(del_cxl_resource) = alloc_cxl_resource(
368 cfmws->base_hpa, cfmws->window_size, ctx->id++);
369 if (!res)
370 return -ENOMEM;
371
372 /* add to the local resource tracking to establish a sort order */
373 rc = add_or_reset_cxl_resource(ctx->cxl_res, no_free_ptr(res));
374 if (rc)
375 return rc;
376
377 struct cxl_root_decoder *cxlrd __free(put_cxlrd) =
378 cxl_root_decoder_alloc(root_port, ways);
379
380 if (IS_ERR(cxlrd))
381 return PTR_ERR(cxlrd);
382
383 cxld = &cxlrd->cxlsd.cxld;
384 cxld->flags = cfmws_to_decoder_flags(cfmws->restrictions);
385 cxld->target_type = CXL_DECODER_HOSTONLYMEM;
386 cxld->hpa_range = (struct range) {
387 .start = cfmws->base_hpa,
388 .end = cfmws->base_hpa + cfmws->window_size - 1,
389 };
390 cxld->interleave_ways = ways;
391 /*
392 * Minimize the x1 granularity to advertise support for any
393 * valid region granularity
394 */
395 if (ways == 1)
396 ig = CXL_DECODER_MIN_GRANULARITY;
397 cxld->interleave_granularity = ig;
398
399 if (cfmws->interleave_arithmetic == ACPI_CEDT_CFMWS_ARITHMETIC_XOR) {
400 if (ways != 1 && ways != 3) {
401 cxims_ctx = (struct cxl_cxims_context) {
402 .dev = dev,
403 .cxlrd = cxlrd,
404 };
405 rc = acpi_table_parse_cedt(ACPI_CEDT_TYPE_CXIMS,
406 cxl_parse_cxims, &cxims_ctx);
407 if (rc < 0)
408 return rc;
409 if (!cxlrd->platform_data) {
410 dev_err(dev, "No CXIMS for HBIG %u\n", ig);
411 return -EINVAL;
412 }
413 }
414 }
415
416 cxlrd->qos_class = cfmws->qtg_id;
417
418 if (cfmws->interleave_arithmetic == ACPI_CEDT_CFMWS_ARITHMETIC_XOR)
419 cxlrd->hpa_to_spa = cxl_xor_hpa_to_spa;
420
421 rc = cxl_decoder_add(cxld, target_map);
422 if (rc)
423 return rc;
424 return cxl_root_decoder_autoremove(dev, no_free_ptr(cxlrd));
425}
426
427static int cxl_parse_cfmws(union acpi_subtable_headers *header, void *arg,
428 const unsigned long end)
429{
430 struct acpi_cedt_cfmws *cfmws = (struct acpi_cedt_cfmws *)header;
431 struct cxl_cfmws_context *ctx = arg;
432 struct device *dev = ctx->dev;
433 int rc;
434
435 rc = __cxl_parse_cfmws(cfmws, ctx);
436 if (rc)
437 dev_err(dev,
438 "Failed to add decode range: [%#llx - %#llx] (%d)\n",
439 cfmws->base_hpa,
440 cfmws->base_hpa + cfmws->window_size - 1, rc);
441 else
442 dev_dbg(dev, "decode range: node: %d range [%#llx - %#llx]\n",
443 phys_to_target_node(cfmws->base_hpa), cfmws->base_hpa,
444 cfmws->base_hpa + cfmws->window_size - 1);
445
446 /* never fail cxl_acpi load for a single window failure */
447 return 0;
448}
449
450__mock struct acpi_device *to_cxl_host_bridge(struct device *host,
451 struct device *dev)
452{
453 struct acpi_device *adev = to_acpi_device(dev);
454
455 if (!acpi_pci_find_root(adev->handle))
456 return NULL;
457
458 if (strcmp(acpi_device_hid(adev), "ACPI0016") == 0)
459 return adev;
460 return NULL;
461}
462
463/* Note, @dev is used by mock_acpi_table_parse_cedt() */
464struct cxl_chbs_context {
465 struct device *dev;
466 unsigned long long uid;
467 resource_size_t base;
468 u32 cxl_version;
469 int nr_versions;
470 u32 saved_version;
471};
472
473static int cxl_get_chbs_iter(union acpi_subtable_headers *header, void *arg,
474 const unsigned long end)
475{
476 struct cxl_chbs_context *ctx = arg;
477 struct acpi_cedt_chbs *chbs;
478
479 chbs = (struct acpi_cedt_chbs *) header;
480
481 if (chbs->cxl_version == ACPI_CEDT_CHBS_VERSION_CXL11 &&
482 chbs->length != CXL_RCRB_SIZE)
483 return 0;
484
485 if (!chbs->base)
486 return 0;
487
488 if (ctx->saved_version != chbs->cxl_version) {
489 /*
490 * cxl_version cannot be overwritten before the next two
491 * checks, then use saved_version
492 */
493 ctx->saved_version = chbs->cxl_version;
494 ctx->nr_versions++;
495 }
496
497 if (ctx->base != CXL_RESOURCE_NONE)
498 return 0;
499
500 if (ctx->uid != chbs->uid)
501 return 0;
502
503 ctx->cxl_version = chbs->cxl_version;
504 ctx->base = chbs->base;
505
506 return 0;
507}
508
509static int cxl_get_chbs(struct device *dev, struct acpi_device *hb,
510 struct cxl_chbs_context *ctx)
511{
512 unsigned long long uid;
513 int rc;
514
515 rc = acpi_evaluate_integer(hb->handle, METHOD_NAME__UID, NULL, &uid);
516 if (rc != AE_OK) {
517 dev_err(dev, "unable to retrieve _UID\n");
518 return -ENOENT;
519 }
520
521 dev_dbg(dev, "UID found: %lld\n", uid);
522 *ctx = (struct cxl_chbs_context) {
523 .dev = dev,
524 .uid = uid,
525 .base = CXL_RESOURCE_NONE,
526 .cxl_version = UINT_MAX,
527 .saved_version = UINT_MAX,
528 };
529
530 acpi_table_parse_cedt(ACPI_CEDT_TYPE_CHBS, cxl_get_chbs_iter, ctx);
531
532 if (ctx->nr_versions > 1) {
533 /*
534 * Disclaim eRCD support given some component register may
535 * only be found via CHBCR
536 */
537 dev_info(dev, "Unsupported platform config, mixed Virtual Host and Restricted CXL Host hierarchy.");
538 }
539
540 return 0;
541}
542
543static int get_genport_coordinates(struct device *dev, struct cxl_dport *dport)
544{
545 struct acpi_device *hb = to_cxl_host_bridge(NULL, dev);
546 u32 uid;
547
548 if (kstrtou32(acpi_device_uid(hb), 0, &uid))
549 return -EINVAL;
550
551 return acpi_get_genport_coordinates(uid, dport->coord);
552}
553
554static int add_host_bridge_dport(struct device *match, void *arg)
555{
556 int ret;
557 acpi_status rc;
558 struct device *bridge;
559 struct cxl_dport *dport;
560 struct cxl_chbs_context ctx;
561 struct acpi_pci_root *pci_root;
562 struct cxl_port *root_port = arg;
563 struct device *host = root_port->dev.parent;
564 struct acpi_device *hb = to_cxl_host_bridge(host, match);
565
566 if (!hb)
567 return 0;
568
569 rc = cxl_get_chbs(match, hb, &ctx);
570 if (rc)
571 return rc;
572
573 if (ctx.cxl_version == UINT_MAX) {
574 dev_warn(match, "No CHBS found for Host Bridge (UID %lld)\n",
575 ctx.uid);
576 return 0;
577 }
578
579 if (ctx.base == CXL_RESOURCE_NONE) {
580 dev_warn(match, "CHBS invalid for Host Bridge (UID %lld)\n",
581 ctx.uid);
582 return 0;
583 }
584
585 pci_root = acpi_pci_find_root(hb->handle);
586 bridge = pci_root->bus->bridge;
587
588 /*
589 * In RCH mode, bind the component regs base to the dport. In
590 * VH mode it will be bound to the CXL host bridge's port
591 * object later in add_host_bridge_uport().
592 */
593 if (ctx.cxl_version == ACPI_CEDT_CHBS_VERSION_CXL11) {
594 dev_dbg(match, "RCRB found for UID %lld: %pa\n", ctx.uid,
595 &ctx.base);
596 dport = devm_cxl_add_rch_dport(root_port, bridge, ctx.uid,
597 ctx.base);
598 } else {
599 dport = devm_cxl_add_dport(root_port, bridge, ctx.uid,
600 CXL_RESOURCE_NONE);
601 }
602
603 if (IS_ERR(dport))
604 return PTR_ERR(dport);
605
606 ret = get_genport_coordinates(match, dport);
607 if (ret)
608 dev_dbg(match, "Failed to get generic port perf coordinates.\n");
609
610 return 0;
611}
612
613/*
614 * A host bridge is a dport to a CFMWS decode and it is a uport to the
615 * dport (PCIe Root Ports) in the host bridge.
616 */
617static int add_host_bridge_uport(struct device *match, void *arg)
618{
619 struct cxl_port *root_port = arg;
620 struct device *host = root_port->dev.parent;
621 struct acpi_device *hb = to_cxl_host_bridge(host, match);
622 struct acpi_pci_root *pci_root;
623 struct cxl_dport *dport;
624 struct cxl_port *port;
625 struct device *bridge;
626 struct cxl_chbs_context ctx;
627 resource_size_t component_reg_phys;
628 int rc;
629
630 if (!hb)
631 return 0;
632
633 pci_root = acpi_pci_find_root(hb->handle);
634 bridge = pci_root->bus->bridge;
635 dport = cxl_find_dport_by_dev(root_port, bridge);
636 if (!dport) {
637 dev_dbg(host, "host bridge expected and not found\n");
638 return 0;
639 }
640
641 if (dport->rch) {
642 dev_info(bridge, "host supports CXL (restricted)\n");
643 return 0;
644 }
645
646 rc = cxl_get_chbs(match, hb, &ctx);
647 if (rc)
648 return rc;
649
650 if (ctx.cxl_version == ACPI_CEDT_CHBS_VERSION_CXL11) {
651 dev_warn(bridge,
652 "CXL CHBS version mismatch, skip port registration\n");
653 return 0;
654 }
655
656 component_reg_phys = ctx.base;
657 if (component_reg_phys != CXL_RESOURCE_NONE)
658 dev_dbg(match, "CHBCR found for UID %lld: %pa\n",
659 ctx.uid, &component_reg_phys);
660
661 rc = devm_cxl_register_pci_bus(host, bridge, pci_root->bus);
662 if (rc)
663 return rc;
664
665 port = devm_cxl_add_port(host, bridge, component_reg_phys, dport);
666 if (IS_ERR(port))
667 return PTR_ERR(port);
668
669 dev_info(bridge, "host supports CXL\n");
670
671 return 0;
672}
673
674static int add_root_nvdimm_bridge(struct device *match, void *data)
675{
676 struct cxl_decoder *cxld;
677 struct cxl_port *root_port = data;
678 struct cxl_nvdimm_bridge *cxl_nvb;
679 struct device *host = root_port->dev.parent;
680
681 if (!is_root_decoder(match))
682 return 0;
683
684 cxld = to_cxl_decoder(match);
685 if (!(cxld->flags & CXL_DECODER_F_PMEM))
686 return 0;
687
688 cxl_nvb = devm_cxl_add_nvdimm_bridge(host, root_port);
689 if (IS_ERR(cxl_nvb)) {
690 dev_dbg(host, "failed to register pmem\n");
691 return PTR_ERR(cxl_nvb);
692 }
693 dev_dbg(host, "%s: add: %s\n", dev_name(&root_port->dev),
694 dev_name(&cxl_nvb->dev));
695 return 1;
696}
697
698static struct lock_class_key cxl_root_key;
699
700static void cxl_acpi_lock_reset_class(void *dev)
701{
702 device_lock_reset_class(dev);
703}
704
705static void cxl_set_public_resource(struct resource *priv, struct resource *pub)
706{
707 priv->desc = (unsigned long) pub;
708}
709
710static struct resource *cxl_get_public_resource(struct resource *priv)
711{
712 return (struct resource *) priv->desc;
713}
714
715static void remove_cxl_resources(void *data)
716{
717 struct resource *res, *next, *cxl = data;
718
719 for (res = cxl->child; res; res = next) {
720 struct resource *victim = cxl_get_public_resource(res);
721
722 next = res->sibling;
723 remove_resource(res);
724
725 if (victim) {
726 remove_resource(victim);
727 kfree(victim);
728 }
729
730 del_cxl_resource(res);
731 }
732}
733
734/**
735 * add_cxl_resources() - reflect CXL fixed memory windows in iomem_resource
736 * @cxl_res: A standalone resource tree where each CXL window is a sibling
737 *
738 * Walk each CXL window in @cxl_res and add it to iomem_resource potentially
739 * expanding its boundaries to ensure that any conflicting resources become
740 * children. If a window is expanded it may then conflict with a another window
741 * entry and require the window to be truncated or trimmed. Consider this
742 * situation:
743 *
744 * |-- "CXL Window 0" --||----- "CXL Window 1" -----|
745 * |--------------- "System RAM" -------------|
746 *
747 * ...where platform firmware has established as System RAM resource across 2
748 * windows, but has left some portion of window 1 for dynamic CXL region
749 * provisioning. In this case "Window 0" will span the entirety of the "System
750 * RAM" span, and "CXL Window 1" is truncated to the remaining tail past the end
751 * of that "System RAM" resource.
752 */
753static int add_cxl_resources(struct resource *cxl_res)
754{
755 struct resource *res, *new, *next;
756
757 for (res = cxl_res->child; res; res = next) {
758 new = kzalloc(sizeof(*new), GFP_KERNEL);
759 if (!new)
760 return -ENOMEM;
761 new->name = res->name;
762 new->start = res->start;
763 new->end = res->end;
764 new->flags = IORESOURCE_MEM;
765 new->desc = IORES_DESC_CXL;
766
767 /*
768 * Record the public resource in the private cxl_res tree for
769 * later removal.
770 */
771 cxl_set_public_resource(res, new);
772
773 insert_resource_expand_to_fit(&iomem_resource, new);
774
775 next = res->sibling;
776 while (next && resource_overlaps(new, next)) {
777 if (resource_contains(new, next)) {
778 struct resource *_next = next->sibling;
779
780 remove_resource(next);
781 del_cxl_resource(next);
782 next = _next;
783 } else
784 next->start = new->end + 1;
785 }
786 }
787 return 0;
788}
789
790static int pair_cxl_resource(struct device *dev, void *data)
791{
792 struct resource *cxl_res = data;
793 struct resource *p;
794
795 if (!is_root_decoder(dev))
796 return 0;
797
798 for (p = cxl_res->child; p; p = p->sibling) {
799 struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(dev);
800 struct cxl_decoder *cxld = &cxlrd->cxlsd.cxld;
801 struct resource res = {
802 .start = cxld->hpa_range.start,
803 .end = cxld->hpa_range.end,
804 .flags = IORESOURCE_MEM,
805 };
806
807 if (resource_contains(p, &res)) {
808 cxlrd->res = cxl_get_public_resource(p);
809 break;
810 }
811 }
812
813 return 0;
814}
815
816static int cxl_acpi_probe(struct platform_device *pdev)
817{
818 int rc;
819 struct resource *cxl_res;
820 struct cxl_root *cxl_root;
821 struct cxl_port *root_port;
822 struct device *host = &pdev->dev;
823 struct acpi_device *adev = ACPI_COMPANION(host);
824 struct cxl_cfmws_context ctx;
825
826 device_lock_set_class(&pdev->dev, &cxl_root_key);
827 rc = devm_add_action_or_reset(&pdev->dev, cxl_acpi_lock_reset_class,
828 &pdev->dev);
829 if (rc)
830 return rc;
831
832 cxl_res = devm_kzalloc(host, sizeof(*cxl_res), GFP_KERNEL);
833 if (!cxl_res)
834 return -ENOMEM;
835 cxl_res->name = "CXL mem";
836 cxl_res->start = 0;
837 cxl_res->end = -1;
838 cxl_res->flags = IORESOURCE_MEM;
839
840 cxl_root = devm_cxl_add_root(host, &acpi_root_ops);
841 if (IS_ERR(cxl_root))
842 return PTR_ERR(cxl_root);
843 root_port = &cxl_root->port;
844
845 rc = bus_for_each_dev(adev->dev.bus, NULL, root_port,
846 add_host_bridge_dport);
847 if (rc < 0)
848 return rc;
849
850 rc = devm_add_action_or_reset(host, remove_cxl_resources, cxl_res);
851 if (rc)
852 return rc;
853
854 ctx = (struct cxl_cfmws_context) {
855 .dev = host,
856 .root_port = root_port,
857 .cxl_res = cxl_res,
858 };
859 rc = acpi_table_parse_cedt(ACPI_CEDT_TYPE_CFMWS, cxl_parse_cfmws, &ctx);
860 if (rc < 0)
861 return -ENXIO;
862
863 rc = add_cxl_resources(cxl_res);
864 if (rc)
865 return rc;
866
867 /*
868 * Populate the root decoders with their related iomem resource,
869 * if present
870 */
871 device_for_each_child(&root_port->dev, cxl_res, pair_cxl_resource);
872
873 /*
874 * Root level scanned with host-bridge as dports, now scan host-bridges
875 * for their role as CXL uports to their CXL-capable PCIe Root Ports.
876 */
877 rc = bus_for_each_dev(adev->dev.bus, NULL, root_port,
878 add_host_bridge_uport);
879 if (rc < 0)
880 return rc;
881
882 if (IS_ENABLED(CONFIG_CXL_PMEM))
883 rc = device_for_each_child(&root_port->dev, root_port,
884 add_root_nvdimm_bridge);
885 if (rc < 0)
886 return rc;
887
888 /* In case PCI is scanned before ACPI re-trigger memdev attach */
889 cxl_bus_rescan();
890 return 0;
891}
892
893static const struct acpi_device_id cxl_acpi_ids[] = {
894 { "ACPI0017" },
895 { },
896};
897MODULE_DEVICE_TABLE(acpi, cxl_acpi_ids);
898
899static const struct platform_device_id cxl_test_ids[] = {
900 { "cxl_acpi" },
901 { },
902};
903MODULE_DEVICE_TABLE(platform, cxl_test_ids);
904
905static struct platform_driver cxl_acpi_driver = {
906 .probe = cxl_acpi_probe,
907 .driver = {
908 .name = KBUILD_MODNAME,
909 .acpi_match_table = cxl_acpi_ids,
910 },
911 .id_table = cxl_test_ids,
912};
913
914static int __init cxl_acpi_init(void)
915{
916 return platform_driver_register(&cxl_acpi_driver);
917}
918
919static void __exit cxl_acpi_exit(void)
920{
921 platform_driver_unregister(&cxl_acpi_driver);
922 cxl_bus_drain();
923}
924
925/* load before dax_hmem sees 'Soft Reserved' CXL ranges */
926subsys_initcall(cxl_acpi_init);
927
928/*
929 * Arrange for host-bridge ports to be active synchronous with
930 * cxl_acpi_probe() exit.
931 */
932MODULE_SOFTDEP("pre: cxl_port");
933
934module_exit(cxl_acpi_exit);
935MODULE_DESCRIPTION("CXL ACPI: Platform Support");
936MODULE_LICENSE("GPL v2");
937MODULE_IMPORT_NS("CXL");
938MODULE_IMPORT_NS("ACPI");
1// SPDX-License-Identifier: GPL-2.0-only
2/* Copyright(c) 2021 Intel Corporation. All rights reserved. */
3#include <linux/platform_device.h>
4#include <linux/module.h>
5#include <linux/device.h>
6#include <linux/kernel.h>
7#include <linux/acpi.h>
8#include <linux/pci.h>
9#include <linux/node.h>
10#include <asm/div64.h>
11#include "cxlpci.h"
12#include "cxl.h"
13
14#define CXL_RCRB_SIZE SZ_8K
15
16struct cxl_cxims_data {
17 int nr_maps;
18 u64 xormaps[] __counted_by(nr_maps);
19};
20
21static const guid_t acpi_cxl_qtg_id_guid =
22 GUID_INIT(0xF365F9A6, 0xA7DE, 0x4071,
23 0xA6, 0x6A, 0xB4, 0x0C, 0x0B, 0x4F, 0x8E, 0x52);
24
25/*
26 * Find a targets entry (n) in the host bridge interleave list.
27 * CXL Specification 3.0 Table 9-22
28 */
29static int cxl_xor_calc_n(u64 hpa, struct cxl_cxims_data *cximsd, int iw,
30 int ig)
31{
32 int i = 0, n = 0;
33 u8 eiw;
34
35 /* IW: 2,4,6,8,12,16 begin building 'n' using xormaps */
36 if (iw != 3) {
37 for (i = 0; i < cximsd->nr_maps; i++)
38 n |= (hweight64(hpa & cximsd->xormaps[i]) & 1) << i;
39 }
40 /* IW: 3,6,12 add a modulo calculation to 'n' */
41 if (!is_power_of_2(iw)) {
42 if (ways_to_eiw(iw, &eiw))
43 return -1;
44 hpa &= GENMASK_ULL(51, eiw + ig);
45 n |= do_div(hpa, 3) << i;
46 }
47 return n;
48}
49
50static struct cxl_dport *cxl_hb_xor(struct cxl_root_decoder *cxlrd, int pos)
51{
52 struct cxl_cxims_data *cximsd = cxlrd->platform_data;
53 struct cxl_switch_decoder *cxlsd = &cxlrd->cxlsd;
54 struct cxl_decoder *cxld = &cxlsd->cxld;
55 int ig = cxld->interleave_granularity;
56 int iw = cxld->interleave_ways;
57 int n = 0;
58 u64 hpa;
59
60 if (dev_WARN_ONCE(&cxld->dev,
61 cxld->interleave_ways != cxlsd->nr_targets,
62 "misconfigured root decoder\n"))
63 return NULL;
64
65 hpa = cxlrd->res->start + pos * ig;
66
67 /* Entry (n) is 0 for no interleave (iw == 1) */
68 if (iw != 1)
69 n = cxl_xor_calc_n(hpa, cximsd, iw, ig);
70
71 if (n < 0)
72 return NULL;
73
74 return cxlrd->cxlsd.target[n];
75}
76
77struct cxl_cxims_context {
78 struct device *dev;
79 struct cxl_root_decoder *cxlrd;
80};
81
82static int cxl_parse_cxims(union acpi_subtable_headers *header, void *arg,
83 const unsigned long end)
84{
85 struct acpi_cedt_cxims *cxims = (struct acpi_cedt_cxims *)header;
86 struct cxl_cxims_context *ctx = arg;
87 struct cxl_root_decoder *cxlrd = ctx->cxlrd;
88 struct cxl_decoder *cxld = &cxlrd->cxlsd.cxld;
89 struct device *dev = ctx->dev;
90 struct cxl_cxims_data *cximsd;
91 unsigned int hbig, nr_maps;
92 int rc;
93
94 rc = eig_to_granularity(cxims->hbig, &hbig);
95 if (rc)
96 return rc;
97
98 /* Does this CXIMS entry apply to the given CXL Window? */
99 if (hbig != cxld->interleave_granularity)
100 return 0;
101
102 /* IW 1,3 do not use xormaps and skip this parsing entirely */
103 if (is_power_of_2(cxld->interleave_ways))
104 /* 2, 4, 8, 16 way */
105 nr_maps = ilog2(cxld->interleave_ways);
106 else
107 /* 6, 12 way */
108 nr_maps = ilog2(cxld->interleave_ways / 3);
109
110 if (cxims->nr_xormaps < nr_maps) {
111 dev_dbg(dev, "CXIMS nr_xormaps[%d] expected[%d]\n",
112 cxims->nr_xormaps, nr_maps);
113 return -ENXIO;
114 }
115
116 cximsd = devm_kzalloc(dev, struct_size(cximsd, xormaps, nr_maps),
117 GFP_KERNEL);
118 if (!cximsd)
119 return -ENOMEM;
120 cximsd->nr_maps = nr_maps;
121 memcpy(cximsd->xormaps, cxims->xormap_list,
122 nr_maps * sizeof(*cximsd->xormaps));
123 cxlrd->platform_data = cximsd;
124
125 return 0;
126}
127
128static unsigned long cfmws_to_decoder_flags(int restrictions)
129{
130 unsigned long flags = CXL_DECODER_F_ENABLE;
131
132 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_TYPE2)
133 flags |= CXL_DECODER_F_TYPE2;
134 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_TYPE3)
135 flags |= CXL_DECODER_F_TYPE3;
136 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_VOLATILE)
137 flags |= CXL_DECODER_F_RAM;
138 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_PMEM)
139 flags |= CXL_DECODER_F_PMEM;
140 if (restrictions & ACPI_CEDT_CFMWS_RESTRICT_FIXED)
141 flags |= CXL_DECODER_F_LOCK;
142
143 return flags;
144}
145
146static int cxl_acpi_cfmws_verify(struct device *dev,
147 struct acpi_cedt_cfmws *cfmws)
148{
149 int rc, expected_len;
150 unsigned int ways;
151
152 if (cfmws->interleave_arithmetic != ACPI_CEDT_CFMWS_ARITHMETIC_MODULO &&
153 cfmws->interleave_arithmetic != ACPI_CEDT_CFMWS_ARITHMETIC_XOR) {
154 dev_err(dev, "CFMWS Unknown Interleave Arithmetic: %d\n",
155 cfmws->interleave_arithmetic);
156 return -EINVAL;
157 }
158
159 if (!IS_ALIGNED(cfmws->base_hpa, SZ_256M)) {
160 dev_err(dev, "CFMWS Base HPA not 256MB aligned\n");
161 return -EINVAL;
162 }
163
164 if (!IS_ALIGNED(cfmws->window_size, SZ_256M)) {
165 dev_err(dev, "CFMWS Window Size not 256MB aligned\n");
166 return -EINVAL;
167 }
168
169 rc = eiw_to_ways(cfmws->interleave_ways, &ways);
170 if (rc) {
171 dev_err(dev, "CFMWS Interleave Ways (%d) invalid\n",
172 cfmws->interleave_ways);
173 return -EINVAL;
174 }
175
176 expected_len = struct_size(cfmws, interleave_targets, ways);
177
178 if (cfmws->header.length < expected_len) {
179 dev_err(dev, "CFMWS length %d less than expected %d\n",
180 cfmws->header.length, expected_len);
181 return -EINVAL;
182 }
183
184 if (cfmws->header.length > expected_len)
185 dev_dbg(dev, "CFMWS length %d greater than expected %d\n",
186 cfmws->header.length, expected_len);
187
188 return 0;
189}
190
191/*
192 * Note, @dev must be the first member, see 'struct cxl_chbs_context'
193 * and mock_acpi_table_parse_cedt()
194 */
195struct cxl_cfmws_context {
196 struct device *dev;
197 struct cxl_port *root_port;
198 struct resource *cxl_res;
199 int id;
200};
201
202/**
203 * cxl_acpi_evaluate_qtg_dsm - Retrieve QTG ids via ACPI _DSM
204 * @handle: ACPI handle
205 * @coord: performance access coordinates
206 * @entries: number of QTG IDs to return
207 * @qos_class: int array provided by caller to return QTG IDs
208 *
209 * Return: number of QTG IDs returned, or -errno for errors
210 *
211 * Issue QTG _DSM with accompanied bandwidth and latency data in order to get
212 * the QTG IDs that are suitable for the performance point in order of most
213 * suitable to least suitable. Write back array of QTG IDs and return the
214 * actual number of QTG IDs written back.
215 */
216static int
217cxl_acpi_evaluate_qtg_dsm(acpi_handle handle, struct access_coordinate *coord,
218 int entries, int *qos_class)
219{
220 union acpi_object *out_obj, *out_buf, *obj;
221 union acpi_object in_array[4] = {
222 [0].integer = { ACPI_TYPE_INTEGER, coord->read_latency },
223 [1].integer = { ACPI_TYPE_INTEGER, coord->write_latency },
224 [2].integer = { ACPI_TYPE_INTEGER, coord->read_bandwidth },
225 [3].integer = { ACPI_TYPE_INTEGER, coord->write_bandwidth },
226 };
227 union acpi_object in_obj = {
228 .package = {
229 .type = ACPI_TYPE_PACKAGE,
230 .count = 4,
231 .elements = in_array,
232 },
233 };
234 int count, pkg_entries, i;
235 u16 max_qtg;
236 int rc;
237
238 if (!entries)
239 return -EINVAL;
240
241 out_obj = acpi_evaluate_dsm(handle, &acpi_cxl_qtg_id_guid, 1, 1, &in_obj);
242 if (!out_obj)
243 return -ENXIO;
244
245 if (out_obj->type != ACPI_TYPE_PACKAGE) {
246 rc = -ENXIO;
247 goto out;
248 }
249
250 /* Check Max QTG ID */
251 obj = &out_obj->package.elements[0];
252 if (obj->type != ACPI_TYPE_INTEGER) {
253 rc = -ENXIO;
254 goto out;
255 }
256
257 max_qtg = obj->integer.value;
258
259 /* It's legal to have 0 QTG entries */
260 pkg_entries = out_obj->package.count;
261 if (pkg_entries <= 1) {
262 rc = 0;
263 goto out;
264 }
265
266 /* Retrieve QTG IDs package */
267 obj = &out_obj->package.elements[1];
268 if (obj->type != ACPI_TYPE_PACKAGE) {
269 rc = -ENXIO;
270 goto out;
271 }
272
273 pkg_entries = obj->package.count;
274 count = min(entries, pkg_entries);
275 for (i = 0; i < count; i++) {
276 u16 qtg_id;
277
278 out_buf = &obj->package.elements[i];
279 if (out_buf->type != ACPI_TYPE_INTEGER) {
280 rc = -ENXIO;
281 goto out;
282 }
283
284 qtg_id = out_buf->integer.value;
285 if (qtg_id > max_qtg)
286 pr_warn("QTG ID %u greater than MAX %u\n",
287 qtg_id, max_qtg);
288
289 qos_class[i] = qtg_id;
290 }
291 rc = count;
292
293out:
294 ACPI_FREE(out_obj);
295 return rc;
296}
297
298static int cxl_acpi_qos_class(struct cxl_root *cxl_root,
299 struct access_coordinate *coord, int entries,
300 int *qos_class)
301{
302 struct device *dev = cxl_root->port.uport_dev;
303 acpi_handle handle;
304
305 if (!dev_is_platform(dev))
306 return -ENODEV;
307
308 handle = ACPI_HANDLE(dev);
309 if (!handle)
310 return -ENODEV;
311
312 return cxl_acpi_evaluate_qtg_dsm(handle, coord, entries, qos_class);
313}
314
315static const struct cxl_root_ops acpi_root_ops = {
316 .qos_class = cxl_acpi_qos_class,
317};
318
319static int __cxl_parse_cfmws(struct acpi_cedt_cfmws *cfmws,
320 struct cxl_cfmws_context *ctx)
321{
322 int target_map[CXL_DECODER_MAX_INTERLEAVE];
323 struct cxl_port *root_port = ctx->root_port;
324 struct resource *cxl_res = ctx->cxl_res;
325 struct cxl_cxims_context cxims_ctx;
326 struct cxl_root_decoder *cxlrd;
327 struct device *dev = ctx->dev;
328 cxl_calc_hb_fn cxl_calc_hb;
329 struct cxl_decoder *cxld;
330 unsigned int ways, i, ig;
331 struct resource *res;
332 int rc;
333
334 rc = cxl_acpi_cfmws_verify(dev, cfmws);
335 if (rc) {
336 dev_err(dev, "CFMWS range %#llx-%#llx not registered\n",
337 cfmws->base_hpa,
338 cfmws->base_hpa + cfmws->window_size - 1);
339 return rc;
340 }
341
342 rc = eiw_to_ways(cfmws->interleave_ways, &ways);
343 if (rc)
344 return rc;
345 rc = eig_to_granularity(cfmws->granularity, &ig);
346 if (rc)
347 return rc;
348 for (i = 0; i < ways; i++)
349 target_map[i] = cfmws->interleave_targets[i];
350
351 res = kzalloc(sizeof(*res), GFP_KERNEL);
352 if (!res)
353 return -ENOMEM;
354
355 res->name = kasprintf(GFP_KERNEL, "CXL Window %d", ctx->id++);
356 if (!res->name)
357 goto err_name;
358
359 res->start = cfmws->base_hpa;
360 res->end = cfmws->base_hpa + cfmws->window_size - 1;
361 res->flags = IORESOURCE_MEM;
362
363 /* add to the local resource tracking to establish a sort order */
364 rc = insert_resource(cxl_res, res);
365 if (rc)
366 goto err_insert;
367
368 if (cfmws->interleave_arithmetic == ACPI_CEDT_CFMWS_ARITHMETIC_MODULO)
369 cxl_calc_hb = cxl_hb_modulo;
370 else
371 cxl_calc_hb = cxl_hb_xor;
372
373 cxlrd = cxl_root_decoder_alloc(root_port, ways, cxl_calc_hb);
374 if (IS_ERR(cxlrd))
375 return PTR_ERR(cxlrd);
376
377 cxld = &cxlrd->cxlsd.cxld;
378 cxld->flags = cfmws_to_decoder_flags(cfmws->restrictions);
379 cxld->target_type = CXL_DECODER_HOSTONLYMEM;
380 cxld->hpa_range = (struct range) {
381 .start = res->start,
382 .end = res->end,
383 };
384 cxld->interleave_ways = ways;
385 /*
386 * Minimize the x1 granularity to advertise support for any
387 * valid region granularity
388 */
389 if (ways == 1)
390 ig = CXL_DECODER_MIN_GRANULARITY;
391 cxld->interleave_granularity = ig;
392
393 if (cfmws->interleave_arithmetic == ACPI_CEDT_CFMWS_ARITHMETIC_XOR) {
394 if (ways != 1 && ways != 3) {
395 cxims_ctx = (struct cxl_cxims_context) {
396 .dev = dev,
397 .cxlrd = cxlrd,
398 };
399 rc = acpi_table_parse_cedt(ACPI_CEDT_TYPE_CXIMS,
400 cxl_parse_cxims, &cxims_ctx);
401 if (rc < 0)
402 goto err_xormap;
403 if (!cxlrd->platform_data) {
404 dev_err(dev, "No CXIMS for HBIG %u\n", ig);
405 rc = -EINVAL;
406 goto err_xormap;
407 }
408 }
409 }
410
411 cxlrd->qos_class = cfmws->qtg_id;
412
413 rc = cxl_decoder_add(cxld, target_map);
414err_xormap:
415 if (rc)
416 put_device(&cxld->dev);
417 else
418 rc = cxl_decoder_autoremove(dev, cxld);
419 return rc;
420
421err_insert:
422 kfree(res->name);
423err_name:
424 kfree(res);
425 return -ENOMEM;
426}
427
428static int cxl_parse_cfmws(union acpi_subtable_headers *header, void *arg,
429 const unsigned long end)
430{
431 struct acpi_cedt_cfmws *cfmws = (struct acpi_cedt_cfmws *)header;
432 struct cxl_cfmws_context *ctx = arg;
433 struct device *dev = ctx->dev;
434 int rc;
435
436 rc = __cxl_parse_cfmws(cfmws, ctx);
437 if (rc)
438 dev_err(dev,
439 "Failed to add decode range: [%#llx - %#llx] (%d)\n",
440 cfmws->base_hpa,
441 cfmws->base_hpa + cfmws->window_size - 1, rc);
442 else
443 dev_dbg(dev, "decode range: node: %d range [%#llx - %#llx]\n",
444 phys_to_target_node(cfmws->base_hpa), cfmws->base_hpa,
445 cfmws->base_hpa + cfmws->window_size - 1);
446
447 /* never fail cxl_acpi load for a single window failure */
448 return 0;
449}
450
451__mock struct acpi_device *to_cxl_host_bridge(struct device *host,
452 struct device *dev)
453{
454 struct acpi_device *adev = to_acpi_device(dev);
455
456 if (!acpi_pci_find_root(adev->handle))
457 return NULL;
458
459 if (strcmp(acpi_device_hid(adev), "ACPI0016") == 0)
460 return adev;
461 return NULL;
462}
463
464/* Note, @dev is used by mock_acpi_table_parse_cedt() */
465struct cxl_chbs_context {
466 struct device *dev;
467 unsigned long long uid;
468 resource_size_t base;
469 u32 cxl_version;
470};
471
472static int cxl_get_chbs_iter(union acpi_subtable_headers *header, void *arg,
473 const unsigned long end)
474{
475 struct cxl_chbs_context *ctx = arg;
476 struct acpi_cedt_chbs *chbs;
477
478 if (ctx->base != CXL_RESOURCE_NONE)
479 return 0;
480
481 chbs = (struct acpi_cedt_chbs *) header;
482
483 if (ctx->uid != chbs->uid)
484 return 0;
485
486 ctx->cxl_version = chbs->cxl_version;
487 if (!chbs->base)
488 return 0;
489
490 if (chbs->cxl_version == ACPI_CEDT_CHBS_VERSION_CXL11 &&
491 chbs->length != CXL_RCRB_SIZE)
492 return 0;
493
494 ctx->base = chbs->base;
495
496 return 0;
497}
498
499static int cxl_get_chbs(struct device *dev, struct acpi_device *hb,
500 struct cxl_chbs_context *ctx)
501{
502 unsigned long long uid;
503 int rc;
504
505 rc = acpi_evaluate_integer(hb->handle, METHOD_NAME__UID, NULL, &uid);
506 if (rc != AE_OK) {
507 dev_err(dev, "unable to retrieve _UID\n");
508 return -ENOENT;
509 }
510
511 dev_dbg(dev, "UID found: %lld\n", uid);
512 *ctx = (struct cxl_chbs_context) {
513 .dev = dev,
514 .uid = uid,
515 .base = CXL_RESOURCE_NONE,
516 .cxl_version = UINT_MAX,
517 };
518
519 acpi_table_parse_cedt(ACPI_CEDT_TYPE_CHBS, cxl_get_chbs_iter, ctx);
520
521 return 0;
522}
523
524static int get_genport_coordinates(struct device *dev, struct cxl_dport *dport)
525{
526 struct acpi_device *hb = to_cxl_host_bridge(NULL, dev);
527 u32 uid;
528 int rc;
529
530 if (kstrtou32(acpi_device_uid(hb), 0, &uid))
531 return -EINVAL;
532
533 rc = acpi_get_genport_coordinates(uid, &dport->hb_coord);
534 if (rc < 0)
535 return rc;
536
537 /* Adjust back to picoseconds from nanoseconds */
538 dport->hb_coord.read_latency *= 1000;
539 dport->hb_coord.write_latency *= 1000;
540
541 return 0;
542}
543
544static int add_host_bridge_dport(struct device *match, void *arg)
545{
546 int ret;
547 acpi_status rc;
548 struct device *bridge;
549 struct cxl_dport *dport;
550 struct cxl_chbs_context ctx;
551 struct acpi_pci_root *pci_root;
552 struct cxl_port *root_port = arg;
553 struct device *host = root_port->dev.parent;
554 struct acpi_device *hb = to_cxl_host_bridge(host, match);
555
556 if (!hb)
557 return 0;
558
559 rc = cxl_get_chbs(match, hb, &ctx);
560 if (rc)
561 return rc;
562
563 if (ctx.cxl_version == UINT_MAX) {
564 dev_warn(match, "No CHBS found for Host Bridge (UID %lld)\n",
565 ctx.uid);
566 return 0;
567 }
568
569 if (ctx.base == CXL_RESOURCE_NONE) {
570 dev_warn(match, "CHBS invalid for Host Bridge (UID %lld)\n",
571 ctx.uid);
572 return 0;
573 }
574
575 pci_root = acpi_pci_find_root(hb->handle);
576 bridge = pci_root->bus->bridge;
577
578 /*
579 * In RCH mode, bind the component regs base to the dport. In
580 * VH mode it will be bound to the CXL host bridge's port
581 * object later in add_host_bridge_uport().
582 */
583 if (ctx.cxl_version == ACPI_CEDT_CHBS_VERSION_CXL11) {
584 dev_dbg(match, "RCRB found for UID %lld: %pa\n", ctx.uid,
585 &ctx.base);
586 dport = devm_cxl_add_rch_dport(root_port, bridge, ctx.uid,
587 ctx.base);
588 } else {
589 dport = devm_cxl_add_dport(root_port, bridge, ctx.uid,
590 CXL_RESOURCE_NONE);
591 }
592
593 if (IS_ERR(dport))
594 return PTR_ERR(dport);
595
596 ret = get_genport_coordinates(match, dport);
597 if (ret)
598 dev_dbg(match, "Failed to get generic port perf coordinates.\n");
599
600 return 0;
601}
602
603/*
604 * A host bridge is a dport to a CFMWS decode and it is a uport to the
605 * dport (PCIe Root Ports) in the host bridge.
606 */
607static int add_host_bridge_uport(struct device *match, void *arg)
608{
609 struct cxl_port *root_port = arg;
610 struct device *host = root_port->dev.parent;
611 struct acpi_device *hb = to_cxl_host_bridge(host, match);
612 struct acpi_pci_root *pci_root;
613 struct cxl_dport *dport;
614 struct cxl_port *port;
615 struct device *bridge;
616 struct cxl_chbs_context ctx;
617 resource_size_t component_reg_phys;
618 int rc;
619
620 if (!hb)
621 return 0;
622
623 pci_root = acpi_pci_find_root(hb->handle);
624 bridge = pci_root->bus->bridge;
625 dport = cxl_find_dport_by_dev(root_port, bridge);
626 if (!dport) {
627 dev_dbg(host, "host bridge expected and not found\n");
628 return 0;
629 }
630
631 if (dport->rch) {
632 dev_info(bridge, "host supports CXL (restricted)\n");
633 return 0;
634 }
635
636 rc = cxl_get_chbs(match, hb, &ctx);
637 if (rc)
638 return rc;
639
640 if (ctx.cxl_version == ACPI_CEDT_CHBS_VERSION_CXL11) {
641 dev_warn(bridge,
642 "CXL CHBS version mismatch, skip port registration\n");
643 return 0;
644 }
645
646 component_reg_phys = ctx.base;
647 if (component_reg_phys != CXL_RESOURCE_NONE)
648 dev_dbg(match, "CHBCR found for UID %lld: %pa\n",
649 ctx.uid, &component_reg_phys);
650
651 rc = devm_cxl_register_pci_bus(host, bridge, pci_root->bus);
652 if (rc)
653 return rc;
654
655 port = devm_cxl_add_port(host, bridge, component_reg_phys, dport);
656 if (IS_ERR(port))
657 return PTR_ERR(port);
658
659 dev_info(bridge, "host supports CXL\n");
660
661 return 0;
662}
663
664static int add_root_nvdimm_bridge(struct device *match, void *data)
665{
666 struct cxl_decoder *cxld;
667 struct cxl_port *root_port = data;
668 struct cxl_nvdimm_bridge *cxl_nvb;
669 struct device *host = root_port->dev.parent;
670
671 if (!is_root_decoder(match))
672 return 0;
673
674 cxld = to_cxl_decoder(match);
675 if (!(cxld->flags & CXL_DECODER_F_PMEM))
676 return 0;
677
678 cxl_nvb = devm_cxl_add_nvdimm_bridge(host, root_port);
679 if (IS_ERR(cxl_nvb)) {
680 dev_dbg(host, "failed to register pmem\n");
681 return PTR_ERR(cxl_nvb);
682 }
683 dev_dbg(host, "%s: add: %s\n", dev_name(&root_port->dev),
684 dev_name(&cxl_nvb->dev));
685 return 1;
686}
687
688static struct lock_class_key cxl_root_key;
689
690static void cxl_acpi_lock_reset_class(void *dev)
691{
692 device_lock_reset_class(dev);
693}
694
695static void del_cxl_resource(struct resource *res)
696{
697 kfree(res->name);
698 kfree(res);
699}
700
701static void cxl_set_public_resource(struct resource *priv, struct resource *pub)
702{
703 priv->desc = (unsigned long) pub;
704}
705
706static struct resource *cxl_get_public_resource(struct resource *priv)
707{
708 return (struct resource *) priv->desc;
709}
710
711static void remove_cxl_resources(void *data)
712{
713 struct resource *res, *next, *cxl = data;
714
715 for (res = cxl->child; res; res = next) {
716 struct resource *victim = cxl_get_public_resource(res);
717
718 next = res->sibling;
719 remove_resource(res);
720
721 if (victim) {
722 remove_resource(victim);
723 kfree(victim);
724 }
725
726 del_cxl_resource(res);
727 }
728}
729
730/**
731 * add_cxl_resources() - reflect CXL fixed memory windows in iomem_resource
732 * @cxl_res: A standalone resource tree where each CXL window is a sibling
733 *
734 * Walk each CXL window in @cxl_res and add it to iomem_resource potentially
735 * expanding its boundaries to ensure that any conflicting resources become
736 * children. If a window is expanded it may then conflict with a another window
737 * entry and require the window to be truncated or trimmed. Consider this
738 * situation:
739 *
740 * |-- "CXL Window 0" --||----- "CXL Window 1" -----|
741 * |--------------- "System RAM" -------------|
742 *
743 * ...where platform firmware has established as System RAM resource across 2
744 * windows, but has left some portion of window 1 for dynamic CXL region
745 * provisioning. In this case "Window 0" will span the entirety of the "System
746 * RAM" span, and "CXL Window 1" is truncated to the remaining tail past the end
747 * of that "System RAM" resource.
748 */
749static int add_cxl_resources(struct resource *cxl_res)
750{
751 struct resource *res, *new, *next;
752
753 for (res = cxl_res->child; res; res = next) {
754 new = kzalloc(sizeof(*new), GFP_KERNEL);
755 if (!new)
756 return -ENOMEM;
757 new->name = res->name;
758 new->start = res->start;
759 new->end = res->end;
760 new->flags = IORESOURCE_MEM;
761 new->desc = IORES_DESC_CXL;
762
763 /*
764 * Record the public resource in the private cxl_res tree for
765 * later removal.
766 */
767 cxl_set_public_resource(res, new);
768
769 insert_resource_expand_to_fit(&iomem_resource, new);
770
771 next = res->sibling;
772 while (next && resource_overlaps(new, next)) {
773 if (resource_contains(new, next)) {
774 struct resource *_next = next->sibling;
775
776 remove_resource(next);
777 del_cxl_resource(next);
778 next = _next;
779 } else
780 next->start = new->end + 1;
781 }
782 }
783 return 0;
784}
785
786static int pair_cxl_resource(struct device *dev, void *data)
787{
788 struct resource *cxl_res = data;
789 struct resource *p;
790
791 if (!is_root_decoder(dev))
792 return 0;
793
794 for (p = cxl_res->child; p; p = p->sibling) {
795 struct cxl_root_decoder *cxlrd = to_cxl_root_decoder(dev);
796 struct cxl_decoder *cxld = &cxlrd->cxlsd.cxld;
797 struct resource res = {
798 .start = cxld->hpa_range.start,
799 .end = cxld->hpa_range.end,
800 .flags = IORESOURCE_MEM,
801 };
802
803 if (resource_contains(p, &res)) {
804 cxlrd->res = cxl_get_public_resource(p);
805 break;
806 }
807 }
808
809 return 0;
810}
811
812static int cxl_acpi_probe(struct platform_device *pdev)
813{
814 int rc;
815 struct resource *cxl_res;
816 struct cxl_root *cxl_root;
817 struct cxl_port *root_port;
818 struct device *host = &pdev->dev;
819 struct acpi_device *adev = ACPI_COMPANION(host);
820 struct cxl_cfmws_context ctx;
821
822 device_lock_set_class(&pdev->dev, &cxl_root_key);
823 rc = devm_add_action_or_reset(&pdev->dev, cxl_acpi_lock_reset_class,
824 &pdev->dev);
825 if (rc)
826 return rc;
827
828 cxl_res = devm_kzalloc(host, sizeof(*cxl_res), GFP_KERNEL);
829 if (!cxl_res)
830 return -ENOMEM;
831 cxl_res->name = "CXL mem";
832 cxl_res->start = 0;
833 cxl_res->end = -1;
834 cxl_res->flags = IORESOURCE_MEM;
835
836 cxl_root = devm_cxl_add_root(host, &acpi_root_ops);
837 if (IS_ERR(cxl_root))
838 return PTR_ERR(cxl_root);
839 root_port = &cxl_root->port;
840
841 rc = bus_for_each_dev(adev->dev.bus, NULL, root_port,
842 add_host_bridge_dport);
843 if (rc < 0)
844 return rc;
845
846 rc = devm_add_action_or_reset(host, remove_cxl_resources, cxl_res);
847 if (rc)
848 return rc;
849
850 ctx = (struct cxl_cfmws_context) {
851 .dev = host,
852 .root_port = root_port,
853 .cxl_res = cxl_res,
854 };
855 rc = acpi_table_parse_cedt(ACPI_CEDT_TYPE_CFMWS, cxl_parse_cfmws, &ctx);
856 if (rc < 0)
857 return -ENXIO;
858
859 rc = add_cxl_resources(cxl_res);
860 if (rc)
861 return rc;
862
863 /*
864 * Populate the root decoders with their related iomem resource,
865 * if present
866 */
867 device_for_each_child(&root_port->dev, cxl_res, pair_cxl_resource);
868
869 /*
870 * Root level scanned with host-bridge as dports, now scan host-bridges
871 * for their role as CXL uports to their CXL-capable PCIe Root Ports.
872 */
873 rc = bus_for_each_dev(adev->dev.bus, NULL, root_port,
874 add_host_bridge_uport);
875 if (rc < 0)
876 return rc;
877
878 if (IS_ENABLED(CONFIG_CXL_PMEM))
879 rc = device_for_each_child(&root_port->dev, root_port,
880 add_root_nvdimm_bridge);
881 if (rc < 0)
882 return rc;
883
884 /* In case PCI is scanned before ACPI re-trigger memdev attach */
885 cxl_bus_rescan();
886 return 0;
887}
888
889static const struct acpi_device_id cxl_acpi_ids[] = {
890 { "ACPI0017" },
891 { },
892};
893MODULE_DEVICE_TABLE(acpi, cxl_acpi_ids);
894
895static const struct platform_device_id cxl_test_ids[] = {
896 { "cxl_acpi" },
897 { },
898};
899MODULE_DEVICE_TABLE(platform, cxl_test_ids);
900
901static struct platform_driver cxl_acpi_driver = {
902 .probe = cxl_acpi_probe,
903 .driver = {
904 .name = KBUILD_MODNAME,
905 .acpi_match_table = cxl_acpi_ids,
906 },
907 .id_table = cxl_test_ids,
908};
909
910static int __init cxl_acpi_init(void)
911{
912 return platform_driver_register(&cxl_acpi_driver);
913}
914
915static void __exit cxl_acpi_exit(void)
916{
917 platform_driver_unregister(&cxl_acpi_driver);
918 cxl_bus_drain();
919}
920
921/* load before dax_hmem sees 'Soft Reserved' CXL ranges */
922subsys_initcall(cxl_acpi_init);
923module_exit(cxl_acpi_exit);
924MODULE_LICENSE("GPL v2");
925MODULE_IMPORT_NS(CXL);
926MODULE_IMPORT_NS(ACPI);