1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 2016, Semihalf 4 * Author: Tomasz Nowicki <tn@semihalf.com> 5 * 6 * This file implements early detection/parsing of I/O mapping 7 * reported to OS through firmware via I/O Remapping Table (IORT) 8 * IORT document number: ARM DEN 0049A 9 */ 10 11 #define pr_fmt(fmt) "ACPI: IORT: " fmt 12 13 #include <linux/acpi_iort.h> 14 #include <linux/bitfield.h> 15 #include <linux/iommu.h> 16 #include <linux/kernel.h> 17 #include <linux/list.h> 18 #include <linux/pci.h> 19 #include <linux/platform_device.h> 20 #include <linux/slab.h> 21 22 #define IORT_TYPE_MASK(type) (1 << (type)) 23 #define IORT_MSI_TYPE (1 << ACPI_IORT_NODE_ITS_GROUP) 24 #define IORT_IOMMU_TYPE ((1 << ACPI_IORT_NODE_SMMU) | \ 25 (1 << ACPI_IORT_NODE_SMMU_V3)) 26 27 struct iort_its_msi_chip { 28 struct list_head list; 29 struct fwnode_handle *fw_node; 30 phys_addr_t base_addr; 31 u32 translation_id; 32 }; 33 34 struct iort_fwnode { 35 struct list_head list; 36 struct acpi_iort_node *iort_node; 37 struct fwnode_handle *fwnode; 38 }; 39 static LIST_HEAD(iort_fwnode_list); 40 static DEFINE_SPINLOCK(iort_fwnode_lock); 41 42 /** 43 * iort_set_fwnode() - Create iort_fwnode and use it to register 44 * iommu data in the iort_fwnode_list 45 * 46 * @node: IORT table node associated with the IOMMU 47 * @fwnode: fwnode associated with the IORT node 48 * 49 * Returns: 0 on success 50 * <0 on failure 51 */ 52 static inline int iort_set_fwnode(struct acpi_iort_node *iort_node, 53 struct fwnode_handle *fwnode) 54 { 55 struct iort_fwnode *np; 56 57 np = kzalloc(sizeof(struct iort_fwnode), GFP_ATOMIC); 58 59 if (WARN_ON(!np)) 60 return -ENOMEM; 61 62 INIT_LIST_HEAD(&np->list); 63 np->iort_node = iort_node; 64 np->fwnode = fwnode; 65 66 spin_lock(&iort_fwnode_lock); 67 list_add_tail(&np->list, &iort_fwnode_list); 68 spin_unlock(&iort_fwnode_lock); 69 70 return 0; 71 } 72 73 /** 74 * iort_get_fwnode() - Retrieve fwnode associated with an IORT node 75 * 76 * @node: IORT table node to be looked-up 77 * 78 * Returns: fwnode_handle pointer on success, NULL on failure 79 */ 80 static inline struct fwnode_handle *iort_get_fwnode( 81 struct acpi_iort_node *node) 82 { 83 struct iort_fwnode *curr; 84 struct fwnode_handle *fwnode = NULL; 85 86 spin_lock(&iort_fwnode_lock); 87 list_for_each_entry(curr, &iort_fwnode_list, list) { 88 if (curr->iort_node == node) { 89 fwnode = curr->fwnode; 90 break; 91 } 92 } 93 spin_unlock(&iort_fwnode_lock); 94 95 return fwnode; 96 } 97 98 /** 99 * iort_delete_fwnode() - Delete fwnode associated with an IORT node 100 * 101 * @node: IORT table node associated with fwnode to delete 102 */ 103 static inline void iort_delete_fwnode(struct acpi_iort_node *node) 104 { 105 struct iort_fwnode *curr, *tmp; 106 107 spin_lock(&iort_fwnode_lock); 108 list_for_each_entry_safe(curr, tmp, &iort_fwnode_list, list) { 109 if (curr->iort_node == node) { 110 list_del(&curr->list); 111 kfree(curr); 112 break; 113 } 114 } 115 spin_unlock(&iort_fwnode_lock); 116 } 117 118 /** 119 * iort_get_iort_node() - Retrieve iort_node associated with an fwnode 120 * 121 * @fwnode: fwnode associated with device to be looked-up 122 * 123 * Returns: iort_node pointer on success, NULL on failure 124 */ 125 static inline struct acpi_iort_node *iort_get_iort_node( 126 struct fwnode_handle *fwnode) 127 { 128 struct iort_fwnode *curr; 129 struct acpi_iort_node *iort_node = NULL; 130 131 spin_lock(&iort_fwnode_lock); 132 list_for_each_entry(curr, &iort_fwnode_list, list) { 133 if (curr->fwnode == fwnode) { 134 iort_node = curr->iort_node; 135 break; 136 } 137 } 138 spin_unlock(&iort_fwnode_lock); 139 140 return iort_node; 141 } 142 143 typedef acpi_status (*iort_find_node_callback) 144 (struct acpi_iort_node *node, void *context); 145 146 /* Root pointer to the mapped IORT table */ 147 static struct acpi_table_header *iort_table; 148 149 static LIST_HEAD(iort_msi_chip_list); 150 static DEFINE_SPINLOCK(iort_msi_chip_lock); 151 152 /** 153 * iort_register_domain_token() - register domain token along with related 154 * ITS ID and base address to the list from where we can get it back later on. 155 * @trans_id: ITS ID. 156 * @base: ITS base address. 157 * @fw_node: Domain token. 158 * 159 * Returns: 0 on success, -ENOMEM if no memory when allocating list element 160 */ 161 int iort_register_domain_token(int trans_id, phys_addr_t base, 162 struct fwnode_handle *fw_node) 163 { 164 struct iort_its_msi_chip *its_msi_chip; 165 166 its_msi_chip = kzalloc(sizeof(*its_msi_chip), GFP_KERNEL); 167 if (!its_msi_chip) 168 return -ENOMEM; 169 170 its_msi_chip->fw_node = fw_node; 171 its_msi_chip->translation_id = trans_id; 172 its_msi_chip->base_addr = base; 173 174 spin_lock(&iort_msi_chip_lock); 175 list_add(&its_msi_chip->list, &iort_msi_chip_list); 176 spin_unlock(&iort_msi_chip_lock); 177 178 return 0; 179 } 180 181 /** 182 * iort_deregister_domain_token() - Deregister domain token based on ITS ID 183 * @trans_id: ITS ID. 184 * 185 * Returns: none. 186 */ 187 void iort_deregister_domain_token(int trans_id) 188 { 189 struct iort_its_msi_chip *its_msi_chip, *t; 190 191 spin_lock(&iort_msi_chip_lock); 192 list_for_each_entry_safe(its_msi_chip, t, &iort_msi_chip_list, list) { 193 if (its_msi_chip->translation_id == trans_id) { 194 list_del(&its_msi_chip->list); 195 kfree(its_msi_chip); 196 break; 197 } 198 } 199 spin_unlock(&iort_msi_chip_lock); 200 } 201 202 /** 203 * iort_find_domain_token() - Find domain token based on given ITS ID 204 * @trans_id: ITS ID. 205 * 206 * Returns: domain token when find on the list, NULL otherwise 207 */ 208 struct fwnode_handle *iort_find_domain_token(int trans_id) 209 { 210 struct fwnode_handle *fw_node = NULL; 211 struct iort_its_msi_chip *its_msi_chip; 212 213 spin_lock(&iort_msi_chip_lock); 214 list_for_each_entry(its_msi_chip, &iort_msi_chip_list, list) { 215 if (its_msi_chip->translation_id == trans_id) { 216 fw_node = its_msi_chip->fw_node; 217 break; 218 } 219 } 220 spin_unlock(&iort_msi_chip_lock); 221 222 return fw_node; 223 } 224 225 static struct acpi_iort_node *iort_scan_node(enum acpi_iort_node_type type, 226 iort_find_node_callback callback, 227 void *context) 228 { 229 struct acpi_iort_node *iort_node, *iort_end; 230 struct acpi_table_iort *iort; 231 int i; 232 233 if (!iort_table) 234 return NULL; 235 236 /* Get the first IORT node */ 237 iort = (struct acpi_table_iort *)iort_table; 238 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort, 239 iort->node_offset); 240 iort_end = ACPI_ADD_PTR(struct acpi_iort_node, iort_table, 241 iort_table->length); 242 243 for (i = 0; i < iort->node_count; i++) { 244 if (WARN_TAINT(iort_node >= iort_end, TAINT_FIRMWARE_WORKAROUND, 245 "IORT node pointer overflows, bad table!\n")) 246 return NULL; 247 248 if (iort_node->type == type && 249 ACPI_SUCCESS(callback(iort_node, context))) 250 return iort_node; 251 252 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort_node, 253 iort_node->length); 254 } 255 256 return NULL; 257 } 258 259 static acpi_status iort_match_node_callback(struct acpi_iort_node *node, 260 void *context) 261 { 262 struct device *dev = context; 263 acpi_status status = AE_NOT_FOUND; 264 265 if (node->type == ACPI_IORT_NODE_NAMED_COMPONENT) { 266 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL }; 267 struct acpi_device *adev; 268 struct acpi_iort_named_component *ncomp; 269 struct device *nc_dev = dev; 270 271 /* 272 * Walk the device tree to find a device with an 273 * ACPI companion; there is no point in scanning 274 * IORT for a device matching a named component if 275 * the device does not have an ACPI companion to 276 * start with. 277 */ 278 do { 279 adev = ACPI_COMPANION(nc_dev); 280 if (adev) 281 break; 282 283 nc_dev = nc_dev->parent; 284 } while (nc_dev); 285 286 if (!adev) 287 goto out; 288 289 status = acpi_get_name(adev->handle, ACPI_FULL_PATHNAME, &buf); 290 if (ACPI_FAILURE(status)) { 291 dev_warn(nc_dev, "Can't get device full path name\n"); 292 goto out; 293 } 294 295 ncomp = (struct acpi_iort_named_component *)node->node_data; 296 status = !strcmp(ncomp->device_name, buf.pointer) ? 297 AE_OK : AE_NOT_FOUND; 298 acpi_os_free(buf.pointer); 299 } else if (node->type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) { 300 struct acpi_iort_root_complex *pci_rc; 301 struct pci_bus *bus; 302 303 bus = to_pci_bus(dev); 304 pci_rc = (struct acpi_iort_root_complex *)node->node_data; 305 306 /* 307 * It is assumed that PCI segment numbers maps one-to-one 308 * with root complexes. Each segment number can represent only 309 * one root complex. 310 */ 311 status = pci_rc->pci_segment_number == pci_domain_nr(bus) ? 312 AE_OK : AE_NOT_FOUND; 313 } 314 out: 315 return status; 316 } 317 318 static int iort_id_map(struct acpi_iort_id_mapping *map, u8 type, u32 rid_in, 319 u32 *rid_out, bool check_overlap) 320 { 321 /* Single mapping does not care for input id */ 322 if (map->flags & ACPI_IORT_ID_SINGLE_MAPPING) { 323 if (type == ACPI_IORT_NODE_NAMED_COMPONENT || 324 type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) { 325 *rid_out = map->output_base; 326 return 0; 327 } 328 329 pr_warn(FW_BUG "[map %p] SINGLE MAPPING flag not allowed for node type %d, skipping ID map\n", 330 map, type); 331 return -ENXIO; 332 } 333 334 if (rid_in < map->input_base || 335 (rid_in > map->input_base + map->id_count)) 336 return -ENXIO; 337 338 if (check_overlap) { 339 /* 340 * We already found a mapping for this input ID at the end of 341 * another region. If it coincides with the start of this 342 * region, we assume the prior match was due to the off-by-1 343 * issue mentioned below, and allow it to be superseded. 344 * Otherwise, things are *really* broken, and we just disregard 345 * duplicate matches entirely to retain compatibility. 346 */ 347 pr_err(FW_BUG "[map %p] conflicting mapping for input ID 0x%x\n", 348 map, rid_in); 349 if (rid_in != map->input_base) 350 return -ENXIO; 351 352 pr_err(FW_BUG "applying workaround.\n"); 353 } 354 355 *rid_out = map->output_base + (rid_in - map->input_base); 356 357 /* 358 * Due to confusion regarding the meaning of the id_count field (which 359 * carries the number of IDs *minus 1*), we may have to disregard this 360 * match if it is at the end of the range, and overlaps with the start 361 * of another one. 362 */ 363 if (map->id_count > 0 && rid_in == map->input_base + map->id_count) 364 return -EAGAIN; 365 return 0; 366 } 367 368 static struct acpi_iort_node *iort_node_get_id(struct acpi_iort_node *node, 369 u32 *id_out, int index) 370 { 371 struct acpi_iort_node *parent; 372 struct acpi_iort_id_mapping *map; 373 374 if (!node->mapping_offset || !node->mapping_count || 375 index >= node->mapping_count) 376 return NULL; 377 378 map = ACPI_ADD_PTR(struct acpi_iort_id_mapping, node, 379 node->mapping_offset + index * sizeof(*map)); 380 381 /* Firmware bug! */ 382 if (!map->output_reference) { 383 pr_err(FW_BUG "[node %p type %d] ID map has NULL parent reference\n", 384 node, node->type); 385 return NULL; 386 } 387 388 parent = ACPI_ADD_PTR(struct acpi_iort_node, iort_table, 389 map->output_reference); 390 391 if (map->flags & ACPI_IORT_ID_SINGLE_MAPPING) { 392 if (node->type == ACPI_IORT_NODE_NAMED_COMPONENT || 393 node->type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX || 394 node->type == ACPI_IORT_NODE_SMMU_V3 || 395 node->type == ACPI_IORT_NODE_PMCG) { 396 *id_out = map->output_base; 397 return parent; 398 } 399 } 400 401 return NULL; 402 } 403 404 static int iort_get_id_mapping_index(struct acpi_iort_node *node) 405 { 406 struct acpi_iort_smmu_v3 *smmu; 407 struct acpi_iort_pmcg *pmcg; 408 409 switch (node->type) { 410 case ACPI_IORT_NODE_SMMU_V3: 411 /* 412 * SMMUv3 dev ID mapping index was introduced in revision 1 413 * table, not available in revision 0 414 */ 415 if (node->revision < 1) 416 return -EINVAL; 417 418 smmu = (struct acpi_iort_smmu_v3 *)node->node_data; 419 /* 420 * ID mapping index is only ignored if all interrupts are 421 * GSIV based 422 */ 423 if (smmu->event_gsiv && smmu->pri_gsiv && smmu->gerr_gsiv 424 && smmu->sync_gsiv) 425 return -EINVAL; 426 427 if (smmu->id_mapping_index >= node->mapping_count) { 428 pr_err(FW_BUG "[node %p type %d] ID mapping index overflows valid mappings\n", 429 node, node->type); 430 return -EINVAL; 431 } 432 433 return smmu->id_mapping_index; 434 case ACPI_IORT_NODE_PMCG: 435 pmcg = (struct acpi_iort_pmcg *)node->node_data; 436 if (pmcg->overflow_gsiv || node->mapping_count == 0) 437 return -EINVAL; 438 439 return 0; 440 default: 441 return -EINVAL; 442 } 443 } 444 445 static struct acpi_iort_node *iort_node_map_id(struct acpi_iort_node *node, 446 u32 id_in, u32 *id_out, 447 u8 type_mask) 448 { 449 u32 id = id_in; 450 451 /* Parse the ID mapping tree to find specified node type */ 452 while (node) { 453 struct acpi_iort_id_mapping *map; 454 int i, index, rc = 0; 455 u32 out_ref = 0, map_id = id; 456 457 if (IORT_TYPE_MASK(node->type) & type_mask) { 458 if (id_out) 459 *id_out = id; 460 return node; 461 } 462 463 if (!node->mapping_offset || !node->mapping_count) 464 goto fail_map; 465 466 map = ACPI_ADD_PTR(struct acpi_iort_id_mapping, node, 467 node->mapping_offset); 468 469 /* Firmware bug! */ 470 if (!map->output_reference) { 471 pr_err(FW_BUG "[node %p type %d] ID map has NULL parent reference\n", 472 node, node->type); 473 goto fail_map; 474 } 475 476 /* 477 * Get the special ID mapping index (if any) and skip its 478 * associated ID map to prevent erroneous multi-stage 479 * IORT ID translations. 480 */ 481 index = iort_get_id_mapping_index(node); 482 483 /* Do the ID translation */ 484 for (i = 0; i < node->mapping_count; i++, map++) { 485 /* if it is special mapping index, skip it */ 486 if (i == index) 487 continue; 488 489 rc = iort_id_map(map, node->type, map_id, &id, out_ref); 490 if (!rc) 491 break; 492 if (rc == -EAGAIN) 493 out_ref = map->output_reference; 494 } 495 496 if (i == node->mapping_count && !out_ref) 497 goto fail_map; 498 499 node = ACPI_ADD_PTR(struct acpi_iort_node, iort_table, 500 rc ? out_ref : map->output_reference); 501 } 502 503 fail_map: 504 /* Map input ID to output ID unchanged on mapping failure */ 505 if (id_out) 506 *id_out = id_in; 507 508 return NULL; 509 } 510 511 static struct acpi_iort_node *iort_node_map_platform_id( 512 struct acpi_iort_node *node, u32 *id_out, u8 type_mask, 513 int index) 514 { 515 struct acpi_iort_node *parent; 516 u32 id; 517 518 /* step 1: retrieve the initial dev id */ 519 parent = iort_node_get_id(node, &id, index); 520 if (!parent) 521 return NULL; 522 523 /* 524 * optional step 2: map the initial dev id if its parent is not 525 * the target type we want, map it again for the use cases such 526 * as NC (named component) -> SMMU -> ITS. If the type is matched, 527 * return the initial dev id and its parent pointer directly. 528 */ 529 if (!(IORT_TYPE_MASK(parent->type) & type_mask)) 530 parent = iort_node_map_id(parent, id, id_out, type_mask); 531 else 532 if (id_out) 533 *id_out = id; 534 535 return parent; 536 } 537 538 static struct acpi_iort_node *iort_find_dev_node(struct device *dev) 539 { 540 struct pci_bus *pbus; 541 542 if (!dev_is_pci(dev)) { 543 struct acpi_iort_node *node; 544 /* 545 * scan iort_fwnode_list to see if it's an iort platform 546 * device (such as SMMU, PMCG),its iort node already cached 547 * and associated with fwnode when iort platform devices 548 * were initialized. 549 */ 550 node = iort_get_iort_node(dev->fwnode); 551 if (node) 552 return node; 553 /* 554 * if not, then it should be a platform device defined in 555 * DSDT/SSDT (with Named Component node in IORT) 556 */ 557 return iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT, 558 iort_match_node_callback, dev); 559 } 560 561 pbus = to_pci_dev(dev)->bus; 562 563 return iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX, 564 iort_match_node_callback, &pbus->dev); 565 } 566 567 /** 568 * iort_msi_map_id() - Map a MSI input ID for a device 569 * @dev: The device for which the mapping is to be done. 570 * @input_id: The device input ID. 571 * 572 * Returns: mapped MSI ID on success, input ID otherwise 573 */ 574 u32 iort_msi_map_id(struct device *dev, u32 input_id) 575 { 576 struct acpi_iort_node *node; 577 u32 dev_id; 578 579 node = iort_find_dev_node(dev); 580 if (!node) 581 return input_id; 582 583 iort_node_map_id(node, input_id, &dev_id, IORT_MSI_TYPE); 584 return dev_id; 585 } 586 587 /** 588 * iort_pmsi_get_dev_id() - Get the device id for a device 589 * @dev: The device for which the mapping is to be done. 590 * @dev_id: The device ID found. 591 * 592 * Returns: 0 for successful find a dev id, -ENODEV on error 593 */ 594 int iort_pmsi_get_dev_id(struct device *dev, u32 *dev_id) 595 { 596 int i, index; 597 struct acpi_iort_node *node; 598 599 node = iort_find_dev_node(dev); 600 if (!node) 601 return -ENODEV; 602 603 index = iort_get_id_mapping_index(node); 604 /* if there is a valid index, go get the dev_id directly */ 605 if (index >= 0) { 606 if (iort_node_get_id(node, dev_id, index)) 607 return 0; 608 } else { 609 for (i = 0; i < node->mapping_count; i++) { 610 if (iort_node_map_platform_id(node, dev_id, 611 IORT_MSI_TYPE, i)) 612 return 0; 613 } 614 } 615 616 return -ENODEV; 617 } 618 619 static int __maybe_unused iort_find_its_base(u32 its_id, phys_addr_t *base) 620 { 621 struct iort_its_msi_chip *its_msi_chip; 622 int ret = -ENODEV; 623 624 spin_lock(&iort_msi_chip_lock); 625 list_for_each_entry(its_msi_chip, &iort_msi_chip_list, list) { 626 if (its_msi_chip->translation_id == its_id) { 627 *base = its_msi_chip->base_addr; 628 ret = 0; 629 break; 630 } 631 } 632 spin_unlock(&iort_msi_chip_lock); 633 634 return ret; 635 } 636 637 /** 638 * iort_dev_find_its_id() - Find the ITS identifier for a device 639 * @dev: The device. 640 * @id: Device's ID 641 * @idx: Index of the ITS identifier list. 642 * @its_id: ITS identifier. 643 * 644 * Returns: 0 on success, appropriate error value otherwise 645 */ 646 static int iort_dev_find_its_id(struct device *dev, u32 id, 647 unsigned int idx, int *its_id) 648 { 649 struct acpi_iort_its_group *its; 650 struct acpi_iort_node *node; 651 652 node = iort_find_dev_node(dev); 653 if (!node) 654 return -ENXIO; 655 656 node = iort_node_map_id(node, id, NULL, IORT_MSI_TYPE); 657 if (!node) 658 return -ENXIO; 659 660 /* Move to ITS specific data */ 661 its = (struct acpi_iort_its_group *)node->node_data; 662 if (idx >= its->its_count) { 663 dev_err(dev, "requested ITS ID index [%d] overruns ITS entries [%d]\n", 664 idx, its->its_count); 665 return -ENXIO; 666 } 667 668 *its_id = its->identifiers[idx]; 669 return 0; 670 } 671 672 /** 673 * iort_get_device_domain() - Find MSI domain related to a device 674 * @dev: The device. 675 * @req_id: Requester ID for the device. 676 * 677 * Returns: the MSI domain for this device, NULL otherwise 678 */ 679 struct irq_domain *iort_get_device_domain(struct device *dev, u32 id, 680 enum irq_domain_bus_token bus_token) 681 { 682 struct fwnode_handle *handle; 683 int its_id; 684 685 if (iort_dev_find_its_id(dev, id, 0, &its_id)) 686 return NULL; 687 688 handle = iort_find_domain_token(its_id); 689 if (!handle) 690 return NULL; 691 692 return irq_find_matching_fwnode(handle, bus_token); 693 } 694 695 static void iort_set_device_domain(struct device *dev, 696 struct acpi_iort_node *node) 697 { 698 struct acpi_iort_its_group *its; 699 struct acpi_iort_node *msi_parent; 700 struct acpi_iort_id_mapping *map; 701 struct fwnode_handle *iort_fwnode; 702 struct irq_domain *domain; 703 int index; 704 705 index = iort_get_id_mapping_index(node); 706 if (index < 0) 707 return; 708 709 map = ACPI_ADD_PTR(struct acpi_iort_id_mapping, node, 710 node->mapping_offset + index * sizeof(*map)); 711 712 /* Firmware bug! */ 713 if (!map->output_reference || 714 !(map->flags & ACPI_IORT_ID_SINGLE_MAPPING)) { 715 pr_err(FW_BUG "[node %p type %d] Invalid MSI mapping\n", 716 node, node->type); 717 return; 718 } 719 720 msi_parent = ACPI_ADD_PTR(struct acpi_iort_node, iort_table, 721 map->output_reference); 722 723 if (!msi_parent || msi_parent->type != ACPI_IORT_NODE_ITS_GROUP) 724 return; 725 726 /* Move to ITS specific data */ 727 its = (struct acpi_iort_its_group *)msi_parent->node_data; 728 729 iort_fwnode = iort_find_domain_token(its->identifiers[0]); 730 if (!iort_fwnode) 731 return; 732 733 domain = irq_find_matching_fwnode(iort_fwnode, DOMAIN_BUS_PLATFORM_MSI); 734 if (domain) 735 dev_set_msi_domain(dev, domain); 736 } 737 738 /** 739 * iort_get_platform_device_domain() - Find MSI domain related to a 740 * platform device 741 * @dev: the dev pointer associated with the platform device 742 * 743 * Returns: the MSI domain for this device, NULL otherwise 744 */ 745 static struct irq_domain *iort_get_platform_device_domain(struct device *dev) 746 { 747 struct acpi_iort_node *node, *msi_parent = NULL; 748 struct fwnode_handle *iort_fwnode; 749 struct acpi_iort_its_group *its; 750 int i; 751 752 /* find its associated iort node */ 753 node = iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT, 754 iort_match_node_callback, dev); 755 if (!node) 756 return NULL; 757 758 /* then find its msi parent node */ 759 for (i = 0; i < node->mapping_count; i++) { 760 msi_parent = iort_node_map_platform_id(node, NULL, 761 IORT_MSI_TYPE, i); 762 if (msi_parent) 763 break; 764 } 765 766 if (!msi_parent) 767 return NULL; 768 769 /* Move to ITS specific data */ 770 its = (struct acpi_iort_its_group *)msi_parent->node_data; 771 772 iort_fwnode = iort_find_domain_token(its->identifiers[0]); 773 if (!iort_fwnode) 774 return NULL; 775 776 return irq_find_matching_fwnode(iort_fwnode, DOMAIN_BUS_PLATFORM_MSI); 777 } 778 779 void acpi_configure_pmsi_domain(struct device *dev) 780 { 781 struct irq_domain *msi_domain; 782 783 msi_domain = iort_get_platform_device_domain(dev); 784 if (msi_domain) 785 dev_set_msi_domain(dev, msi_domain); 786 } 787 788 #ifdef CONFIG_IOMMU_API 789 static struct acpi_iort_node *iort_get_msi_resv_iommu(struct device *dev) 790 { 791 struct acpi_iort_node *iommu; 792 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev); 793 794 iommu = iort_get_iort_node(fwspec->iommu_fwnode); 795 796 if (iommu && (iommu->type == ACPI_IORT_NODE_SMMU_V3)) { 797 struct acpi_iort_smmu_v3 *smmu; 798 799 smmu = (struct acpi_iort_smmu_v3 *)iommu->node_data; 800 if (smmu->model == ACPI_IORT_SMMU_V3_HISILICON_HI161X) 801 return iommu; 802 } 803 804 return NULL; 805 } 806 807 static inline const struct iommu_ops *iort_fwspec_iommu_ops(struct device *dev) 808 { 809 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev); 810 811 return (fwspec && fwspec->ops) ? fwspec->ops : NULL; 812 } 813 814 static inline int iort_add_device_replay(struct device *dev) 815 { 816 int err = 0; 817 818 if (dev->bus && !device_iommu_mapped(dev)) 819 err = iommu_probe_device(dev); 820 821 return err; 822 } 823 824 /** 825 * iort_iommu_msi_get_resv_regions - Reserved region driver helper 826 * @dev: Device from iommu_get_resv_regions() 827 * @head: Reserved region list from iommu_get_resv_regions() 828 * 829 * Returns: Number of msi reserved regions on success (0 if platform 830 * doesn't require the reservation or no associated msi regions), 831 * appropriate error value otherwise. The ITS interrupt translation 832 * spaces (ITS_base + SZ_64K, SZ_64K) associated with the device 833 * are the msi reserved regions. 834 */ 835 int iort_iommu_msi_get_resv_regions(struct device *dev, struct list_head *head) 836 { 837 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev); 838 struct acpi_iort_its_group *its; 839 struct acpi_iort_node *iommu_node, *its_node = NULL; 840 int i, resv = 0; 841 842 iommu_node = iort_get_msi_resv_iommu(dev); 843 if (!iommu_node) 844 return 0; 845 846 /* 847 * Current logic to reserve ITS regions relies on HW topologies 848 * where a given PCI or named component maps its IDs to only one 849 * ITS group; if a PCI or named component can map its IDs to 850 * different ITS groups through IORT mappings this function has 851 * to be reworked to ensure we reserve regions for all ITS groups 852 * a given PCI or named component may map IDs to. 853 */ 854 855 for (i = 0; i < fwspec->num_ids; i++) { 856 its_node = iort_node_map_id(iommu_node, 857 fwspec->ids[i], 858 NULL, IORT_MSI_TYPE); 859 if (its_node) 860 break; 861 } 862 863 if (!its_node) 864 return 0; 865 866 /* Move to ITS specific data */ 867 its = (struct acpi_iort_its_group *)its_node->node_data; 868 869 for (i = 0; i < its->its_count; i++) { 870 phys_addr_t base; 871 872 if (!iort_find_its_base(its->identifiers[i], &base)) { 873 int prot = IOMMU_WRITE | IOMMU_NOEXEC | IOMMU_MMIO; 874 struct iommu_resv_region *region; 875 876 region = iommu_alloc_resv_region(base + SZ_64K, SZ_64K, 877 prot, IOMMU_RESV_MSI); 878 if (region) { 879 list_add_tail(®ion->list, head); 880 resv++; 881 } 882 } 883 } 884 885 return (resv == its->its_count) ? resv : -ENODEV; 886 } 887 888 static inline bool iort_iommu_driver_enabled(u8 type) 889 { 890 switch (type) { 891 case ACPI_IORT_NODE_SMMU_V3: 892 return IS_ENABLED(CONFIG_ARM_SMMU_V3); 893 case ACPI_IORT_NODE_SMMU: 894 return IS_ENABLED(CONFIG_ARM_SMMU); 895 default: 896 pr_warn("IORT node type %u does not describe an SMMU\n", type); 897 return false; 898 } 899 } 900 901 static int arm_smmu_iort_xlate(struct device *dev, u32 streamid, 902 struct fwnode_handle *fwnode, 903 const struct iommu_ops *ops) 904 { 905 int ret = iommu_fwspec_init(dev, fwnode, ops); 906 907 if (!ret) 908 ret = iommu_fwspec_add_ids(dev, &streamid, 1); 909 910 return ret; 911 } 912 913 static bool iort_pci_rc_supports_ats(struct acpi_iort_node *node) 914 { 915 struct acpi_iort_root_complex *pci_rc; 916 917 pci_rc = (struct acpi_iort_root_complex *)node->node_data; 918 return pci_rc->ats_attribute & ACPI_IORT_ATS_SUPPORTED; 919 } 920 921 static int iort_iommu_xlate(struct device *dev, struct acpi_iort_node *node, 922 u32 streamid) 923 { 924 const struct iommu_ops *ops; 925 struct fwnode_handle *iort_fwnode; 926 927 if (!node) 928 return -ENODEV; 929 930 iort_fwnode = iort_get_fwnode(node); 931 if (!iort_fwnode) 932 return -ENODEV; 933 934 /* 935 * If the ops look-up fails, this means that either 936 * the SMMU drivers have not been probed yet or that 937 * the SMMU drivers are not built in the kernel; 938 * Depending on whether the SMMU drivers are built-in 939 * in the kernel or not, defer the IOMMU configuration 940 * or just abort it. 941 */ 942 ops = iommu_ops_from_fwnode(iort_fwnode); 943 if (!ops) 944 return iort_iommu_driver_enabled(node->type) ? 945 -EPROBE_DEFER : -ENODEV; 946 947 return arm_smmu_iort_xlate(dev, streamid, iort_fwnode, ops); 948 } 949 950 struct iort_pci_alias_info { 951 struct device *dev; 952 struct acpi_iort_node *node; 953 }; 954 955 static int iort_pci_iommu_init(struct pci_dev *pdev, u16 alias, void *data) 956 { 957 struct iort_pci_alias_info *info = data; 958 struct acpi_iort_node *parent; 959 u32 streamid; 960 961 parent = iort_node_map_id(info->node, alias, &streamid, 962 IORT_IOMMU_TYPE); 963 return iort_iommu_xlate(info->dev, parent, streamid); 964 } 965 966 static void iort_named_component_init(struct device *dev, 967 struct acpi_iort_node *node) 968 { 969 struct acpi_iort_named_component *nc; 970 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev); 971 972 if (!fwspec) 973 return; 974 975 nc = (struct acpi_iort_named_component *)node->node_data; 976 fwspec->num_pasid_bits = FIELD_GET(ACPI_IORT_NC_PASID_BITS, 977 nc->node_flags); 978 } 979 980 static int iort_nc_iommu_map(struct device *dev, struct acpi_iort_node *node) 981 { 982 struct acpi_iort_node *parent; 983 int err = -ENODEV, i = 0; 984 u32 streamid = 0; 985 986 do { 987 988 parent = iort_node_map_platform_id(node, &streamid, 989 IORT_IOMMU_TYPE, 990 i++); 991 992 if (parent) 993 err = iort_iommu_xlate(dev, parent, streamid); 994 } while (parent && !err); 995 996 return err; 997 } 998 999 static int iort_nc_iommu_map_id(struct device *dev, 1000 struct acpi_iort_node *node, 1001 const u32 *in_id) 1002 { 1003 struct acpi_iort_node *parent; 1004 u32 streamid; 1005 1006 parent = iort_node_map_id(node, *in_id, &streamid, IORT_IOMMU_TYPE); 1007 if (parent) 1008 return iort_iommu_xlate(dev, parent, streamid); 1009 1010 return -ENODEV; 1011 } 1012 1013 1014 /** 1015 * iort_iommu_configure_id - Set-up IOMMU configuration for a device. 1016 * 1017 * @dev: device to configure 1018 * @id_in: optional input id const value pointer 1019 * 1020 * Returns: iommu_ops pointer on configuration success 1021 * NULL on configuration failure 1022 */ 1023 const struct iommu_ops *iort_iommu_configure_id(struct device *dev, 1024 const u32 *id_in) 1025 { 1026 struct acpi_iort_node *node; 1027 const struct iommu_ops *ops; 1028 int err = -ENODEV; 1029 1030 /* 1031 * If we already translated the fwspec there 1032 * is nothing left to do, return the iommu_ops. 1033 */ 1034 ops = iort_fwspec_iommu_ops(dev); 1035 if (ops) 1036 return ops; 1037 1038 if (dev_is_pci(dev)) { 1039 struct iommu_fwspec *fwspec; 1040 struct pci_bus *bus = to_pci_dev(dev)->bus; 1041 struct iort_pci_alias_info info = { .dev = dev }; 1042 1043 node = iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX, 1044 iort_match_node_callback, &bus->dev); 1045 if (!node) 1046 return NULL; 1047 1048 info.node = node; 1049 err = pci_for_each_dma_alias(to_pci_dev(dev), 1050 iort_pci_iommu_init, &info); 1051 1052 fwspec = dev_iommu_fwspec_get(dev); 1053 if (fwspec && iort_pci_rc_supports_ats(node)) 1054 fwspec->flags |= IOMMU_FWSPEC_PCI_RC_ATS; 1055 } else { 1056 node = iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT, 1057 iort_match_node_callback, dev); 1058 if (!node) 1059 return NULL; 1060 1061 err = id_in ? iort_nc_iommu_map_id(dev, node, id_in) : 1062 iort_nc_iommu_map(dev, node); 1063 1064 if (!err) 1065 iort_named_component_init(dev, node); 1066 } 1067 1068 /* 1069 * If we have reason to believe the IOMMU driver missed the initial 1070 * add_device callback for dev, replay it to get things in order. 1071 */ 1072 if (!err) { 1073 ops = iort_fwspec_iommu_ops(dev); 1074 err = iort_add_device_replay(dev); 1075 } 1076 1077 /* Ignore all other errors apart from EPROBE_DEFER */ 1078 if (err == -EPROBE_DEFER) { 1079 ops = ERR_PTR(err); 1080 } else if (err) { 1081 dev_dbg(dev, "Adding to IOMMU failed: %d\n", err); 1082 ops = NULL; 1083 } 1084 1085 return ops; 1086 } 1087 1088 #else 1089 int iort_iommu_msi_get_resv_regions(struct device *dev, struct list_head *head) 1090 { return 0; } 1091 const struct iommu_ops *iort_iommu_configure_id(struct device *dev, 1092 const u32 *input_id) 1093 { return NULL; } 1094 #endif 1095 1096 static int nc_dma_get_range(struct device *dev, u64 *size) 1097 { 1098 struct acpi_iort_node *node; 1099 struct acpi_iort_named_component *ncomp; 1100 1101 node = iort_scan_node(ACPI_IORT_NODE_NAMED_COMPONENT, 1102 iort_match_node_callback, dev); 1103 if (!node) 1104 return -ENODEV; 1105 1106 ncomp = (struct acpi_iort_named_component *)node->node_data; 1107 1108 *size = ncomp->memory_address_limit >= 64 ? U64_MAX : 1109 1ULL<<ncomp->memory_address_limit; 1110 1111 return 0; 1112 } 1113 1114 static int rc_dma_get_range(struct device *dev, u64 *size) 1115 { 1116 struct acpi_iort_node *node; 1117 struct acpi_iort_root_complex *rc; 1118 struct pci_bus *pbus = to_pci_dev(dev)->bus; 1119 1120 node = iort_scan_node(ACPI_IORT_NODE_PCI_ROOT_COMPLEX, 1121 iort_match_node_callback, &pbus->dev); 1122 if (!node || node->revision < 1) 1123 return -ENODEV; 1124 1125 rc = (struct acpi_iort_root_complex *)node->node_data; 1126 1127 *size = rc->memory_address_limit >= 64 ? U64_MAX : 1128 1ULL<<rc->memory_address_limit; 1129 1130 return 0; 1131 } 1132 1133 /** 1134 * iort_dma_setup() - Set-up device DMA parameters. 1135 * 1136 * @dev: device to configure 1137 * @dma_addr: device DMA address result pointer 1138 * @size: DMA range size result pointer 1139 */ 1140 void iort_dma_setup(struct device *dev, u64 *dma_addr, u64 *dma_size) 1141 { 1142 u64 end, mask, dmaaddr = 0, size = 0, offset = 0; 1143 int ret; 1144 1145 /* 1146 * If @dev is expected to be DMA-capable then the bus code that created 1147 * it should have initialised its dma_mask pointer by this point. For 1148 * now, we'll continue the legacy behaviour of coercing it to the 1149 * coherent mask if not, but we'll no longer do so quietly. 1150 */ 1151 if (!dev->dma_mask) { 1152 dev_warn(dev, "DMA mask not set\n"); 1153 dev->dma_mask = &dev->coherent_dma_mask; 1154 } 1155 1156 if (dev->coherent_dma_mask) 1157 size = max(dev->coherent_dma_mask, dev->coherent_dma_mask + 1); 1158 else 1159 size = 1ULL << 32; 1160 1161 ret = acpi_dma_get_range(dev, &dmaaddr, &offset, &size); 1162 if (ret == -ENODEV) 1163 ret = dev_is_pci(dev) ? rc_dma_get_range(dev, &size) 1164 : nc_dma_get_range(dev, &size); 1165 1166 if (!ret) { 1167 /* 1168 * Limit coherent and dma mask based on size retrieved from 1169 * firmware. 1170 */ 1171 end = dmaaddr + size - 1; 1172 mask = DMA_BIT_MASK(ilog2(end) + 1); 1173 dev->bus_dma_limit = end; 1174 dev->coherent_dma_mask = mask; 1175 *dev->dma_mask = mask; 1176 } 1177 1178 *dma_addr = dmaaddr; 1179 *dma_size = size; 1180 1181 dev->dma_pfn_offset = PFN_DOWN(offset); 1182 dev_dbg(dev, "dma_pfn_offset(%#08llx)\n", offset); 1183 } 1184 1185 static void __init acpi_iort_register_irq(int hwirq, const char *name, 1186 int trigger, 1187 struct resource *res) 1188 { 1189 int irq = acpi_register_gsi(NULL, hwirq, trigger, 1190 ACPI_ACTIVE_HIGH); 1191 1192 if (irq <= 0) { 1193 pr_err("could not register gsi hwirq %d name [%s]\n", hwirq, 1194 name); 1195 return; 1196 } 1197 1198 res->start = irq; 1199 res->end = irq; 1200 res->flags = IORESOURCE_IRQ; 1201 res->name = name; 1202 } 1203 1204 static int __init arm_smmu_v3_count_resources(struct acpi_iort_node *node) 1205 { 1206 struct acpi_iort_smmu_v3 *smmu; 1207 /* Always present mem resource */ 1208 int num_res = 1; 1209 1210 /* Retrieve SMMUv3 specific data */ 1211 smmu = (struct acpi_iort_smmu_v3 *)node->node_data; 1212 1213 if (smmu->event_gsiv) 1214 num_res++; 1215 1216 if (smmu->pri_gsiv) 1217 num_res++; 1218 1219 if (smmu->gerr_gsiv) 1220 num_res++; 1221 1222 if (smmu->sync_gsiv) 1223 num_res++; 1224 1225 return num_res; 1226 } 1227 1228 static bool arm_smmu_v3_is_combined_irq(struct acpi_iort_smmu_v3 *smmu) 1229 { 1230 /* 1231 * Cavium ThunderX2 implementation doesn't not support unique 1232 * irq line. Use single irq line for all the SMMUv3 interrupts. 1233 */ 1234 if (smmu->model != ACPI_IORT_SMMU_V3_CAVIUM_CN99XX) 1235 return false; 1236 1237 /* 1238 * ThunderX2 doesn't support MSIs from the SMMU, so we're checking 1239 * SPI numbers here. 1240 */ 1241 return smmu->event_gsiv == smmu->pri_gsiv && 1242 smmu->event_gsiv == smmu->gerr_gsiv && 1243 smmu->event_gsiv == smmu->sync_gsiv; 1244 } 1245 1246 static unsigned long arm_smmu_v3_resource_size(struct acpi_iort_smmu_v3 *smmu) 1247 { 1248 /* 1249 * Override the size, for Cavium ThunderX2 implementation 1250 * which doesn't support the page 1 SMMU register space. 1251 */ 1252 if (smmu->model == ACPI_IORT_SMMU_V3_CAVIUM_CN99XX) 1253 return SZ_64K; 1254 1255 return SZ_128K; 1256 } 1257 1258 static void __init arm_smmu_v3_init_resources(struct resource *res, 1259 struct acpi_iort_node *node) 1260 { 1261 struct acpi_iort_smmu_v3 *smmu; 1262 int num_res = 0; 1263 1264 /* Retrieve SMMUv3 specific data */ 1265 smmu = (struct acpi_iort_smmu_v3 *)node->node_data; 1266 1267 res[num_res].start = smmu->base_address; 1268 res[num_res].end = smmu->base_address + 1269 arm_smmu_v3_resource_size(smmu) - 1; 1270 res[num_res].flags = IORESOURCE_MEM; 1271 1272 num_res++; 1273 if (arm_smmu_v3_is_combined_irq(smmu)) { 1274 if (smmu->event_gsiv) 1275 acpi_iort_register_irq(smmu->event_gsiv, "combined", 1276 ACPI_EDGE_SENSITIVE, 1277 &res[num_res++]); 1278 } else { 1279 1280 if (smmu->event_gsiv) 1281 acpi_iort_register_irq(smmu->event_gsiv, "eventq", 1282 ACPI_EDGE_SENSITIVE, 1283 &res[num_res++]); 1284 1285 if (smmu->pri_gsiv) 1286 acpi_iort_register_irq(smmu->pri_gsiv, "priq", 1287 ACPI_EDGE_SENSITIVE, 1288 &res[num_res++]); 1289 1290 if (smmu->gerr_gsiv) 1291 acpi_iort_register_irq(smmu->gerr_gsiv, "gerror", 1292 ACPI_EDGE_SENSITIVE, 1293 &res[num_res++]); 1294 1295 if (smmu->sync_gsiv) 1296 acpi_iort_register_irq(smmu->sync_gsiv, "cmdq-sync", 1297 ACPI_EDGE_SENSITIVE, 1298 &res[num_res++]); 1299 } 1300 } 1301 1302 static void __init arm_smmu_v3_dma_configure(struct device *dev, 1303 struct acpi_iort_node *node) 1304 { 1305 struct acpi_iort_smmu_v3 *smmu; 1306 enum dev_dma_attr attr; 1307 1308 /* Retrieve SMMUv3 specific data */ 1309 smmu = (struct acpi_iort_smmu_v3 *)node->node_data; 1310 1311 attr = (smmu->flags & ACPI_IORT_SMMU_V3_COHACC_OVERRIDE) ? 1312 DEV_DMA_COHERENT : DEV_DMA_NON_COHERENT; 1313 1314 /* We expect the dma masks to be equivalent for all SMMUv3 set-ups */ 1315 dev->dma_mask = &dev->coherent_dma_mask; 1316 1317 /* Configure DMA for the page table walker */ 1318 acpi_dma_configure(dev, attr); 1319 } 1320 1321 #if defined(CONFIG_ACPI_NUMA) 1322 /* 1323 * set numa proximity domain for smmuv3 device 1324 */ 1325 static int __init arm_smmu_v3_set_proximity(struct device *dev, 1326 struct acpi_iort_node *node) 1327 { 1328 struct acpi_iort_smmu_v3 *smmu; 1329 1330 smmu = (struct acpi_iort_smmu_v3 *)node->node_data; 1331 if (smmu->flags & ACPI_IORT_SMMU_V3_PXM_VALID) { 1332 int dev_node = acpi_map_pxm_to_node(smmu->pxm); 1333 1334 if (dev_node != NUMA_NO_NODE && !node_online(dev_node)) 1335 return -EINVAL; 1336 1337 set_dev_node(dev, dev_node); 1338 pr_info("SMMU-v3[%llx] Mapped to Proximity domain %d\n", 1339 smmu->base_address, 1340 smmu->pxm); 1341 } 1342 return 0; 1343 } 1344 #else 1345 #define arm_smmu_v3_set_proximity NULL 1346 #endif 1347 1348 static int __init arm_smmu_count_resources(struct acpi_iort_node *node) 1349 { 1350 struct acpi_iort_smmu *smmu; 1351 1352 /* Retrieve SMMU specific data */ 1353 smmu = (struct acpi_iort_smmu *)node->node_data; 1354 1355 /* 1356 * Only consider the global fault interrupt and ignore the 1357 * configuration access interrupt. 1358 * 1359 * MMIO address and global fault interrupt resources are always 1360 * present so add them to the context interrupt count as a static 1361 * value. 1362 */ 1363 return smmu->context_interrupt_count + 2; 1364 } 1365 1366 static void __init arm_smmu_init_resources(struct resource *res, 1367 struct acpi_iort_node *node) 1368 { 1369 struct acpi_iort_smmu *smmu; 1370 int i, hw_irq, trigger, num_res = 0; 1371 u64 *ctx_irq, *glb_irq; 1372 1373 /* Retrieve SMMU specific data */ 1374 smmu = (struct acpi_iort_smmu *)node->node_data; 1375 1376 res[num_res].start = smmu->base_address; 1377 res[num_res].end = smmu->base_address + smmu->span - 1; 1378 res[num_res].flags = IORESOURCE_MEM; 1379 num_res++; 1380 1381 glb_irq = ACPI_ADD_PTR(u64, node, smmu->global_interrupt_offset); 1382 /* Global IRQs */ 1383 hw_irq = IORT_IRQ_MASK(glb_irq[0]); 1384 trigger = IORT_IRQ_TRIGGER_MASK(glb_irq[0]); 1385 1386 acpi_iort_register_irq(hw_irq, "arm-smmu-global", trigger, 1387 &res[num_res++]); 1388 1389 /* Context IRQs */ 1390 ctx_irq = ACPI_ADD_PTR(u64, node, smmu->context_interrupt_offset); 1391 for (i = 0; i < smmu->context_interrupt_count; i++) { 1392 hw_irq = IORT_IRQ_MASK(ctx_irq[i]); 1393 trigger = IORT_IRQ_TRIGGER_MASK(ctx_irq[i]); 1394 1395 acpi_iort_register_irq(hw_irq, "arm-smmu-context", trigger, 1396 &res[num_res++]); 1397 } 1398 } 1399 1400 static void __init arm_smmu_dma_configure(struct device *dev, 1401 struct acpi_iort_node *node) 1402 { 1403 struct acpi_iort_smmu *smmu; 1404 enum dev_dma_attr attr; 1405 1406 /* Retrieve SMMU specific data */ 1407 smmu = (struct acpi_iort_smmu *)node->node_data; 1408 1409 attr = (smmu->flags & ACPI_IORT_SMMU_COHERENT_WALK) ? 1410 DEV_DMA_COHERENT : DEV_DMA_NON_COHERENT; 1411 1412 /* We expect the dma masks to be equivalent for SMMU set-ups */ 1413 dev->dma_mask = &dev->coherent_dma_mask; 1414 1415 /* Configure DMA for the page table walker */ 1416 acpi_dma_configure(dev, attr); 1417 } 1418 1419 static int __init arm_smmu_v3_pmcg_count_resources(struct acpi_iort_node *node) 1420 { 1421 struct acpi_iort_pmcg *pmcg; 1422 1423 /* Retrieve PMCG specific data */ 1424 pmcg = (struct acpi_iort_pmcg *)node->node_data; 1425 1426 /* 1427 * There are always 2 memory resources. 1428 * If the overflow_gsiv is present then add that for a total of 3. 1429 */ 1430 return pmcg->overflow_gsiv ? 3 : 2; 1431 } 1432 1433 static void __init arm_smmu_v3_pmcg_init_resources(struct resource *res, 1434 struct acpi_iort_node *node) 1435 { 1436 struct acpi_iort_pmcg *pmcg; 1437 1438 /* Retrieve PMCG specific data */ 1439 pmcg = (struct acpi_iort_pmcg *)node->node_data; 1440 1441 res[0].start = pmcg->page0_base_address; 1442 res[0].end = pmcg->page0_base_address + SZ_4K - 1; 1443 res[0].flags = IORESOURCE_MEM; 1444 res[1].start = pmcg->page1_base_address; 1445 res[1].end = pmcg->page1_base_address + SZ_4K - 1; 1446 res[1].flags = IORESOURCE_MEM; 1447 1448 if (pmcg->overflow_gsiv) 1449 acpi_iort_register_irq(pmcg->overflow_gsiv, "overflow", 1450 ACPI_EDGE_SENSITIVE, &res[2]); 1451 } 1452 1453 static struct acpi_platform_list pmcg_plat_info[] __initdata = { 1454 /* HiSilicon Hip08 Platform */ 1455 {"HISI ", "HIP08 ", 0, ACPI_SIG_IORT, greater_than_or_equal, 1456 "Erratum #162001800", IORT_SMMU_V3_PMCG_HISI_HIP08}, 1457 { } 1458 }; 1459 1460 static int __init arm_smmu_v3_pmcg_add_platdata(struct platform_device *pdev) 1461 { 1462 u32 model; 1463 int idx; 1464 1465 idx = acpi_match_platform_list(pmcg_plat_info); 1466 if (idx >= 0) 1467 model = pmcg_plat_info[idx].data; 1468 else 1469 model = IORT_SMMU_V3_PMCG_GENERIC; 1470 1471 return platform_device_add_data(pdev, &model, sizeof(model)); 1472 } 1473 1474 struct iort_dev_config { 1475 const char *name; 1476 int (*dev_init)(struct acpi_iort_node *node); 1477 void (*dev_dma_configure)(struct device *dev, 1478 struct acpi_iort_node *node); 1479 int (*dev_count_resources)(struct acpi_iort_node *node); 1480 void (*dev_init_resources)(struct resource *res, 1481 struct acpi_iort_node *node); 1482 int (*dev_set_proximity)(struct device *dev, 1483 struct acpi_iort_node *node); 1484 int (*dev_add_platdata)(struct platform_device *pdev); 1485 }; 1486 1487 static const struct iort_dev_config iort_arm_smmu_v3_cfg __initconst = { 1488 .name = "arm-smmu-v3", 1489 .dev_dma_configure = arm_smmu_v3_dma_configure, 1490 .dev_count_resources = arm_smmu_v3_count_resources, 1491 .dev_init_resources = arm_smmu_v3_init_resources, 1492 .dev_set_proximity = arm_smmu_v3_set_proximity, 1493 }; 1494 1495 static const struct iort_dev_config iort_arm_smmu_cfg __initconst = { 1496 .name = "arm-smmu", 1497 .dev_dma_configure = arm_smmu_dma_configure, 1498 .dev_count_resources = arm_smmu_count_resources, 1499 .dev_init_resources = arm_smmu_init_resources, 1500 }; 1501 1502 static const struct iort_dev_config iort_arm_smmu_v3_pmcg_cfg __initconst = { 1503 .name = "arm-smmu-v3-pmcg", 1504 .dev_count_resources = arm_smmu_v3_pmcg_count_resources, 1505 .dev_init_resources = arm_smmu_v3_pmcg_init_resources, 1506 .dev_add_platdata = arm_smmu_v3_pmcg_add_platdata, 1507 }; 1508 1509 static __init const struct iort_dev_config *iort_get_dev_cfg( 1510 struct acpi_iort_node *node) 1511 { 1512 switch (node->type) { 1513 case ACPI_IORT_NODE_SMMU_V3: 1514 return &iort_arm_smmu_v3_cfg; 1515 case ACPI_IORT_NODE_SMMU: 1516 return &iort_arm_smmu_cfg; 1517 case ACPI_IORT_NODE_PMCG: 1518 return &iort_arm_smmu_v3_pmcg_cfg; 1519 default: 1520 return NULL; 1521 } 1522 } 1523 1524 /** 1525 * iort_add_platform_device() - Allocate a platform device for IORT node 1526 * @node: Pointer to device ACPI IORT node 1527 * 1528 * Returns: 0 on success, <0 failure 1529 */ 1530 static int __init iort_add_platform_device(struct acpi_iort_node *node, 1531 const struct iort_dev_config *ops) 1532 { 1533 struct fwnode_handle *fwnode; 1534 struct platform_device *pdev; 1535 struct resource *r; 1536 int ret, count; 1537 1538 pdev = platform_device_alloc(ops->name, PLATFORM_DEVID_AUTO); 1539 if (!pdev) 1540 return -ENOMEM; 1541 1542 if (ops->dev_set_proximity) { 1543 ret = ops->dev_set_proximity(&pdev->dev, node); 1544 if (ret) 1545 goto dev_put; 1546 } 1547 1548 count = ops->dev_count_resources(node); 1549 1550 r = kcalloc(count, sizeof(*r), GFP_KERNEL); 1551 if (!r) { 1552 ret = -ENOMEM; 1553 goto dev_put; 1554 } 1555 1556 ops->dev_init_resources(r, node); 1557 1558 ret = platform_device_add_resources(pdev, r, count); 1559 /* 1560 * Resources are duplicated in platform_device_add_resources, 1561 * free their allocated memory 1562 */ 1563 kfree(r); 1564 1565 if (ret) 1566 goto dev_put; 1567 1568 /* 1569 * Platform devices based on PMCG nodes uses platform_data to 1570 * pass the hardware model info to the driver. For others, add 1571 * a copy of IORT node pointer to platform_data to be used to 1572 * retrieve IORT data information. 1573 */ 1574 if (ops->dev_add_platdata) 1575 ret = ops->dev_add_platdata(pdev); 1576 else 1577 ret = platform_device_add_data(pdev, &node, sizeof(node)); 1578 1579 if (ret) 1580 goto dev_put; 1581 1582 fwnode = iort_get_fwnode(node); 1583 1584 if (!fwnode) { 1585 ret = -ENODEV; 1586 goto dev_put; 1587 } 1588 1589 pdev->dev.fwnode = fwnode; 1590 1591 if (ops->dev_dma_configure) 1592 ops->dev_dma_configure(&pdev->dev, node); 1593 1594 iort_set_device_domain(&pdev->dev, node); 1595 1596 ret = platform_device_add(pdev); 1597 if (ret) 1598 goto dma_deconfigure; 1599 1600 return 0; 1601 1602 dma_deconfigure: 1603 arch_teardown_dma_ops(&pdev->dev); 1604 dev_put: 1605 platform_device_put(pdev); 1606 1607 return ret; 1608 } 1609 1610 #ifdef CONFIG_PCI 1611 static void __init iort_enable_acs(struct acpi_iort_node *iort_node) 1612 { 1613 static bool acs_enabled __initdata; 1614 1615 if (acs_enabled) 1616 return; 1617 1618 if (iort_node->type == ACPI_IORT_NODE_PCI_ROOT_COMPLEX) { 1619 struct acpi_iort_node *parent; 1620 struct acpi_iort_id_mapping *map; 1621 int i; 1622 1623 map = ACPI_ADD_PTR(struct acpi_iort_id_mapping, iort_node, 1624 iort_node->mapping_offset); 1625 1626 for (i = 0; i < iort_node->mapping_count; i++, map++) { 1627 if (!map->output_reference) 1628 continue; 1629 1630 parent = ACPI_ADD_PTR(struct acpi_iort_node, 1631 iort_table, map->output_reference); 1632 /* 1633 * If we detect a RC->SMMU mapping, make sure 1634 * we enable ACS on the system. 1635 */ 1636 if ((parent->type == ACPI_IORT_NODE_SMMU) || 1637 (parent->type == ACPI_IORT_NODE_SMMU_V3)) { 1638 pci_request_acs(); 1639 acs_enabled = true; 1640 return; 1641 } 1642 } 1643 } 1644 } 1645 #else 1646 static inline void iort_enable_acs(struct acpi_iort_node *iort_node) { } 1647 #endif 1648 1649 static void __init iort_init_platform_devices(void) 1650 { 1651 struct acpi_iort_node *iort_node, *iort_end; 1652 struct acpi_table_iort *iort; 1653 struct fwnode_handle *fwnode; 1654 int i, ret; 1655 const struct iort_dev_config *ops; 1656 1657 /* 1658 * iort_table and iort both point to the start of IORT table, but 1659 * have different struct types 1660 */ 1661 iort = (struct acpi_table_iort *)iort_table; 1662 1663 /* Get the first IORT node */ 1664 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort, 1665 iort->node_offset); 1666 iort_end = ACPI_ADD_PTR(struct acpi_iort_node, iort, 1667 iort_table->length); 1668 1669 for (i = 0; i < iort->node_count; i++) { 1670 if (iort_node >= iort_end) { 1671 pr_err("iort node pointer overflows, bad table\n"); 1672 return; 1673 } 1674 1675 iort_enable_acs(iort_node); 1676 1677 ops = iort_get_dev_cfg(iort_node); 1678 if (ops) { 1679 fwnode = acpi_alloc_fwnode_static(); 1680 if (!fwnode) 1681 return; 1682 1683 iort_set_fwnode(iort_node, fwnode); 1684 1685 ret = iort_add_platform_device(iort_node, ops); 1686 if (ret) { 1687 iort_delete_fwnode(iort_node); 1688 acpi_free_fwnode_static(fwnode); 1689 return; 1690 } 1691 } 1692 1693 iort_node = ACPI_ADD_PTR(struct acpi_iort_node, iort_node, 1694 iort_node->length); 1695 } 1696 } 1697 1698 void __init acpi_iort_init(void) 1699 { 1700 acpi_status status; 1701 1702 /* iort_table will be used at runtime after the iort init, 1703 * so we don't need to call acpi_put_table() to release 1704 * the IORT table mapping. 1705 */ 1706 status = acpi_get_table(ACPI_SIG_IORT, 0, &iort_table); 1707 if (ACPI_FAILURE(status)) { 1708 if (status != AE_NOT_FOUND) { 1709 const char *msg = acpi_format_exception(status); 1710 1711 pr_err("Failed to get table, %s\n", msg); 1712 } 1713 1714 return; 1715 } 1716 1717 iort_init_platform_devices(); 1718 } 1719