1 // SPDX-License-Identifier: GPL-2.0 2 3 #define pr_fmt(fmt) "irq: " fmt 4 5 #include <linux/acpi.h> 6 #include <linux/debugfs.h> 7 #include <linux/hardirq.h> 8 #include <linux/interrupt.h> 9 #include <linux/irq.h> 10 #include <linux/irqdesc.h> 11 #include <linux/irqdomain.h> 12 #include <linux/module.h> 13 #include <linux/mutex.h> 14 #include <linux/of.h> 15 #include <linux/of_address.h> 16 #include <linux/of_irq.h> 17 #include <linux/topology.h> 18 #include <linux/seq_file.h> 19 #include <linux/slab.h> 20 #include <linux/smp.h> 21 #include <linux/fs.h> 22 23 static LIST_HEAD(irq_domain_list); 24 static DEFINE_MUTEX(irq_domain_mutex); 25 26 static struct irq_domain *irq_default_domain; 27 28 static void irq_domain_check_hierarchy(struct irq_domain *domain); 29 30 struct irqchip_fwid { 31 struct fwnode_handle fwnode; 32 unsigned int type; 33 char *name; 34 phys_addr_t *pa; 35 }; 36 37 #ifdef CONFIG_GENERIC_IRQ_DEBUGFS 38 static void debugfs_add_domain_dir(struct irq_domain *d); 39 static void debugfs_remove_domain_dir(struct irq_domain *d); 40 #else 41 static inline void debugfs_add_domain_dir(struct irq_domain *d) { } 42 static inline void debugfs_remove_domain_dir(struct irq_domain *d) { } 43 #endif 44 45 static const char *irqchip_fwnode_get_name(const struct fwnode_handle *fwnode) 46 { 47 struct irqchip_fwid *fwid = container_of(fwnode, struct irqchip_fwid, fwnode); 48 49 return fwid->name; 50 } 51 52 const struct fwnode_operations irqchip_fwnode_ops = { 53 .get_name = irqchip_fwnode_get_name, 54 }; 55 EXPORT_SYMBOL_GPL(irqchip_fwnode_ops); 56 57 /** 58 * __irq_domain_alloc_fwnode - Allocate a fwnode_handle suitable for 59 * identifying an irq domain 60 * @type: Type of irqchip_fwnode. See linux/irqdomain.h 61 * @id: Optional user provided id if name != NULL 62 * @name: Optional user provided domain name 63 * @pa: Optional user-provided physical address 64 * 65 * Allocate a struct irqchip_fwid, and return a poiner to the embedded 66 * fwnode_handle (or NULL on failure). 67 * 68 * Note: The types IRQCHIP_FWNODE_NAMED and IRQCHIP_FWNODE_NAMED_ID are 69 * solely to transport name information to irqdomain creation code. The 70 * node is not stored. For other types the pointer is kept in the irq 71 * domain struct. 72 */ 73 struct fwnode_handle *__irq_domain_alloc_fwnode(unsigned int type, int id, 74 const char *name, 75 phys_addr_t *pa) 76 { 77 struct irqchip_fwid *fwid; 78 char *n; 79 80 fwid = kzalloc(sizeof(*fwid), GFP_KERNEL); 81 82 switch (type) { 83 case IRQCHIP_FWNODE_NAMED: 84 n = kasprintf(GFP_KERNEL, "%s", name); 85 break; 86 case IRQCHIP_FWNODE_NAMED_ID: 87 n = kasprintf(GFP_KERNEL, "%s-%d", name, id); 88 break; 89 default: 90 n = kasprintf(GFP_KERNEL, "irqchip@%pa", pa); 91 break; 92 } 93 94 if (!fwid || !n) { 95 kfree(fwid); 96 kfree(n); 97 return NULL; 98 } 99 100 fwid->type = type; 101 fwid->name = n; 102 fwid->pa = pa; 103 fwnode_init(&fwid->fwnode, &irqchip_fwnode_ops); 104 return &fwid->fwnode; 105 } 106 EXPORT_SYMBOL_GPL(__irq_domain_alloc_fwnode); 107 108 /** 109 * irq_domain_free_fwnode - Free a non-OF-backed fwnode_handle 110 * 111 * Free a fwnode_handle allocated with irq_domain_alloc_fwnode. 112 */ 113 void irq_domain_free_fwnode(struct fwnode_handle *fwnode) 114 { 115 struct irqchip_fwid *fwid; 116 117 if (WARN_ON(!is_fwnode_irqchip(fwnode))) 118 return; 119 120 fwid = container_of(fwnode, struct irqchip_fwid, fwnode); 121 kfree(fwid->name); 122 kfree(fwid); 123 } 124 EXPORT_SYMBOL_GPL(irq_domain_free_fwnode); 125 126 /** 127 * __irq_domain_add() - Allocate a new irq_domain data structure 128 * @fwnode: firmware node for the interrupt controller 129 * @size: Size of linear map; 0 for radix mapping only 130 * @hwirq_max: Maximum number of interrupts supported by controller 131 * @direct_max: Maximum value of direct maps; Use ~0 for no limit; 0 for no 132 * direct mapping 133 * @ops: domain callbacks 134 * @host_data: Controller private data pointer 135 * 136 * Allocates and initializes an irq_domain structure. 137 * Returns pointer to IRQ domain, or NULL on failure. 138 */ 139 struct irq_domain *__irq_domain_add(struct fwnode_handle *fwnode, int size, 140 irq_hw_number_t hwirq_max, int direct_max, 141 const struct irq_domain_ops *ops, 142 void *host_data) 143 { 144 struct irqchip_fwid *fwid; 145 struct irq_domain *domain; 146 147 static atomic_t unknown_domains; 148 149 domain = kzalloc_node(sizeof(*domain) + (sizeof(unsigned int) * size), 150 GFP_KERNEL, of_node_to_nid(to_of_node(fwnode))); 151 if (!domain) 152 return NULL; 153 154 if (is_fwnode_irqchip(fwnode)) { 155 fwid = container_of(fwnode, struct irqchip_fwid, fwnode); 156 157 switch (fwid->type) { 158 case IRQCHIP_FWNODE_NAMED: 159 case IRQCHIP_FWNODE_NAMED_ID: 160 domain->fwnode = fwnode; 161 domain->name = kstrdup(fwid->name, GFP_KERNEL); 162 if (!domain->name) { 163 kfree(domain); 164 return NULL; 165 } 166 domain->flags |= IRQ_DOMAIN_NAME_ALLOCATED; 167 break; 168 default: 169 domain->fwnode = fwnode; 170 domain->name = fwid->name; 171 break; 172 } 173 } else if (is_of_node(fwnode) || is_acpi_device_node(fwnode) || 174 is_software_node(fwnode)) { 175 char *name; 176 177 /* 178 * fwnode paths contain '/', which debugfs is legitimately 179 * unhappy about. Replace them with ':', which does 180 * the trick and is not as offensive as '\'... 181 */ 182 name = kasprintf(GFP_KERNEL, "%pfw", fwnode); 183 if (!name) { 184 kfree(domain); 185 return NULL; 186 } 187 188 strreplace(name, '/', ':'); 189 190 domain->name = name; 191 domain->fwnode = fwnode; 192 domain->flags |= IRQ_DOMAIN_NAME_ALLOCATED; 193 } 194 195 if (!domain->name) { 196 if (fwnode) 197 pr_err("Invalid fwnode type for irqdomain\n"); 198 domain->name = kasprintf(GFP_KERNEL, "unknown-%d", 199 atomic_inc_return(&unknown_domains)); 200 if (!domain->name) { 201 kfree(domain); 202 return NULL; 203 } 204 domain->flags |= IRQ_DOMAIN_NAME_ALLOCATED; 205 } 206 207 fwnode_handle_get(fwnode); 208 fwnode_dev_initialized(fwnode, true); 209 210 /* Fill structure */ 211 INIT_RADIX_TREE(&domain->revmap_tree, GFP_KERNEL); 212 mutex_init(&domain->revmap_tree_mutex); 213 domain->ops = ops; 214 domain->host_data = host_data; 215 domain->hwirq_max = hwirq_max; 216 domain->revmap_size = size; 217 domain->revmap_direct_max_irq = direct_max; 218 irq_domain_check_hierarchy(domain); 219 220 mutex_lock(&irq_domain_mutex); 221 debugfs_add_domain_dir(domain); 222 list_add(&domain->link, &irq_domain_list); 223 mutex_unlock(&irq_domain_mutex); 224 225 pr_debug("Added domain %s\n", domain->name); 226 return domain; 227 } 228 EXPORT_SYMBOL_GPL(__irq_domain_add); 229 230 /** 231 * irq_domain_remove() - Remove an irq domain. 232 * @domain: domain to remove 233 * 234 * This routine is used to remove an irq domain. The caller must ensure 235 * that all mappings within the domain have been disposed of prior to 236 * use, depending on the revmap type. 237 */ 238 void irq_domain_remove(struct irq_domain *domain) 239 { 240 mutex_lock(&irq_domain_mutex); 241 debugfs_remove_domain_dir(domain); 242 243 WARN_ON(!radix_tree_empty(&domain->revmap_tree)); 244 245 list_del(&domain->link); 246 247 /* 248 * If the going away domain is the default one, reset it. 249 */ 250 if (unlikely(irq_default_domain == domain)) 251 irq_set_default_host(NULL); 252 253 mutex_unlock(&irq_domain_mutex); 254 255 pr_debug("Removed domain %s\n", domain->name); 256 257 fwnode_dev_initialized(domain->fwnode, false); 258 fwnode_handle_put(domain->fwnode); 259 if (domain->flags & IRQ_DOMAIN_NAME_ALLOCATED) 260 kfree(domain->name); 261 kfree(domain); 262 } 263 EXPORT_SYMBOL_GPL(irq_domain_remove); 264 265 void irq_domain_update_bus_token(struct irq_domain *domain, 266 enum irq_domain_bus_token bus_token) 267 { 268 char *name; 269 270 if (domain->bus_token == bus_token) 271 return; 272 273 mutex_lock(&irq_domain_mutex); 274 275 domain->bus_token = bus_token; 276 277 name = kasprintf(GFP_KERNEL, "%s-%d", domain->name, bus_token); 278 if (!name) { 279 mutex_unlock(&irq_domain_mutex); 280 return; 281 } 282 283 debugfs_remove_domain_dir(domain); 284 285 if (domain->flags & IRQ_DOMAIN_NAME_ALLOCATED) 286 kfree(domain->name); 287 else 288 domain->flags |= IRQ_DOMAIN_NAME_ALLOCATED; 289 290 domain->name = name; 291 debugfs_add_domain_dir(domain); 292 293 mutex_unlock(&irq_domain_mutex); 294 } 295 EXPORT_SYMBOL_GPL(irq_domain_update_bus_token); 296 297 /** 298 * irq_domain_add_simple() - Register an irq_domain and optionally map a range of irqs 299 * @of_node: pointer to interrupt controller's device tree node. 300 * @size: total number of irqs in mapping 301 * @first_irq: first number of irq block assigned to the domain, 302 * pass zero to assign irqs on-the-fly. If first_irq is non-zero, then 303 * pre-map all of the irqs in the domain to virqs starting at first_irq. 304 * @ops: domain callbacks 305 * @host_data: Controller private data pointer 306 * 307 * Allocates an irq_domain, and optionally if first_irq is positive then also 308 * allocate irq_descs and map all of the hwirqs to virqs starting at first_irq. 309 * 310 * This is intended to implement the expected behaviour for most 311 * interrupt controllers. If device tree is used, then first_irq will be 0 and 312 * irqs get mapped dynamically on the fly. However, if the controller requires 313 * static virq assignments (non-DT boot) then it will set that up correctly. 314 */ 315 struct irq_domain *irq_domain_add_simple(struct device_node *of_node, 316 unsigned int size, 317 unsigned int first_irq, 318 const struct irq_domain_ops *ops, 319 void *host_data) 320 { 321 struct irq_domain *domain; 322 323 domain = __irq_domain_add(of_node_to_fwnode(of_node), size, size, 0, ops, host_data); 324 if (!domain) 325 return NULL; 326 327 if (first_irq > 0) { 328 if (IS_ENABLED(CONFIG_SPARSE_IRQ)) { 329 /* attempt to allocated irq_descs */ 330 int rc = irq_alloc_descs(first_irq, first_irq, size, 331 of_node_to_nid(of_node)); 332 if (rc < 0) 333 pr_info("Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n", 334 first_irq); 335 } 336 irq_domain_associate_many(domain, first_irq, 0, size); 337 } 338 339 return domain; 340 } 341 EXPORT_SYMBOL_GPL(irq_domain_add_simple); 342 343 /** 344 * irq_domain_add_legacy() - Allocate and register a legacy revmap irq_domain. 345 * @of_node: pointer to interrupt controller's device tree node. 346 * @size: total number of irqs in legacy mapping 347 * @first_irq: first number of irq block assigned to the domain 348 * @first_hwirq: first hwirq number to use for the translation. Should normally 349 * be '0', but a positive integer can be used if the effective 350 * hwirqs numbering does not begin at zero. 351 * @ops: map/unmap domain callbacks 352 * @host_data: Controller private data pointer 353 * 354 * Note: the map() callback will be called before this function returns 355 * for all legacy interrupts except 0 (which is always the invalid irq for 356 * a legacy controller). 357 */ 358 struct irq_domain *irq_domain_add_legacy(struct device_node *of_node, 359 unsigned int size, 360 unsigned int first_irq, 361 irq_hw_number_t first_hwirq, 362 const struct irq_domain_ops *ops, 363 void *host_data) 364 { 365 return irq_domain_create_legacy(of_node_to_fwnode(of_node), size, 366 first_irq, first_hwirq, ops, host_data); 367 } 368 EXPORT_SYMBOL_GPL(irq_domain_add_legacy); 369 370 struct irq_domain *irq_domain_create_legacy(struct fwnode_handle *fwnode, 371 unsigned int size, 372 unsigned int first_irq, 373 irq_hw_number_t first_hwirq, 374 const struct irq_domain_ops *ops, 375 void *host_data) 376 { 377 struct irq_domain *domain; 378 379 domain = __irq_domain_add(fwnode, first_hwirq + size, first_hwirq + size, 0, ops, host_data); 380 if (domain) 381 irq_domain_associate_many(domain, first_irq, first_hwirq, size); 382 383 return domain; 384 } 385 EXPORT_SYMBOL_GPL(irq_domain_create_legacy); 386 387 /** 388 * irq_find_matching_fwspec() - Locates a domain for a given fwspec 389 * @fwspec: FW specifier for an interrupt 390 * @bus_token: domain-specific data 391 */ 392 struct irq_domain *irq_find_matching_fwspec(struct irq_fwspec *fwspec, 393 enum irq_domain_bus_token bus_token) 394 { 395 struct irq_domain *h, *found = NULL; 396 struct fwnode_handle *fwnode = fwspec->fwnode; 397 int rc; 398 399 /* We might want to match the legacy controller last since 400 * it might potentially be set to match all interrupts in 401 * the absence of a device node. This isn't a problem so far 402 * yet though... 403 * 404 * bus_token == DOMAIN_BUS_ANY matches any domain, any other 405 * values must generate an exact match for the domain to be 406 * selected. 407 */ 408 mutex_lock(&irq_domain_mutex); 409 list_for_each_entry(h, &irq_domain_list, link) { 410 if (h->ops->select && fwspec->param_count) 411 rc = h->ops->select(h, fwspec, bus_token); 412 else if (h->ops->match) 413 rc = h->ops->match(h, to_of_node(fwnode), bus_token); 414 else 415 rc = ((fwnode != NULL) && (h->fwnode == fwnode) && 416 ((bus_token == DOMAIN_BUS_ANY) || 417 (h->bus_token == bus_token))); 418 419 if (rc) { 420 found = h; 421 break; 422 } 423 } 424 mutex_unlock(&irq_domain_mutex); 425 return found; 426 } 427 EXPORT_SYMBOL_GPL(irq_find_matching_fwspec); 428 429 /** 430 * irq_domain_check_msi_remap - Check whether all MSI irq domains implement 431 * IRQ remapping 432 * 433 * Return: false if any MSI irq domain does not support IRQ remapping, 434 * true otherwise (including if there is no MSI irq domain) 435 */ 436 bool irq_domain_check_msi_remap(void) 437 { 438 struct irq_domain *h; 439 bool ret = true; 440 441 mutex_lock(&irq_domain_mutex); 442 list_for_each_entry(h, &irq_domain_list, link) { 443 if (irq_domain_is_msi(h) && 444 !irq_domain_hierarchical_is_msi_remap(h)) { 445 ret = false; 446 break; 447 } 448 } 449 mutex_unlock(&irq_domain_mutex); 450 return ret; 451 } 452 EXPORT_SYMBOL_GPL(irq_domain_check_msi_remap); 453 454 /** 455 * irq_set_default_host() - Set a "default" irq domain 456 * @domain: default domain pointer 457 * 458 * For convenience, it's possible to set a "default" domain that will be used 459 * whenever NULL is passed to irq_create_mapping(). It makes life easier for 460 * platforms that want to manipulate a few hard coded interrupt numbers that 461 * aren't properly represented in the device-tree. 462 */ 463 void irq_set_default_host(struct irq_domain *domain) 464 { 465 pr_debug("Default domain set to @0x%p\n", domain); 466 467 irq_default_domain = domain; 468 } 469 EXPORT_SYMBOL_GPL(irq_set_default_host); 470 471 /** 472 * irq_get_default_host() - Retrieve the "default" irq domain 473 * 474 * Returns: the default domain, if any. 475 * 476 * Modern code should never use this. This should only be used on 477 * systems that cannot implement a firmware->fwnode mapping (which 478 * both DT and ACPI provide). 479 */ 480 struct irq_domain *irq_get_default_host(void) 481 { 482 return irq_default_domain; 483 } 484 485 static void irq_domain_clear_mapping(struct irq_domain *domain, 486 irq_hw_number_t hwirq) 487 { 488 if (hwirq < domain->revmap_size) { 489 domain->linear_revmap[hwirq] = 0; 490 } else { 491 mutex_lock(&domain->revmap_tree_mutex); 492 radix_tree_delete(&domain->revmap_tree, hwirq); 493 mutex_unlock(&domain->revmap_tree_mutex); 494 } 495 } 496 497 static void irq_domain_set_mapping(struct irq_domain *domain, 498 irq_hw_number_t hwirq, 499 struct irq_data *irq_data) 500 { 501 if (hwirq < domain->revmap_size) { 502 domain->linear_revmap[hwirq] = irq_data->irq; 503 } else { 504 mutex_lock(&domain->revmap_tree_mutex); 505 radix_tree_insert(&domain->revmap_tree, hwirq, irq_data); 506 mutex_unlock(&domain->revmap_tree_mutex); 507 } 508 } 509 510 static void irq_domain_disassociate(struct irq_domain *domain, unsigned int irq) 511 { 512 struct irq_data *irq_data = irq_get_irq_data(irq); 513 irq_hw_number_t hwirq; 514 515 if (WARN(!irq_data || irq_data->domain != domain, 516 "virq%i doesn't exist; cannot disassociate\n", irq)) 517 return; 518 519 hwirq = irq_data->hwirq; 520 irq_set_status_flags(irq, IRQ_NOREQUEST); 521 522 /* remove chip and handler */ 523 irq_set_chip_and_handler(irq, NULL, NULL); 524 525 /* Make sure it's completed */ 526 synchronize_irq(irq); 527 528 /* Tell the PIC about it */ 529 if (domain->ops->unmap) 530 domain->ops->unmap(domain, irq); 531 smp_mb(); 532 533 irq_data->domain = NULL; 534 irq_data->hwirq = 0; 535 domain->mapcount--; 536 537 /* Clear reverse map for this hwirq */ 538 irq_domain_clear_mapping(domain, hwirq); 539 } 540 541 int irq_domain_associate(struct irq_domain *domain, unsigned int virq, 542 irq_hw_number_t hwirq) 543 { 544 struct irq_data *irq_data = irq_get_irq_data(virq); 545 int ret; 546 547 if (WARN(hwirq >= domain->hwirq_max, 548 "error: hwirq 0x%x is too large for %s\n", (int)hwirq, domain->name)) 549 return -EINVAL; 550 if (WARN(!irq_data, "error: virq%i is not allocated", virq)) 551 return -EINVAL; 552 if (WARN(irq_data->domain, "error: virq%i is already associated", virq)) 553 return -EINVAL; 554 555 mutex_lock(&irq_domain_mutex); 556 irq_data->hwirq = hwirq; 557 irq_data->domain = domain; 558 if (domain->ops->map) { 559 ret = domain->ops->map(domain, virq, hwirq); 560 if (ret != 0) { 561 /* 562 * If map() returns -EPERM, this interrupt is protected 563 * by the firmware or some other service and shall not 564 * be mapped. Don't bother telling the user about it. 565 */ 566 if (ret != -EPERM) { 567 pr_info("%s didn't like hwirq-0x%lx to VIRQ%i mapping (rc=%d)\n", 568 domain->name, hwirq, virq, ret); 569 } 570 irq_data->domain = NULL; 571 irq_data->hwirq = 0; 572 mutex_unlock(&irq_domain_mutex); 573 return ret; 574 } 575 576 /* If not already assigned, give the domain the chip's name */ 577 if (!domain->name && irq_data->chip) 578 domain->name = irq_data->chip->name; 579 } 580 581 domain->mapcount++; 582 irq_domain_set_mapping(domain, hwirq, irq_data); 583 mutex_unlock(&irq_domain_mutex); 584 585 irq_clear_status_flags(virq, IRQ_NOREQUEST); 586 587 return 0; 588 } 589 EXPORT_SYMBOL_GPL(irq_domain_associate); 590 591 void irq_domain_associate_many(struct irq_domain *domain, unsigned int irq_base, 592 irq_hw_number_t hwirq_base, int count) 593 { 594 struct device_node *of_node; 595 int i; 596 597 of_node = irq_domain_get_of_node(domain); 598 pr_debug("%s(%s, irqbase=%i, hwbase=%i, count=%i)\n", __func__, 599 of_node_full_name(of_node), irq_base, (int)hwirq_base, count); 600 601 for (i = 0; i < count; i++) { 602 irq_domain_associate(domain, irq_base + i, hwirq_base + i); 603 } 604 } 605 EXPORT_SYMBOL_GPL(irq_domain_associate_many); 606 607 /** 608 * irq_create_direct_mapping() - Allocate an irq for direct mapping 609 * @domain: domain to allocate the irq for or NULL for default domain 610 * 611 * This routine is used for irq controllers which can choose the hardware 612 * interrupt numbers they generate. In such a case it's simplest to use 613 * the linux irq as the hardware interrupt number. It still uses the linear 614 * or radix tree to store the mapping, but the irq controller can optimize 615 * the revmap path by using the hwirq directly. 616 */ 617 unsigned int irq_create_direct_mapping(struct irq_domain *domain) 618 { 619 struct device_node *of_node; 620 unsigned int virq; 621 622 if (domain == NULL) 623 domain = irq_default_domain; 624 625 of_node = irq_domain_get_of_node(domain); 626 virq = irq_alloc_desc_from(1, of_node_to_nid(of_node)); 627 if (!virq) { 628 pr_debug("create_direct virq allocation failed\n"); 629 return 0; 630 } 631 if (virq >= domain->revmap_direct_max_irq) { 632 pr_err("ERROR: no free irqs available below %i maximum\n", 633 domain->revmap_direct_max_irq); 634 irq_free_desc(virq); 635 return 0; 636 } 637 pr_debug("create_direct obtained virq %d\n", virq); 638 639 if (irq_domain_associate(domain, virq, virq)) { 640 irq_free_desc(virq); 641 return 0; 642 } 643 644 return virq; 645 } 646 EXPORT_SYMBOL_GPL(irq_create_direct_mapping); 647 648 /** 649 * irq_create_mapping_affinity() - Map a hardware interrupt into linux irq space 650 * @domain: domain owning this hardware interrupt or NULL for default domain 651 * @hwirq: hardware irq number in that domain space 652 * @affinity: irq affinity 653 * 654 * Only one mapping per hardware interrupt is permitted. Returns a linux 655 * irq number. 656 * If the sense/trigger is to be specified, set_irq_type() should be called 657 * on the number returned from that call. 658 */ 659 unsigned int irq_create_mapping_affinity(struct irq_domain *domain, 660 irq_hw_number_t hwirq, 661 const struct irq_affinity_desc *affinity) 662 { 663 struct device_node *of_node; 664 int virq; 665 666 pr_debug("irq_create_mapping(0x%p, 0x%lx)\n", domain, hwirq); 667 668 /* Look for default domain if nececssary */ 669 if (domain == NULL) 670 domain = irq_default_domain; 671 if (domain == NULL) { 672 WARN(1, "%s(, %lx) called with NULL domain\n", __func__, hwirq); 673 return 0; 674 } 675 pr_debug("-> using domain @%p\n", domain); 676 677 of_node = irq_domain_get_of_node(domain); 678 679 /* Check if mapping already exists */ 680 virq = irq_find_mapping(domain, hwirq); 681 if (virq) { 682 pr_debug("-> existing mapping on virq %d\n", virq); 683 return virq; 684 } 685 686 /* Allocate a virtual interrupt number */ 687 virq = irq_domain_alloc_descs(-1, 1, hwirq, of_node_to_nid(of_node), 688 affinity); 689 if (virq <= 0) { 690 pr_debug("-> virq allocation failed\n"); 691 return 0; 692 } 693 694 if (irq_domain_associate(domain, virq, hwirq)) { 695 irq_free_desc(virq); 696 return 0; 697 } 698 699 pr_debug("irq %lu on domain %s mapped to virtual irq %u\n", 700 hwirq, of_node_full_name(of_node), virq); 701 702 return virq; 703 } 704 EXPORT_SYMBOL_GPL(irq_create_mapping_affinity); 705 706 /** 707 * irq_create_strict_mappings() - Map a range of hw irqs to fixed linux irqs 708 * @domain: domain owning the interrupt range 709 * @irq_base: beginning of linux IRQ range 710 * @hwirq_base: beginning of hardware IRQ range 711 * @count: Number of interrupts to map 712 * 713 * This routine is used for allocating and mapping a range of hardware 714 * irqs to linux irqs where the linux irq numbers are at pre-defined 715 * locations. For use by controllers that already have static mappings 716 * to insert in to the domain. 717 * 718 * 0 is returned upon success, while any failure to establish a static 719 * mapping is treated as an error. 720 */ 721 int irq_create_strict_mappings(struct irq_domain *domain, unsigned int irq_base, 722 irq_hw_number_t hwirq_base, int count) 723 { 724 struct device_node *of_node; 725 int ret; 726 727 of_node = irq_domain_get_of_node(domain); 728 ret = irq_alloc_descs(irq_base, irq_base, count, 729 of_node_to_nid(of_node)); 730 if (unlikely(ret < 0)) 731 return ret; 732 733 irq_domain_associate_many(domain, irq_base, hwirq_base, count); 734 return 0; 735 } 736 EXPORT_SYMBOL_GPL(irq_create_strict_mappings); 737 738 static int irq_domain_translate(struct irq_domain *d, 739 struct irq_fwspec *fwspec, 740 irq_hw_number_t *hwirq, unsigned int *type) 741 { 742 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY 743 if (d->ops->translate) 744 return d->ops->translate(d, fwspec, hwirq, type); 745 #endif 746 if (d->ops->xlate) 747 return d->ops->xlate(d, to_of_node(fwspec->fwnode), 748 fwspec->param, fwspec->param_count, 749 hwirq, type); 750 751 /* If domain has no translation, then we assume interrupt line */ 752 *hwirq = fwspec->param[0]; 753 return 0; 754 } 755 756 static void of_phandle_args_to_fwspec(struct device_node *np, const u32 *args, 757 unsigned int count, 758 struct irq_fwspec *fwspec) 759 { 760 int i; 761 762 fwspec->fwnode = of_node_to_fwnode(np); 763 fwspec->param_count = count; 764 765 for (i = 0; i < count; i++) 766 fwspec->param[i] = args[i]; 767 } 768 769 unsigned int irq_create_fwspec_mapping(struct irq_fwspec *fwspec) 770 { 771 struct irq_domain *domain; 772 struct irq_data *irq_data; 773 irq_hw_number_t hwirq; 774 unsigned int type = IRQ_TYPE_NONE; 775 int virq; 776 777 if (fwspec->fwnode) { 778 domain = irq_find_matching_fwspec(fwspec, DOMAIN_BUS_WIRED); 779 if (!domain) 780 domain = irq_find_matching_fwspec(fwspec, DOMAIN_BUS_ANY); 781 } else { 782 domain = irq_default_domain; 783 } 784 785 if (!domain) { 786 pr_warn("no irq domain found for %s !\n", 787 of_node_full_name(to_of_node(fwspec->fwnode))); 788 return 0; 789 } 790 791 if (irq_domain_translate(domain, fwspec, &hwirq, &type)) 792 return 0; 793 794 /* 795 * WARN if the irqchip returns a type with bits 796 * outside the sense mask set and clear these bits. 797 */ 798 if (WARN_ON(type & ~IRQ_TYPE_SENSE_MASK)) 799 type &= IRQ_TYPE_SENSE_MASK; 800 801 /* 802 * If we've already configured this interrupt, 803 * don't do it again, or hell will break loose. 804 */ 805 virq = irq_find_mapping(domain, hwirq); 806 if (virq) { 807 /* 808 * If the trigger type is not specified or matches the 809 * current trigger type then we are done so return the 810 * interrupt number. 811 */ 812 if (type == IRQ_TYPE_NONE || type == irq_get_trigger_type(virq)) 813 return virq; 814 815 /* 816 * If the trigger type has not been set yet, then set 817 * it now and return the interrupt number. 818 */ 819 if (irq_get_trigger_type(virq) == IRQ_TYPE_NONE) { 820 irq_data = irq_get_irq_data(virq); 821 if (!irq_data) 822 return 0; 823 824 irqd_set_trigger_type(irq_data, type); 825 return virq; 826 } 827 828 pr_warn("type mismatch, failed to map hwirq-%lu for %s!\n", 829 hwirq, of_node_full_name(to_of_node(fwspec->fwnode))); 830 return 0; 831 } 832 833 if (irq_domain_is_hierarchy(domain)) { 834 virq = irq_domain_alloc_irqs(domain, 1, NUMA_NO_NODE, fwspec); 835 if (virq <= 0) 836 return 0; 837 } else { 838 /* Create mapping */ 839 virq = irq_create_mapping(domain, hwirq); 840 if (!virq) 841 return virq; 842 } 843 844 irq_data = irq_get_irq_data(virq); 845 if (!irq_data) { 846 if (irq_domain_is_hierarchy(domain)) 847 irq_domain_free_irqs(virq, 1); 848 else 849 irq_dispose_mapping(virq); 850 return 0; 851 } 852 853 /* Store trigger type */ 854 irqd_set_trigger_type(irq_data, type); 855 856 return virq; 857 } 858 EXPORT_SYMBOL_GPL(irq_create_fwspec_mapping); 859 860 unsigned int irq_create_of_mapping(struct of_phandle_args *irq_data) 861 { 862 struct irq_fwspec fwspec; 863 864 of_phandle_args_to_fwspec(irq_data->np, irq_data->args, 865 irq_data->args_count, &fwspec); 866 867 return irq_create_fwspec_mapping(&fwspec); 868 } 869 EXPORT_SYMBOL_GPL(irq_create_of_mapping); 870 871 /** 872 * irq_dispose_mapping() - Unmap an interrupt 873 * @virq: linux irq number of the interrupt to unmap 874 */ 875 void irq_dispose_mapping(unsigned int virq) 876 { 877 struct irq_data *irq_data = irq_get_irq_data(virq); 878 struct irq_domain *domain; 879 880 if (!virq || !irq_data) 881 return; 882 883 domain = irq_data->domain; 884 if (WARN_ON(domain == NULL)) 885 return; 886 887 if (irq_domain_is_hierarchy(domain)) { 888 irq_domain_free_irqs(virq, 1); 889 } else { 890 irq_domain_disassociate(domain, virq); 891 irq_free_desc(virq); 892 } 893 } 894 EXPORT_SYMBOL_GPL(irq_dispose_mapping); 895 896 /** 897 * irq_find_mapping() - Find a linux irq from a hw irq number. 898 * @domain: domain owning this hardware interrupt 899 * @hwirq: hardware irq number in that domain space 900 */ 901 unsigned int irq_find_mapping(struct irq_domain *domain, 902 irq_hw_number_t hwirq) 903 { 904 struct irq_data *data; 905 906 /* Look for default domain if nececssary */ 907 if (domain == NULL) 908 domain = irq_default_domain; 909 if (domain == NULL) 910 return 0; 911 912 if (hwirq < domain->revmap_direct_max_irq) { 913 data = irq_domain_get_irq_data(domain, hwirq); 914 if (data && data->hwirq == hwirq) 915 return hwirq; 916 } 917 918 /* Check if the hwirq is in the linear revmap. */ 919 if (hwirq < domain->revmap_size) 920 return domain->linear_revmap[hwirq]; 921 922 rcu_read_lock(); 923 data = radix_tree_lookup(&domain->revmap_tree, hwirq); 924 rcu_read_unlock(); 925 return data ? data->irq : 0; 926 } 927 EXPORT_SYMBOL_GPL(irq_find_mapping); 928 929 /** 930 * irq_domain_xlate_onecell() - Generic xlate for direct one cell bindings 931 * 932 * Device Tree IRQ specifier translation function which works with one cell 933 * bindings where the cell value maps directly to the hwirq number. 934 */ 935 int irq_domain_xlate_onecell(struct irq_domain *d, struct device_node *ctrlr, 936 const u32 *intspec, unsigned int intsize, 937 unsigned long *out_hwirq, unsigned int *out_type) 938 { 939 if (WARN_ON(intsize < 1)) 940 return -EINVAL; 941 *out_hwirq = intspec[0]; 942 *out_type = IRQ_TYPE_NONE; 943 return 0; 944 } 945 EXPORT_SYMBOL_GPL(irq_domain_xlate_onecell); 946 947 /** 948 * irq_domain_xlate_twocell() - Generic xlate for direct two cell bindings 949 * 950 * Device Tree IRQ specifier translation function which works with two cell 951 * bindings where the cell values map directly to the hwirq number 952 * and linux irq flags. 953 */ 954 int irq_domain_xlate_twocell(struct irq_domain *d, struct device_node *ctrlr, 955 const u32 *intspec, unsigned int intsize, 956 irq_hw_number_t *out_hwirq, unsigned int *out_type) 957 { 958 struct irq_fwspec fwspec; 959 960 of_phandle_args_to_fwspec(ctrlr, intspec, intsize, &fwspec); 961 return irq_domain_translate_twocell(d, &fwspec, out_hwirq, out_type); 962 } 963 EXPORT_SYMBOL_GPL(irq_domain_xlate_twocell); 964 965 /** 966 * irq_domain_xlate_onetwocell() - Generic xlate for one or two cell bindings 967 * 968 * Device Tree IRQ specifier translation function which works with either one 969 * or two cell bindings where the cell values map directly to the hwirq number 970 * and linux irq flags. 971 * 972 * Note: don't use this function unless your interrupt controller explicitly 973 * supports both one and two cell bindings. For the majority of controllers 974 * the _onecell() or _twocell() variants above should be used. 975 */ 976 int irq_domain_xlate_onetwocell(struct irq_domain *d, 977 struct device_node *ctrlr, 978 const u32 *intspec, unsigned int intsize, 979 unsigned long *out_hwirq, unsigned int *out_type) 980 { 981 if (WARN_ON(intsize < 1)) 982 return -EINVAL; 983 *out_hwirq = intspec[0]; 984 if (intsize > 1) 985 *out_type = intspec[1] & IRQ_TYPE_SENSE_MASK; 986 else 987 *out_type = IRQ_TYPE_NONE; 988 return 0; 989 } 990 EXPORT_SYMBOL_GPL(irq_domain_xlate_onetwocell); 991 992 const struct irq_domain_ops irq_domain_simple_ops = { 993 .xlate = irq_domain_xlate_onetwocell, 994 }; 995 EXPORT_SYMBOL_GPL(irq_domain_simple_ops); 996 997 /** 998 * irq_domain_translate_onecell() - Generic translate for direct one cell 999 * bindings 1000 */ 1001 int irq_domain_translate_onecell(struct irq_domain *d, 1002 struct irq_fwspec *fwspec, 1003 unsigned long *out_hwirq, 1004 unsigned int *out_type) 1005 { 1006 if (WARN_ON(fwspec->param_count < 1)) 1007 return -EINVAL; 1008 *out_hwirq = fwspec->param[0]; 1009 *out_type = IRQ_TYPE_NONE; 1010 return 0; 1011 } 1012 EXPORT_SYMBOL_GPL(irq_domain_translate_onecell); 1013 1014 /** 1015 * irq_domain_translate_twocell() - Generic translate for direct two cell 1016 * bindings 1017 * 1018 * Device Tree IRQ specifier translation function which works with two cell 1019 * bindings where the cell values map directly to the hwirq number 1020 * and linux irq flags. 1021 */ 1022 int irq_domain_translate_twocell(struct irq_domain *d, 1023 struct irq_fwspec *fwspec, 1024 unsigned long *out_hwirq, 1025 unsigned int *out_type) 1026 { 1027 if (WARN_ON(fwspec->param_count < 2)) 1028 return -EINVAL; 1029 *out_hwirq = fwspec->param[0]; 1030 *out_type = fwspec->param[1] & IRQ_TYPE_SENSE_MASK; 1031 return 0; 1032 } 1033 EXPORT_SYMBOL_GPL(irq_domain_translate_twocell); 1034 1035 int irq_domain_alloc_descs(int virq, unsigned int cnt, irq_hw_number_t hwirq, 1036 int node, const struct irq_affinity_desc *affinity) 1037 { 1038 unsigned int hint; 1039 1040 if (virq >= 0) { 1041 virq = __irq_alloc_descs(virq, virq, cnt, node, THIS_MODULE, 1042 affinity); 1043 } else { 1044 hint = hwirq % nr_irqs; 1045 if (hint == 0) 1046 hint++; 1047 virq = __irq_alloc_descs(-1, hint, cnt, node, THIS_MODULE, 1048 affinity); 1049 if (virq <= 0 && hint > 1) { 1050 virq = __irq_alloc_descs(-1, 1, cnt, node, THIS_MODULE, 1051 affinity); 1052 } 1053 } 1054 1055 return virq; 1056 } 1057 1058 /** 1059 * irq_domain_reset_irq_data - Clear hwirq, chip and chip_data in @irq_data 1060 * @irq_data: The pointer to irq_data 1061 */ 1062 void irq_domain_reset_irq_data(struct irq_data *irq_data) 1063 { 1064 irq_data->hwirq = 0; 1065 irq_data->chip = &no_irq_chip; 1066 irq_data->chip_data = NULL; 1067 } 1068 EXPORT_SYMBOL_GPL(irq_domain_reset_irq_data); 1069 1070 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY 1071 /** 1072 * irq_domain_create_hierarchy - Add a irqdomain into the hierarchy 1073 * @parent: Parent irq domain to associate with the new domain 1074 * @flags: Irq domain flags associated to the domain 1075 * @size: Size of the domain. See below 1076 * @fwnode: Optional fwnode of the interrupt controller 1077 * @ops: Pointer to the interrupt domain callbacks 1078 * @host_data: Controller private data pointer 1079 * 1080 * If @size is 0 a tree domain is created, otherwise a linear domain. 1081 * 1082 * If successful the parent is associated to the new domain and the 1083 * domain flags are set. 1084 * Returns pointer to IRQ domain, or NULL on failure. 1085 */ 1086 struct irq_domain *irq_domain_create_hierarchy(struct irq_domain *parent, 1087 unsigned int flags, 1088 unsigned int size, 1089 struct fwnode_handle *fwnode, 1090 const struct irq_domain_ops *ops, 1091 void *host_data) 1092 { 1093 struct irq_domain *domain; 1094 1095 if (size) 1096 domain = irq_domain_create_linear(fwnode, size, ops, host_data); 1097 else 1098 domain = irq_domain_create_tree(fwnode, ops, host_data); 1099 if (domain) { 1100 domain->parent = parent; 1101 domain->flags |= flags; 1102 } 1103 1104 return domain; 1105 } 1106 EXPORT_SYMBOL_GPL(irq_domain_create_hierarchy); 1107 1108 static void irq_domain_insert_irq(int virq) 1109 { 1110 struct irq_data *data; 1111 1112 for (data = irq_get_irq_data(virq); data; data = data->parent_data) { 1113 struct irq_domain *domain = data->domain; 1114 1115 domain->mapcount++; 1116 irq_domain_set_mapping(domain, data->hwirq, data); 1117 1118 /* If not already assigned, give the domain the chip's name */ 1119 if (!domain->name && data->chip) 1120 domain->name = data->chip->name; 1121 } 1122 1123 irq_clear_status_flags(virq, IRQ_NOREQUEST); 1124 } 1125 1126 static void irq_domain_remove_irq(int virq) 1127 { 1128 struct irq_data *data; 1129 1130 irq_set_status_flags(virq, IRQ_NOREQUEST); 1131 irq_set_chip_and_handler(virq, NULL, NULL); 1132 synchronize_irq(virq); 1133 smp_mb(); 1134 1135 for (data = irq_get_irq_data(virq); data; data = data->parent_data) { 1136 struct irq_domain *domain = data->domain; 1137 irq_hw_number_t hwirq = data->hwirq; 1138 1139 domain->mapcount--; 1140 irq_domain_clear_mapping(domain, hwirq); 1141 } 1142 } 1143 1144 static struct irq_data *irq_domain_insert_irq_data(struct irq_domain *domain, 1145 struct irq_data *child) 1146 { 1147 struct irq_data *irq_data; 1148 1149 irq_data = kzalloc_node(sizeof(*irq_data), GFP_KERNEL, 1150 irq_data_get_node(child)); 1151 if (irq_data) { 1152 child->parent_data = irq_data; 1153 irq_data->irq = child->irq; 1154 irq_data->common = child->common; 1155 irq_data->domain = domain; 1156 } 1157 1158 return irq_data; 1159 } 1160 1161 static void __irq_domain_free_hierarchy(struct irq_data *irq_data) 1162 { 1163 struct irq_data *tmp; 1164 1165 while (irq_data) { 1166 tmp = irq_data; 1167 irq_data = irq_data->parent_data; 1168 kfree(tmp); 1169 } 1170 } 1171 1172 static void irq_domain_free_irq_data(unsigned int virq, unsigned int nr_irqs) 1173 { 1174 struct irq_data *irq_data, *tmp; 1175 int i; 1176 1177 for (i = 0; i < nr_irqs; i++) { 1178 irq_data = irq_get_irq_data(virq + i); 1179 tmp = irq_data->parent_data; 1180 irq_data->parent_data = NULL; 1181 irq_data->domain = NULL; 1182 1183 __irq_domain_free_hierarchy(tmp); 1184 } 1185 } 1186 1187 /** 1188 * irq_domain_disconnect_hierarchy - Mark the first unused level of a hierarchy 1189 * @domain: IRQ domain from which the hierarchy is to be disconnected 1190 * @virq: IRQ number where the hierarchy is to be trimmed 1191 * 1192 * Marks the @virq level belonging to @domain as disconnected. 1193 * Returns -EINVAL if @virq doesn't have a valid irq_data pointing 1194 * to @domain. 1195 * 1196 * Its only use is to be able to trim levels of hierarchy that do not 1197 * have any real meaning for this interrupt, and that the driver marks 1198 * as such from its .alloc() callback. 1199 */ 1200 int irq_domain_disconnect_hierarchy(struct irq_domain *domain, 1201 unsigned int virq) 1202 { 1203 struct irq_data *irqd; 1204 1205 irqd = irq_domain_get_irq_data(domain, virq); 1206 if (!irqd) 1207 return -EINVAL; 1208 1209 irqd->chip = ERR_PTR(-ENOTCONN); 1210 return 0; 1211 } 1212 1213 static int irq_domain_trim_hierarchy(unsigned int virq) 1214 { 1215 struct irq_data *tail, *irqd, *irq_data; 1216 1217 irq_data = irq_get_irq_data(virq); 1218 tail = NULL; 1219 1220 /* The first entry must have a valid irqchip */ 1221 if (!irq_data->chip || IS_ERR(irq_data->chip)) 1222 return -EINVAL; 1223 1224 /* 1225 * Validate that the irq_data chain is sane in the presence of 1226 * a hierarchy trimming marker. 1227 */ 1228 for (irqd = irq_data->parent_data; irqd; irq_data = irqd, irqd = irqd->parent_data) { 1229 /* Can't have a valid irqchip after a trim marker */ 1230 if (irqd->chip && tail) 1231 return -EINVAL; 1232 1233 /* Can't have an empty irqchip before a trim marker */ 1234 if (!irqd->chip && !tail) 1235 return -EINVAL; 1236 1237 if (IS_ERR(irqd->chip)) { 1238 /* Only -ENOTCONN is a valid trim marker */ 1239 if (PTR_ERR(irqd->chip) != -ENOTCONN) 1240 return -EINVAL; 1241 1242 tail = irq_data; 1243 } 1244 } 1245 1246 /* No trim marker, nothing to do */ 1247 if (!tail) 1248 return 0; 1249 1250 pr_info("IRQ%d: trimming hierarchy from %s\n", 1251 virq, tail->parent_data->domain->name); 1252 1253 /* Sever the inner part of the hierarchy... */ 1254 irqd = tail; 1255 tail = tail->parent_data; 1256 irqd->parent_data = NULL; 1257 __irq_domain_free_hierarchy(tail); 1258 1259 return 0; 1260 } 1261 1262 static int irq_domain_alloc_irq_data(struct irq_domain *domain, 1263 unsigned int virq, unsigned int nr_irqs) 1264 { 1265 struct irq_data *irq_data; 1266 struct irq_domain *parent; 1267 int i; 1268 1269 /* The outermost irq_data is embedded in struct irq_desc */ 1270 for (i = 0; i < nr_irqs; i++) { 1271 irq_data = irq_get_irq_data(virq + i); 1272 irq_data->domain = domain; 1273 1274 for (parent = domain->parent; parent; parent = parent->parent) { 1275 irq_data = irq_domain_insert_irq_data(parent, irq_data); 1276 if (!irq_data) { 1277 irq_domain_free_irq_data(virq, i + 1); 1278 return -ENOMEM; 1279 } 1280 } 1281 } 1282 1283 return 0; 1284 } 1285 1286 /** 1287 * irq_domain_get_irq_data - Get irq_data associated with @virq and @domain 1288 * @domain: domain to match 1289 * @virq: IRQ number to get irq_data 1290 */ 1291 struct irq_data *irq_domain_get_irq_data(struct irq_domain *domain, 1292 unsigned int virq) 1293 { 1294 struct irq_data *irq_data; 1295 1296 for (irq_data = irq_get_irq_data(virq); irq_data; 1297 irq_data = irq_data->parent_data) 1298 if (irq_data->domain == domain) 1299 return irq_data; 1300 1301 return NULL; 1302 } 1303 EXPORT_SYMBOL_GPL(irq_domain_get_irq_data); 1304 1305 /** 1306 * irq_domain_set_hwirq_and_chip - Set hwirq and irqchip of @virq at @domain 1307 * @domain: Interrupt domain to match 1308 * @virq: IRQ number 1309 * @hwirq: The hwirq number 1310 * @chip: The associated interrupt chip 1311 * @chip_data: The associated chip data 1312 */ 1313 int irq_domain_set_hwirq_and_chip(struct irq_domain *domain, unsigned int virq, 1314 irq_hw_number_t hwirq, struct irq_chip *chip, 1315 void *chip_data) 1316 { 1317 struct irq_data *irq_data = irq_domain_get_irq_data(domain, virq); 1318 1319 if (!irq_data) 1320 return -ENOENT; 1321 1322 irq_data->hwirq = hwirq; 1323 irq_data->chip = chip ? chip : &no_irq_chip; 1324 irq_data->chip_data = chip_data; 1325 1326 return 0; 1327 } 1328 EXPORT_SYMBOL_GPL(irq_domain_set_hwirq_and_chip); 1329 1330 /** 1331 * irq_domain_set_info - Set the complete data for a @virq in @domain 1332 * @domain: Interrupt domain to match 1333 * @virq: IRQ number 1334 * @hwirq: The hardware interrupt number 1335 * @chip: The associated interrupt chip 1336 * @chip_data: The associated interrupt chip data 1337 * @handler: The interrupt flow handler 1338 * @handler_data: The interrupt flow handler data 1339 * @handler_name: The interrupt handler name 1340 */ 1341 void irq_domain_set_info(struct irq_domain *domain, unsigned int virq, 1342 irq_hw_number_t hwirq, struct irq_chip *chip, 1343 void *chip_data, irq_flow_handler_t handler, 1344 void *handler_data, const char *handler_name) 1345 { 1346 irq_domain_set_hwirq_and_chip(domain, virq, hwirq, chip, chip_data); 1347 __irq_set_handler(virq, handler, 0, handler_name); 1348 irq_set_handler_data(virq, handler_data); 1349 } 1350 EXPORT_SYMBOL(irq_domain_set_info); 1351 1352 /** 1353 * irq_domain_free_irqs_common - Clear irq_data and free the parent 1354 * @domain: Interrupt domain to match 1355 * @virq: IRQ number to start with 1356 * @nr_irqs: The number of irqs to free 1357 */ 1358 void irq_domain_free_irqs_common(struct irq_domain *domain, unsigned int virq, 1359 unsigned int nr_irqs) 1360 { 1361 struct irq_data *irq_data; 1362 int i; 1363 1364 for (i = 0; i < nr_irqs; i++) { 1365 irq_data = irq_domain_get_irq_data(domain, virq + i); 1366 if (irq_data) 1367 irq_domain_reset_irq_data(irq_data); 1368 } 1369 irq_domain_free_irqs_parent(domain, virq, nr_irqs); 1370 } 1371 EXPORT_SYMBOL_GPL(irq_domain_free_irqs_common); 1372 1373 /** 1374 * irq_domain_free_irqs_top - Clear handler and handler data, clear irqdata and free parent 1375 * @domain: Interrupt domain to match 1376 * @virq: IRQ number to start with 1377 * @nr_irqs: The number of irqs to free 1378 */ 1379 void irq_domain_free_irqs_top(struct irq_domain *domain, unsigned int virq, 1380 unsigned int nr_irqs) 1381 { 1382 int i; 1383 1384 for (i = 0; i < nr_irqs; i++) { 1385 irq_set_handler_data(virq + i, NULL); 1386 irq_set_handler(virq + i, NULL); 1387 } 1388 irq_domain_free_irqs_common(domain, virq, nr_irqs); 1389 } 1390 1391 static void irq_domain_free_irqs_hierarchy(struct irq_domain *domain, 1392 unsigned int irq_base, 1393 unsigned int nr_irqs) 1394 { 1395 unsigned int i; 1396 1397 if (!domain->ops->free) 1398 return; 1399 1400 for (i = 0; i < nr_irqs; i++) { 1401 if (irq_domain_get_irq_data(domain, irq_base + i)) 1402 domain->ops->free(domain, irq_base + i, 1); 1403 } 1404 } 1405 1406 int irq_domain_alloc_irqs_hierarchy(struct irq_domain *domain, 1407 unsigned int irq_base, 1408 unsigned int nr_irqs, void *arg) 1409 { 1410 if (!domain->ops->alloc) { 1411 pr_debug("domain->ops->alloc() is NULL\n"); 1412 return -ENOSYS; 1413 } 1414 1415 return domain->ops->alloc(domain, irq_base, nr_irqs, arg); 1416 } 1417 1418 /** 1419 * __irq_domain_alloc_irqs - Allocate IRQs from domain 1420 * @domain: domain to allocate from 1421 * @irq_base: allocate specified IRQ number if irq_base >= 0 1422 * @nr_irqs: number of IRQs to allocate 1423 * @node: NUMA node id for memory allocation 1424 * @arg: domain specific argument 1425 * @realloc: IRQ descriptors have already been allocated if true 1426 * @affinity: Optional irq affinity mask for multiqueue devices 1427 * 1428 * Allocate IRQ numbers and initialized all data structures to support 1429 * hierarchy IRQ domains. 1430 * Parameter @realloc is mainly to support legacy IRQs. 1431 * Returns error code or allocated IRQ number 1432 * 1433 * The whole process to setup an IRQ has been split into two steps. 1434 * The first step, __irq_domain_alloc_irqs(), is to allocate IRQ 1435 * descriptor and required hardware resources. The second step, 1436 * irq_domain_activate_irq(), is to program hardwares with preallocated 1437 * resources. In this way, it's easier to rollback when failing to 1438 * allocate resources. 1439 */ 1440 int __irq_domain_alloc_irqs(struct irq_domain *domain, int irq_base, 1441 unsigned int nr_irqs, int node, void *arg, 1442 bool realloc, const struct irq_affinity_desc *affinity) 1443 { 1444 int i, ret, virq; 1445 1446 if (domain == NULL) { 1447 domain = irq_default_domain; 1448 if (WARN(!domain, "domain is NULL; cannot allocate IRQ\n")) 1449 return -EINVAL; 1450 } 1451 1452 if (realloc && irq_base >= 0) { 1453 virq = irq_base; 1454 } else { 1455 virq = irq_domain_alloc_descs(irq_base, nr_irqs, 0, node, 1456 affinity); 1457 if (virq < 0) { 1458 pr_debug("cannot allocate IRQ(base %d, count %d)\n", 1459 irq_base, nr_irqs); 1460 return virq; 1461 } 1462 } 1463 1464 if (irq_domain_alloc_irq_data(domain, virq, nr_irqs)) { 1465 pr_debug("cannot allocate memory for IRQ%d\n", virq); 1466 ret = -ENOMEM; 1467 goto out_free_desc; 1468 } 1469 1470 mutex_lock(&irq_domain_mutex); 1471 ret = irq_domain_alloc_irqs_hierarchy(domain, virq, nr_irqs, arg); 1472 if (ret < 0) { 1473 mutex_unlock(&irq_domain_mutex); 1474 goto out_free_irq_data; 1475 } 1476 1477 for (i = 0; i < nr_irqs; i++) { 1478 ret = irq_domain_trim_hierarchy(virq + i); 1479 if (ret) { 1480 mutex_unlock(&irq_domain_mutex); 1481 goto out_free_irq_data; 1482 } 1483 } 1484 1485 for (i = 0; i < nr_irqs; i++) 1486 irq_domain_insert_irq(virq + i); 1487 mutex_unlock(&irq_domain_mutex); 1488 1489 return virq; 1490 1491 out_free_irq_data: 1492 irq_domain_free_irq_data(virq, nr_irqs); 1493 out_free_desc: 1494 irq_free_descs(virq, nr_irqs); 1495 return ret; 1496 } 1497 1498 /* The irq_data was moved, fix the revmap to refer to the new location */ 1499 static void irq_domain_fix_revmap(struct irq_data *d) 1500 { 1501 void __rcu **slot; 1502 1503 if (d->hwirq < d->domain->revmap_size) 1504 return; /* Not using radix tree. */ 1505 1506 /* Fix up the revmap. */ 1507 mutex_lock(&d->domain->revmap_tree_mutex); 1508 slot = radix_tree_lookup_slot(&d->domain->revmap_tree, d->hwirq); 1509 if (slot) 1510 radix_tree_replace_slot(&d->domain->revmap_tree, slot, d); 1511 mutex_unlock(&d->domain->revmap_tree_mutex); 1512 } 1513 1514 /** 1515 * irq_domain_push_irq() - Push a domain in to the top of a hierarchy. 1516 * @domain: Domain to push. 1517 * @virq: Irq to push the domain in to. 1518 * @arg: Passed to the irq_domain_ops alloc() function. 1519 * 1520 * For an already existing irqdomain hierarchy, as might be obtained 1521 * via a call to pci_enable_msix(), add an additional domain to the 1522 * head of the processing chain. Must be called before request_irq() 1523 * has been called. 1524 */ 1525 int irq_domain_push_irq(struct irq_domain *domain, int virq, void *arg) 1526 { 1527 struct irq_data *child_irq_data; 1528 struct irq_data *root_irq_data = irq_get_irq_data(virq); 1529 struct irq_desc *desc; 1530 int rv = 0; 1531 1532 /* 1533 * Check that no action has been set, which indicates the virq 1534 * is in a state where this function doesn't have to deal with 1535 * races between interrupt handling and maintaining the 1536 * hierarchy. This will catch gross misuse. Attempting to 1537 * make the check race free would require holding locks across 1538 * calls to struct irq_domain_ops->alloc(), which could lead 1539 * to deadlock, so we just do a simple check before starting. 1540 */ 1541 desc = irq_to_desc(virq); 1542 if (!desc) 1543 return -EINVAL; 1544 if (WARN_ON(desc->action)) 1545 return -EBUSY; 1546 1547 if (domain == NULL) 1548 return -EINVAL; 1549 1550 if (WARN_ON(!irq_domain_is_hierarchy(domain))) 1551 return -EINVAL; 1552 1553 if (!root_irq_data) 1554 return -EINVAL; 1555 1556 if (domain->parent != root_irq_data->domain) 1557 return -EINVAL; 1558 1559 child_irq_data = kzalloc_node(sizeof(*child_irq_data), GFP_KERNEL, 1560 irq_data_get_node(root_irq_data)); 1561 if (!child_irq_data) 1562 return -ENOMEM; 1563 1564 mutex_lock(&irq_domain_mutex); 1565 1566 /* Copy the original irq_data. */ 1567 *child_irq_data = *root_irq_data; 1568 1569 /* 1570 * Overwrite the root_irq_data, which is embedded in struct 1571 * irq_desc, with values for this domain. 1572 */ 1573 root_irq_data->parent_data = child_irq_data; 1574 root_irq_data->domain = domain; 1575 root_irq_data->mask = 0; 1576 root_irq_data->hwirq = 0; 1577 root_irq_data->chip = NULL; 1578 root_irq_data->chip_data = NULL; 1579 1580 /* May (probably does) set hwirq, chip, etc. */ 1581 rv = irq_domain_alloc_irqs_hierarchy(domain, virq, 1, arg); 1582 if (rv) { 1583 /* Restore the original irq_data. */ 1584 *root_irq_data = *child_irq_data; 1585 kfree(child_irq_data); 1586 goto error; 1587 } 1588 1589 irq_domain_fix_revmap(child_irq_data); 1590 irq_domain_set_mapping(domain, root_irq_data->hwirq, root_irq_data); 1591 1592 error: 1593 mutex_unlock(&irq_domain_mutex); 1594 1595 return rv; 1596 } 1597 EXPORT_SYMBOL_GPL(irq_domain_push_irq); 1598 1599 /** 1600 * irq_domain_pop_irq() - Remove a domain from the top of a hierarchy. 1601 * @domain: Domain to remove. 1602 * @virq: Irq to remove the domain from. 1603 * 1604 * Undo the effects of a call to irq_domain_push_irq(). Must be 1605 * called either before request_irq() or after free_irq(). 1606 */ 1607 int irq_domain_pop_irq(struct irq_domain *domain, int virq) 1608 { 1609 struct irq_data *root_irq_data = irq_get_irq_data(virq); 1610 struct irq_data *child_irq_data; 1611 struct irq_data *tmp_irq_data; 1612 struct irq_desc *desc; 1613 1614 /* 1615 * Check that no action is set, which indicates the virq is in 1616 * a state where this function doesn't have to deal with races 1617 * between interrupt handling and maintaining the hierarchy. 1618 * This will catch gross misuse. Attempting to make the check 1619 * race free would require holding locks across calls to 1620 * struct irq_domain_ops->free(), which could lead to 1621 * deadlock, so we just do a simple check before starting. 1622 */ 1623 desc = irq_to_desc(virq); 1624 if (!desc) 1625 return -EINVAL; 1626 if (WARN_ON(desc->action)) 1627 return -EBUSY; 1628 1629 if (domain == NULL) 1630 return -EINVAL; 1631 1632 if (!root_irq_data) 1633 return -EINVAL; 1634 1635 tmp_irq_data = irq_domain_get_irq_data(domain, virq); 1636 1637 /* We can only "pop" if this domain is at the top of the list */ 1638 if (WARN_ON(root_irq_data != tmp_irq_data)) 1639 return -EINVAL; 1640 1641 if (WARN_ON(root_irq_data->domain != domain)) 1642 return -EINVAL; 1643 1644 child_irq_data = root_irq_data->parent_data; 1645 if (WARN_ON(!child_irq_data)) 1646 return -EINVAL; 1647 1648 mutex_lock(&irq_domain_mutex); 1649 1650 root_irq_data->parent_data = NULL; 1651 1652 irq_domain_clear_mapping(domain, root_irq_data->hwirq); 1653 irq_domain_free_irqs_hierarchy(domain, virq, 1); 1654 1655 /* Restore the original irq_data. */ 1656 *root_irq_data = *child_irq_data; 1657 1658 irq_domain_fix_revmap(root_irq_data); 1659 1660 mutex_unlock(&irq_domain_mutex); 1661 1662 kfree(child_irq_data); 1663 1664 return 0; 1665 } 1666 EXPORT_SYMBOL_GPL(irq_domain_pop_irq); 1667 1668 /** 1669 * irq_domain_free_irqs - Free IRQ number and associated data structures 1670 * @virq: base IRQ number 1671 * @nr_irqs: number of IRQs to free 1672 */ 1673 void irq_domain_free_irqs(unsigned int virq, unsigned int nr_irqs) 1674 { 1675 struct irq_data *data = irq_get_irq_data(virq); 1676 int i; 1677 1678 if (WARN(!data || !data->domain || !data->domain->ops->free, 1679 "NULL pointer, cannot free irq\n")) 1680 return; 1681 1682 mutex_lock(&irq_domain_mutex); 1683 for (i = 0; i < nr_irqs; i++) 1684 irq_domain_remove_irq(virq + i); 1685 irq_domain_free_irqs_hierarchy(data->domain, virq, nr_irqs); 1686 mutex_unlock(&irq_domain_mutex); 1687 1688 irq_domain_free_irq_data(virq, nr_irqs); 1689 irq_free_descs(virq, nr_irqs); 1690 } 1691 1692 /** 1693 * irq_domain_alloc_irqs_parent - Allocate interrupts from parent domain 1694 * @irq_base: Base IRQ number 1695 * @nr_irqs: Number of IRQs to allocate 1696 * @arg: Allocation data (arch/domain specific) 1697 * 1698 * Check whether the domain has been setup recursive. If not allocate 1699 * through the parent domain. 1700 */ 1701 int irq_domain_alloc_irqs_parent(struct irq_domain *domain, 1702 unsigned int irq_base, unsigned int nr_irqs, 1703 void *arg) 1704 { 1705 if (!domain->parent) 1706 return -ENOSYS; 1707 1708 return irq_domain_alloc_irqs_hierarchy(domain->parent, irq_base, 1709 nr_irqs, arg); 1710 } 1711 EXPORT_SYMBOL_GPL(irq_domain_alloc_irqs_parent); 1712 1713 /** 1714 * irq_domain_free_irqs_parent - Free interrupts from parent domain 1715 * @irq_base: Base IRQ number 1716 * @nr_irqs: Number of IRQs to free 1717 * 1718 * Check whether the domain has been setup recursive. If not free 1719 * through the parent domain. 1720 */ 1721 void irq_domain_free_irqs_parent(struct irq_domain *domain, 1722 unsigned int irq_base, unsigned int nr_irqs) 1723 { 1724 if (!domain->parent) 1725 return; 1726 1727 irq_domain_free_irqs_hierarchy(domain->parent, irq_base, nr_irqs); 1728 } 1729 EXPORT_SYMBOL_GPL(irq_domain_free_irqs_parent); 1730 1731 static void __irq_domain_deactivate_irq(struct irq_data *irq_data) 1732 { 1733 if (irq_data && irq_data->domain) { 1734 struct irq_domain *domain = irq_data->domain; 1735 1736 if (domain->ops->deactivate) 1737 domain->ops->deactivate(domain, irq_data); 1738 if (irq_data->parent_data) 1739 __irq_domain_deactivate_irq(irq_data->parent_data); 1740 } 1741 } 1742 1743 static int __irq_domain_activate_irq(struct irq_data *irqd, bool reserve) 1744 { 1745 int ret = 0; 1746 1747 if (irqd && irqd->domain) { 1748 struct irq_domain *domain = irqd->domain; 1749 1750 if (irqd->parent_data) 1751 ret = __irq_domain_activate_irq(irqd->parent_data, 1752 reserve); 1753 if (!ret && domain->ops->activate) { 1754 ret = domain->ops->activate(domain, irqd, reserve); 1755 /* Rollback in case of error */ 1756 if (ret && irqd->parent_data) 1757 __irq_domain_deactivate_irq(irqd->parent_data); 1758 } 1759 } 1760 return ret; 1761 } 1762 1763 /** 1764 * irq_domain_activate_irq - Call domain_ops->activate recursively to activate 1765 * interrupt 1766 * @irq_data: Outermost irq_data associated with interrupt 1767 * @reserve: If set only reserve an interrupt vector instead of assigning one 1768 * 1769 * This is the second step to call domain_ops->activate to program interrupt 1770 * controllers, so the interrupt could actually get delivered. 1771 */ 1772 int irq_domain_activate_irq(struct irq_data *irq_data, bool reserve) 1773 { 1774 int ret = 0; 1775 1776 if (!irqd_is_activated(irq_data)) 1777 ret = __irq_domain_activate_irq(irq_data, reserve); 1778 if (!ret) 1779 irqd_set_activated(irq_data); 1780 return ret; 1781 } 1782 1783 /** 1784 * irq_domain_deactivate_irq - Call domain_ops->deactivate recursively to 1785 * deactivate interrupt 1786 * @irq_data: outermost irq_data associated with interrupt 1787 * 1788 * It calls domain_ops->deactivate to program interrupt controllers to disable 1789 * interrupt delivery. 1790 */ 1791 void irq_domain_deactivate_irq(struct irq_data *irq_data) 1792 { 1793 if (irqd_is_activated(irq_data)) { 1794 __irq_domain_deactivate_irq(irq_data); 1795 irqd_clr_activated(irq_data); 1796 } 1797 } 1798 1799 static void irq_domain_check_hierarchy(struct irq_domain *domain) 1800 { 1801 /* Hierarchy irq_domains must implement callback alloc() */ 1802 if (domain->ops->alloc) 1803 domain->flags |= IRQ_DOMAIN_FLAG_HIERARCHY; 1804 } 1805 1806 /** 1807 * irq_domain_hierarchical_is_msi_remap - Check if the domain or any 1808 * parent has MSI remapping support 1809 * @domain: domain pointer 1810 */ 1811 bool irq_domain_hierarchical_is_msi_remap(struct irq_domain *domain) 1812 { 1813 for (; domain; domain = domain->parent) { 1814 if (irq_domain_is_msi_remap(domain)) 1815 return true; 1816 } 1817 return false; 1818 } 1819 #else /* CONFIG_IRQ_DOMAIN_HIERARCHY */ 1820 /** 1821 * irq_domain_get_irq_data - Get irq_data associated with @virq and @domain 1822 * @domain: domain to match 1823 * @virq: IRQ number to get irq_data 1824 */ 1825 struct irq_data *irq_domain_get_irq_data(struct irq_domain *domain, 1826 unsigned int virq) 1827 { 1828 struct irq_data *irq_data = irq_get_irq_data(virq); 1829 1830 return (irq_data && irq_data->domain == domain) ? irq_data : NULL; 1831 } 1832 EXPORT_SYMBOL_GPL(irq_domain_get_irq_data); 1833 1834 /** 1835 * irq_domain_set_info - Set the complete data for a @virq in @domain 1836 * @domain: Interrupt domain to match 1837 * @virq: IRQ number 1838 * @hwirq: The hardware interrupt number 1839 * @chip: The associated interrupt chip 1840 * @chip_data: The associated interrupt chip data 1841 * @handler: The interrupt flow handler 1842 * @handler_data: The interrupt flow handler data 1843 * @handler_name: The interrupt handler name 1844 */ 1845 void irq_domain_set_info(struct irq_domain *domain, unsigned int virq, 1846 irq_hw_number_t hwirq, struct irq_chip *chip, 1847 void *chip_data, irq_flow_handler_t handler, 1848 void *handler_data, const char *handler_name) 1849 { 1850 irq_set_chip_and_handler_name(virq, chip, handler, handler_name); 1851 irq_set_chip_data(virq, chip_data); 1852 irq_set_handler_data(virq, handler_data); 1853 } 1854 1855 static void irq_domain_check_hierarchy(struct irq_domain *domain) 1856 { 1857 } 1858 #endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */ 1859 1860 #ifdef CONFIG_GENERIC_IRQ_DEBUGFS 1861 static struct dentry *domain_dir; 1862 1863 static void 1864 irq_domain_debug_show_one(struct seq_file *m, struct irq_domain *d, int ind) 1865 { 1866 seq_printf(m, "%*sname: %s\n", ind, "", d->name); 1867 seq_printf(m, "%*ssize: %u\n", ind + 1, "", 1868 d->revmap_size + d->revmap_direct_max_irq); 1869 seq_printf(m, "%*smapped: %u\n", ind + 1, "", d->mapcount); 1870 seq_printf(m, "%*sflags: 0x%08x\n", ind +1 , "", d->flags); 1871 if (d->ops && d->ops->debug_show) 1872 d->ops->debug_show(m, d, NULL, ind + 1); 1873 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY 1874 if (!d->parent) 1875 return; 1876 seq_printf(m, "%*sparent: %s\n", ind + 1, "", d->parent->name); 1877 irq_domain_debug_show_one(m, d->parent, ind + 4); 1878 #endif 1879 } 1880 1881 static int irq_domain_debug_show(struct seq_file *m, void *p) 1882 { 1883 struct irq_domain *d = m->private; 1884 1885 /* Default domain? Might be NULL */ 1886 if (!d) { 1887 if (!irq_default_domain) 1888 return 0; 1889 d = irq_default_domain; 1890 } 1891 irq_domain_debug_show_one(m, d, 0); 1892 return 0; 1893 } 1894 DEFINE_SHOW_ATTRIBUTE(irq_domain_debug); 1895 1896 static void debugfs_add_domain_dir(struct irq_domain *d) 1897 { 1898 if (!d->name || !domain_dir) 1899 return; 1900 debugfs_create_file(d->name, 0444, domain_dir, d, 1901 &irq_domain_debug_fops); 1902 } 1903 1904 static void debugfs_remove_domain_dir(struct irq_domain *d) 1905 { 1906 debugfs_remove(debugfs_lookup(d->name, domain_dir)); 1907 } 1908 1909 void __init irq_domain_debugfs_init(struct dentry *root) 1910 { 1911 struct irq_domain *d; 1912 1913 domain_dir = debugfs_create_dir("domains", root); 1914 1915 debugfs_create_file("default", 0444, domain_dir, NULL, 1916 &irq_domain_debug_fops); 1917 mutex_lock(&irq_domain_mutex); 1918 list_for_each_entry(d, &irq_domain_list, link) 1919 debugfs_add_domain_dir(d); 1920 mutex_unlock(&irq_domain_mutex); 1921 } 1922 #endif 1923