1 // SPDX-License-Identifier: GPL-2.0
3 #define pr_fmt(fmt) "irq: " fmt
5 #include <linux/acpi.h>
6 #include <linux/debugfs.h>
7 #include <linux/hardirq.h>
8 #include <linux/interrupt.h>
10 #include <linux/irqdesc.h>
11 #include <linux/irqdomain.h>
12 #include <linux/module.h>
13 #include <linux/mutex.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>
23 static LIST_HEAD(irq_domain_list);
24 static DEFINE_MUTEX(irq_domain_mutex);
26 static struct irq_domain *irq_default_domain;
28 static int irq_domain_alloc_irqs_locked(struct irq_domain *domain, int irq_base,
29 unsigned int nr_irqs, int node, void *arg,
30 bool realloc, const struct irq_affinity_desc *affinity);
31 static void irq_domain_check_hierarchy(struct irq_domain *domain);
32 static void irq_domain_free_one_irq(struct irq_domain *domain, unsigned int virq);
35 struct fwnode_handle fwnode;
41 #ifdef CONFIG_GENERIC_IRQ_DEBUGFS
42 static void debugfs_add_domain_dir(struct irq_domain *d);
43 static void debugfs_remove_domain_dir(struct irq_domain *d);
45 static inline void debugfs_add_domain_dir(struct irq_domain *d) { }
46 static inline void debugfs_remove_domain_dir(struct irq_domain *d) { }
49 static const char *irqchip_fwnode_get_name(const struct fwnode_handle *fwnode)
51 struct irqchip_fwid *fwid = container_of(fwnode, struct irqchip_fwid, fwnode);
56 const struct fwnode_operations irqchip_fwnode_ops = {
57 .get_name = irqchip_fwnode_get_name,
59 EXPORT_SYMBOL_GPL(irqchip_fwnode_ops);
62 * __irq_domain_alloc_fwnode - Allocate a fwnode_handle suitable for
63 * identifying an irq domain
64 * @type: Type of irqchip_fwnode. See linux/irqdomain.h
65 * @id: Optional user provided id if name != NULL
66 * @name: Optional user provided domain name
67 * @pa: Optional user-provided physical address
69 * Allocate a struct irqchip_fwid, and return a pointer to the embedded
70 * fwnode_handle (or NULL on failure).
72 * Note: The types IRQCHIP_FWNODE_NAMED and IRQCHIP_FWNODE_NAMED_ID are
73 * solely to transport name information to irqdomain creation code. The
74 * node is not stored. For other types the pointer is kept in the irq
77 struct fwnode_handle *__irq_domain_alloc_fwnode(unsigned int type, int id,
81 struct irqchip_fwid *fwid;
84 fwid = kzalloc(sizeof(*fwid), GFP_KERNEL);
87 case IRQCHIP_FWNODE_NAMED:
88 n = kasprintf(GFP_KERNEL, "%s", name);
90 case IRQCHIP_FWNODE_NAMED_ID:
91 n = kasprintf(GFP_KERNEL, "%s-%d", name, id);
94 n = kasprintf(GFP_KERNEL, "irqchip@%pa", pa);
107 fwnode_init(&fwid->fwnode, &irqchip_fwnode_ops);
108 return &fwid->fwnode;
110 EXPORT_SYMBOL_GPL(__irq_domain_alloc_fwnode);
113 * irq_domain_free_fwnode - Free a non-OF-backed fwnode_handle
114 * @fwnode: fwnode_handle to free
116 * Free a fwnode_handle allocated with irq_domain_alloc_fwnode.
118 void irq_domain_free_fwnode(struct fwnode_handle *fwnode)
120 struct irqchip_fwid *fwid;
122 if (!fwnode || WARN_ON(!is_fwnode_irqchip(fwnode)))
125 fwid = container_of(fwnode, struct irqchip_fwid, fwnode);
129 EXPORT_SYMBOL_GPL(irq_domain_free_fwnode);
131 static int alloc_name(struct irq_domain *domain, char *base, enum irq_domain_bus_token bus_token)
133 if (bus_token == DOMAIN_BUS_ANY)
134 domain->name = kasprintf(GFP_KERNEL, "%s", base);
136 domain->name = kasprintf(GFP_KERNEL, "%s-%d", base, bus_token);
140 domain->flags |= IRQ_DOMAIN_NAME_ALLOCATED;
144 static int alloc_fwnode_name(struct irq_domain *domain, const struct fwnode_handle *fwnode,
145 enum irq_domain_bus_token bus_token, const char *suffix)
147 const char *sep = suffix ? "-" : "";
148 const char *suf = suffix ? : "";
151 if (bus_token == DOMAIN_BUS_ANY)
152 name = kasprintf(GFP_KERNEL, "%pfw%s%s", fwnode, sep, suf);
154 name = kasprintf(GFP_KERNEL, "%pfw%s%s-%d", fwnode, sep, suf, bus_token);
159 * fwnode paths contain '/', which debugfs is legitimately unhappy
160 * about. Replace them with ':', which does the trick and is not as
161 * offensive as '\'...
163 domain->name = strreplace(name, '/', ':');
164 domain->flags |= IRQ_DOMAIN_NAME_ALLOCATED;
168 static int alloc_unknown_name(struct irq_domain *domain, enum irq_domain_bus_token bus_token)
170 static atomic_t unknown_domains;
171 int id = atomic_inc_return(&unknown_domains);
173 if (bus_token == DOMAIN_BUS_ANY)
174 domain->name = kasprintf(GFP_KERNEL, "unknown-%d", id);
176 domain->name = kasprintf(GFP_KERNEL, "unknown-%d-%d", id, bus_token);
180 domain->flags |= IRQ_DOMAIN_NAME_ALLOCATED;
184 static int irq_domain_set_name(struct irq_domain *domain, const struct irq_domain_info *info)
186 enum irq_domain_bus_token bus_token = info->bus_token;
187 const struct fwnode_handle *fwnode = info->fwnode;
189 if (is_fwnode_irqchip(fwnode)) {
190 struct irqchip_fwid *fwid = container_of(fwnode, struct irqchip_fwid, fwnode);
193 * The name_suffix is only intended to be used to avoid a name
194 * collision when multiple domains are created for a single
195 * device and the name is picked using a real device node.
196 * (Typical use-case is regmap-IRQ controllers for devices
197 * providing more than one physical IRQ.) There should be no
198 * need to use name_suffix with irqchip-fwnode.
200 if (info->name_suffix)
203 switch (fwid->type) {
204 case IRQCHIP_FWNODE_NAMED:
205 case IRQCHIP_FWNODE_NAMED_ID:
206 return alloc_name(domain, fwid->name, bus_token);
208 domain->name = fwid->name;
209 if (bus_token != DOMAIN_BUS_ANY)
210 return alloc_name(domain, fwid->name, bus_token);
213 } else if (is_of_node(fwnode) || is_acpi_device_node(fwnode) || is_software_node(fwnode)) {
214 return alloc_fwnode_name(domain, fwnode, bus_token, info->name_suffix);
221 pr_err("Invalid fwnode type for irqdomain\n");
222 return alloc_unknown_name(domain, bus_token);
225 static struct irq_domain *__irq_domain_create(const struct irq_domain_info *info)
227 struct irq_domain *domain;
230 if (WARN_ON((info->size && info->direct_max) ||
231 (!IS_ENABLED(CONFIG_IRQ_DOMAIN_NOMAP) && info->direct_max) ||
232 (info->direct_max && info->direct_max != info->hwirq_max)))
233 return ERR_PTR(-EINVAL);
235 domain = kzalloc_node(struct_size(domain, revmap, info->size),
236 GFP_KERNEL, of_node_to_nid(to_of_node(info->fwnode)));
238 return ERR_PTR(-ENOMEM);
240 err = irq_domain_set_name(domain, info);
246 domain->fwnode = fwnode_handle_get(info->fwnode);
247 fwnode_dev_initialized(domain->fwnode, true);
250 INIT_RADIX_TREE(&domain->revmap_tree, GFP_KERNEL);
251 domain->ops = info->ops;
252 domain->host_data = info->host_data;
253 domain->bus_token = info->bus_token;
254 domain->hwirq_max = info->hwirq_max;
256 if (info->direct_max)
257 domain->flags |= IRQ_DOMAIN_FLAG_NO_MAP;
259 domain->revmap_size = info->size;
262 * Hierarchical domains use the domain lock of the root domain
263 * (innermost domain).
265 * For non-hierarchical domains (as for root domains), the root
266 * pointer is set to the domain itself so that &domain->root->mutex
267 * always points to the right lock.
269 mutex_init(&domain->mutex);
270 domain->root = domain;
272 irq_domain_check_hierarchy(domain);
277 static void __irq_domain_publish(struct irq_domain *domain)
279 mutex_lock(&irq_domain_mutex);
280 debugfs_add_domain_dir(domain);
281 list_add(&domain->link, &irq_domain_list);
282 mutex_unlock(&irq_domain_mutex);
284 pr_debug("Added domain %s\n", domain->name);
287 static void irq_domain_free(struct irq_domain *domain)
289 fwnode_dev_initialized(domain->fwnode, false);
290 fwnode_handle_put(domain->fwnode);
291 if (domain->flags & IRQ_DOMAIN_NAME_ALLOCATED)
296 static void irq_domain_instantiate_descs(const struct irq_domain_info *info)
298 if (!IS_ENABLED(CONFIG_SPARSE_IRQ))
301 if (irq_alloc_descs(info->virq_base, info->virq_base, info->size,
302 of_node_to_nid(to_of_node(info->fwnode))) < 0) {
303 pr_info("Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n",
308 static struct irq_domain *__irq_domain_instantiate(const struct irq_domain_info *info,
309 bool cond_alloc_descs, bool force_associate)
311 struct irq_domain *domain;
314 domain = __irq_domain_create(info);
318 domain->flags |= info->domain_flags;
319 domain->exit = info->exit;
321 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
323 domain->root = info->parent->root;
324 domain->parent = info->parent;
328 if (info->dgc_info) {
329 err = irq_domain_alloc_generic_chips(domain, info->dgc_info);
331 goto err_domain_free;
335 err = info->init(domain);
337 goto err_domain_gc_remove;
340 __irq_domain_publish(domain);
342 if (cond_alloc_descs && info->virq_base > 0)
343 irq_domain_instantiate_descs(info);
346 * Legacy interrupt domains have a fixed Linux interrupt number
347 * associated. Other interrupt domains can request association by
348 * providing a Linux interrupt number > 0.
350 if (force_associate || info->virq_base > 0) {
351 irq_domain_associate_many(domain, info->virq_base, info->hwirq_base,
352 info->size - info->hwirq_base);
357 err_domain_gc_remove:
359 irq_domain_remove_generic_chips(domain);
361 irq_domain_free(domain);
366 * irq_domain_instantiate() - Instantiate a new irq domain data structure
367 * @info: Domain information pointer pointing to the information for this domain
369 * Return: A pointer to the instantiated irq domain or an ERR_PTR value.
371 struct irq_domain *irq_domain_instantiate(const struct irq_domain_info *info)
373 return __irq_domain_instantiate(info, false, false);
375 EXPORT_SYMBOL_GPL(irq_domain_instantiate);
378 * irq_domain_remove() - Remove an irq domain.
379 * @domain: domain to remove
381 * This routine is used to remove an irq domain. The caller must ensure
382 * that all mappings within the domain have been disposed of prior to
383 * use, depending on the revmap type.
385 void irq_domain_remove(struct irq_domain *domain)
388 domain->exit(domain);
390 mutex_lock(&irq_domain_mutex);
391 debugfs_remove_domain_dir(domain);
393 WARN_ON(!radix_tree_empty(&domain->revmap_tree));
395 list_del(&domain->link);
398 * If the going away domain is the default one, reset it.
400 if (unlikely(irq_default_domain == domain))
401 irq_set_default_domain(NULL);
403 mutex_unlock(&irq_domain_mutex);
405 if (domain->flags & IRQ_DOMAIN_FLAG_DESTROY_GC)
406 irq_domain_remove_generic_chips(domain);
408 pr_debug("Removed domain %s\n", domain->name);
409 irq_domain_free(domain);
411 EXPORT_SYMBOL_GPL(irq_domain_remove);
413 void irq_domain_update_bus_token(struct irq_domain *domain,
414 enum irq_domain_bus_token bus_token)
418 if (domain->bus_token == bus_token)
421 mutex_lock(&irq_domain_mutex);
423 domain->bus_token = bus_token;
425 name = kasprintf(GFP_KERNEL, "%s-%d", domain->name, bus_token);
427 mutex_unlock(&irq_domain_mutex);
431 debugfs_remove_domain_dir(domain);
433 if (domain->flags & IRQ_DOMAIN_NAME_ALLOCATED)
436 domain->flags |= IRQ_DOMAIN_NAME_ALLOCATED;
439 debugfs_add_domain_dir(domain);
441 mutex_unlock(&irq_domain_mutex);
443 EXPORT_SYMBOL_GPL(irq_domain_update_bus_token);
446 * irq_domain_create_simple() - Register an irq_domain and optionally map a range of irqs
447 * @fwnode: firmware node for the interrupt controller
448 * @size: total number of irqs in mapping
449 * @first_irq: first number of irq block assigned to the domain,
450 * pass zero to assign irqs on-the-fly. If first_irq is non-zero, then
451 * pre-map all of the irqs in the domain to virqs starting at first_irq.
452 * @ops: domain callbacks
453 * @host_data: Controller private data pointer
455 * Allocates an irq_domain, and optionally if first_irq is positive then also
456 * allocate irq_descs and map all of the hwirqs to virqs starting at first_irq.
458 * This is intended to implement the expected behaviour for most
459 * interrupt controllers. If device tree is used, then first_irq will be 0 and
460 * irqs get mapped dynamically on the fly. However, if the controller requires
461 * static virq assignments (non-DT boot) then it will set that up correctly.
463 struct irq_domain *irq_domain_create_simple(struct fwnode_handle *fwnode,
465 unsigned int first_irq,
466 const struct irq_domain_ops *ops,
469 struct irq_domain_info info = {
473 .virq_base = first_irq,
475 .host_data = host_data,
477 struct irq_domain *domain = __irq_domain_instantiate(&info, true, false);
479 return IS_ERR(domain) ? NULL : domain;
481 EXPORT_SYMBOL_GPL(irq_domain_create_simple);
483 struct irq_domain *irq_domain_create_legacy(struct fwnode_handle *fwnode,
485 unsigned int first_irq,
486 irq_hw_number_t first_hwirq,
487 const struct irq_domain_ops *ops,
490 struct irq_domain_info info = {
492 .size = first_hwirq + size,
493 .hwirq_max = first_hwirq + size,
494 .hwirq_base = first_hwirq,
495 .virq_base = first_irq,
497 .host_data = host_data,
499 struct irq_domain *domain = __irq_domain_instantiate(&info, false, true);
501 return IS_ERR(domain) ? NULL : domain;
503 EXPORT_SYMBOL_GPL(irq_domain_create_legacy);
506 * irq_find_matching_fwspec() - Locates a domain for a given fwspec
507 * @fwspec: FW specifier for an interrupt
508 * @bus_token: domain-specific data
510 struct irq_domain *irq_find_matching_fwspec(struct irq_fwspec *fwspec,
511 enum irq_domain_bus_token bus_token)
513 struct irq_domain *h, *found = NULL;
514 struct fwnode_handle *fwnode = fwspec->fwnode;
518 * We might want to match the legacy controller last since
519 * it might potentially be set to match all interrupts in
520 * the absence of a device node. This isn't a problem so far
523 * bus_token == DOMAIN_BUS_ANY matches any domain, any other
524 * values must generate an exact match for the domain to be
527 mutex_lock(&irq_domain_mutex);
528 list_for_each_entry(h, &irq_domain_list, link) {
529 if (h->ops->select && bus_token != DOMAIN_BUS_ANY)
530 rc = h->ops->select(h, fwspec, bus_token);
531 else if (h->ops->match)
532 rc = h->ops->match(h, to_of_node(fwnode), bus_token);
534 rc = ((fwnode != NULL) && (h->fwnode == fwnode) &&
535 ((bus_token == DOMAIN_BUS_ANY) ||
536 (h->bus_token == bus_token)));
543 mutex_unlock(&irq_domain_mutex);
546 EXPORT_SYMBOL_GPL(irq_find_matching_fwspec);
549 * irq_set_default_domain() - Set a "default" irq domain
550 * @domain: default domain pointer
552 * For convenience, it's possible to set a "default" domain that will be used
553 * whenever NULL is passed to irq_create_mapping(). It makes life easier for
554 * platforms that want to manipulate a few hard coded interrupt numbers that
555 * aren't properly represented in the device-tree.
557 void irq_set_default_domain(struct irq_domain *domain)
559 pr_debug("Default domain set to @0x%p\n", domain);
561 irq_default_domain = domain;
563 EXPORT_SYMBOL_GPL(irq_set_default_domain);
566 * irq_get_default_domain() - Retrieve the "default" irq domain
568 * Returns: the default domain, if any.
570 * Modern code should never use this. This should only be used on
571 * systems that cannot implement a firmware->fwnode mapping (which
572 * both DT and ACPI provide).
574 struct irq_domain *irq_get_default_domain(void)
576 return irq_default_domain;
578 EXPORT_SYMBOL_GPL(irq_get_default_domain);
580 static bool irq_domain_is_nomap(struct irq_domain *domain)
582 return IS_ENABLED(CONFIG_IRQ_DOMAIN_NOMAP) &&
583 (domain->flags & IRQ_DOMAIN_FLAG_NO_MAP);
586 static void irq_domain_clear_mapping(struct irq_domain *domain,
587 irq_hw_number_t hwirq)
589 lockdep_assert_held(&domain->root->mutex);
591 if (irq_domain_is_nomap(domain))
594 if (hwirq < domain->revmap_size)
595 rcu_assign_pointer(domain->revmap[hwirq], NULL);
597 radix_tree_delete(&domain->revmap_tree, hwirq);
600 static void irq_domain_set_mapping(struct irq_domain *domain,
601 irq_hw_number_t hwirq,
602 struct irq_data *irq_data)
605 * This also makes sure that all domains point to the same root when
606 * called from irq_domain_insert_irq() for each domain in a hierarchy.
608 lockdep_assert_held(&domain->root->mutex);
610 if (irq_domain_is_nomap(domain))
613 if (hwirq < domain->revmap_size)
614 rcu_assign_pointer(domain->revmap[hwirq], irq_data);
616 radix_tree_insert(&domain->revmap_tree, hwirq, irq_data);
619 static void irq_domain_disassociate(struct irq_domain *domain, unsigned int irq)
621 struct irq_data *irq_data = irq_get_irq_data(irq);
622 irq_hw_number_t hwirq;
624 if (WARN(!irq_data || irq_data->domain != domain,
625 "virq%i doesn't exist; cannot disassociate\n", irq))
628 hwirq = irq_data->hwirq;
630 mutex_lock(&domain->root->mutex);
632 irq_set_status_flags(irq, IRQ_NOREQUEST);
634 /* remove chip and handler */
635 irq_set_chip_and_handler(irq, NULL, NULL);
637 /* Make sure it's completed */
638 synchronize_irq(irq);
640 /* Tell the PIC about it */
641 if (domain->ops->unmap)
642 domain->ops->unmap(domain, irq);
645 irq_data->domain = NULL;
649 /* Clear reverse map for this hwirq */
650 irq_domain_clear_mapping(domain, hwirq);
652 mutex_unlock(&domain->root->mutex);
655 static int irq_domain_associate_locked(struct irq_domain *domain, unsigned int virq,
656 irq_hw_number_t hwirq)
658 struct irq_data *irq_data = irq_get_irq_data(virq);
661 if (WARN(hwirq >= domain->hwirq_max,
662 "error: hwirq 0x%x is too large for %s\n", (int)hwirq, domain->name))
664 if (WARN(!irq_data, "error: virq%i is not allocated", virq))
666 if (WARN(irq_data->domain, "error: virq%i is already associated", virq))
669 irq_data->hwirq = hwirq;
670 irq_data->domain = domain;
671 if (domain->ops->map) {
672 ret = domain->ops->map(domain, virq, hwirq);
675 * If map() returns -EPERM, this interrupt is protected
676 * by the firmware or some other service and shall not
677 * be mapped. Don't bother telling the user about it.
680 pr_info("%s didn't like hwirq-0x%lx to VIRQ%i mapping (rc=%d)\n",
681 domain->name, hwirq, virq, ret);
683 irq_data->domain = NULL;
690 irq_domain_set_mapping(domain, hwirq, irq_data);
692 irq_clear_status_flags(virq, IRQ_NOREQUEST);
697 int irq_domain_associate(struct irq_domain *domain, unsigned int virq,
698 irq_hw_number_t hwirq)
702 mutex_lock(&domain->root->mutex);
703 ret = irq_domain_associate_locked(domain, virq, hwirq);
704 mutex_unlock(&domain->root->mutex);
708 EXPORT_SYMBOL_GPL(irq_domain_associate);
710 void irq_domain_associate_many(struct irq_domain *domain, unsigned int irq_base,
711 irq_hw_number_t hwirq_base, int count)
713 struct device_node *of_node;
716 of_node = irq_domain_get_of_node(domain);
717 pr_debug("%s(%s, irqbase=%i, hwbase=%i, count=%i)\n", __func__,
718 of_node_full_name(of_node), irq_base, (int)hwirq_base, count);
720 for (i = 0; i < count; i++)
721 irq_domain_associate(domain, irq_base + i, hwirq_base + i);
723 EXPORT_SYMBOL_GPL(irq_domain_associate_many);
725 #ifdef CONFIG_IRQ_DOMAIN_NOMAP
727 * irq_create_direct_mapping() - Allocate an irq for direct mapping
728 * @domain: domain to allocate the irq for or NULL for default domain
730 * This routine is used for irq controllers which can choose the hardware
731 * interrupt numbers they generate. In such a case it's simplest to use
732 * the linux irq as the hardware interrupt number. It still uses the linear
733 * or radix tree to store the mapping, but the irq controller can optimize
734 * the revmap path by using the hwirq directly.
736 unsigned int irq_create_direct_mapping(struct irq_domain *domain)
738 struct device_node *of_node;
742 domain = irq_default_domain;
744 of_node = irq_domain_get_of_node(domain);
745 virq = irq_alloc_desc_from(1, of_node_to_nid(of_node));
747 pr_debug("create_direct virq allocation failed\n");
750 if (virq >= domain->hwirq_max) {
751 pr_err("ERROR: no free irqs available below %lu maximum\n",
756 pr_debug("create_direct obtained virq %d\n", virq);
758 if (irq_domain_associate(domain, virq, virq)) {
765 EXPORT_SYMBOL_GPL(irq_create_direct_mapping);
768 static unsigned int irq_create_mapping_affinity_locked(struct irq_domain *domain,
769 irq_hw_number_t hwirq,
770 const struct irq_affinity_desc *affinity)
772 struct device_node *of_node = irq_domain_get_of_node(domain);
775 pr_debug("irq_create_mapping(0x%p, 0x%lx)\n", domain, hwirq);
777 /* Allocate a virtual interrupt number */
778 virq = irq_domain_alloc_descs(-1, 1, hwirq, of_node_to_nid(of_node),
781 pr_debug("-> virq allocation failed\n");
785 if (irq_domain_associate_locked(domain, virq, hwirq)) {
790 pr_debug("irq %lu on domain %s mapped to virtual irq %u\n",
791 hwirq, of_node_full_name(of_node), virq);
797 * irq_create_mapping_affinity() - Map a hardware interrupt into linux irq space
798 * @domain: domain owning this hardware interrupt or NULL for default domain
799 * @hwirq: hardware irq number in that domain space
800 * @affinity: irq affinity
802 * Only one mapping per hardware interrupt is permitted. Returns a linux
804 * If the sense/trigger is to be specified, set_irq_type() should be called
805 * on the number returned from that call.
807 unsigned int irq_create_mapping_affinity(struct irq_domain *domain,
808 irq_hw_number_t hwirq,
809 const struct irq_affinity_desc *affinity)
813 /* Look for default domain if necessary */
815 domain = irq_default_domain;
816 if (domain == NULL) {
817 WARN(1, "%s(, %lx) called with NULL domain\n", __func__, hwirq);
821 mutex_lock(&domain->root->mutex);
823 /* Check if mapping already exists */
824 virq = irq_find_mapping(domain, hwirq);
826 pr_debug("existing mapping on virq %d\n", virq);
830 virq = irq_create_mapping_affinity_locked(domain, hwirq, affinity);
832 mutex_unlock(&domain->root->mutex);
836 EXPORT_SYMBOL_GPL(irq_create_mapping_affinity);
838 static int irq_domain_translate(struct irq_domain *d,
839 struct irq_fwspec *fwspec,
840 irq_hw_number_t *hwirq, unsigned int *type)
842 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
843 if (d->ops->translate)
844 return d->ops->translate(d, fwspec, hwirq, type);
847 return d->ops->xlate(d, to_of_node(fwspec->fwnode),
848 fwspec->param, fwspec->param_count,
851 /* If domain has no translation, then we assume interrupt line */
852 *hwirq = fwspec->param[0];
856 void of_phandle_args_to_fwspec(struct device_node *np, const u32 *args,
857 unsigned int count, struct irq_fwspec *fwspec)
861 fwspec->fwnode = of_fwnode_handle(np);
862 fwspec->param_count = count;
864 for (i = 0; i < count; i++)
865 fwspec->param[i] = args[i];
867 EXPORT_SYMBOL_GPL(of_phandle_args_to_fwspec);
869 unsigned int irq_create_fwspec_mapping(struct irq_fwspec *fwspec)
871 struct irq_domain *domain;
872 struct irq_data *irq_data;
873 irq_hw_number_t hwirq;
874 unsigned int type = IRQ_TYPE_NONE;
877 if (fwspec->fwnode) {
878 domain = irq_find_matching_fwspec(fwspec, DOMAIN_BUS_WIRED);
880 domain = irq_find_matching_fwspec(fwspec, DOMAIN_BUS_ANY);
882 domain = irq_default_domain;
886 pr_warn("no irq domain found for %s !\n",
887 of_node_full_name(to_of_node(fwspec->fwnode)));
891 if (irq_domain_translate(domain, fwspec, &hwirq, &type))
895 * WARN if the irqchip returns a type with bits
896 * outside the sense mask set and clear these bits.
898 if (WARN_ON(type & ~IRQ_TYPE_SENSE_MASK))
899 type &= IRQ_TYPE_SENSE_MASK;
901 mutex_lock(&domain->root->mutex);
904 * If we've already configured this interrupt,
905 * don't do it again, or hell will break loose.
907 virq = irq_find_mapping(domain, hwirq);
910 * If the trigger type is not specified or matches the
911 * current trigger type then we are done so return the
914 if (type == IRQ_TYPE_NONE || type == irq_get_trigger_type(virq))
918 * If the trigger type has not been set yet, then set
919 * it now and return the interrupt number.
921 if (irq_get_trigger_type(virq) == IRQ_TYPE_NONE) {
922 irq_data = irq_get_irq_data(virq);
928 irqd_set_trigger_type(irq_data, type);
932 pr_warn("type mismatch, failed to map hwirq-%lu for %s!\n",
933 hwirq, of_node_full_name(to_of_node(fwspec->fwnode)));
938 if (irq_domain_is_hierarchy(domain)) {
939 if (irq_domain_is_msi_device(domain)) {
940 mutex_unlock(&domain->root->mutex);
941 virq = msi_device_domain_alloc_wired(domain, hwirq, type);
942 mutex_lock(&domain->root->mutex);
944 virq = irq_domain_alloc_irqs_locked(domain, -1, 1, NUMA_NO_NODE,
945 fwspec, false, NULL);
952 virq = irq_create_mapping_affinity_locked(domain, hwirq, NULL);
957 irq_data = irq_get_irq_data(virq);
958 if (WARN_ON(!irq_data)) {
963 /* Store trigger type */
964 irqd_set_trigger_type(irq_data, type);
966 mutex_unlock(&domain->root->mutex);
970 EXPORT_SYMBOL_GPL(irq_create_fwspec_mapping);
972 unsigned int irq_create_of_mapping(struct of_phandle_args *irq_data)
974 struct irq_fwspec fwspec;
976 of_phandle_args_to_fwspec(irq_data->np, irq_data->args,
977 irq_data->args_count, &fwspec);
979 return irq_create_fwspec_mapping(&fwspec);
981 EXPORT_SYMBOL_GPL(irq_create_of_mapping);
984 * irq_dispose_mapping() - Unmap an interrupt
985 * @virq: linux irq number of the interrupt to unmap
987 void irq_dispose_mapping(unsigned int virq)
989 struct irq_data *irq_data;
990 struct irq_domain *domain;
992 irq_data = virq ? irq_get_irq_data(virq) : NULL;
996 domain = irq_data->domain;
997 if (WARN_ON(domain == NULL))
1000 if (irq_domain_is_hierarchy(domain)) {
1001 irq_domain_free_one_irq(domain, virq);
1003 irq_domain_disassociate(domain, virq);
1004 irq_free_desc(virq);
1007 EXPORT_SYMBOL_GPL(irq_dispose_mapping);
1010 * __irq_resolve_mapping() - Find a linux irq from a hw irq number.
1011 * @domain: domain owning this hardware interrupt
1012 * @hwirq: hardware irq number in that domain space
1013 * @irq: optional pointer to return the Linux irq if required
1015 * Returns the interrupt descriptor.
1017 struct irq_desc *__irq_resolve_mapping(struct irq_domain *domain,
1018 irq_hw_number_t hwirq,
1021 struct irq_desc *desc = NULL;
1022 struct irq_data *data;
1024 /* Look for default domain if necessary */
1026 domain = irq_default_domain;
1030 if (irq_domain_is_nomap(domain)) {
1031 if (hwirq < domain->hwirq_max) {
1032 data = irq_domain_get_irq_data(domain, hwirq);
1033 if (data && data->hwirq == hwirq)
1034 desc = irq_data_to_desc(data);
1043 /* Check if the hwirq is in the linear revmap. */
1044 if (hwirq < domain->revmap_size)
1045 data = rcu_dereference(domain->revmap[hwirq]);
1047 data = radix_tree_lookup(&domain->revmap_tree, hwirq);
1050 desc = irq_data_to_desc(data);
1058 EXPORT_SYMBOL_GPL(__irq_resolve_mapping);
1061 * irq_domain_xlate_onecell() - Generic xlate for direct one cell bindings
1062 * @d: Interrupt domain involved in the translation
1063 * @ctrlr: The device tree node for the device whose interrupt is translated
1064 * @intspec: The interrupt specifier data from the device tree
1065 * @intsize: The number of entries in @intspec
1066 * @out_hwirq: Pointer to storage for the hardware interrupt number
1067 * @out_type: Pointer to storage for the interrupt type
1069 * Device Tree IRQ specifier translation function which works with one cell
1070 * bindings where the cell value maps directly to the hwirq number.
1072 int irq_domain_xlate_onecell(struct irq_domain *d, struct device_node *ctrlr,
1073 const u32 *intspec, unsigned int intsize,
1074 unsigned long *out_hwirq, unsigned int *out_type)
1076 if (WARN_ON(intsize < 1))
1078 *out_hwirq = intspec[0];
1079 *out_type = IRQ_TYPE_NONE;
1082 EXPORT_SYMBOL_GPL(irq_domain_xlate_onecell);
1085 * irq_domain_xlate_twocell() - Generic xlate for direct two cell bindings
1086 * @d: Interrupt domain involved in the translation
1087 * @ctrlr: The device tree node for the device whose interrupt is translated
1088 * @intspec: The interrupt specifier data from the device tree
1089 * @intsize: The number of entries in @intspec
1090 * @out_hwirq: Pointer to storage for the hardware interrupt number
1091 * @out_type: Pointer to storage for the interrupt type
1093 * Device Tree IRQ specifier translation function which works with two cell
1094 * bindings where the cell values map directly to the hwirq number
1095 * and linux irq flags.
1097 int irq_domain_xlate_twocell(struct irq_domain *d, struct device_node *ctrlr,
1098 const u32 *intspec, unsigned int intsize,
1099 irq_hw_number_t *out_hwirq, unsigned int *out_type)
1101 struct irq_fwspec fwspec;
1103 of_phandle_args_to_fwspec(ctrlr, intspec, intsize, &fwspec);
1104 return irq_domain_translate_twocell(d, &fwspec, out_hwirq, out_type);
1106 EXPORT_SYMBOL_GPL(irq_domain_xlate_twocell);
1109 * irq_domain_xlate_twothreecell() - Generic xlate for direct two or three cell bindings
1110 * @d: Interrupt domain involved in the translation
1111 * @ctrlr: The device tree node for the device whose interrupt is translated
1112 * @intspec: The interrupt specifier data from the device tree
1113 * @intsize: The number of entries in @intspec
1114 * @out_hwirq: Pointer to storage for the hardware interrupt number
1115 * @out_type: Pointer to storage for the interrupt type
1117 * Device Tree interrupt specifier translation function for two or three
1118 * cell bindings, where the cell values map directly to the hardware
1119 * interrupt number and the type specifier.
1121 int irq_domain_xlate_twothreecell(struct irq_domain *d, struct device_node *ctrlr,
1122 const u32 *intspec, unsigned int intsize,
1123 irq_hw_number_t *out_hwirq, unsigned int *out_type)
1125 struct irq_fwspec fwspec;
1127 of_phandle_args_to_fwspec(ctrlr, intspec, intsize, &fwspec);
1129 return irq_domain_translate_twothreecell(d, &fwspec, out_hwirq, out_type);
1131 EXPORT_SYMBOL_GPL(irq_domain_xlate_twothreecell);
1134 * irq_domain_xlate_onetwocell() - Generic xlate for one or two cell bindings
1135 * @d: Interrupt domain involved in the translation
1136 * @ctrlr: The device tree node for the device whose interrupt is translated
1137 * @intspec: The interrupt specifier data from the device tree
1138 * @intsize: The number of entries in @intspec
1139 * @out_hwirq: Pointer to storage for the hardware interrupt number
1140 * @out_type: Pointer to storage for the interrupt type
1142 * Device Tree IRQ specifier translation function which works with either one
1143 * or two cell bindings where the cell values map directly to the hwirq number
1144 * and linux irq flags.
1146 * Note: don't use this function unless your interrupt controller explicitly
1147 * supports both one and two cell bindings. For the majority of controllers
1148 * the _onecell() or _twocell() variants above should be used.
1150 int irq_domain_xlate_onetwocell(struct irq_domain *d,
1151 struct device_node *ctrlr,
1152 const u32 *intspec, unsigned int intsize,
1153 unsigned long *out_hwirq, unsigned int *out_type)
1155 if (WARN_ON(intsize < 1))
1157 *out_hwirq = intspec[0];
1159 *out_type = intspec[1] & IRQ_TYPE_SENSE_MASK;
1161 *out_type = IRQ_TYPE_NONE;
1164 EXPORT_SYMBOL_GPL(irq_domain_xlate_onetwocell);
1166 const struct irq_domain_ops irq_domain_simple_ops = {
1167 .xlate = irq_domain_xlate_onetwocell,
1169 EXPORT_SYMBOL_GPL(irq_domain_simple_ops);
1172 * irq_domain_translate_onecell() - Generic translate for direct one cell
1174 * @d: Interrupt domain involved in the translation
1175 * @fwspec: The firmware interrupt specifier to translate
1176 * @out_hwirq: Pointer to storage for the hardware interrupt number
1177 * @out_type: Pointer to storage for the interrupt type
1179 int irq_domain_translate_onecell(struct irq_domain *d,
1180 struct irq_fwspec *fwspec,
1181 unsigned long *out_hwirq,
1182 unsigned int *out_type)
1184 if (WARN_ON(fwspec->param_count < 1))
1186 *out_hwirq = fwspec->param[0];
1187 *out_type = IRQ_TYPE_NONE;
1190 EXPORT_SYMBOL_GPL(irq_domain_translate_onecell);
1193 * irq_domain_translate_twocell() - Generic translate for direct two cell
1195 * @d: Interrupt domain involved in the translation
1196 * @fwspec: The firmware interrupt specifier to translate
1197 * @out_hwirq: Pointer to storage for the hardware interrupt number
1198 * @out_type: Pointer to storage for the interrupt type
1200 * Device Tree IRQ specifier translation function which works with two cell
1201 * bindings where the cell values map directly to the hwirq number
1202 * and linux irq flags.
1204 int irq_domain_translate_twocell(struct irq_domain *d,
1205 struct irq_fwspec *fwspec,
1206 unsigned long *out_hwirq,
1207 unsigned int *out_type)
1209 if (WARN_ON(fwspec->param_count < 2))
1211 *out_hwirq = fwspec->param[0];
1212 *out_type = fwspec->param[1] & IRQ_TYPE_SENSE_MASK;
1215 EXPORT_SYMBOL_GPL(irq_domain_translate_twocell);
1218 * irq_domain_translate_twothreecell() - Generic translate for direct two or three cell
1220 * @d: Interrupt domain involved in the translation
1221 * @fwspec: The firmware interrupt specifier to translate
1222 * @out_hwirq: Pointer to storage for the hardware interrupt number
1223 * @out_type: Pointer to storage for the interrupt type
1225 * Firmware interrupt specifier translation function for two or three cell
1226 * specifications, where the parameter values map directly to the hardware
1227 * interrupt number and the type specifier.
1229 int irq_domain_translate_twothreecell(struct irq_domain *d, struct irq_fwspec *fwspec,
1230 unsigned long *out_hwirq, unsigned int *out_type)
1232 if (fwspec->param_count == 2) {
1233 *out_hwirq = fwspec->param[0];
1234 *out_type = fwspec->param[1] & IRQ_TYPE_SENSE_MASK;
1238 if (fwspec->param_count == 3) {
1239 *out_hwirq = fwspec->param[1];
1240 *out_type = fwspec->param[2] & IRQ_TYPE_SENSE_MASK;
1246 EXPORT_SYMBOL_GPL(irq_domain_translate_twothreecell);
1248 int irq_domain_alloc_descs(int virq, unsigned int cnt, irq_hw_number_t hwirq,
1249 int node, const struct irq_affinity_desc *affinity)
1254 virq = __irq_alloc_descs(virq, virq, cnt, node, THIS_MODULE,
1257 hint = hwirq % irq_get_nr_irqs();
1260 virq = __irq_alloc_descs(-1, hint, cnt, node, THIS_MODULE,
1262 if (virq <= 0 && hint > 1) {
1263 virq = __irq_alloc_descs(-1, 1, cnt, node, THIS_MODULE,
1272 * irq_domain_reset_irq_data - Clear hwirq, chip and chip_data in @irq_data
1273 * @irq_data: The pointer to irq_data
1275 void irq_domain_reset_irq_data(struct irq_data *irq_data)
1277 irq_data->hwirq = 0;
1278 irq_data->chip = &no_irq_chip;
1279 irq_data->chip_data = NULL;
1281 EXPORT_SYMBOL_GPL(irq_domain_reset_irq_data);
1283 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
1284 static void irq_domain_insert_irq(int virq)
1286 struct irq_data *data;
1288 for (data = irq_get_irq_data(virq); data; data = data->parent_data) {
1289 struct irq_domain *domain = data->domain;
1292 irq_domain_set_mapping(domain, data->hwirq, data);
1295 irq_clear_status_flags(virq, IRQ_NOREQUEST);
1298 static void irq_domain_remove_irq(int virq)
1300 struct irq_data *data;
1302 irq_set_status_flags(virq, IRQ_NOREQUEST);
1303 irq_set_chip_and_handler(virq, NULL, NULL);
1304 synchronize_irq(virq);
1307 for (data = irq_get_irq_data(virq); data; data = data->parent_data) {
1308 struct irq_domain *domain = data->domain;
1309 irq_hw_number_t hwirq = data->hwirq;
1312 irq_domain_clear_mapping(domain, hwirq);
1316 static struct irq_data *irq_domain_insert_irq_data(struct irq_domain *domain,
1317 struct irq_data *child)
1319 struct irq_data *irq_data;
1321 irq_data = kzalloc_node(sizeof(*irq_data), GFP_KERNEL,
1322 irq_data_get_node(child));
1324 child->parent_data = irq_data;
1325 irq_data->irq = child->irq;
1326 irq_data->common = child->common;
1327 irq_data->domain = domain;
1333 static void __irq_domain_free_hierarchy(struct irq_data *irq_data)
1335 struct irq_data *tmp;
1339 irq_data = irq_data->parent_data;
1344 static void irq_domain_free_irq_data(unsigned int virq, unsigned int nr_irqs)
1346 struct irq_data *irq_data, *tmp;
1349 for (i = 0; i < nr_irqs; i++) {
1350 irq_data = irq_get_irq_data(virq + i);
1351 tmp = irq_data->parent_data;
1352 irq_data->parent_data = NULL;
1353 irq_data->domain = NULL;
1355 __irq_domain_free_hierarchy(tmp);
1360 * irq_domain_disconnect_hierarchy - Mark the first unused level of a hierarchy
1361 * @domain: IRQ domain from which the hierarchy is to be disconnected
1362 * @virq: IRQ number where the hierarchy is to be trimmed
1364 * Marks the @virq level belonging to @domain as disconnected.
1365 * Returns -EINVAL if @virq doesn't have a valid irq_data pointing
1368 * Its only use is to be able to trim levels of hierarchy that do not
1369 * have any real meaning for this interrupt, and that the driver marks
1370 * as such from its .alloc() callback.
1372 int irq_domain_disconnect_hierarchy(struct irq_domain *domain,
1375 struct irq_data *irqd;
1377 irqd = irq_domain_get_irq_data(domain, virq);
1381 irqd->chip = ERR_PTR(-ENOTCONN);
1384 EXPORT_SYMBOL_GPL(irq_domain_disconnect_hierarchy);
1386 static int irq_domain_trim_hierarchy(unsigned int virq)
1388 struct irq_data *tail, *irqd, *irq_data;
1390 irq_data = irq_get_irq_data(virq);
1393 /* The first entry must have a valid irqchip */
1394 if (IS_ERR_OR_NULL(irq_data->chip))
1398 * Validate that the irq_data chain is sane in the presence of
1399 * a hierarchy trimming marker.
1401 for (irqd = irq_data->parent_data; irqd; irq_data = irqd, irqd = irqd->parent_data) {
1402 /* Can't have a valid irqchip after a trim marker */
1403 if (irqd->chip && tail)
1406 /* Can't have an empty irqchip before a trim marker */
1407 if (!irqd->chip && !tail)
1410 if (IS_ERR(irqd->chip)) {
1411 /* Only -ENOTCONN is a valid trim marker */
1412 if (PTR_ERR(irqd->chip) != -ENOTCONN)
1419 /* No trim marker, nothing to do */
1423 pr_info("IRQ%d: trimming hierarchy from %s\n",
1424 virq, tail->parent_data->domain->name);
1426 /* Sever the inner part of the hierarchy... */
1428 tail = tail->parent_data;
1429 irqd->parent_data = NULL;
1430 __irq_domain_free_hierarchy(tail);
1435 static int irq_domain_alloc_irq_data(struct irq_domain *domain,
1436 unsigned int virq, unsigned int nr_irqs)
1438 struct irq_data *irq_data;
1439 struct irq_domain *parent;
1442 /* The outermost irq_data is embedded in struct irq_desc */
1443 for (i = 0; i < nr_irqs; i++) {
1444 irq_data = irq_get_irq_data(virq + i);
1445 irq_data->domain = domain;
1447 for (parent = domain->parent; parent; parent = parent->parent) {
1448 irq_data = irq_domain_insert_irq_data(parent, irq_data);
1450 irq_domain_free_irq_data(virq, i + 1);
1460 * irq_domain_get_irq_data - Get irq_data associated with @virq and @domain
1461 * @domain: domain to match
1462 * @virq: IRQ number to get irq_data
1464 struct irq_data *irq_domain_get_irq_data(struct irq_domain *domain,
1467 struct irq_data *irq_data;
1469 for (irq_data = irq_get_irq_data(virq); irq_data;
1470 irq_data = irq_data->parent_data)
1471 if (irq_data->domain == domain)
1476 EXPORT_SYMBOL_GPL(irq_domain_get_irq_data);
1479 * irq_domain_set_hwirq_and_chip - Set hwirq and irqchip of @virq at @domain
1480 * @domain: Interrupt domain to match
1482 * @hwirq: The hwirq number
1483 * @chip: The associated interrupt chip
1484 * @chip_data: The associated chip data
1486 int irq_domain_set_hwirq_and_chip(struct irq_domain *domain, unsigned int virq,
1487 irq_hw_number_t hwirq,
1488 const struct irq_chip *chip,
1491 struct irq_data *irq_data = irq_domain_get_irq_data(domain, virq);
1496 irq_data->hwirq = hwirq;
1497 irq_data->chip = (struct irq_chip *)(chip ? chip : &no_irq_chip);
1498 irq_data->chip_data = chip_data;
1502 EXPORT_SYMBOL_GPL(irq_domain_set_hwirq_and_chip);
1505 * irq_domain_set_info - Set the complete data for a @virq in @domain
1506 * @domain: Interrupt domain to match
1508 * @hwirq: The hardware interrupt number
1509 * @chip: The associated interrupt chip
1510 * @chip_data: The associated interrupt chip data
1511 * @handler: The interrupt flow handler
1512 * @handler_data: The interrupt flow handler data
1513 * @handler_name: The interrupt handler name
1515 void irq_domain_set_info(struct irq_domain *domain, unsigned int virq,
1516 irq_hw_number_t hwirq, const struct irq_chip *chip,
1517 void *chip_data, irq_flow_handler_t handler,
1518 void *handler_data, const char *handler_name)
1520 irq_domain_set_hwirq_and_chip(domain, virq, hwirq, chip, chip_data);
1521 __irq_set_handler(virq, handler, 0, handler_name);
1522 irq_set_handler_data(virq, handler_data);
1524 EXPORT_SYMBOL(irq_domain_set_info);
1527 * irq_domain_free_irqs_common - Clear irq_data and free the parent
1528 * @domain: Interrupt domain to match
1529 * @virq: IRQ number to start with
1530 * @nr_irqs: The number of irqs to free
1532 void irq_domain_free_irqs_common(struct irq_domain *domain, unsigned int virq,
1533 unsigned int nr_irqs)
1535 struct irq_data *irq_data;
1538 for (i = 0; i < nr_irqs; i++) {
1539 irq_data = irq_domain_get_irq_data(domain, virq + i);
1541 irq_domain_reset_irq_data(irq_data);
1543 irq_domain_free_irqs_parent(domain, virq, nr_irqs);
1545 EXPORT_SYMBOL_GPL(irq_domain_free_irqs_common);
1548 * irq_domain_free_irqs_top - Clear handler and handler data, clear irqdata and free parent
1549 * @domain: Interrupt domain to match
1550 * @virq: IRQ number to start with
1551 * @nr_irqs: The number of irqs to free
1553 void irq_domain_free_irqs_top(struct irq_domain *domain, unsigned int virq,
1554 unsigned int nr_irqs)
1558 for (i = 0; i < nr_irqs; i++) {
1559 irq_set_handler_data(virq + i, NULL);
1560 irq_set_handler(virq + i, NULL);
1562 irq_domain_free_irqs_common(domain, virq, nr_irqs);
1565 static void irq_domain_free_irqs_hierarchy(struct irq_domain *domain,
1566 unsigned int irq_base,
1567 unsigned int nr_irqs)
1571 if (!domain->ops->free)
1574 for (i = 0; i < nr_irqs; i++) {
1575 if (irq_domain_get_irq_data(domain, irq_base + i))
1576 domain->ops->free(domain, irq_base + i, 1);
1580 static int irq_domain_alloc_irqs_hierarchy(struct irq_domain *domain, unsigned int irq_base,
1581 unsigned int nr_irqs, void *arg)
1583 if (!domain->ops->alloc) {
1584 pr_debug("domain->ops->alloc() is NULL\n");
1588 return domain->ops->alloc(domain, irq_base, nr_irqs, arg);
1591 static int irq_domain_alloc_irqs_locked(struct irq_domain *domain, int irq_base,
1592 unsigned int nr_irqs, int node, void *arg,
1593 bool realloc, const struct irq_affinity_desc *affinity)
1597 if (realloc && irq_base >= 0) {
1600 virq = irq_domain_alloc_descs(irq_base, nr_irqs, 0, node,
1603 pr_debug("cannot allocate IRQ(base %d, count %d)\n",
1609 if (irq_domain_alloc_irq_data(domain, virq, nr_irqs)) {
1610 pr_debug("cannot allocate memory for IRQ%d\n", virq);
1615 ret = irq_domain_alloc_irqs_hierarchy(domain, virq, nr_irqs, arg);
1617 goto out_free_irq_data;
1619 for (i = 0; i < nr_irqs; i++) {
1620 ret = irq_domain_trim_hierarchy(virq + i);
1622 goto out_free_irq_data;
1625 for (i = 0; i < nr_irqs; i++)
1626 irq_domain_insert_irq(virq + i);
1631 irq_domain_free_irq_data(virq, nr_irqs);
1633 irq_free_descs(virq, nr_irqs);
1638 * __irq_domain_alloc_irqs - Allocate IRQs from domain
1639 * @domain: domain to allocate from
1640 * @irq_base: allocate specified IRQ number if irq_base >= 0
1641 * @nr_irqs: number of IRQs to allocate
1642 * @node: NUMA node id for memory allocation
1643 * @arg: domain specific argument
1644 * @realloc: IRQ descriptors have already been allocated if true
1645 * @affinity: Optional irq affinity mask for multiqueue devices
1647 * Allocate IRQ numbers and initialized all data structures to support
1648 * hierarchy IRQ domains.
1649 * Parameter @realloc is mainly to support legacy IRQs.
1650 * Returns error code or allocated IRQ number
1652 * The whole process to setup an IRQ has been split into two steps.
1653 * The first step, __irq_domain_alloc_irqs(), is to allocate IRQ
1654 * descriptor and required hardware resources. The second step,
1655 * irq_domain_activate_irq(), is to program the hardware with preallocated
1656 * resources. In this way, it's easier to rollback when failing to
1657 * allocate resources.
1659 int __irq_domain_alloc_irqs(struct irq_domain *domain, int irq_base,
1660 unsigned int nr_irqs, int node, void *arg,
1661 bool realloc, const struct irq_affinity_desc *affinity)
1665 if (domain == NULL) {
1666 domain = irq_default_domain;
1667 if (WARN(!domain, "domain is NULL; cannot allocate IRQ\n"))
1671 mutex_lock(&domain->root->mutex);
1672 ret = irq_domain_alloc_irqs_locked(domain, irq_base, nr_irqs, node, arg,
1674 mutex_unlock(&domain->root->mutex);
1678 EXPORT_SYMBOL_GPL(__irq_domain_alloc_irqs);
1680 /* The irq_data was moved, fix the revmap to refer to the new location */
1681 static void irq_domain_fix_revmap(struct irq_data *d)
1685 lockdep_assert_held(&d->domain->root->mutex);
1687 if (irq_domain_is_nomap(d->domain))
1690 /* Fix up the revmap. */
1691 if (d->hwirq < d->domain->revmap_size) {
1692 /* Not using radix tree */
1693 rcu_assign_pointer(d->domain->revmap[d->hwirq], d);
1695 slot = radix_tree_lookup_slot(&d->domain->revmap_tree, d->hwirq);
1697 radix_tree_replace_slot(&d->domain->revmap_tree, slot, d);
1702 * irq_domain_push_irq() - Push a domain in to the top of a hierarchy.
1703 * @domain: Domain to push.
1704 * @virq: Irq to push the domain in to.
1705 * @arg: Passed to the irq_domain_ops alloc() function.
1707 * For an already existing irqdomain hierarchy, as might be obtained
1708 * via a call to pci_enable_msix(), add an additional domain to the
1709 * head of the processing chain. Must be called before request_irq()
1712 int irq_domain_push_irq(struct irq_domain *domain, int virq, void *arg)
1714 struct irq_data *irq_data = irq_get_irq_data(virq);
1715 struct irq_data *parent_irq_data;
1716 struct irq_desc *desc;
1720 * Check that no action has been set, which indicates the virq
1721 * is in a state where this function doesn't have to deal with
1722 * races between interrupt handling and maintaining the
1723 * hierarchy. This will catch gross misuse. Attempting to
1724 * make the check race free would require holding locks across
1725 * calls to struct irq_domain_ops->alloc(), which could lead
1726 * to deadlock, so we just do a simple check before starting.
1728 desc = irq_to_desc(virq);
1731 if (WARN_ON(desc->action))
1737 if (WARN_ON(!irq_domain_is_hierarchy(domain)))
1743 if (domain->parent != irq_data->domain)
1746 parent_irq_data = kzalloc_node(sizeof(*parent_irq_data), GFP_KERNEL,
1747 irq_data_get_node(irq_data));
1748 if (!parent_irq_data)
1751 mutex_lock(&domain->root->mutex);
1753 /* Copy the original irq_data. */
1754 *parent_irq_data = *irq_data;
1757 * Overwrite the irq_data, which is embedded in struct irq_desc, with
1758 * values for this domain.
1760 irq_data->parent_data = parent_irq_data;
1761 irq_data->domain = domain;
1763 irq_data->hwirq = 0;
1764 irq_data->chip = NULL;
1765 irq_data->chip_data = NULL;
1767 /* May (probably does) set hwirq, chip, etc. */
1768 rv = irq_domain_alloc_irqs_hierarchy(domain, virq, 1, arg);
1770 /* Restore the original irq_data. */
1771 *irq_data = *parent_irq_data;
1772 kfree(parent_irq_data);
1776 irq_domain_fix_revmap(parent_irq_data);
1777 irq_domain_set_mapping(domain, irq_data->hwirq, irq_data);
1779 mutex_unlock(&domain->root->mutex);
1783 EXPORT_SYMBOL_GPL(irq_domain_push_irq);
1786 * irq_domain_pop_irq() - Remove a domain from the top of a hierarchy.
1787 * @domain: Domain to remove.
1788 * @virq: Irq to remove the domain from.
1790 * Undo the effects of a call to irq_domain_push_irq(). Must be
1791 * called either before request_irq() or after free_irq().
1793 int irq_domain_pop_irq(struct irq_domain *domain, int virq)
1795 struct irq_data *irq_data = irq_get_irq_data(virq);
1796 struct irq_data *parent_irq_data;
1797 struct irq_data *tmp_irq_data;
1798 struct irq_desc *desc;
1801 * Check that no action is set, which indicates the virq is in
1802 * a state where this function doesn't have to deal with races
1803 * between interrupt handling and maintaining the hierarchy.
1804 * This will catch gross misuse. Attempting to make the check
1805 * race free would require holding locks across calls to
1806 * struct irq_domain_ops->free(), which could lead to
1807 * deadlock, so we just do a simple check before starting.
1809 desc = irq_to_desc(virq);
1812 if (WARN_ON(desc->action))
1821 tmp_irq_data = irq_domain_get_irq_data(domain, virq);
1823 /* We can only "pop" if this domain is at the top of the list */
1824 if (WARN_ON(irq_data != tmp_irq_data))
1827 if (WARN_ON(irq_data->domain != domain))
1830 parent_irq_data = irq_data->parent_data;
1831 if (WARN_ON(!parent_irq_data))
1834 mutex_lock(&domain->root->mutex);
1836 irq_data->parent_data = NULL;
1838 irq_domain_clear_mapping(domain, irq_data->hwirq);
1839 irq_domain_free_irqs_hierarchy(domain, virq, 1);
1841 /* Restore the original irq_data. */
1842 *irq_data = *parent_irq_data;
1844 irq_domain_fix_revmap(irq_data);
1846 mutex_unlock(&domain->root->mutex);
1848 kfree(parent_irq_data);
1852 EXPORT_SYMBOL_GPL(irq_domain_pop_irq);
1855 * irq_domain_free_irqs - Free IRQ number and associated data structures
1856 * @virq: base IRQ number
1857 * @nr_irqs: number of IRQs to free
1859 void irq_domain_free_irqs(unsigned int virq, unsigned int nr_irqs)
1861 struct irq_data *data = irq_get_irq_data(virq);
1862 struct irq_domain *domain;
1865 if (WARN(!data || !data->domain || !data->domain->ops->free,
1866 "NULL pointer, cannot free irq\n"))
1869 domain = data->domain;
1871 mutex_lock(&domain->root->mutex);
1872 for (i = 0; i < nr_irqs; i++)
1873 irq_domain_remove_irq(virq + i);
1874 irq_domain_free_irqs_hierarchy(domain, virq, nr_irqs);
1875 mutex_unlock(&domain->root->mutex);
1877 irq_domain_free_irq_data(virq, nr_irqs);
1878 irq_free_descs(virq, nr_irqs);
1881 static void irq_domain_free_one_irq(struct irq_domain *domain, unsigned int virq)
1883 if (irq_domain_is_msi_device(domain))
1884 msi_device_domain_free_wired(domain, virq);
1886 irq_domain_free_irqs(virq, 1);
1890 * irq_domain_alloc_irqs_parent - Allocate interrupts from parent domain
1891 * @domain: Domain below which interrupts must be allocated
1892 * @irq_base: Base IRQ number
1893 * @nr_irqs: Number of IRQs to allocate
1894 * @arg: Allocation data (arch/domain specific)
1896 int irq_domain_alloc_irqs_parent(struct irq_domain *domain,
1897 unsigned int irq_base, unsigned int nr_irqs,
1900 if (!domain->parent)
1903 return irq_domain_alloc_irqs_hierarchy(domain->parent, irq_base,
1906 EXPORT_SYMBOL_GPL(irq_domain_alloc_irqs_parent);
1909 * irq_domain_free_irqs_parent - Free interrupts from parent domain
1910 * @domain: Domain below which interrupts must be freed
1911 * @irq_base: Base IRQ number
1912 * @nr_irqs: Number of IRQs to free
1914 void irq_domain_free_irqs_parent(struct irq_domain *domain,
1915 unsigned int irq_base, unsigned int nr_irqs)
1917 if (!domain->parent)
1920 irq_domain_free_irqs_hierarchy(domain->parent, irq_base, nr_irqs);
1922 EXPORT_SYMBOL_GPL(irq_domain_free_irqs_parent);
1924 static void __irq_domain_deactivate_irq(struct irq_data *irq_data)
1926 if (irq_data && irq_data->domain) {
1927 struct irq_domain *domain = irq_data->domain;
1929 if (domain->ops->deactivate)
1930 domain->ops->deactivate(domain, irq_data);
1931 if (irq_data->parent_data)
1932 __irq_domain_deactivate_irq(irq_data->parent_data);
1936 static int __irq_domain_activate_irq(struct irq_data *irqd, bool reserve)
1940 if (irqd && irqd->domain) {
1941 struct irq_domain *domain = irqd->domain;
1943 if (irqd->parent_data)
1944 ret = __irq_domain_activate_irq(irqd->parent_data,
1946 if (!ret && domain->ops->activate) {
1947 ret = domain->ops->activate(domain, irqd, reserve);
1948 /* Rollback in case of error */
1949 if (ret && irqd->parent_data)
1950 __irq_domain_deactivate_irq(irqd->parent_data);
1957 * irq_domain_activate_irq - Call domain_ops->activate recursively to activate
1959 * @irq_data: Outermost irq_data associated with interrupt
1960 * @reserve: If set only reserve an interrupt vector instead of assigning one
1962 * This is the second step to call domain_ops->activate to program interrupt
1963 * controllers, so the interrupt could actually get delivered.
1965 int irq_domain_activate_irq(struct irq_data *irq_data, bool reserve)
1969 if (!irqd_is_activated(irq_data))
1970 ret = __irq_domain_activate_irq(irq_data, reserve);
1972 irqd_set_activated(irq_data);
1977 * irq_domain_deactivate_irq - Call domain_ops->deactivate recursively to
1978 * deactivate interrupt
1979 * @irq_data: outermost irq_data associated with interrupt
1981 * It calls domain_ops->deactivate to program interrupt controllers to disable
1982 * interrupt delivery.
1984 void irq_domain_deactivate_irq(struct irq_data *irq_data)
1986 if (irqd_is_activated(irq_data)) {
1987 __irq_domain_deactivate_irq(irq_data);
1988 irqd_clr_activated(irq_data);
1992 static void irq_domain_check_hierarchy(struct irq_domain *domain)
1994 /* Hierarchy irq_domains must implement callback alloc() */
1995 if (domain->ops->alloc)
1996 domain->flags |= IRQ_DOMAIN_FLAG_HIERARCHY;
1998 #else /* CONFIG_IRQ_DOMAIN_HIERARCHY */
2000 * irq_domain_get_irq_data - Get irq_data associated with @virq and @domain
2001 * @domain: domain to match
2002 * @virq: IRQ number to get irq_data
2004 struct irq_data *irq_domain_get_irq_data(struct irq_domain *domain,
2007 struct irq_data *irq_data = irq_get_irq_data(virq);
2009 return (irq_data && irq_data->domain == domain) ? irq_data : NULL;
2011 EXPORT_SYMBOL_GPL(irq_domain_get_irq_data);
2014 * irq_domain_set_info - Set the complete data for a @virq in @domain
2015 * @domain: Interrupt domain to match
2017 * @hwirq: The hardware interrupt number
2018 * @chip: The associated interrupt chip
2019 * @chip_data: The associated interrupt chip data
2020 * @handler: The interrupt flow handler
2021 * @handler_data: The interrupt flow handler data
2022 * @handler_name: The interrupt handler name
2024 void irq_domain_set_info(struct irq_domain *domain, unsigned int virq,
2025 irq_hw_number_t hwirq, const struct irq_chip *chip,
2026 void *chip_data, irq_flow_handler_t handler,
2027 void *handler_data, const char *handler_name)
2029 irq_set_chip_and_handler_name(virq, chip, handler, handler_name);
2030 irq_set_chip_data(virq, chip_data);
2031 irq_set_handler_data(virq, handler_data);
2034 static int irq_domain_alloc_irqs_locked(struct irq_domain *domain, int irq_base,
2035 unsigned int nr_irqs, int node, void *arg,
2036 bool realloc, const struct irq_affinity_desc *affinity)
2041 static void irq_domain_check_hierarchy(struct irq_domain *domain) { }
2042 static void irq_domain_free_one_irq(struct irq_domain *domain, unsigned int virq) { }
2044 #endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */
2046 #ifdef CONFIG_GENERIC_IRQ_DEBUGFS
2047 #include "internals.h"
2049 static struct dentry *domain_dir;
2051 static const struct irq_bit_descr irqdomain_flags[] = {
2052 BIT_MASK_DESCR(IRQ_DOMAIN_FLAG_HIERARCHY),
2053 BIT_MASK_DESCR(IRQ_DOMAIN_NAME_ALLOCATED),
2054 BIT_MASK_DESCR(IRQ_DOMAIN_FLAG_IPI_PER_CPU),
2055 BIT_MASK_DESCR(IRQ_DOMAIN_FLAG_IPI_SINGLE),
2056 BIT_MASK_DESCR(IRQ_DOMAIN_FLAG_MSI),
2057 BIT_MASK_DESCR(IRQ_DOMAIN_FLAG_ISOLATED_MSI),
2058 BIT_MASK_DESCR(IRQ_DOMAIN_FLAG_NO_MAP),
2059 BIT_MASK_DESCR(IRQ_DOMAIN_FLAG_MSI_PARENT),
2060 BIT_MASK_DESCR(IRQ_DOMAIN_FLAG_MSI_DEVICE),
2061 BIT_MASK_DESCR(IRQ_DOMAIN_FLAG_NONCORE),
2064 static void irq_domain_debug_show_one(struct seq_file *m, struct irq_domain *d, int ind)
2066 seq_printf(m, "%*sname: %s\n", ind, "", d->name);
2067 seq_printf(m, "%*ssize: %u\n", ind + 1, "", d->revmap_size);
2068 seq_printf(m, "%*smapped: %u\n", ind + 1, "", d->mapcount);
2069 seq_printf(m, "%*sflags: 0x%08x\n", ind +1 , "", d->flags);
2070 irq_debug_show_bits(m, ind, d->flags, irqdomain_flags, ARRAY_SIZE(irqdomain_flags));
2071 if (d->ops && d->ops->debug_show)
2072 d->ops->debug_show(m, d, NULL, ind + 1);
2073 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
2076 seq_printf(m, "%*sparent: %s\n", ind + 1, "", d->parent->name);
2077 irq_domain_debug_show_one(m, d->parent, ind + 4);
2081 static int irq_domain_debug_show(struct seq_file *m, void *p)
2083 struct irq_domain *d = m->private;
2085 /* Default domain? Might be NULL */
2087 if (!irq_default_domain)
2089 d = irq_default_domain;
2091 irq_domain_debug_show_one(m, d, 0);
2094 DEFINE_SHOW_ATTRIBUTE(irq_domain_debug);
2096 static void debugfs_add_domain_dir(struct irq_domain *d)
2098 if (!d->name || !domain_dir)
2100 debugfs_create_file(d->name, 0444, domain_dir, d,
2101 &irq_domain_debug_fops);
2104 static void debugfs_remove_domain_dir(struct irq_domain *d)
2106 debugfs_lookup_and_remove(d->name, domain_dir);
2109 void __init irq_domain_debugfs_init(struct dentry *root)
2111 struct irq_domain *d;
2113 domain_dir = debugfs_create_dir("domains", root);
2115 debugfs_create_file("default", 0444, domain_dir, NULL,
2116 &irq_domain_debug_fops);
2117 mutex_lock(&irq_domain_mutex);
2118 list_for_each_entry(d, &irq_domain_list, link)
2119 debugfs_add_domain_dir(d);
2120 mutex_unlock(&irq_domain_mutex);