]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/irq/irqdomain.c
genirq: Introduce struct irq_common_data to host shared irq data
[mirror_ubuntu-artful-kernel.git] / kernel / irq / irqdomain.c
CommitLineData
54a90588
PM
1#define pr_fmt(fmt) "irq: " fmt
2
cc79ca69
GL
3#include <linux/debugfs.h>
4#include <linux/hardirq.h>
5#include <linux/interrupt.h>
08a543ad 6#include <linux/irq.h>
cc79ca69 7#include <linux/irqdesc.h>
08a543ad
GL
8#include <linux/irqdomain.h>
9#include <linux/module.h>
10#include <linux/mutex.h>
11#include <linux/of.h>
7e713301 12#include <linux/of_address.h>
64be38ab 13#include <linux/of_irq.h>
5ca4db61 14#include <linux/topology.h>
cc79ca69 15#include <linux/seq_file.h>
7e713301 16#include <linux/slab.h>
cc79ca69
GL
17#include <linux/smp.h>
18#include <linux/fs.h>
08a543ad
GL
19
20static LIST_HEAD(irq_domain_list);
21static DEFINE_MUTEX(irq_domain_mutex);
22
cc79ca69 23static DEFINE_MUTEX(revmap_trees_mutex);
68700650 24static struct irq_domain *irq_default_domain;
cc79ca69 25
f8264e34
JL
26static int irq_domain_alloc_descs(int virq, unsigned int nr_irqs,
27 irq_hw_number_t hwirq, int node);
28static void irq_domain_check_hierarchy(struct irq_domain *domain);
29
cc79ca69 30/**
fa40f377 31 * __irq_domain_add() - Allocate a new irq_domain data structure
cc79ca69 32 * @of_node: optional device-tree node of the interrupt controller
fa40f377 33 * @size: Size of linear map; 0 for radix mapping only
a257954b 34 * @hwirq_max: Maximum number of interrupts supported by controller
fa40f377
GL
35 * @direct_max: Maximum value of direct maps; Use ~0 for no limit; 0 for no
36 * direct mapping
f8264e34 37 * @ops: domain callbacks
a8db8cf0 38 * @host_data: Controller private data pointer
cc79ca69 39 *
a257954b
JL
40 * Allocates and initialize and irq_domain structure.
41 * Returns pointer to IRQ domain, or NULL on failure.
cc79ca69 42 */
ddaf144c
GL
43struct irq_domain *__irq_domain_add(struct device_node *of_node, int size,
44 irq_hw_number_t hwirq_max, int direct_max,
fa40f377
GL
45 const struct irq_domain_ops *ops,
46 void *host_data)
cc79ca69 47{
a8db8cf0 48 struct irq_domain *domain;
cc79ca69 49
cef5075c
GL
50 domain = kzalloc_node(sizeof(*domain) + (sizeof(unsigned int) * size),
51 GFP_KERNEL, of_node_to_nid(of_node));
a8db8cf0 52 if (WARN_ON(!domain))
cc79ca69
GL
53 return NULL;
54
55 /* Fill structure */
1aa0dd94 56 INIT_RADIX_TREE(&domain->revmap_tree, GFP_KERNEL);
68700650 57 domain->ops = ops;
a8db8cf0 58 domain->host_data = host_data;
68700650 59 domain->of_node = of_node_get(of_node);
ddaf144c 60 domain->hwirq_max = hwirq_max;
1aa0dd94 61 domain->revmap_size = size;
fa40f377 62 domain->revmap_direct_max_irq = direct_max;
f8264e34 63 irq_domain_check_hierarchy(domain);
cc79ca69 64
a8db8cf0
GL
65 mutex_lock(&irq_domain_mutex);
66 list_add(&domain->link, &irq_domain_list);
67 mutex_unlock(&irq_domain_mutex);
fa40f377 68
1aa0dd94 69 pr_debug("Added domain %s\n", domain->name);
fa40f377 70 return domain;
a8db8cf0 71}
fa40f377 72EXPORT_SYMBOL_GPL(__irq_domain_add);
a8db8cf0 73
58ee99ad
PM
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 */
82void irq_domain_remove(struct irq_domain *domain)
83{
84 mutex_lock(&irq_domain_mutex);
85
cef5075c
GL
86 /*
87 * radix_tree_delete() takes care of destroying the root
88 * node when all entries are removed. Shout if there are
89 * any mappings left.
90 */
1aa0dd94 91 WARN_ON(domain->revmap_tree.height);
58ee99ad
PM
92
93 list_del(&domain->link);
94
95 /*
96 * If the going away domain is the default one, reset it.
97 */
98 if (unlikely(irq_default_domain == domain))
99 irq_set_default_host(NULL);
100
101 mutex_unlock(&irq_domain_mutex);
102
1aa0dd94 103 pr_debug("Removed domain %s\n", domain->name);
58ee99ad 104
fa40f377
GL
105 of_node_put(domain->of_node);
106 kfree(domain);
58ee99ad 107}
ecd84eb2 108EXPORT_SYMBOL_GPL(irq_domain_remove);
58ee99ad 109
781d0f46 110/**
fa40f377 111 * irq_domain_add_simple() - Register an irq_domain and optionally map a range of irqs
781d0f46
MB
112 * @of_node: pointer to interrupt controller's device tree node.
113 * @size: total number of irqs in mapping
94a63da0 114 * @first_irq: first number of irq block assigned to the domain,
fa40f377
GL
115 * pass zero to assign irqs on-the-fly. If first_irq is non-zero, then
116 * pre-map all of the irqs in the domain to virqs starting at first_irq.
f8264e34 117 * @ops: domain callbacks
781d0f46
MB
118 * @host_data: Controller private data pointer
119 *
fa40f377
GL
120 * Allocates an irq_domain, and optionally if first_irq is positive then also
121 * allocate irq_descs and map all of the hwirqs to virqs starting at first_irq.
781d0f46
MB
122 *
123 * This is intended to implement the expected behaviour for most
fa40f377
GL
124 * interrupt controllers. If device tree is used, then first_irq will be 0 and
125 * irqs get mapped dynamically on the fly. However, if the controller requires
126 * static virq assignments (non-DT boot) then it will set that up correctly.
781d0f46
MB
127 */
128struct irq_domain *irq_domain_add_simple(struct device_node *of_node,
129 unsigned int size,
130 unsigned int first_irq,
131 const struct irq_domain_ops *ops,
132 void *host_data)
133{
fa40f377
GL
134 struct irq_domain *domain;
135
ddaf144c 136 domain = __irq_domain_add(of_node, size, size, 0, ops, host_data);
fa40f377
GL
137 if (!domain)
138 return NULL;
2854d167 139
fa40f377 140 if (first_irq > 0) {
2854d167 141 if (IS_ENABLED(CONFIG_SPARSE_IRQ)) {
fa40f377
GL
142 /* attempt to allocated irq_descs */
143 int rc = irq_alloc_descs(first_irq, first_irq, size,
144 of_node_to_nid(of_node));
145 if (rc < 0)
d202b7b9
LW
146 pr_info("Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n",
147 first_irq);
fa40f377 148 }
ddaf144c 149 irq_domain_associate_many(domain, first_irq, 0, size);
2854d167
LW
150 }
151
fa40f377 152 return domain;
781d0f46 153}
346dbb79 154EXPORT_SYMBOL_GPL(irq_domain_add_simple);
781d0f46 155
a8db8cf0
GL
156/**
157 * irq_domain_add_legacy() - Allocate and register a legacy revmap irq_domain.
158 * @of_node: pointer to interrupt controller's device tree node.
1bc04f2c
GL
159 * @size: total number of irqs in legacy mapping
160 * @first_irq: first number of irq block assigned to the domain
161 * @first_hwirq: first hwirq number to use for the translation. Should normally
162 * be '0', but a positive integer can be used if the effective
163 * hwirqs numbering does not begin at zero.
a8db8cf0
GL
164 * @ops: map/unmap domain callbacks
165 * @host_data: Controller private data pointer
166 *
167 * Note: the map() callback will be called before this function returns
168 * for all legacy interrupts except 0 (which is always the invalid irq for
169 * a legacy controller).
170 */
171struct irq_domain *irq_domain_add_legacy(struct device_node *of_node,
1bc04f2c
GL
172 unsigned int size,
173 unsigned int first_irq,
174 irq_hw_number_t first_hwirq,
a18dc81b 175 const struct irq_domain_ops *ops,
a8db8cf0
GL
176 void *host_data)
177{
1bc04f2c 178 struct irq_domain *domain;
a8db8cf0 179
ddaf144c
GL
180 domain = __irq_domain_add(of_node, first_hwirq + size,
181 first_hwirq + size, 0, ops, host_data);
f8264e34
JL
182 if (domain)
183 irq_domain_associate_many(domain, first_irq, first_hwirq, size);
1bc04f2c 184
a8db8cf0
GL
185 return domain;
186}
ecd84eb2 187EXPORT_SYMBOL_GPL(irq_domain_add_legacy);
a8db8cf0 188
cc79ca69
GL
189/**
190 * irq_find_host() - Locates a domain for a given device node
191 * @node: device-tree node of the interrupt controller
192 */
193struct irq_domain *irq_find_host(struct device_node *node)
194{
195 struct irq_domain *h, *found = NULL;
a18dc81b 196 int rc;
cc79ca69
GL
197
198 /* We might want to match the legacy controller last since
199 * it might potentially be set to match all interrupts in
200 * the absence of a device node. This isn't a problem so far
201 * yet though...
202 */
203 mutex_lock(&irq_domain_mutex);
a18dc81b
GL
204 list_for_each_entry(h, &irq_domain_list, link) {
205 if (h->ops->match)
206 rc = h->ops->match(h, node);
207 else
208 rc = (h->of_node != NULL) && (h->of_node == node);
209
210 if (rc) {
cc79ca69
GL
211 found = h;
212 break;
213 }
a18dc81b 214 }
cc79ca69
GL
215 mutex_unlock(&irq_domain_mutex);
216 return found;
217}
218EXPORT_SYMBOL_GPL(irq_find_host);
219
220/**
221 * irq_set_default_host() - Set a "default" irq domain
68700650 222 * @domain: default domain pointer
cc79ca69
GL
223 *
224 * For convenience, it's possible to set a "default" domain that will be used
225 * whenever NULL is passed to irq_create_mapping(). It makes life easier for
226 * platforms that want to manipulate a few hard coded interrupt numbers that
227 * aren't properly represented in the device-tree.
228 */
68700650 229void irq_set_default_host(struct irq_domain *domain)
cc79ca69 230{
54a90588 231 pr_debug("Default domain set to @0x%p\n", domain);
cc79ca69 232
68700650 233 irq_default_domain = domain;
cc79ca69 234}
ecd84eb2 235EXPORT_SYMBOL_GPL(irq_set_default_host);
cc79ca69 236
43a77591 237void irq_domain_disassociate(struct irq_domain *domain, unsigned int irq)
913af207 238{
ddaf144c
GL
239 struct irq_data *irq_data = irq_get_irq_data(irq);
240 irq_hw_number_t hwirq;
913af207 241
ddaf144c
GL
242 if (WARN(!irq_data || irq_data->domain != domain,
243 "virq%i doesn't exist; cannot disassociate\n", irq))
244 return;
913af207 245
ddaf144c
GL
246 hwirq = irq_data->hwirq;
247 irq_set_status_flags(irq, IRQ_NOREQUEST);
913af207 248
ddaf144c
GL
249 /* remove chip and handler */
250 irq_set_chip_and_handler(irq, NULL, NULL);
913af207 251
ddaf144c
GL
252 /* Make sure it's completed */
253 synchronize_irq(irq);
913af207 254
ddaf144c
GL
255 /* Tell the PIC about it */
256 if (domain->ops->unmap)
257 domain->ops->unmap(domain, irq);
258 smp_mb();
913af207 259
ddaf144c
GL
260 irq_data->domain = NULL;
261 irq_data->hwirq = 0;
913af207 262
ddaf144c
GL
263 /* Clear reverse map for this hwirq */
264 if (hwirq < domain->revmap_size) {
265 domain->linear_revmap[hwirq] = 0;
266 } else {
267 mutex_lock(&revmap_trees_mutex);
268 radix_tree_delete(&domain->revmap_tree, hwirq);
269 mutex_unlock(&revmap_trees_mutex);
913af207
GL
270 }
271}
272
ddaf144c
GL
273int irq_domain_associate(struct irq_domain *domain, unsigned int virq,
274 irq_hw_number_t hwirq)
cc79ca69 275{
ddaf144c
GL
276 struct irq_data *irq_data = irq_get_irq_data(virq);
277 int ret;
cc79ca69 278
ddaf144c
GL
279 if (WARN(hwirq >= domain->hwirq_max,
280 "error: hwirq 0x%x is too large for %s\n", (int)hwirq, domain->name))
281 return -EINVAL;
282 if (WARN(!irq_data, "error: virq%i is not allocated", virq))
283 return -EINVAL;
284 if (WARN(irq_data->domain, "error: virq%i is already associated", virq))
285 return -EINVAL;
cc79ca69 286
ddaf144c
GL
287 mutex_lock(&irq_domain_mutex);
288 irq_data->hwirq = hwirq;
289 irq_data->domain = domain;
290 if (domain->ops->map) {
291 ret = domain->ops->map(domain, virq, hwirq);
292 if (ret != 0) {
293 /*
294 * If map() returns -EPERM, this interrupt is protected
295 * by the firmware or some other service and shall not
296 * be mapped. Don't bother telling the user about it.
297 */
298 if (ret != -EPERM) {
299 pr_info("%s didn't like hwirq-0x%lx to VIRQ%i mapping (rc=%d)\n",
300 domain->name, hwirq, virq, ret);
f5a1ad05 301 }
ddaf144c
GL
302 irq_data->domain = NULL;
303 irq_data->hwirq = 0;
304 mutex_unlock(&irq_domain_mutex);
305 return ret;
98aa468e
GL
306 }
307
ddaf144c
GL
308 /* If not already assigned, give the domain the chip's name */
309 if (!domain->name && irq_data->chip)
310 domain->name = irq_data->chip->name;
311 }
2a71a1a9 312
ddaf144c
GL
313 if (hwirq < domain->revmap_size) {
314 domain->linear_revmap[hwirq] = virq;
315 } else {
316 mutex_lock(&revmap_trees_mutex);
317 radix_tree_insert(&domain->revmap_tree, hwirq, irq_data);
318 mutex_unlock(&revmap_trees_mutex);
98aa468e 319 }
ddaf144c
GL
320 mutex_unlock(&irq_domain_mutex);
321
322 irq_clear_status_flags(virq, IRQ_NOREQUEST);
cc79ca69
GL
323
324 return 0;
325}
ddaf144c 326EXPORT_SYMBOL_GPL(irq_domain_associate);
98aa468e 327
ddaf144c
GL
328void irq_domain_associate_many(struct irq_domain *domain, unsigned int irq_base,
329 irq_hw_number_t hwirq_base, int count)
330{
331 int i;
332
333 pr_debug("%s(%s, irqbase=%i, hwbase=%i, count=%i)\n", __func__,
334 of_node_full_name(domain->of_node), irq_base, (int)hwirq_base, count);
335
336 for (i = 0; i < count; i++) {
337 irq_domain_associate(domain, irq_base + i, hwirq_base + i);
338 }
cc79ca69 339}
98aa468e 340EXPORT_SYMBOL_GPL(irq_domain_associate_many);
cc79ca69
GL
341
342/**
343 * irq_create_direct_mapping() - Allocate an irq for direct mapping
68700650 344 * @domain: domain to allocate the irq for or NULL for default domain
cc79ca69
GL
345 *
346 * This routine is used for irq controllers which can choose the hardware
347 * interrupt numbers they generate. In such a case it's simplest to use
1aa0dd94
GL
348 * the linux irq as the hardware interrupt number. It still uses the linear
349 * or radix tree to store the mapping, but the irq controller can optimize
350 * the revmap path by using the hwirq directly.
cc79ca69 351 */
68700650 352unsigned int irq_create_direct_mapping(struct irq_domain *domain)
cc79ca69
GL
353{
354 unsigned int virq;
355
68700650
GL
356 if (domain == NULL)
357 domain = irq_default_domain;
cc79ca69 358
5ca4db61 359 virq = irq_alloc_desc_from(1, of_node_to_nid(domain->of_node));
03848373 360 if (!virq) {
54a90588 361 pr_debug("create_direct virq allocation failed\n");
03848373 362 return 0;
cc79ca69 363 }
1aa0dd94 364 if (virq >= domain->revmap_direct_max_irq) {
cc79ca69 365 pr_err("ERROR: no free irqs available below %i maximum\n",
1aa0dd94 366 domain->revmap_direct_max_irq);
cc79ca69
GL
367 irq_free_desc(virq);
368 return 0;
369 }
54a90588 370 pr_debug("create_direct obtained virq %d\n", virq);
cc79ca69 371
98aa468e 372 if (irq_domain_associate(domain, virq, virq)) {
cc79ca69 373 irq_free_desc(virq);
03848373 374 return 0;
cc79ca69
GL
375 }
376
377 return virq;
378}
ecd84eb2 379EXPORT_SYMBOL_GPL(irq_create_direct_mapping);
cc79ca69
GL
380
381/**
382 * irq_create_mapping() - Map a hardware interrupt into linux irq space
68700650
GL
383 * @domain: domain owning this hardware interrupt or NULL for default domain
384 * @hwirq: hardware irq number in that domain space
cc79ca69
GL
385 *
386 * Only one mapping per hardware interrupt is permitted. Returns a linux
387 * irq number.
388 * If the sense/trigger is to be specified, set_irq_type() should be called
389 * on the number returned from that call.
390 */
68700650 391unsigned int irq_create_mapping(struct irq_domain *domain,
cc79ca69
GL
392 irq_hw_number_t hwirq)
393{
5b7526e3 394 int virq;
cc79ca69 395
54a90588 396 pr_debug("irq_create_mapping(0x%p, 0x%lx)\n", domain, hwirq);
cc79ca69 397
68700650
GL
398 /* Look for default domain if nececssary */
399 if (domain == NULL)
400 domain = irq_default_domain;
401 if (domain == NULL) {
798f0fd1 402 WARN(1, "%s(, %lx) called with NULL domain\n", __func__, hwirq);
03848373 403 return 0;
cc79ca69 404 }
54a90588 405 pr_debug("-> using domain @%p\n", domain);
cc79ca69
GL
406
407 /* Check if mapping already exists */
68700650 408 virq = irq_find_mapping(domain, hwirq);
03848373 409 if (virq) {
54a90588 410 pr_debug("-> existing mapping on virq %d\n", virq);
cc79ca69
GL
411 return virq;
412 }
413
1bc04f2c 414 /* Allocate a virtual interrupt number */
f8264e34
JL
415 virq = irq_domain_alloc_descs(-1, 1, hwirq,
416 of_node_to_nid(domain->of_node));
5b7526e3 417 if (virq <= 0) {
54a90588 418 pr_debug("-> virq allocation failed\n");
1bc04f2c 419 return 0;
cc79ca69
GL
420 }
421
98aa468e 422 if (irq_domain_associate(domain, virq, hwirq)) {
73255704 423 irq_free_desc(virq);
03848373 424 return 0;
cc79ca69
GL
425 }
426
54a90588 427 pr_debug("irq %lu on domain %s mapped to virtual irq %u\n",
efd68e72 428 hwirq, of_node_full_name(domain->of_node), virq);
cc79ca69
GL
429
430 return virq;
431}
432EXPORT_SYMBOL_GPL(irq_create_mapping);
433
98aa468e
GL
434/**
435 * irq_create_strict_mappings() - Map a range of hw irqs to fixed linux irqs
436 * @domain: domain owning the interrupt range
437 * @irq_base: beginning of linux IRQ range
438 * @hwirq_base: beginning of hardware IRQ range
439 * @count: Number of interrupts to map
440 *
441 * This routine is used for allocating and mapping a range of hardware
442 * irqs to linux irqs where the linux irq numbers are at pre-defined
443 * locations. For use by controllers that already have static mappings
444 * to insert in to the domain.
445 *
446 * Non-linear users can use irq_create_identity_mapping() for IRQ-at-a-time
447 * domain insertion.
448 *
449 * 0 is returned upon success, while any failure to establish a static
450 * mapping is treated as an error.
451 */
452int irq_create_strict_mappings(struct irq_domain *domain, unsigned int irq_base,
453 irq_hw_number_t hwirq_base, int count)
454{
455 int ret;
456
457 ret = irq_alloc_descs(irq_base, irq_base, count,
458 of_node_to_nid(domain->of_node));
459 if (unlikely(ret < 0))
460 return ret;
461
ddaf144c 462 irq_domain_associate_many(domain, irq_base, hwirq_base, count);
98aa468e
GL
463 return 0;
464}
465EXPORT_SYMBOL_GPL(irq_create_strict_mappings);
466
e6d30ab1 467unsigned int irq_create_of_mapping(struct of_phandle_args *irq_data)
cc79ca69 468{
68700650 469 struct irq_domain *domain;
cc79ca69
GL
470 irq_hw_number_t hwirq;
471 unsigned int type = IRQ_TYPE_NONE;
f8264e34 472 int virq;
cc79ca69 473
e6d30ab1 474 domain = irq_data->np ? irq_find_host(irq_data->np) : irq_default_domain;
68700650 475 if (!domain) {
798f0fd1 476 pr_warn("no irq domain found for %s !\n",
e6d30ab1 477 of_node_full_name(irq_data->np));
03848373 478 return 0;
cc79ca69
GL
479 }
480
68700650
GL
481 /* If domain has no translation, then we assume interrupt line */
482 if (domain->ops->xlate == NULL)
e6d30ab1 483 hwirq = irq_data->args[0];
cc79ca69 484 else {
e6d30ab1
GL
485 if (domain->ops->xlate(domain, irq_data->np, irq_data->args,
486 irq_data->args_count, &hwirq, &type))
03848373 487 return 0;
cc79ca69
GL
488 }
489
0cc01aba
YC
490 if (irq_domain_is_hierarchy(domain)) {
491 /*
492 * If we've already configured this interrupt,
493 * don't do it again, or hell will break loose.
494 */
495 virq = irq_find_mapping(domain, hwirq);
496 if (virq)
497 return virq;
498
499 virq = irq_domain_alloc_irqs(domain, 1, NUMA_NO_NODE, irq_data);
500 if (virq <= 0)
501 return 0;
502 } else {
503 /* Create mapping */
504 virq = irq_create_mapping(domain, hwirq);
505 if (!virq)
506 return virq;
507 }
cc79ca69
GL
508
509 /* Set type if specified and different than the current one */
510 if (type != IRQ_TYPE_NONE &&
fbab62c5 511 type != irq_get_trigger_type(virq))
cc79ca69
GL
512 irq_set_irq_type(virq, type);
513 return virq;
514}
515EXPORT_SYMBOL_GPL(irq_create_of_mapping);
516
517/**
518 * irq_dispose_mapping() - Unmap an interrupt
519 * @virq: linux irq number of the interrupt to unmap
520 */
521void irq_dispose_mapping(unsigned int virq)
522{
523 struct irq_data *irq_data = irq_get_irq_data(virq);
68700650 524 struct irq_domain *domain;
cc79ca69 525
03848373 526 if (!virq || !irq_data)
cc79ca69
GL
527 return;
528
68700650
GL
529 domain = irq_data->domain;
530 if (WARN_ON(domain == NULL))
cc79ca69
GL
531 return;
532
ddaf144c 533 irq_domain_disassociate(domain, virq);
cc79ca69
GL
534 irq_free_desc(virq);
535}
536EXPORT_SYMBOL_GPL(irq_dispose_mapping);
537
538/**
539 * irq_find_mapping() - Find a linux irq from an hw irq number.
68700650
GL
540 * @domain: domain owning this hardware interrupt
541 * @hwirq: hardware irq number in that domain space
cc79ca69 542 */
68700650 543unsigned int irq_find_mapping(struct irq_domain *domain,
cc79ca69
GL
544 irq_hw_number_t hwirq)
545{
4c0946c4 546 struct irq_data *data;
cc79ca69 547
68700650
GL
548 /* Look for default domain if nececssary */
549 if (domain == NULL)
550 domain = irq_default_domain;
551 if (domain == NULL)
03848373 552 return 0;
cc79ca69 553
1aa0dd94 554 if (hwirq < domain->revmap_direct_max_irq) {
f8264e34
JL
555 data = irq_domain_get_irq_data(domain, hwirq);
556 if (data && data->hwirq == hwirq)
4c0946c4 557 return hwirq;
4c0946c4
GL
558 }
559
d3dcb436
GL
560 /* Check if the hwirq is in the linear revmap. */
561 if (hwirq < domain->revmap_size)
562 return domain->linear_revmap[hwirq];
cc79ca69 563
d3dcb436
GL
564 rcu_read_lock();
565 data = radix_tree_lookup(&domain->revmap_tree, hwirq);
566 rcu_read_unlock();
567 return data ? data->irq : 0;
cc79ca69 568}
cc79ca69 569EXPORT_SYMBOL_GPL(irq_find_mapping);
cc79ca69 570
092b2fb0 571#ifdef CONFIG_IRQ_DOMAIN_DEBUG
cc79ca69
GL
572static int virq_debug_show(struct seq_file *m, void *private)
573{
574 unsigned long flags;
575 struct irq_desc *desc;
1400ea86
GL
576 struct irq_domain *domain;
577 struct radix_tree_iter iter;
578 void *data, **slot;
cc79ca69
GL
579 int i;
580
1400ea86
GL
581 seq_printf(m, " %-16s %-6s %-10s %-10s %s\n",
582 "name", "mapped", "linear-max", "direct-max", "devtree-node");
583 mutex_lock(&irq_domain_mutex);
584 list_for_each_entry(domain, &irq_domain_list, link) {
585 int count = 0;
586 radix_tree_for_each_slot(slot, &domain->revmap_tree, &iter, 0)
587 count++;
588 seq_printf(m, "%c%-16s %6u %10u %10u %s\n",
589 domain == irq_default_domain ? '*' : ' ', domain->name,
590 domain->revmap_size + count, domain->revmap_size,
591 domain->revmap_direct_max_irq,
592 domain->of_node ? of_node_full_name(domain->of_node) : "");
593 }
594 mutex_unlock(&irq_domain_mutex);
595
596 seq_printf(m, "%-5s %-7s %-15s %-*s %6s %-14s %s\n", "irq", "hwirq",
5269a9ab 597 "chip name", (int)(2 * sizeof(void *) + 2), "chip data",
1400ea86 598 "active", "type", "domain");
cc79ca69
GL
599
600 for (i = 1; i < nr_irqs; i++) {
601 desc = irq_to_desc(i);
602 if (!desc)
603 continue;
604
605 raw_spin_lock_irqsave(&desc->lock, flags);
1400ea86 606 domain = desc->irq_data.domain;
cc79ca69 607
1400ea86 608 if (domain) {
cc79ca69 609 struct irq_chip *chip;
1400ea86
GL
610 int hwirq = desc->irq_data.hwirq;
611 bool direct;
cc79ca69
GL
612
613 seq_printf(m, "%5d ", i);
1400ea86 614 seq_printf(m, "0x%05x ", hwirq);
cc79ca69
GL
615
616 chip = irq_desc_get_chip(desc);
0bb4afb4 617 seq_printf(m, "%-15s ", (chip && chip->name) ? chip->name : "none");
cc79ca69
GL
618
619 data = irq_desc_get_chip_data(desc);
15e06bf6 620 seq_printf(m, data ? "0x%p " : " %p ", data);
cc79ca69 621
1400ea86
GL
622 seq_printf(m, " %c ", (desc->action && desc->action->handler) ? '*' : ' ');
623 direct = (i == hwirq) && (i < domain->revmap_direct_max_irq);
624 seq_printf(m, "%6s%-8s ",
625 (hwirq < domain->revmap_size) ? "LINEAR" : "RADIX",
626 direct ? "(DIRECT)" : "");
0bb4afb4 627 seq_printf(m, "%s\n", desc->irq_data.domain->name);
cc79ca69
GL
628 }
629
630 raw_spin_unlock_irqrestore(&desc->lock, flags);
631 }
632
633 return 0;
634}
635
636static int virq_debug_open(struct inode *inode, struct file *file)
637{
638 return single_open(file, virq_debug_show, inode->i_private);
639}
640
641static const struct file_operations virq_debug_fops = {
642 .open = virq_debug_open,
643 .read = seq_read,
644 .llseek = seq_lseek,
645 .release = single_release,
646};
647
648static int __init irq_debugfs_init(void)
649{
092b2fb0 650 if (debugfs_create_file("irq_domain_mapping", S_IRUGO, NULL,
cc79ca69
GL
651 NULL, &virq_debug_fops) == NULL)
652 return -ENOMEM;
653
654 return 0;
655}
656__initcall(irq_debugfs_init);
092b2fb0 657#endif /* CONFIG_IRQ_DOMAIN_DEBUG */
cc79ca69 658
16b2e6e2
GL
659/**
660 * irq_domain_xlate_onecell() - Generic xlate for direct one cell bindings
661 *
662 * Device Tree IRQ specifier translation function which works with one cell
663 * bindings where the cell value maps directly to the hwirq number.
664 */
665int irq_domain_xlate_onecell(struct irq_domain *d, struct device_node *ctrlr,
666 const u32 *intspec, unsigned int intsize,
667 unsigned long *out_hwirq, unsigned int *out_type)
7e713301 668{
16b2e6e2 669 if (WARN_ON(intsize < 1))
7e713301 670 return -EINVAL;
7e713301
GL
671 *out_hwirq = intspec[0];
672 *out_type = IRQ_TYPE_NONE;
7e713301
GL
673 return 0;
674}
16b2e6e2
GL
675EXPORT_SYMBOL_GPL(irq_domain_xlate_onecell);
676
677/**
678 * irq_domain_xlate_twocell() - Generic xlate for direct two cell bindings
679 *
680 * Device Tree IRQ specifier translation function which works with two cell
681 * bindings where the cell values map directly to the hwirq number
682 * and linux irq flags.
683 */
684int irq_domain_xlate_twocell(struct irq_domain *d, struct device_node *ctrlr,
685 const u32 *intspec, unsigned int intsize,
686 irq_hw_number_t *out_hwirq, unsigned int *out_type)
687{
688 if (WARN_ON(intsize < 2))
689 return -EINVAL;
690 *out_hwirq = intspec[0];
691 *out_type = intspec[1] & IRQ_TYPE_SENSE_MASK;
692 return 0;
693}
694EXPORT_SYMBOL_GPL(irq_domain_xlate_twocell);
695
696/**
697 * irq_domain_xlate_onetwocell() - Generic xlate for one or two cell bindings
698 *
699 * Device Tree IRQ specifier translation function which works with either one
700 * or two cell bindings where the cell values map directly to the hwirq number
701 * and linux irq flags.
702 *
703 * Note: don't use this function unless your interrupt controller explicitly
704 * supports both one and two cell bindings. For the majority of controllers
705 * the _onecell() or _twocell() variants above should be used.
706 */
707int irq_domain_xlate_onetwocell(struct irq_domain *d,
708 struct device_node *ctrlr,
709 const u32 *intspec, unsigned int intsize,
710 unsigned long *out_hwirq, unsigned int *out_type)
711{
712 if (WARN_ON(intsize < 1))
713 return -EINVAL;
714 *out_hwirq = intspec[0];
715 *out_type = (intsize > 1) ? intspec[1] : IRQ_TYPE_NONE;
716 return 0;
717}
718EXPORT_SYMBOL_GPL(irq_domain_xlate_onetwocell);
7e713301 719
a18dc81b 720const struct irq_domain_ops irq_domain_simple_ops = {
16b2e6e2 721 .xlate = irq_domain_xlate_onetwocell,
75294957
GL
722};
723EXPORT_SYMBOL_GPL(irq_domain_simple_ops);
f8264e34
JL
724
725static int irq_domain_alloc_descs(int virq, unsigned int cnt,
726 irq_hw_number_t hwirq, int node)
727{
728 unsigned int hint;
729
730 if (virq >= 0) {
731 virq = irq_alloc_descs(virq, virq, cnt, node);
732 } else {
733 hint = hwirq % nr_irqs;
734 if (hint == 0)
735 hint++;
736 virq = irq_alloc_descs_from(hint, cnt, node);
737 if (virq <= 0 && hint > 1)
738 virq = irq_alloc_descs_from(1, cnt, node);
739 }
740
741 return virq;
742}
743
744#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
afb7da83
JL
745/**
746 * irq_domain_add_hierarchy - Add a irqdomain into the hierarchy
747 * @parent: Parent irq domain to associate with the new domain
748 * @flags: Irq domain flags associated to the domain
749 * @size: Size of the domain. See below
750 * @node: Optional device-tree node of the interrupt controller
751 * @ops: Pointer to the interrupt domain callbacks
752 * @host_data: Controller private data pointer
753 *
754 * If @size is 0 a tree domain is created, otherwise a linear domain.
755 *
756 * If successful the parent is associated to the new domain and the
757 * domain flags are set.
758 * Returns pointer to IRQ domain, or NULL on failure.
759 */
760struct irq_domain *irq_domain_add_hierarchy(struct irq_domain *parent,
761 unsigned int flags,
762 unsigned int size,
763 struct device_node *node,
764 const struct irq_domain_ops *ops,
765 void *host_data)
766{
767 struct irq_domain *domain;
768
769 if (size)
770 domain = irq_domain_add_linear(node, size, ops, host_data);
771 else
772 domain = irq_domain_add_tree(node, ops, host_data);
773 if (domain) {
774 domain->parent = parent;
775 domain->flags |= flags;
776 }
777
778 return domain;
779}
780
f8264e34
JL
781static void irq_domain_insert_irq(int virq)
782{
783 struct irq_data *data;
784
785 for (data = irq_get_irq_data(virq); data; data = data->parent_data) {
786 struct irq_domain *domain = data->domain;
787 irq_hw_number_t hwirq = data->hwirq;
788
789 if (hwirq < domain->revmap_size) {
790 domain->linear_revmap[hwirq] = virq;
791 } else {
792 mutex_lock(&revmap_trees_mutex);
793 radix_tree_insert(&domain->revmap_tree, hwirq, data);
794 mutex_unlock(&revmap_trees_mutex);
795 }
796
797 /* If not already assigned, give the domain the chip's name */
798 if (!domain->name && data->chip)
799 domain->name = data->chip->name;
800 }
801
802 irq_clear_status_flags(virq, IRQ_NOREQUEST);
803}
804
805static void irq_domain_remove_irq(int virq)
806{
807 struct irq_data *data;
808
809 irq_set_status_flags(virq, IRQ_NOREQUEST);
810 irq_set_chip_and_handler(virq, NULL, NULL);
811 synchronize_irq(virq);
812 smp_mb();
813
814 for (data = irq_get_irq_data(virq); data; data = data->parent_data) {
815 struct irq_domain *domain = data->domain;
816 irq_hw_number_t hwirq = data->hwirq;
817
818 if (hwirq < domain->revmap_size) {
819 domain->linear_revmap[hwirq] = 0;
820 } else {
821 mutex_lock(&revmap_trees_mutex);
822 radix_tree_delete(&domain->revmap_tree, hwirq);
823 mutex_unlock(&revmap_trees_mutex);
824 }
825 }
826}
827
828static struct irq_data *irq_domain_insert_irq_data(struct irq_domain *domain,
829 struct irq_data *child)
830{
831 struct irq_data *irq_data;
832
833 irq_data = kzalloc_node(sizeof(*irq_data), GFP_KERNEL, child->node);
834 if (irq_data) {
835 child->parent_data = irq_data;
836 irq_data->irq = child->irq;
0d0b4c86 837 irq_data->common = child->common;
f8264e34
JL
838 irq_data->node = child->node;
839 irq_data->domain = domain;
840 }
841
842 return irq_data;
843}
844
845static void irq_domain_free_irq_data(unsigned int virq, unsigned int nr_irqs)
846{
847 struct irq_data *irq_data, *tmp;
848 int i;
849
850 for (i = 0; i < nr_irqs; i++) {
851 irq_data = irq_get_irq_data(virq + i);
852 tmp = irq_data->parent_data;
853 irq_data->parent_data = NULL;
854 irq_data->domain = NULL;
855
856 while (tmp) {
857 irq_data = tmp;
858 tmp = tmp->parent_data;
859 kfree(irq_data);
860 }
861 }
862}
863
864static int irq_domain_alloc_irq_data(struct irq_domain *domain,
865 unsigned int virq, unsigned int nr_irqs)
866{
867 struct irq_data *irq_data;
868 struct irq_domain *parent;
869 int i;
870
871 /* The outermost irq_data is embedded in struct irq_desc */
872 for (i = 0; i < nr_irqs; i++) {
873 irq_data = irq_get_irq_data(virq + i);
874 irq_data->domain = domain;
875
876 for (parent = domain->parent; parent; parent = parent->parent) {
877 irq_data = irq_domain_insert_irq_data(parent, irq_data);
878 if (!irq_data) {
879 irq_domain_free_irq_data(virq, i + 1);
880 return -ENOMEM;
881 }
882 }
883 }
884
885 return 0;
886}
887
888/**
889 * irq_domain_get_irq_data - Get irq_data associated with @virq and @domain
890 * @domain: domain to match
891 * @virq: IRQ number to get irq_data
892 */
893struct irq_data *irq_domain_get_irq_data(struct irq_domain *domain,
894 unsigned int virq)
895{
896 struct irq_data *irq_data;
897
898 for (irq_data = irq_get_irq_data(virq); irq_data;
899 irq_data = irq_data->parent_data)
900 if (irq_data->domain == domain)
901 return irq_data;
902
903 return NULL;
904}
905
906/**
907 * irq_domain_set_hwirq_and_chip - Set hwirq and irqchip of @virq at @domain
908 * @domain: Interrupt domain to match
909 * @virq: IRQ number
910 * @hwirq: The hwirq number
911 * @chip: The associated interrupt chip
912 * @chip_data: The associated chip data
913 */
914int irq_domain_set_hwirq_and_chip(struct irq_domain *domain, unsigned int virq,
915 irq_hw_number_t hwirq, struct irq_chip *chip,
916 void *chip_data)
917{
918 struct irq_data *irq_data = irq_domain_get_irq_data(domain, virq);
919
920 if (!irq_data)
921 return -ENOENT;
922
923 irq_data->hwirq = hwirq;
924 irq_data->chip = chip ? chip : &no_irq_chip;
925 irq_data->chip_data = chip_data;
926
927 return 0;
928}
929
1b537708
JL
930/**
931 * irq_domain_set_info - Set the complete data for a @virq in @domain
932 * @domain: Interrupt domain to match
933 * @virq: IRQ number
934 * @hwirq: The hardware interrupt number
935 * @chip: The associated interrupt chip
936 * @chip_data: The associated interrupt chip data
937 * @handler: The interrupt flow handler
938 * @handler_data: The interrupt flow handler data
939 * @handler_name: The interrupt handler name
940 */
941void irq_domain_set_info(struct irq_domain *domain, unsigned int virq,
942 irq_hw_number_t hwirq, struct irq_chip *chip,
943 void *chip_data, irq_flow_handler_t handler,
944 void *handler_data, const char *handler_name)
945{
946 irq_domain_set_hwirq_and_chip(domain, virq, hwirq, chip, chip_data);
947 __irq_set_handler(virq, handler, 0, handler_name);
948 irq_set_handler_data(virq, handler_data);
949}
950
f8264e34
JL
951/**
952 * irq_domain_reset_irq_data - Clear hwirq, chip and chip_data in @irq_data
953 * @irq_data: The pointer to irq_data
954 */
955void irq_domain_reset_irq_data(struct irq_data *irq_data)
956{
957 irq_data->hwirq = 0;
958 irq_data->chip = &no_irq_chip;
959 irq_data->chip_data = NULL;
960}
961
962/**
963 * irq_domain_free_irqs_common - Clear irq_data and free the parent
964 * @domain: Interrupt domain to match
965 * @virq: IRQ number to start with
966 * @nr_irqs: The number of irqs to free
967 */
968void irq_domain_free_irqs_common(struct irq_domain *domain, unsigned int virq,
969 unsigned int nr_irqs)
970{
971 struct irq_data *irq_data;
972 int i;
973
974 for (i = 0; i < nr_irqs; i++) {
975 irq_data = irq_domain_get_irq_data(domain, virq + i);
976 if (irq_data)
977 irq_domain_reset_irq_data(irq_data);
978 }
979 irq_domain_free_irqs_parent(domain, virq, nr_irqs);
980}
981
982/**
983 * irq_domain_free_irqs_top - Clear handler and handler data, clear irqdata and free parent
984 * @domain: Interrupt domain to match
985 * @virq: IRQ number to start with
986 * @nr_irqs: The number of irqs to free
987 */
988void irq_domain_free_irqs_top(struct irq_domain *domain, unsigned int virq,
989 unsigned int nr_irqs)
990{
991 int i;
992
993 for (i = 0; i < nr_irqs; i++) {
994 irq_set_handler_data(virq + i, NULL);
995 irq_set_handler(virq + i, NULL);
996 }
997 irq_domain_free_irqs_common(domain, virq, nr_irqs);
998}
999
36d72731
JL
1000static bool irq_domain_is_auto_recursive(struct irq_domain *domain)
1001{
1002 return domain->flags & IRQ_DOMAIN_FLAG_AUTO_RECURSIVE;
1003}
1004
1005static void irq_domain_free_irqs_recursive(struct irq_domain *domain,
1006 unsigned int irq_base,
1007 unsigned int nr_irqs)
1008{
1009 domain->ops->free(domain, irq_base, nr_irqs);
1010 if (irq_domain_is_auto_recursive(domain)) {
1011 BUG_ON(!domain->parent);
1012 irq_domain_free_irqs_recursive(domain->parent, irq_base,
1013 nr_irqs);
1014 }
1015}
1016
1017static int irq_domain_alloc_irqs_recursive(struct irq_domain *domain,
1018 unsigned int irq_base,
1019 unsigned int nr_irqs, void *arg)
1020{
1021 int ret = 0;
1022 struct irq_domain *parent = domain->parent;
1023 bool recursive = irq_domain_is_auto_recursive(domain);
1024
1025 BUG_ON(recursive && !parent);
1026 if (recursive)
1027 ret = irq_domain_alloc_irqs_recursive(parent, irq_base,
1028 nr_irqs, arg);
1029 if (ret >= 0)
1030 ret = domain->ops->alloc(domain, irq_base, nr_irqs, arg);
1031 if (ret < 0 && recursive)
1032 irq_domain_free_irqs_recursive(parent, irq_base, nr_irqs);
1033
1034 return ret;
1035}
1036
f8264e34
JL
1037/**
1038 * __irq_domain_alloc_irqs - Allocate IRQs from domain
1039 * @domain: domain to allocate from
1040 * @irq_base: allocate specified IRQ nubmer if irq_base >= 0
1041 * @nr_irqs: number of IRQs to allocate
1042 * @node: NUMA node id for memory allocation
1043 * @arg: domain specific argument
1044 * @realloc: IRQ descriptors have already been allocated if true
1045 *
1046 * Allocate IRQ numbers and initialized all data structures to support
1047 * hierarchy IRQ domains.
1048 * Parameter @realloc is mainly to support legacy IRQs.
1049 * Returns error code or allocated IRQ number
1050 *
1051 * The whole process to setup an IRQ has been split into two steps.
1052 * The first step, __irq_domain_alloc_irqs(), is to allocate IRQ
1053 * descriptor and required hardware resources. The second step,
1054 * irq_domain_activate_irq(), is to program hardwares with preallocated
1055 * resources. In this way, it's easier to rollback when failing to
1056 * allocate resources.
1057 */
1058int __irq_domain_alloc_irqs(struct irq_domain *domain, int irq_base,
1059 unsigned int nr_irqs, int node, void *arg,
1060 bool realloc)
1061{
1062 int i, ret, virq;
1063
1064 if (domain == NULL) {
1065 domain = irq_default_domain;
1066 if (WARN(!domain, "domain is NULL; cannot allocate IRQ\n"))
1067 return -EINVAL;
1068 }
1069
1070 if (!domain->ops->alloc) {
1071 pr_debug("domain->ops->alloc() is NULL\n");
1072 return -ENOSYS;
1073 }
1074
1075 if (realloc && irq_base >= 0) {
1076 virq = irq_base;
1077 } else {
1078 virq = irq_domain_alloc_descs(irq_base, nr_irqs, 0, node);
1079 if (virq < 0) {
1080 pr_debug("cannot allocate IRQ(base %d, count %d)\n",
1081 irq_base, nr_irqs);
1082 return virq;
1083 }
1084 }
1085
1086 if (irq_domain_alloc_irq_data(domain, virq, nr_irqs)) {
1087 pr_debug("cannot allocate memory for IRQ%d\n", virq);
1088 ret = -ENOMEM;
1089 goto out_free_desc;
1090 }
1091
1092 mutex_lock(&irq_domain_mutex);
36d72731 1093 ret = irq_domain_alloc_irqs_recursive(domain, virq, nr_irqs, arg);
f8264e34
JL
1094 if (ret < 0) {
1095 mutex_unlock(&irq_domain_mutex);
1096 goto out_free_irq_data;
1097 }
1098 for (i = 0; i < nr_irqs; i++)
1099 irq_domain_insert_irq(virq + i);
1100 mutex_unlock(&irq_domain_mutex);
1101
1102 return virq;
1103
1104out_free_irq_data:
1105 irq_domain_free_irq_data(virq, nr_irqs);
1106out_free_desc:
1107 irq_free_descs(virq, nr_irqs);
1108 return ret;
1109}
1110
1111/**
1112 * irq_domain_free_irqs - Free IRQ number and associated data structures
1113 * @virq: base IRQ number
1114 * @nr_irqs: number of IRQs to free
1115 */
1116void irq_domain_free_irqs(unsigned int virq, unsigned int nr_irqs)
1117{
1118 struct irq_data *data = irq_get_irq_data(virq);
1119 int i;
1120
1121 if (WARN(!data || !data->domain || !data->domain->ops->free,
1122 "NULL pointer, cannot free irq\n"))
1123 return;
1124
1125 mutex_lock(&irq_domain_mutex);
1126 for (i = 0; i < nr_irqs; i++)
1127 irq_domain_remove_irq(virq + i);
36d72731 1128 irq_domain_free_irqs_recursive(data->domain, virq, nr_irqs);
f8264e34
JL
1129 mutex_unlock(&irq_domain_mutex);
1130
1131 irq_domain_free_irq_data(virq, nr_irqs);
1132 irq_free_descs(virq, nr_irqs);
1133}
1134
36d72731
JL
1135/**
1136 * irq_domain_alloc_irqs_parent - Allocate interrupts from parent domain
1137 * @irq_base: Base IRQ number
1138 * @nr_irqs: Number of IRQs to allocate
1139 * @arg: Allocation data (arch/domain specific)
1140 *
1141 * Check whether the domain has been setup recursive. If not allocate
1142 * through the parent domain.
1143 */
1144int irq_domain_alloc_irqs_parent(struct irq_domain *domain,
1145 unsigned int irq_base, unsigned int nr_irqs,
1146 void *arg)
1147{
1148 /* irq_domain_alloc_irqs_recursive() has called parent's alloc() */
1149 if (irq_domain_is_auto_recursive(domain))
1150 return 0;
1151
1152 domain = domain->parent;
1153 if (domain)
1154 return irq_domain_alloc_irqs_recursive(domain, irq_base,
1155 nr_irqs, arg);
1156 return -ENOSYS;
1157}
1158
1159/**
1160 * irq_domain_free_irqs_parent - Free interrupts from parent domain
1161 * @irq_base: Base IRQ number
1162 * @nr_irqs: Number of IRQs to free
1163 *
1164 * Check whether the domain has been setup recursive. If not free
1165 * through the parent domain.
1166 */
1167void irq_domain_free_irqs_parent(struct irq_domain *domain,
1168 unsigned int irq_base, unsigned int nr_irqs)
1169{
1170 /* irq_domain_free_irqs_recursive() will call parent's free */
1171 if (!irq_domain_is_auto_recursive(domain) && domain->parent)
1172 irq_domain_free_irqs_recursive(domain->parent, irq_base,
1173 nr_irqs);
1174}
1175
f8264e34
JL
1176/**
1177 * irq_domain_activate_irq - Call domain_ops->activate recursively to activate
1178 * interrupt
1179 * @irq_data: outermost irq_data associated with interrupt
1180 *
1181 * This is the second step to call domain_ops->activate to program interrupt
1182 * controllers, so the interrupt could actually get delivered.
1183 */
1184void irq_domain_activate_irq(struct irq_data *irq_data)
1185{
1186 if (irq_data && irq_data->domain) {
1187 struct irq_domain *domain = irq_data->domain;
1188
1189 if (irq_data->parent_data)
1190 irq_domain_activate_irq(irq_data->parent_data);
1191 if (domain->ops->activate)
1192 domain->ops->activate(domain, irq_data);
1193 }
1194}
1195
1196/**
1197 * irq_domain_deactivate_irq - Call domain_ops->deactivate recursively to
1198 * deactivate interrupt
1199 * @irq_data: outermost irq_data associated with interrupt
1200 *
1201 * It calls domain_ops->deactivate to program interrupt controllers to disable
1202 * interrupt delivery.
1203 */
1204void irq_domain_deactivate_irq(struct irq_data *irq_data)
1205{
1206 if (irq_data && irq_data->domain) {
1207 struct irq_domain *domain = irq_data->domain;
1208
1209 if (domain->ops->deactivate)
1210 domain->ops->deactivate(domain, irq_data);
1211 if (irq_data->parent_data)
1212 irq_domain_deactivate_irq(irq_data->parent_data);
1213 }
1214}
1215
1216static void irq_domain_check_hierarchy(struct irq_domain *domain)
1217{
1218 /* Hierarchy irq_domains must implement callback alloc() */
1219 if (domain->ops->alloc)
1220 domain->flags |= IRQ_DOMAIN_FLAG_HIERARCHY;
1221}
1222#else /* CONFIG_IRQ_DOMAIN_HIERARCHY */
1223/**
1224 * irq_domain_get_irq_data - Get irq_data associated with @virq and @domain
1225 * @domain: domain to match
1226 * @virq: IRQ number to get irq_data
1227 */
1228struct irq_data *irq_domain_get_irq_data(struct irq_domain *domain,
1229 unsigned int virq)
1230{
1231 struct irq_data *irq_data = irq_get_irq_data(virq);
1232
1233 return (irq_data && irq_data->domain == domain) ? irq_data : NULL;
1234}
1235
1236static void irq_domain_check_hierarchy(struct irq_domain *domain)
1237{
1238}
1239#endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */