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