]> git.karo-electronics.de Git - karo-tx-linux.git/blob - kernel/irq/irqdomain.c
9cae0b2f509f217db3ac2e877de032c07d513e11
[karo-tx-linux.git] / kernel / irq / irqdomain.c
1 #include <linux/debugfs.h>
2 #include <linux/hardirq.h>
3 #include <linux/interrupt.h>
4 #include <linux/irq.h>
5 #include <linux/irqdesc.h>
6 #include <linux/irqdomain.h>
7 #include <linux/module.h>
8 #include <linux/mutex.h>
9 #include <linux/of.h>
10 #include <linux/of_address.h>
11 #include <linux/seq_file.h>
12 #include <linux/slab.h>
13 #include <linux/smp.h>
14 #include <linux/fs.h>
15
16 #define IRQ_DOMAIN_MAP_LEGACY 0 /* driver allocated fixed range of irqs.
17                                  * ie. legacy 8259, gets irqs 1..15 */
18 #define IRQ_DOMAIN_MAP_NOMAP 1 /* no fast reverse mapping */
19 #define IRQ_DOMAIN_MAP_LINEAR 2 /* linear map of interrupts */
20 #define IRQ_DOMAIN_MAP_TREE 3 /* radix tree */
21
22 static LIST_HEAD(irq_domain_list);
23 static DEFINE_MUTEX(irq_domain_mutex);
24
25 static DEFINE_MUTEX(revmap_trees_mutex);
26 static struct irq_domain *irq_default_domain;
27
28 /**
29  * irq_domain_alloc() - Allocate a new irq_domain data structure
30  * @of_node: optional device-tree node of the interrupt controller
31  * @revmap_type: type of reverse mapping to use
32  * @ops: map/unmap domain callbacks
33  * @host_data: Controller private data pointer
34  *
35  * Allocates and initialize and irq_domain structure.  Caller is expected to
36  * register allocated irq_domain with irq_domain_register().  Returns pointer
37  * to IRQ domain, or NULL on failure.
38  */
39 static struct irq_domain *irq_domain_alloc(struct device_node *of_node,
40                                            unsigned int revmap_type,
41                                            const struct irq_domain_ops *ops,
42                                            void *host_data)
43 {
44         struct irq_domain *domain;
45
46         domain = kzalloc(sizeof(*domain), GFP_KERNEL);
47         if (WARN_ON(!domain))
48                 return NULL;
49
50         /* Fill structure */
51         domain->revmap_type = revmap_type;
52         domain->ops = ops;
53         domain->host_data = host_data;
54         domain->of_node = of_node_get(of_node);
55
56         return domain;
57 }
58
59 static void irq_domain_free(struct irq_domain *domain)
60 {
61         of_node_put(domain->of_node);
62         kfree(domain);
63 }
64
65 static void irq_domain_add(struct irq_domain *domain)
66 {
67         mutex_lock(&irq_domain_mutex);
68         list_add(&domain->link, &irq_domain_list);
69         mutex_unlock(&irq_domain_mutex);
70         pr_debug("irq: Allocated domain of type %d @0x%p\n",
71                  domain->revmap_type, domain);
72 }
73
74 /**
75  * irq_domain_remove() - Remove an irq domain.
76  * @domain: domain to remove
77  *
78  * This routine is used to remove an irq domain. The caller must ensure
79  * that all mappings within the domain have been disposed of prior to
80  * use, depending on the revmap type.
81  */
82 void irq_domain_remove(struct irq_domain *domain)
83 {
84         mutex_lock(&irq_domain_mutex);
85
86         switch (domain->revmap_type) {
87         case IRQ_DOMAIN_MAP_LEGACY:
88                 /*
89                  * Legacy domains don't manage their own irq_desc
90                  * allocations, we expect the caller to handle irq_desc
91                  * freeing on their own.
92                  */
93                 break;
94         case IRQ_DOMAIN_MAP_TREE:
95                 /*
96                  * radix_tree_delete() takes care of destroying the root
97                  * node when all entries are removed. Shout if there are
98                  * any mappings left.
99                  */
100                 WARN_ON(domain->revmap_data.tree.height);
101                 break;
102         case IRQ_DOMAIN_MAP_LINEAR:
103                 kfree(domain->revmap_data.linear.revmap);
104                 domain->revmap_data.linear.size = 0;
105                 break;
106         case IRQ_DOMAIN_MAP_NOMAP:
107                 break;
108         }
109
110         list_del(&domain->link);
111
112         /*
113          * If the going away domain is the default one, reset it.
114          */
115         if (unlikely(irq_default_domain == domain))
116                 irq_set_default_host(NULL);
117
118         mutex_unlock(&irq_domain_mutex);
119
120         pr_debug("irq: Removed domain of type %d @0x%p\n",
121                  domain->revmap_type, domain);
122
123         irq_domain_free(domain);
124 }
125
126 static unsigned int irq_domain_legacy_revmap(struct irq_domain *domain,
127                                              irq_hw_number_t hwirq)
128 {
129         irq_hw_number_t first_hwirq = domain->revmap_data.legacy.first_hwirq;
130         int size = domain->revmap_data.legacy.size;
131
132         if (WARN_ON(hwirq < first_hwirq || hwirq >= first_hwirq + size))
133                 return 0;
134         return hwirq - first_hwirq + domain->revmap_data.legacy.first_irq;
135 }
136
137 /**
138  * irq_domain_add_legacy() - Allocate and register a legacy revmap irq_domain.
139  * @of_node: pointer to interrupt controller's device tree node.
140  * @size: total number of irqs in legacy mapping
141  * @first_irq: first number of irq block assigned to the domain
142  * @first_hwirq: first hwirq number to use for the translation. Should normally
143  *               be '0', but a positive integer can be used if the effective
144  *               hwirqs numbering does not begin at zero.
145  * @ops: map/unmap domain callbacks
146  * @host_data: Controller private data pointer
147  *
148  * Note: the map() callback will be called before this function returns
149  * for all legacy interrupts except 0 (which is always the invalid irq for
150  * a legacy controller).
151  */
152 struct irq_domain *irq_domain_add_legacy(struct device_node *of_node,
153                                          unsigned int size,
154                                          unsigned int first_irq,
155                                          irq_hw_number_t first_hwirq,
156                                          const struct irq_domain_ops *ops,
157                                          void *host_data)
158 {
159         struct irq_domain *domain;
160         unsigned int i;
161
162         domain = irq_domain_alloc(of_node, IRQ_DOMAIN_MAP_LEGACY, ops, host_data);
163         if (!domain)
164                 return NULL;
165
166         domain->revmap_data.legacy.first_irq = first_irq;
167         domain->revmap_data.legacy.first_hwirq = first_hwirq;
168         domain->revmap_data.legacy.size = size;
169
170         mutex_lock(&irq_domain_mutex);
171         /* Verify that all the irqs are available */
172         for (i = 0; i < size; i++) {
173                 int irq = first_irq + i;
174                 struct irq_data *irq_data = irq_get_irq_data(irq);
175
176                 if (WARN_ON(!irq_data || irq_data->domain)) {
177                         mutex_unlock(&irq_domain_mutex);
178                         irq_domain_free(domain);
179                         return NULL;
180                 }
181         }
182
183         /* Claim all of the irqs before registering a legacy domain */
184         for (i = 0; i < size; i++) {
185                 struct irq_data *irq_data = irq_get_irq_data(first_irq + i);
186                 irq_data->hwirq = first_hwirq + i;
187                 irq_data->domain = domain;
188         }
189         mutex_unlock(&irq_domain_mutex);
190
191         for (i = 0; i < size; i++) {
192                 int irq = first_irq + i;
193                 int hwirq = first_hwirq + i;
194
195                 /* IRQ0 gets ignored */
196                 if (!irq)
197                         continue;
198
199                 /* Legacy flags are left to default at this point,
200                  * one can then use irq_create_mapping() to
201                  * explicitly change them
202                  */
203                 ops->map(domain, irq, hwirq);
204
205                 /* Clear norequest flags */
206                 irq_clear_status_flags(irq, IRQ_NOREQUEST);
207         }
208
209         irq_domain_add(domain);
210         return domain;
211 }
212
213 /**
214  * irq_domain_add_linear() - Allocate and register a legacy revmap irq_domain.
215  * @of_node: pointer to interrupt controller's device tree node.
216  * @ops: map/unmap domain callbacks
217  * @host_data: Controller private data pointer
218  */
219 struct irq_domain *irq_domain_add_linear(struct device_node *of_node,
220                                          unsigned int size,
221                                          const struct irq_domain_ops *ops,
222                                          void *host_data)
223 {
224         struct irq_domain *domain;
225         unsigned int *revmap;
226
227         revmap = kzalloc(sizeof(*revmap) * size, GFP_KERNEL);
228         if (WARN_ON(!revmap))
229                 return NULL;
230
231         domain = irq_domain_alloc(of_node, IRQ_DOMAIN_MAP_LINEAR, ops, host_data);
232         if (!domain) {
233                 kfree(revmap);
234                 return NULL;
235         }
236         domain->revmap_data.linear.size = size;
237         domain->revmap_data.linear.revmap = revmap;
238         irq_domain_add(domain);
239         return domain;
240 }
241
242 struct irq_domain *irq_domain_add_nomap(struct device_node *of_node,
243                                          unsigned int max_irq,
244                                          const struct irq_domain_ops *ops,
245                                          void *host_data)
246 {
247         struct irq_domain *domain = irq_domain_alloc(of_node,
248                                         IRQ_DOMAIN_MAP_NOMAP, ops, host_data);
249         if (domain) {
250                 domain->revmap_data.nomap.max_irq = max_irq ? max_irq : ~0;
251                 irq_domain_add(domain);
252         }
253         return domain;
254 }
255
256 /**
257  * irq_domain_add_tree()
258  * @of_node: pointer to interrupt controller's device tree node.
259  * @ops: map/unmap domain callbacks
260  *
261  * Note: The radix tree will be allocated later during boot automatically
262  * (the reverse mapping will use the slow path until that happens).
263  */
264 struct irq_domain *irq_domain_add_tree(struct device_node *of_node,
265                                          const struct irq_domain_ops *ops,
266                                          void *host_data)
267 {
268         struct irq_domain *domain = irq_domain_alloc(of_node,
269                                         IRQ_DOMAIN_MAP_TREE, ops, host_data);
270         if (domain) {
271                 INIT_RADIX_TREE(&domain->revmap_data.tree, GFP_KERNEL);
272                 irq_domain_add(domain);
273         }
274         return domain;
275 }
276
277 /**
278  * irq_find_host() - Locates a domain for a given device node
279  * @node: device-tree node of the interrupt controller
280  */
281 struct irq_domain *irq_find_host(struct device_node *node)
282 {
283         struct irq_domain *h, *found = NULL;
284         int rc;
285
286         /* We might want to match the legacy controller last since
287          * it might potentially be set to match all interrupts in
288          * the absence of a device node. This isn't a problem so far
289          * yet though...
290          */
291         mutex_lock(&irq_domain_mutex);
292         list_for_each_entry(h, &irq_domain_list, link) {
293                 if (h->ops->match)
294                         rc = h->ops->match(h, node);
295                 else
296                         rc = (h->of_node != NULL) && (h->of_node == node);
297
298                 if (rc) {
299                         found = h;
300                         break;
301                 }
302         }
303         mutex_unlock(&irq_domain_mutex);
304         return found;
305 }
306 EXPORT_SYMBOL_GPL(irq_find_host);
307
308 /**
309  * irq_set_default_host() - Set a "default" irq domain
310  * @domain: default domain pointer
311  *
312  * For convenience, it's possible to set a "default" domain that will be used
313  * whenever NULL is passed to irq_create_mapping(). It makes life easier for
314  * platforms that want to manipulate a few hard coded interrupt numbers that
315  * aren't properly represented in the device-tree.
316  */
317 void irq_set_default_host(struct irq_domain *domain)
318 {
319         pr_debug("irq: Default domain set to @0x%p\n", domain);
320
321         irq_default_domain = domain;
322 }
323
324 static int irq_setup_virq(struct irq_domain *domain, unsigned int virq,
325                             irq_hw_number_t hwirq)
326 {
327         struct irq_data *irq_data = irq_get_irq_data(virq);
328
329         irq_data->hwirq = hwirq;
330         irq_data->domain = domain;
331         if (domain->ops->map(domain, virq, hwirq)) {
332                 pr_debug("irq: -> mapping failed, freeing\n");
333                 irq_data->domain = NULL;
334                 irq_data->hwirq = 0;
335                 return -1;
336         }
337
338         irq_clear_status_flags(virq, IRQ_NOREQUEST);
339
340         return 0;
341 }
342
343 /**
344  * irq_create_direct_mapping() - Allocate an irq for direct mapping
345  * @domain: domain to allocate the irq for or NULL for default domain
346  *
347  * This routine is used for irq controllers which can choose the hardware
348  * interrupt numbers they generate. In such a case it's simplest to use
349  * the linux irq as the hardware interrupt number.
350  */
351 unsigned int irq_create_direct_mapping(struct irq_domain *domain)
352 {
353         unsigned int virq;
354
355         if (domain == NULL)
356                 domain = irq_default_domain;
357
358         BUG_ON(domain == NULL);
359         WARN_ON(domain->revmap_type != IRQ_DOMAIN_MAP_NOMAP);
360
361         virq = irq_alloc_desc_from(1, 0);
362         if (!virq) {
363                 pr_debug("irq: create_direct virq allocation failed\n");
364                 return 0;
365         }
366         if (virq >= domain->revmap_data.nomap.max_irq) {
367                 pr_err("ERROR: no free irqs available below %i maximum\n",
368                         domain->revmap_data.nomap.max_irq);
369                 irq_free_desc(virq);
370                 return 0;
371         }
372         pr_debug("irq: create_direct obtained virq %d\n", virq);
373
374         if (irq_setup_virq(domain, virq, virq)) {
375                 irq_free_desc(virq);
376                 return 0;
377         }
378
379         return virq;
380 }
381
382 /**
383  * irq_create_mapping() - Map a hardware interrupt into linux irq space
384  * @domain: domain owning this hardware interrupt or NULL for default domain
385  * @hwirq: hardware irq number in that domain space
386  *
387  * Only one mapping per hardware interrupt is permitted. Returns a linux
388  * irq number.
389  * If the sense/trigger is to be specified, set_irq_type() should be called
390  * on the number returned from that call.
391  */
392 unsigned int irq_create_mapping(struct irq_domain *domain,
393                                 irq_hw_number_t hwirq)
394 {
395         unsigned int hint;
396         int virq;
397
398         pr_debug("irq: irq_create_mapping(0x%p, 0x%lx)\n", domain, hwirq);
399
400         /* Look for default domain if nececssary */
401         if (domain == NULL)
402                 domain = irq_default_domain;
403         if (domain == NULL) {
404                 printk(KERN_WARNING "irq_create_mapping called for"
405                        " NULL domain, hwirq=%lx\n", hwirq);
406                 WARN_ON(1);
407                 return 0;
408         }
409         pr_debug("irq: -> using domain @%p\n", domain);
410
411         /* Check if mapping already exists */
412         virq = irq_find_mapping(domain, hwirq);
413         if (virq) {
414                 pr_debug("irq: -> existing mapping on virq %d\n", virq);
415                 return virq;
416         }
417
418         /* Get a virtual interrupt number */
419         if (domain->revmap_type == IRQ_DOMAIN_MAP_LEGACY)
420                 return irq_domain_legacy_revmap(domain, hwirq);
421
422         /* Allocate a virtual interrupt number */
423         hint = hwirq % nr_irqs;
424         if (hint == 0)
425                 hint++;
426         virq = irq_alloc_desc_from(hint, 0);
427         if (virq <= 0)
428                 virq = irq_alloc_desc_from(1, 0);
429         if (virq <= 0) {
430                 pr_debug("irq: -> virq allocation failed\n");
431                 return 0;
432         }
433
434         if (irq_setup_virq(domain, virq, hwirq)) {
435                 if (domain->revmap_type != IRQ_DOMAIN_MAP_LEGACY)
436                         irq_free_desc(virq);
437                 return 0;
438         }
439
440         pr_debug("irq: irq %lu on domain %s mapped to virtual irq %u\n",
441                 hwirq, domain->of_node ? domain->of_node->full_name : "null", virq);
442
443         return virq;
444 }
445 EXPORT_SYMBOL_GPL(irq_create_mapping);
446
447 unsigned int irq_create_of_mapping(struct device_node *controller,
448                                    const u32 *intspec, unsigned int intsize)
449 {
450         struct irq_domain *domain;
451         irq_hw_number_t hwirq;
452         unsigned int type = IRQ_TYPE_NONE;
453         unsigned int virq;
454
455         domain = controller ? irq_find_host(controller) : irq_default_domain;
456         if (!domain) {
457 #ifdef CONFIG_MIPS
458                 /*
459                  * Workaround to avoid breaking interrupt controller drivers
460                  * that don't yet register an irq_domain.  This is temporary
461                  * code. ~~~gcl, Feb 24, 2012
462                  *
463                  * Scheduled for removal in Linux v3.6.  That should be enough
464                  * time.
465                  */
466                 if (intsize > 0)
467                         return intspec[0];
468 #endif
469                 printk(KERN_WARNING "irq: no irq domain found for %s !\n",
470                        controller->full_name);
471                 return 0;
472         }
473
474         /* If domain has no translation, then we assume interrupt line */
475         if (domain->ops->xlate == NULL)
476                 hwirq = intspec[0];
477         else {
478                 if (domain->ops->xlate(domain, controller, intspec, intsize,
479                                      &hwirq, &type))
480                         return 0;
481         }
482
483         /* Create mapping */
484         virq = irq_create_mapping(domain, hwirq);
485         if (!virq)
486                 return virq;
487
488         /* Set type if specified and different than the current one */
489         if (type != IRQ_TYPE_NONE &&
490             type != (irqd_get_trigger_type(irq_get_irq_data(virq))))
491                 irq_set_irq_type(virq, type);
492         return virq;
493 }
494 EXPORT_SYMBOL_GPL(irq_create_of_mapping);
495
496 /**
497  * irq_dispose_mapping() - Unmap an interrupt
498  * @virq: linux irq number of the interrupt to unmap
499  */
500 void irq_dispose_mapping(unsigned int virq)
501 {
502         struct irq_data *irq_data = irq_get_irq_data(virq);
503         struct irq_domain *domain;
504         irq_hw_number_t hwirq;
505
506         if (!virq || !irq_data)
507                 return;
508
509         domain = irq_data->domain;
510         if (WARN_ON(domain == NULL))
511                 return;
512
513         /* Never unmap legacy interrupts */
514         if (domain->revmap_type == IRQ_DOMAIN_MAP_LEGACY)
515                 return;
516
517         irq_set_status_flags(virq, IRQ_NOREQUEST);
518
519         /* remove chip and handler */
520         irq_set_chip_and_handler(virq, NULL, NULL);
521
522         /* Make sure it's completed */
523         synchronize_irq(virq);
524
525         /* Tell the PIC about it */
526         if (domain->ops->unmap)
527                 domain->ops->unmap(domain, virq);
528         smp_mb();
529
530         /* Clear reverse map */
531         hwirq = irq_data->hwirq;
532         switch(domain->revmap_type) {
533         case IRQ_DOMAIN_MAP_LINEAR:
534                 if (hwirq < domain->revmap_data.linear.size)
535                         domain->revmap_data.linear.revmap[hwirq] = 0;
536                 break;
537         case IRQ_DOMAIN_MAP_TREE:
538                 mutex_lock(&revmap_trees_mutex);
539                 radix_tree_delete(&domain->revmap_data.tree, hwirq);
540                 mutex_unlock(&revmap_trees_mutex);
541                 break;
542         }
543
544         irq_free_desc(virq);
545 }
546 EXPORT_SYMBOL_GPL(irq_dispose_mapping);
547
548 /**
549  * irq_find_mapping() - Find a linux irq from an hw irq number.
550  * @domain: domain owning this hardware interrupt
551  * @hwirq: hardware irq number in that domain space
552  *
553  * This is a slow path, for use by generic code. It's expected that an
554  * irq controller implementation directly calls the appropriate low level
555  * mapping function.
556  */
557 unsigned int irq_find_mapping(struct irq_domain *domain,
558                               irq_hw_number_t hwirq)
559 {
560         unsigned int i;
561         unsigned int hint = hwirq % nr_irqs;
562
563         /* Look for default domain if nececssary */
564         if (domain == NULL)
565                 domain = irq_default_domain;
566         if (domain == NULL)
567                 return 0;
568
569         /* legacy -> bail early */
570         if (domain->revmap_type == IRQ_DOMAIN_MAP_LEGACY)
571                 return irq_domain_legacy_revmap(domain, hwirq);
572
573         /* Slow path does a linear search of the map */
574         if (hint == 0)
575                 hint = 1;
576         i = hint;
577         do {
578                 struct irq_data *data = irq_get_irq_data(i);
579                 if (data && (data->domain == domain) && (data->hwirq == hwirq))
580                         return i;
581                 i++;
582                 if (i >= nr_irqs)
583                         i = 1;
584         } while(i != hint);
585         return 0;
586 }
587 EXPORT_SYMBOL_GPL(irq_find_mapping);
588
589 /**
590  * irq_radix_revmap_lookup() - Find a linux irq from a hw irq number.
591  * @domain: domain owning this hardware interrupt
592  * @hwirq: hardware irq number in that domain space
593  *
594  * This is a fast path, for use by irq controller code that uses radix tree
595  * revmaps
596  */
597 unsigned int irq_radix_revmap_lookup(struct irq_domain *domain,
598                                      irq_hw_number_t hwirq)
599 {
600         struct irq_data *irq_data;
601
602         if (WARN_ON_ONCE(domain->revmap_type != IRQ_DOMAIN_MAP_TREE))
603                 return irq_find_mapping(domain, hwirq);
604
605         /*
606          * Freeing an irq can delete nodes along the path to
607          * do the lookup via call_rcu.
608          */
609         rcu_read_lock();
610         irq_data = radix_tree_lookup(&domain->revmap_data.tree, hwirq);
611         rcu_read_unlock();
612
613         /*
614          * If found in radix tree, then fine.
615          * Else fallback to linear lookup - this should not happen in practice
616          * as it means that we failed to insert the node in the radix tree.
617          */
618         return irq_data ? irq_data->irq : irq_find_mapping(domain, hwirq);
619 }
620
621 /**
622  * irq_radix_revmap_insert() - Insert a hw irq to linux irq number mapping.
623  * @domain: domain owning this hardware interrupt
624  * @virq: linux irq number
625  * @hwirq: hardware irq number in that domain space
626  *
627  * This is for use by irq controllers that use a radix tree reverse
628  * mapping for fast lookup.
629  */
630 void irq_radix_revmap_insert(struct irq_domain *domain, unsigned int virq,
631                              irq_hw_number_t hwirq)
632 {
633         struct irq_data *irq_data = irq_get_irq_data(virq);
634
635         if (WARN_ON(domain->revmap_type != IRQ_DOMAIN_MAP_TREE))
636                 return;
637
638         if (virq) {
639                 mutex_lock(&revmap_trees_mutex);
640                 radix_tree_insert(&domain->revmap_data.tree, hwirq, irq_data);
641                 mutex_unlock(&revmap_trees_mutex);
642         }
643 }
644
645 /**
646  * irq_linear_revmap() - Find a linux irq from a hw irq number.
647  * @domain: domain owning this hardware interrupt
648  * @hwirq: hardware irq number in that domain space
649  *
650  * This is a fast path, for use by irq controller code that uses linear
651  * revmaps. It does fallback to the slow path if the revmap doesn't exist
652  * yet and will create the revmap entry with appropriate locking
653  */
654 unsigned int irq_linear_revmap(struct irq_domain *domain,
655                                irq_hw_number_t hwirq)
656 {
657         unsigned int *revmap;
658
659         if (WARN_ON_ONCE(domain->revmap_type != IRQ_DOMAIN_MAP_LINEAR))
660                 return irq_find_mapping(domain, hwirq);
661
662         /* Check revmap bounds */
663         if (unlikely(hwirq >= domain->revmap_data.linear.size))
664                 return irq_find_mapping(domain, hwirq);
665
666         /* Check if revmap was allocated */
667         revmap = domain->revmap_data.linear.revmap;
668         if (unlikely(revmap == NULL))
669                 return irq_find_mapping(domain, hwirq);
670
671         /* Fill up revmap with slow path if no mapping found */
672         if (unlikely(!revmap[hwirq]))
673                 revmap[hwirq] = irq_find_mapping(domain, hwirq);
674
675         return revmap[hwirq];
676 }
677
678 #ifdef CONFIG_IRQ_DOMAIN_DEBUG
679 static int virq_debug_show(struct seq_file *m, void *private)
680 {
681         unsigned long flags;
682         struct irq_desc *desc;
683         const char *p;
684         static const char none[] = "none";
685         void *data;
686         int i;
687
688         seq_printf(m, "%-5s  %-7s  %-15s  %-*s  %s\n", "irq", "hwirq",
689                       "chip name", (int)(2 * sizeof(void *) + 2), "chip data",
690                       "domain name");
691
692         for (i = 1; i < nr_irqs; i++) {
693                 desc = irq_to_desc(i);
694                 if (!desc)
695                         continue;
696
697                 raw_spin_lock_irqsave(&desc->lock, flags);
698
699                 if (desc->action && desc->action->handler) {
700                         struct irq_chip *chip;
701
702                         seq_printf(m, "%5d  ", i);
703                         seq_printf(m, "0x%05lx  ", desc->irq_data.hwirq);
704
705                         chip = irq_desc_get_chip(desc);
706                         if (chip && chip->name)
707                                 p = chip->name;
708                         else
709                                 p = none;
710                         seq_printf(m, "%-15s  ", p);
711
712                         data = irq_desc_get_chip_data(desc);
713                         seq_printf(m, data ? "0x%p  " : "  %p  ", data);
714
715                         if (desc->irq_data.domain && desc->irq_data.domain->of_node)
716                                 p = desc->irq_data.domain->of_node->full_name;
717                         else
718                                 p = none;
719                         seq_printf(m, "%s\n", p);
720                 }
721
722                 raw_spin_unlock_irqrestore(&desc->lock, flags);
723         }
724
725         return 0;
726 }
727
728 static int virq_debug_open(struct inode *inode, struct file *file)
729 {
730         return single_open(file, virq_debug_show, inode->i_private);
731 }
732
733 static const struct file_operations virq_debug_fops = {
734         .open = virq_debug_open,
735         .read = seq_read,
736         .llseek = seq_lseek,
737         .release = single_release,
738 };
739
740 static int __init irq_debugfs_init(void)
741 {
742         if (debugfs_create_file("irq_domain_mapping", S_IRUGO, NULL,
743                                  NULL, &virq_debug_fops) == NULL)
744                 return -ENOMEM;
745
746         return 0;
747 }
748 __initcall(irq_debugfs_init);
749 #endif /* CONFIG_IRQ_DOMAIN_DEBUG */
750
751 int irq_domain_simple_map(struct irq_domain *d, unsigned int irq,
752                           irq_hw_number_t hwirq)
753 {
754         return 0;
755 }
756
757 /**
758  * irq_domain_xlate_onecell() - Generic xlate for direct one cell bindings
759  *
760  * Device Tree IRQ specifier translation function which works with one cell
761  * bindings where the cell value maps directly to the hwirq number.
762  */
763 int irq_domain_xlate_onecell(struct irq_domain *d, struct device_node *ctrlr,
764                              const u32 *intspec, unsigned int intsize,
765                              unsigned long *out_hwirq, unsigned int *out_type)
766 {
767         if (WARN_ON(intsize < 1))
768                 return -EINVAL;
769         *out_hwirq = intspec[0];
770         *out_type = IRQ_TYPE_NONE;
771         return 0;
772 }
773 EXPORT_SYMBOL_GPL(irq_domain_xlate_onecell);
774
775 /**
776  * irq_domain_xlate_twocell() - Generic xlate for direct two cell bindings
777  *
778  * Device Tree IRQ specifier translation function which works with two cell
779  * bindings where the cell values map directly to the hwirq number
780  * and linux irq flags.
781  */
782 int irq_domain_xlate_twocell(struct irq_domain *d, struct device_node *ctrlr,
783                         const u32 *intspec, unsigned int intsize,
784                         irq_hw_number_t *out_hwirq, unsigned int *out_type)
785 {
786         if (WARN_ON(intsize < 2))
787                 return -EINVAL;
788         *out_hwirq = intspec[0];
789         *out_type = intspec[1] & IRQ_TYPE_SENSE_MASK;
790         return 0;
791 }
792 EXPORT_SYMBOL_GPL(irq_domain_xlate_twocell);
793
794 /**
795  * irq_domain_xlate_onetwocell() - Generic xlate for one or two cell bindings
796  *
797  * Device Tree IRQ specifier translation function which works with either one
798  * or two cell bindings where the cell values map directly to the hwirq number
799  * and linux irq flags.
800  *
801  * Note: don't use this function unless your interrupt controller explicitly
802  * supports both one and two cell bindings.  For the majority of controllers
803  * the _onecell() or _twocell() variants above should be used.
804  */
805 int irq_domain_xlate_onetwocell(struct irq_domain *d,
806                                 struct device_node *ctrlr,
807                                 const u32 *intspec, unsigned int intsize,
808                                 unsigned long *out_hwirq, unsigned int *out_type)
809 {
810         if (WARN_ON(intsize < 1))
811                 return -EINVAL;
812         *out_hwirq = intspec[0];
813         *out_type = (intsize > 1) ? intspec[1] : IRQ_TYPE_NONE;
814         return 0;
815 }
816 EXPORT_SYMBOL_GPL(irq_domain_xlate_onetwocell);
817
818 const struct irq_domain_ops irq_domain_simple_ops = {
819         .map = irq_domain_simple_map,
820         .xlate = irq_domain_xlate_onetwocell,
821 };
822 EXPORT_SYMBOL_GPL(irq_domain_simple_ops);
823
824 #ifdef CONFIG_OF_IRQ
825 void irq_domain_generate_simple(const struct of_device_id *match,
826                                 u64 phys_base, unsigned int irq_start)
827 {
828         struct device_node *node;
829         pr_debug("looking for phys_base=%llx, irq_start=%i\n",
830                 (unsigned long long) phys_base, (int) irq_start);
831         node = of_find_matching_node_by_address(NULL, match, phys_base);
832         if (node)
833                 irq_domain_add_legacy(node, 32, irq_start, 0,
834                                       &irq_domain_simple_ops, NULL);
835 }
836 EXPORT_SYMBOL_GPL(irq_domain_generate_simple);
837 #endif