1 #define pr_fmt(fmt) "irq: " fmt
3 #include <linux/debugfs.h>
4 #include <linux/hardirq.h>
5 #include <linux/interrupt.h>
7 #include <linux/irqdesc.h>
8 #include <linux/irqdomain.h>
9 #include <linux/module.h>
10 #include <linux/mutex.h>
12 #include <linux/of_address.h>
13 #include <linux/topology.h>
14 #include <linux/seq_file.h>
15 #include <linux/slab.h>
16 #include <linux/smp.h>
19 #define IRQ_DOMAIN_MAP_LEGACY 0 /* driver allocated fixed range of irqs.
20 * ie. legacy 8259, gets irqs 1..15 */
21 #define IRQ_DOMAIN_MAP_NOMAP 1 /* no fast reverse mapping */
22 #define IRQ_DOMAIN_MAP_LINEAR 2 /* linear map of interrupts */
23 #define IRQ_DOMAIN_MAP_TREE 3 /* radix tree */
25 static LIST_HEAD(irq_domain_list
);
26 static DEFINE_MUTEX(irq_domain_mutex
);
28 static DEFINE_MUTEX(revmap_trees_mutex
);
29 static struct irq_domain
*irq_default_domain
;
32 * irq_domain_alloc() - Allocate a new irq_domain data structure
33 * @of_node: optional device-tree node of the interrupt controller
34 * @revmap_type: type of reverse mapping to use
35 * @ops: map/unmap domain callbacks
36 * @host_data: Controller private data pointer
38 * Allocates and initialize and irq_domain structure. Caller is expected to
39 * register allocated irq_domain with irq_domain_register(). Returns pointer
40 * to IRQ domain, or NULL on failure.
42 static struct irq_domain
*irq_domain_alloc(struct device_node
*of_node
,
43 unsigned int revmap_type
,
44 const struct irq_domain_ops
*ops
,
47 struct irq_domain
*domain
;
49 domain
= kzalloc_node(sizeof(*domain
), GFP_KERNEL
,
50 of_node_to_nid(of_node
));
55 domain
->revmap_type
= revmap_type
;
57 domain
->host_data
= host_data
;
58 domain
->of_node
= of_node_get(of_node
);
63 static void irq_domain_free(struct irq_domain
*domain
)
65 of_node_put(domain
->of_node
);
69 static void irq_domain_add(struct irq_domain
*domain
)
71 mutex_lock(&irq_domain_mutex
);
72 list_add(&domain
->link
, &irq_domain_list
);
73 mutex_unlock(&irq_domain_mutex
);
74 pr_debug("Allocated domain of type %d @0x%p\n",
75 domain
->revmap_type
, domain
);
79 * irq_domain_remove() - Remove an irq domain.
80 * @domain: domain to remove
82 * This routine is used to remove an irq domain. The caller must ensure
83 * that all mappings within the domain have been disposed of prior to
84 * use, depending on the revmap type.
86 void irq_domain_remove(struct irq_domain
*domain
)
88 mutex_lock(&irq_domain_mutex
);
90 switch (domain
->revmap_type
) {
91 case IRQ_DOMAIN_MAP_LEGACY
:
93 * Legacy domains don't manage their own irq_desc
94 * allocations, we expect the caller to handle irq_desc
95 * freeing on their own.
98 case IRQ_DOMAIN_MAP_TREE
:
100 * radix_tree_delete() takes care of destroying the root
101 * node when all entries are removed. Shout if there are
104 WARN_ON(domain
->revmap_data
.tree
.height
);
106 case IRQ_DOMAIN_MAP_LINEAR
:
107 kfree(domain
->revmap_data
.linear
.revmap
);
108 domain
->revmap_data
.linear
.size
= 0;
110 case IRQ_DOMAIN_MAP_NOMAP
:
114 list_del(&domain
->link
);
117 * If the going away domain is the default one, reset it.
119 if (unlikely(irq_default_domain
== domain
))
120 irq_set_default_host(NULL
);
122 mutex_unlock(&irq_domain_mutex
);
124 pr_debug("Removed domain of type %d @0x%p\n",
125 domain
->revmap_type
, domain
);
127 irq_domain_free(domain
);
129 EXPORT_SYMBOL_GPL(irq_domain_remove
);
131 static unsigned int irq_domain_legacy_revmap(struct irq_domain
*domain
,
132 irq_hw_number_t hwirq
)
134 irq_hw_number_t first_hwirq
= domain
->revmap_data
.legacy
.first_hwirq
;
135 int size
= domain
->revmap_data
.legacy
.size
;
137 if (WARN_ON(hwirq
< first_hwirq
|| hwirq
>= first_hwirq
+ size
))
139 return hwirq
- first_hwirq
+ domain
->revmap_data
.legacy
.first_irq
;
143 * irq_domain_add_simple() - Allocate and register a simple irq_domain.
144 * @of_node: pointer to interrupt controller's device tree node.
145 * @size: total number of irqs in mapping
146 * @first_irq: first number of irq block assigned to the domain
147 * @ops: map/unmap domain callbacks
148 * @host_data: Controller private data pointer
150 * Allocates a legacy irq_domain if irq_base is positive or a linear
153 * This is intended to implement the expected behaviour for most
154 * interrupt controllers which is that a linear mapping should
155 * normally be used unless the system requires a legacy mapping in
156 * order to support supplying interrupt numbers during non-DT
157 * registration of devices.
159 struct irq_domain
*irq_domain_add_simple(struct device_node
*of_node
,
161 unsigned int first_irq
,
162 const struct irq_domain_ops
*ops
,
166 return irq_domain_add_legacy(of_node
, size
, first_irq
, 0,
169 return irq_domain_add_linear(of_node
, size
, ops
, host_data
);
173 * irq_domain_add_legacy() - Allocate and register a legacy revmap irq_domain.
174 * @of_node: pointer to interrupt controller's device tree node.
175 * @size: total number of irqs in legacy mapping
176 * @first_irq: first number of irq block assigned to the domain
177 * @first_hwirq: first hwirq number to use for the translation. Should normally
178 * be '0', but a positive integer can be used if the effective
179 * hwirqs numbering does not begin at zero.
180 * @ops: map/unmap domain callbacks
181 * @host_data: Controller private data pointer
183 * Note: the map() callback will be called before this function returns
184 * for all legacy interrupts except 0 (which is always the invalid irq for
185 * a legacy controller).
187 struct irq_domain
*irq_domain_add_legacy(struct device_node
*of_node
,
189 unsigned int first_irq
,
190 irq_hw_number_t first_hwirq
,
191 const struct irq_domain_ops
*ops
,
194 struct irq_domain
*domain
;
197 domain
= irq_domain_alloc(of_node
, IRQ_DOMAIN_MAP_LEGACY
, ops
, host_data
);
201 domain
->revmap_data
.legacy
.first_irq
= first_irq
;
202 domain
->revmap_data
.legacy
.first_hwirq
= first_hwirq
;
203 domain
->revmap_data
.legacy
.size
= size
;
205 mutex_lock(&irq_domain_mutex
);
206 /* Verify that all the irqs are available */
207 for (i
= 0; i
< size
; i
++) {
208 int irq
= first_irq
+ i
;
209 struct irq_data
*irq_data
= irq_get_irq_data(irq
);
211 if (WARN_ON(!irq_data
|| irq_data
->domain
)) {
212 mutex_unlock(&irq_domain_mutex
);
213 irq_domain_free(domain
);
218 /* Claim all of the irqs before registering a legacy domain */
219 for (i
= 0; i
< size
; i
++) {
220 struct irq_data
*irq_data
= irq_get_irq_data(first_irq
+ i
);
221 irq_data
->hwirq
= first_hwirq
+ i
;
222 irq_data
->domain
= domain
;
224 mutex_unlock(&irq_domain_mutex
);
226 for (i
= 0; i
< size
; i
++) {
227 int irq
= first_irq
+ i
;
228 int hwirq
= first_hwirq
+ i
;
230 /* IRQ0 gets ignored */
234 /* Legacy flags are left to default at this point,
235 * one can then use irq_create_mapping() to
236 * explicitly change them
239 ops
->map(domain
, irq
, hwirq
);
241 /* Clear norequest flags */
242 irq_clear_status_flags(irq
, IRQ_NOREQUEST
);
245 irq_domain_add(domain
);
248 EXPORT_SYMBOL_GPL(irq_domain_add_legacy
);
251 * irq_domain_add_linear() - Allocate and register a linear revmap irq_domain.
252 * @of_node: pointer to interrupt controller's device tree node.
253 * @size: Number of interrupts in the domain.
254 * @ops: map/unmap domain callbacks
255 * @host_data: Controller private data pointer
257 struct irq_domain
*irq_domain_add_linear(struct device_node
*of_node
,
259 const struct irq_domain_ops
*ops
,
262 struct irq_domain
*domain
;
263 unsigned int *revmap
;
265 revmap
= kzalloc_node(sizeof(*revmap
) * size
, GFP_KERNEL
,
266 of_node_to_nid(of_node
));
267 if (WARN_ON(!revmap
))
270 domain
= irq_domain_alloc(of_node
, IRQ_DOMAIN_MAP_LINEAR
, ops
, host_data
);
275 domain
->revmap_data
.linear
.size
= size
;
276 domain
->revmap_data
.linear
.revmap
= revmap
;
277 irq_domain_add(domain
);
280 EXPORT_SYMBOL_GPL(irq_domain_add_linear
);
282 struct irq_domain
*irq_domain_add_nomap(struct device_node
*of_node
,
283 unsigned int max_irq
,
284 const struct irq_domain_ops
*ops
,
287 struct irq_domain
*domain
= irq_domain_alloc(of_node
,
288 IRQ_DOMAIN_MAP_NOMAP
, ops
, host_data
);
290 domain
->revmap_data
.nomap
.max_irq
= max_irq
? max_irq
: ~0;
291 irq_domain_add(domain
);
295 EXPORT_SYMBOL_GPL(irq_domain_add_nomap
);
298 * irq_domain_add_tree()
299 * @of_node: pointer to interrupt controller's device tree node.
300 * @ops: map/unmap domain callbacks
302 * Note: The radix tree will be allocated later during boot automatically
303 * (the reverse mapping will use the slow path until that happens).
305 struct irq_domain
*irq_domain_add_tree(struct device_node
*of_node
,
306 const struct irq_domain_ops
*ops
,
309 struct irq_domain
*domain
= irq_domain_alloc(of_node
,
310 IRQ_DOMAIN_MAP_TREE
, ops
, host_data
);
312 INIT_RADIX_TREE(&domain
->revmap_data
.tree
, GFP_KERNEL
);
313 irq_domain_add(domain
);
317 EXPORT_SYMBOL_GPL(irq_domain_add_tree
);
320 * irq_find_host() - Locates a domain for a given device node
321 * @node: device-tree node of the interrupt controller
323 struct irq_domain
*irq_find_host(struct device_node
*node
)
325 struct irq_domain
*h
, *found
= NULL
;
328 /* We might want to match the legacy controller last since
329 * it might potentially be set to match all interrupts in
330 * the absence of a device node. This isn't a problem so far
333 mutex_lock(&irq_domain_mutex
);
334 list_for_each_entry(h
, &irq_domain_list
, link
) {
336 rc
= h
->ops
->match(h
, node
);
338 rc
= (h
->of_node
!= NULL
) && (h
->of_node
== node
);
345 mutex_unlock(&irq_domain_mutex
);
348 EXPORT_SYMBOL_GPL(irq_find_host
);
351 * irq_set_default_host() - Set a "default" irq domain
352 * @domain: default domain pointer
354 * For convenience, it's possible to set a "default" domain that will be used
355 * whenever NULL is passed to irq_create_mapping(). It makes life easier for
356 * platforms that want to manipulate a few hard coded interrupt numbers that
357 * aren't properly represented in the device-tree.
359 void irq_set_default_host(struct irq_domain
*domain
)
361 pr_debug("Default domain set to @0x%p\n", domain
);
363 irq_default_domain
= domain
;
365 EXPORT_SYMBOL_GPL(irq_set_default_host
);
367 static void irq_domain_disassociate_many(struct irq_domain
*domain
,
368 unsigned int irq_base
, int count
)
371 * disassociate in reverse order;
372 * not strictly necessary, but nice for unwinding
375 int irq
= irq_base
+ count
;
376 struct irq_data
*irq_data
= irq_get_irq_data(irq
);
377 irq_hw_number_t hwirq
= irq_data
->hwirq
;
379 if (WARN_ON(!irq_data
|| irq_data
->domain
!= domain
))
382 irq_set_status_flags(irq
, IRQ_NOREQUEST
);
384 /* remove chip and handler */
385 irq_set_chip_and_handler(irq
, NULL
, NULL
);
387 /* Make sure it's completed */
388 synchronize_irq(irq
);
390 /* Tell the PIC about it */
391 if (domain
->ops
->unmap
)
392 domain
->ops
->unmap(domain
, irq
);
395 irq_data
->domain
= NULL
;
398 /* Clear reverse map */
399 switch(domain
->revmap_type
) {
400 case IRQ_DOMAIN_MAP_LINEAR
:
401 if (hwirq
< domain
->revmap_data
.linear
.size
)
402 domain
->revmap_data
.linear
.revmap
[hwirq
] = 0;
404 case IRQ_DOMAIN_MAP_TREE
:
405 mutex_lock(&revmap_trees_mutex
);
406 radix_tree_delete(&domain
->revmap_data
.tree
, hwirq
);
407 mutex_unlock(&revmap_trees_mutex
);
413 int irq_domain_associate_many(struct irq_domain
*domain
, unsigned int irq_base
,
414 irq_hw_number_t hwirq_base
, int count
)
416 unsigned int virq
= irq_base
;
417 irq_hw_number_t hwirq
= hwirq_base
;
420 pr_debug("%s(%s, irqbase=%i, hwbase=%i, count=%i)\n", __func__
,
421 of_node_full_name(domain
->of_node
), irq_base
, (int)hwirq_base
, count
);
423 for (i
= 0; i
< count
; i
++) {
424 struct irq_data
*irq_data
= irq_get_irq_data(virq
+ i
);
426 if (WARN(!irq_data
, "error: irq_desc not allocated; "
427 "irq=%i hwirq=0x%x\n", virq
+ i
, (int)hwirq
+ i
))
429 if (WARN(irq_data
->domain
, "error: irq_desc already associated; "
430 "irq=%i hwirq=0x%x\n", virq
+ i
, (int)hwirq
+ i
))
434 for (i
= 0; i
< count
; i
++, virq
++, hwirq
++) {
435 struct irq_data
*irq_data
= irq_get_irq_data(virq
);
437 irq_data
->hwirq
= hwirq
;
438 irq_data
->domain
= domain
;
439 if (domain
->ops
->map
) {
440 ret
= domain
->ops
->map(domain
, virq
, hwirq
);
442 pr_err("irq-%i==>hwirq-0x%lx mapping failed: %d\n",
445 irq_data
->domain
= NULL
;
451 switch (domain
->revmap_type
) {
452 case IRQ_DOMAIN_MAP_LINEAR
:
453 if (hwirq
< domain
->revmap_data
.linear
.size
)
454 domain
->revmap_data
.linear
.revmap
[hwirq
] = virq
;
456 case IRQ_DOMAIN_MAP_TREE
:
457 mutex_lock(&revmap_trees_mutex
);
458 radix_tree_insert(&domain
->revmap_data
.tree
, hwirq
, irq_data
);
459 mutex_unlock(&revmap_trees_mutex
);
463 irq_clear_status_flags(virq
, IRQ_NOREQUEST
);
469 irq_domain_disassociate_many(domain
, irq_base
, i
);
472 EXPORT_SYMBOL_GPL(irq_domain_associate_many
);
475 * irq_create_direct_mapping() - Allocate an irq for direct mapping
476 * @domain: domain to allocate the irq for or NULL for default domain
478 * This routine is used for irq controllers which can choose the hardware
479 * interrupt numbers they generate. In such a case it's simplest to use
480 * the linux irq as the hardware interrupt number.
482 unsigned int irq_create_direct_mapping(struct irq_domain
*domain
)
487 domain
= irq_default_domain
;
489 if (WARN_ON(!domain
|| domain
->revmap_type
!= IRQ_DOMAIN_MAP_NOMAP
))
492 virq
= irq_alloc_desc_from(1, of_node_to_nid(domain
->of_node
));
494 pr_debug("create_direct virq allocation failed\n");
497 if (virq
>= domain
->revmap_data
.nomap
.max_irq
) {
498 pr_err("ERROR: no free irqs available below %i maximum\n",
499 domain
->revmap_data
.nomap
.max_irq
);
503 pr_debug("create_direct obtained virq %d\n", virq
);
505 if (irq_domain_associate(domain
, virq
, virq
)) {
512 EXPORT_SYMBOL_GPL(irq_create_direct_mapping
);
515 * irq_create_mapping() - Map a hardware interrupt into linux irq space
516 * @domain: domain owning this hardware interrupt or NULL for default domain
517 * @hwirq: hardware irq number in that domain space
519 * Only one mapping per hardware interrupt is permitted. Returns a linux
521 * If the sense/trigger is to be specified, set_irq_type() should be called
522 * on the number returned from that call.
524 unsigned int irq_create_mapping(struct irq_domain
*domain
,
525 irq_hw_number_t hwirq
)
530 pr_debug("irq_create_mapping(0x%p, 0x%lx)\n", domain
, hwirq
);
532 /* Look for default domain if nececssary */
534 domain
= irq_default_domain
;
535 if (domain
== NULL
) {
536 pr_warning("irq_create_mapping called for"
537 " NULL domain, hwirq=%lx\n", hwirq
);
541 pr_debug("-> using domain @%p\n", domain
);
543 /* Check if mapping already exists */
544 virq
= irq_find_mapping(domain
, hwirq
);
546 pr_debug("-> existing mapping on virq %d\n", virq
);
550 /* Get a virtual interrupt number */
551 if (domain
->revmap_type
== IRQ_DOMAIN_MAP_LEGACY
)
552 return irq_domain_legacy_revmap(domain
, hwirq
);
554 /* Allocate a virtual interrupt number */
555 hint
= hwirq
% nr_irqs
;
558 virq
= irq_alloc_desc_from(hint
, of_node_to_nid(domain
->of_node
));
560 virq
= irq_alloc_desc_from(1, of_node_to_nid(domain
->of_node
));
562 pr_debug("-> virq allocation failed\n");
566 if (irq_domain_associate(domain
, virq
, hwirq
)) {
571 pr_debug("irq %lu on domain %s mapped to virtual irq %u\n",
572 hwirq
, of_node_full_name(domain
->of_node
), virq
);
576 EXPORT_SYMBOL_GPL(irq_create_mapping
);
579 * irq_create_strict_mappings() - Map a range of hw irqs to fixed linux irqs
580 * @domain: domain owning the interrupt range
581 * @irq_base: beginning of linux IRQ range
582 * @hwirq_base: beginning of hardware IRQ range
583 * @count: Number of interrupts to map
585 * This routine is used for allocating and mapping a range of hardware
586 * irqs to linux irqs where the linux irq numbers are at pre-defined
587 * locations. For use by controllers that already have static mappings
588 * to insert in to the domain.
590 * Non-linear users can use irq_create_identity_mapping() for IRQ-at-a-time
593 * 0 is returned upon success, while any failure to establish a static
594 * mapping is treated as an error.
596 int irq_create_strict_mappings(struct irq_domain
*domain
, unsigned int irq_base
,
597 irq_hw_number_t hwirq_base
, int count
)
601 ret
= irq_alloc_descs(irq_base
, irq_base
, count
,
602 of_node_to_nid(domain
->of_node
));
603 if (unlikely(ret
< 0))
606 ret
= irq_domain_associate_many(domain
, irq_base
, hwirq_base
, count
);
607 if (unlikely(ret
< 0)) {
608 irq_free_descs(irq_base
, count
);
614 EXPORT_SYMBOL_GPL(irq_create_strict_mappings
);
616 unsigned int irq_create_of_mapping(struct device_node
*controller
,
617 const u32
*intspec
, unsigned int intsize
)
619 struct irq_domain
*domain
;
620 irq_hw_number_t hwirq
;
621 unsigned int type
= IRQ_TYPE_NONE
;
624 domain
= controller
? irq_find_host(controller
) : irq_default_domain
;
628 * Workaround to avoid breaking interrupt controller drivers
629 * that don't yet register an irq_domain. This is temporary
630 * code. ~~~gcl, Feb 24, 2012
632 * Scheduled for removal in Linux v3.6. That should be enough
638 pr_warning("no irq domain found for %s !\n",
639 of_node_full_name(controller
));
643 /* If domain has no translation, then we assume interrupt line */
644 if (domain
->ops
->xlate
== NULL
)
647 if (domain
->ops
->xlate(domain
, controller
, intspec
, intsize
,
653 virq
= irq_create_mapping(domain
, hwirq
);
657 /* Set type if specified and different than the current one */
658 if (type
!= IRQ_TYPE_NONE
&&
659 type
!= (irqd_get_trigger_type(irq_get_irq_data(virq
))))
660 irq_set_irq_type(virq
, type
);
663 EXPORT_SYMBOL_GPL(irq_create_of_mapping
);
666 * irq_dispose_mapping() - Unmap an interrupt
667 * @virq: linux irq number of the interrupt to unmap
669 void irq_dispose_mapping(unsigned int virq
)
671 struct irq_data
*irq_data
= irq_get_irq_data(virq
);
672 struct irq_domain
*domain
;
674 if (!virq
|| !irq_data
)
677 domain
= irq_data
->domain
;
678 if (WARN_ON(domain
== NULL
))
681 /* Never unmap legacy interrupts */
682 if (domain
->revmap_type
== IRQ_DOMAIN_MAP_LEGACY
)
685 irq_domain_disassociate_many(domain
, virq
, 1);
688 EXPORT_SYMBOL_GPL(irq_dispose_mapping
);
691 * irq_find_mapping() - Find a linux irq from an hw irq number.
692 * @domain: domain owning this hardware interrupt
693 * @hwirq: hardware irq number in that domain space
695 unsigned int irq_find_mapping(struct irq_domain
*domain
,
696 irq_hw_number_t hwirq
)
698 struct irq_data
*data
;
700 /* Look for default domain if nececssary */
702 domain
= irq_default_domain
;
706 switch (domain
->revmap_type
) {
707 case IRQ_DOMAIN_MAP_LEGACY
:
708 return irq_domain_legacy_revmap(domain
, hwirq
);
709 case IRQ_DOMAIN_MAP_LINEAR
:
710 return irq_linear_revmap(domain
, hwirq
);
711 case IRQ_DOMAIN_MAP_TREE
:
713 data
= radix_tree_lookup(&domain
->revmap_data
.tree
, hwirq
);
718 case IRQ_DOMAIN_MAP_NOMAP
:
719 data
= irq_get_irq_data(hwirq
);
720 if (data
&& (data
->domain
== domain
) && (data
->hwirq
== hwirq
))
727 EXPORT_SYMBOL_GPL(irq_find_mapping
);
730 * irq_linear_revmap() - Find a linux irq from a hw irq number.
731 * @domain: domain owning this hardware interrupt
732 * @hwirq: hardware irq number in that domain space
734 * This is a fast path that can be called directly by irq controller code to
735 * save a handful of instructions.
737 unsigned int irq_linear_revmap(struct irq_domain
*domain
,
738 irq_hw_number_t hwirq
)
740 BUG_ON(domain
->revmap_type
!= IRQ_DOMAIN_MAP_LINEAR
);
742 /* Check revmap bounds; complain if exceeded */
743 if (WARN_ON(hwirq
>= domain
->revmap_data
.linear
.size
))
746 return domain
->revmap_data
.linear
.revmap
[hwirq
];
748 EXPORT_SYMBOL_GPL(irq_linear_revmap
);
750 #ifdef CONFIG_IRQ_DOMAIN_DEBUG
751 static int virq_debug_show(struct seq_file
*m
, void *private)
754 struct irq_desc
*desc
;
756 static const char none
[] = "none";
760 seq_printf(m
, "%-5s %-7s %-15s %-*s %s\n", "irq", "hwirq",
761 "chip name", (int)(2 * sizeof(void *) + 2), "chip data",
764 for (i
= 1; i
< nr_irqs
; i
++) {
765 desc
= irq_to_desc(i
);
769 raw_spin_lock_irqsave(&desc
->lock
, flags
);
771 if (desc
->action
&& desc
->action
->handler
) {
772 struct irq_chip
*chip
;
774 seq_printf(m
, "%5d ", i
);
775 seq_printf(m
, "0x%05lx ", desc
->irq_data
.hwirq
);
777 chip
= irq_desc_get_chip(desc
);
778 if (chip
&& chip
->name
)
782 seq_printf(m
, "%-15s ", p
);
784 data
= irq_desc_get_chip_data(desc
);
785 seq_printf(m
, data
? "0x%p " : " %p ", data
);
787 if (desc
->irq_data
.domain
)
788 p
= of_node_full_name(desc
->irq_data
.domain
->of_node
);
791 seq_printf(m
, "%s\n", p
);
794 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
800 static int virq_debug_open(struct inode
*inode
, struct file
*file
)
802 return single_open(file
, virq_debug_show
, inode
->i_private
);
805 static const struct file_operations virq_debug_fops
= {
806 .open
= virq_debug_open
,
809 .release
= single_release
,
812 static int __init
irq_debugfs_init(void)
814 if (debugfs_create_file("irq_domain_mapping", S_IRUGO
, NULL
,
815 NULL
, &virq_debug_fops
) == NULL
)
820 __initcall(irq_debugfs_init
);
821 #endif /* CONFIG_IRQ_DOMAIN_DEBUG */
824 * irq_domain_xlate_onecell() - Generic xlate for direct one cell bindings
826 * Device Tree IRQ specifier translation function which works with one cell
827 * bindings where the cell value maps directly to the hwirq number.
829 int irq_domain_xlate_onecell(struct irq_domain
*d
, struct device_node
*ctrlr
,
830 const u32
*intspec
, unsigned int intsize
,
831 unsigned long *out_hwirq
, unsigned int *out_type
)
833 if (WARN_ON(intsize
< 1))
835 *out_hwirq
= intspec
[0];
836 *out_type
= IRQ_TYPE_NONE
;
839 EXPORT_SYMBOL_GPL(irq_domain_xlate_onecell
);
842 * irq_domain_xlate_twocell() - Generic xlate for direct two cell bindings
844 * Device Tree IRQ specifier translation function which works with two cell
845 * bindings where the cell values map directly to the hwirq number
846 * and linux irq flags.
848 int irq_domain_xlate_twocell(struct irq_domain
*d
, struct device_node
*ctrlr
,
849 const u32
*intspec
, unsigned int intsize
,
850 irq_hw_number_t
*out_hwirq
, unsigned int *out_type
)
852 if (WARN_ON(intsize
< 2))
854 *out_hwirq
= intspec
[0];
855 *out_type
= intspec
[1] & IRQ_TYPE_SENSE_MASK
;
858 EXPORT_SYMBOL_GPL(irq_domain_xlate_twocell
);
861 * irq_domain_xlate_onetwocell() - Generic xlate for one or two cell bindings
863 * Device Tree IRQ specifier translation function which works with either one
864 * or two cell bindings where the cell values map directly to the hwirq number
865 * and linux irq flags.
867 * Note: don't use this function unless your interrupt controller explicitly
868 * supports both one and two cell bindings. For the majority of controllers
869 * the _onecell() or _twocell() variants above should be used.
871 int irq_domain_xlate_onetwocell(struct irq_domain
*d
,
872 struct device_node
*ctrlr
,
873 const u32
*intspec
, unsigned int intsize
,
874 unsigned long *out_hwirq
, unsigned int *out_type
)
876 if (WARN_ON(intsize
< 1))
878 *out_hwirq
= intspec
[0];
879 *out_type
= (intsize
> 1) ? intspec
[1] : IRQ_TYPE_NONE
;
882 EXPORT_SYMBOL_GPL(irq_domain_xlate_onetwocell
);
884 const struct irq_domain_ops irq_domain_simple_ops
= {
885 .xlate
= irq_domain_xlate_onetwocell
,
887 EXPORT_SYMBOL_GPL(irq_domain_simple_ops
);
890 void irq_domain_generate_simple(const struct of_device_id
*match
,
891 u64 phys_base
, unsigned int irq_start
)
893 struct device_node
*node
;
894 pr_debug("looking for phys_base=%llx, irq_start=%i\n",
895 (unsigned long long) phys_base
, (int) irq_start
);
896 node
= of_find_matching_node_by_address(NULL
, match
, phys_base
);
898 irq_domain_add_legacy(node
, 32, irq_start
, 0,
899 &irq_domain_simple_ops
, NULL
);
901 EXPORT_SYMBOL_GPL(irq_domain_generate_simple
);