• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * irq_domain - IRQ translation domains
4  *
5  * Translation infrastructure between hw and linux irq numbers.  This is
6  * helpful for interrupt controllers to implement mapping between hardware
7  * irq numbers and the Linux irq number space.
8  *
9  * irq_domains also have hooks for translating device tree or other
10  * firmware interrupt representations into a hardware irq number that
11  * can be mapped back to a Linux irq number without any extra platform
12  * support code.
13  *
14  * Interrupt controller "domain" data structure. This could be defined as a
15  * irq domain controller. That is, it handles the mapping between hardware
16  * and virtual interrupt numbers for a given interrupt domain. The domain
17  * structure is generally created by the PIC code for a given PIC instance
18  * (though a domain can cover more than one PIC if they have a flat number
19  * model). It's the domain callbacks that are responsible for setting the
20  * irq_chip on a given irq_desc after it's been mapped.
21  *
22  * The host code and data structures use a fwnode_handle pointer to
23  * identify the domain. In some cases, and in order to preserve source
24  * code compatibility, this fwnode pointer is "upgraded" to a DT
25  * device_node. For those firmware infrastructures that do not provide
26  * a unique identifier for an interrupt controller, the irq_domain
27  * code offers a fwnode allocator.
28  */
29 
30 #ifndef _LINUX_IRQDOMAIN_H
31 #define _LINUX_IRQDOMAIN_H
32 
33 #include <linux/types.h>
34 #include <linux/irqhandler.h>
35 #include <linux/of.h>
36 #include <linux/mutex.h>
37 #include <linux/radix-tree.h>
38 #include <linux/android_kabi.h>
39 
40 struct device_node;
41 struct fwnode_handle;
42 struct irq_domain;
43 struct irq_chip;
44 struct irq_data;
45 struct irq_desc;
46 struct cpumask;
47 struct seq_file;
48 struct irq_affinity_desc;
49 
50 #define IRQ_DOMAIN_IRQ_SPEC_PARAMS 16
51 
52 /**
53  * struct irq_fwspec - generic IRQ specifier structure
54  *
55  * @fwnode:		Pointer to a firmware-specific descriptor
56  * @param_count:	Number of device-specific parameters
57  * @param:		Device-specific parameters
58  *
59  * This structure, directly modeled after of_phandle_args, is used to
60  * pass a device-specific description of an interrupt.
61  */
62 struct irq_fwspec {
63 	struct fwnode_handle *fwnode;
64 	int param_count;
65 	u32 param[IRQ_DOMAIN_IRQ_SPEC_PARAMS];
66 };
67 
68 /*
69  * Should several domains have the same device node, but serve
70  * different purposes (for example one domain is for PCI/MSI, and the
71  * other for wired IRQs), they can be distinguished using a
72  * bus-specific token. Most domains are expected to only carry
73  * DOMAIN_BUS_ANY.
74  */
75 enum irq_domain_bus_token {
76 	DOMAIN_BUS_ANY		= 0,
77 	DOMAIN_BUS_WIRED,
78 	DOMAIN_BUS_GENERIC_MSI,
79 	DOMAIN_BUS_PCI_MSI,
80 	DOMAIN_BUS_PLATFORM_MSI,
81 	DOMAIN_BUS_NEXUS,
82 	DOMAIN_BUS_IPI,
83 	DOMAIN_BUS_FSL_MC_MSI,
84 	DOMAIN_BUS_TI_SCI_INTA_MSI,
85 	DOMAIN_BUS_WAKEUP,
86 	DOMAIN_BUS_VMD_MSI,
87 };
88 
89 /**
90  * struct irq_domain_ops - Methods for irq_domain objects
91  * @match: Match an interrupt controller device node to a host, returns
92  *         1 on a match
93  * @map: Create or update a mapping between a virtual irq number and a hw
94  *       irq number. This is called only once for a given mapping.
95  * @unmap: Dispose of such a mapping
96  * @xlate: Given a device tree node and interrupt specifier, decode
97  *         the hardware irq number and linux irq type value.
98  *
99  * Functions below are provided by the driver and called whenever a new mapping
100  * is created or an old mapping is disposed. The driver can then proceed to
101  * whatever internal data structures management is required. It also needs
102  * to setup the irq_desc when returning from map().
103  */
104 struct irq_domain_ops {
105 	int (*match)(struct irq_domain *d, struct device_node *node,
106 		     enum irq_domain_bus_token bus_token);
107 	int (*select)(struct irq_domain *d, struct irq_fwspec *fwspec,
108 		      enum irq_domain_bus_token bus_token);
109 	int (*map)(struct irq_domain *d, unsigned int virq, irq_hw_number_t hw);
110 	void (*unmap)(struct irq_domain *d, unsigned int virq);
111 	int (*xlate)(struct irq_domain *d, struct device_node *node,
112 		     const u32 *intspec, unsigned int intsize,
113 		     unsigned long *out_hwirq, unsigned int *out_type);
114 #ifdef	CONFIG_IRQ_DOMAIN_HIERARCHY
115 	/* extended V2 interfaces to support hierarchy irq_domains */
116 	int (*alloc)(struct irq_domain *d, unsigned int virq,
117 		     unsigned int nr_irqs, void *arg);
118 	void (*free)(struct irq_domain *d, unsigned int virq,
119 		     unsigned int nr_irqs);
120 	int (*activate)(struct irq_domain *d, struct irq_data *irqd, bool reserve);
121 	void (*deactivate)(struct irq_domain *d, struct irq_data *irq_data);
122 	int (*translate)(struct irq_domain *d, struct irq_fwspec *fwspec,
123 			 unsigned long *out_hwirq, unsigned int *out_type);
124 #endif
125 #ifdef CONFIG_GENERIC_IRQ_DEBUGFS
126 	void (*debug_show)(struct seq_file *m, struct irq_domain *d,
127 			   struct irq_data *irqd, int ind);
128 #endif
129 };
130 
131 extern struct irq_domain_ops irq_generic_chip_ops;
132 
133 struct irq_domain_chip_generic;
134 
135 /**
136  * struct irq_domain - Hardware interrupt number translation object
137  * @link: Element in global irq_domain list.
138  * @name: Name of interrupt domain
139  * @ops: pointer to irq_domain methods
140  * @host_data: private data pointer for use by owner.  Not touched by irq_domain
141  *             core code.
142  * @flags: host per irq_domain flags
143  * @mapcount: The number of mapped interrupts
144  *
145  * Optional elements
146  * @fwnode: Pointer to firmware node associated with the irq_domain. Pretty easy
147  *          to swap it for the of_node via the irq_domain_get_of_node accessor
148  * @gc: Pointer to a list of generic chips. There is a helper function for
149  *      setting up one or more generic chips for interrupt controllers
150  *      drivers using the generic chip library which uses this pointer.
151  * @parent: Pointer to parent irq_domain to support hierarchy irq_domains
152  *
153  * Revmap data, used internally by irq_domain
154  * @revmap_size: Size of the linear map table @revmap[]
155  * @revmap_tree: Radix map tree for hwirqs that don't fit in the linear map
156  * @revmap_mutex: Lock for the revmap
157  * @revmap: Linear table of irq_data pointers
158  */
159 struct irq_domain {
160 	struct list_head link;
161 	const char *name;
162 	const struct irq_domain_ops *ops;
163 	void *host_data;
164 	unsigned int flags;
165 	unsigned int mapcount;
166 
167 	/* Optional data */
168 	struct fwnode_handle *fwnode;
169 	enum irq_domain_bus_token bus_token;
170 	struct irq_domain_chip_generic *gc;
171 #ifdef	CONFIG_IRQ_DOMAIN_HIERARCHY
172 	struct irq_domain *parent;
173 #endif
174 
175 	ANDROID_KABI_RESERVE(1);
176 	ANDROID_KABI_RESERVE(2);
177 	ANDROID_KABI_RESERVE(3);
178 	ANDROID_KABI_RESERVE(4);
179 
180 	/* reverse map data. The linear map gets appended to the irq_domain */
181 	irq_hw_number_t hwirq_max;
182 	unsigned int revmap_size;
183 	struct radix_tree_root revmap_tree;
184 	struct mutex revmap_mutex;
185 	struct irq_data __rcu *revmap[];
186 };
187 
188 /* Irq domain flags */
189 enum {
190 	/* Irq domain is hierarchical */
191 	IRQ_DOMAIN_FLAG_HIERARCHY	= (1 << 0),
192 
193 	/* Irq domain name was allocated in __irq_domain_add() */
194 	IRQ_DOMAIN_NAME_ALLOCATED	= (1 << 1),
195 
196 	/* Irq domain is an IPI domain with virq per cpu */
197 	IRQ_DOMAIN_FLAG_IPI_PER_CPU	= (1 << 2),
198 
199 	/* Irq domain is an IPI domain with single virq */
200 	IRQ_DOMAIN_FLAG_IPI_SINGLE	= (1 << 3),
201 
202 	/* Irq domain implements MSIs */
203 	IRQ_DOMAIN_FLAG_MSI		= (1 << 4),
204 
205 	/* Irq domain implements MSI remapping */
206 	IRQ_DOMAIN_FLAG_MSI_REMAP	= (1 << 5),
207 
208 	/*
209 	 * Quirk to handle MSI implementations which do not provide
210 	 * masking. Currently known to affect x86, but partially
211 	 * handled in core code.
212 	 */
213 	IRQ_DOMAIN_MSI_NOMASK_QUIRK	= (1 << 6),
214 
215 	/* Irq domain doesn't translate anything */
216 	IRQ_DOMAIN_FLAG_NO_MAP		= (1 << 7),
217 
218 	/*
219 	 * Flags starting from IRQ_DOMAIN_FLAG_NONCORE are reserved
220 	 * for implementation specific purposes and ignored by the
221 	 * core code.
222 	 */
223 	IRQ_DOMAIN_FLAG_NONCORE		= (1 << 16),
224 };
225 
irq_domain_get_of_node(struct irq_domain * d)226 static inline struct device_node *irq_domain_get_of_node(struct irq_domain *d)
227 {
228 	return to_of_node(d->fwnode);
229 }
230 
231 #ifdef CONFIG_IRQ_DOMAIN
232 struct fwnode_handle *__irq_domain_alloc_fwnode(unsigned int type, int id,
233 						const char *name, phys_addr_t *pa);
234 
235 enum {
236 	IRQCHIP_FWNODE_REAL,
237 	IRQCHIP_FWNODE_NAMED,
238 	IRQCHIP_FWNODE_NAMED_ID,
239 };
240 
241 static inline
irq_domain_alloc_named_fwnode(const char * name)242 struct fwnode_handle *irq_domain_alloc_named_fwnode(const char *name)
243 {
244 	return __irq_domain_alloc_fwnode(IRQCHIP_FWNODE_NAMED, 0, name, NULL);
245 }
246 
247 static inline
irq_domain_alloc_named_id_fwnode(const char * name,int id)248 struct fwnode_handle *irq_domain_alloc_named_id_fwnode(const char *name, int id)
249 {
250 	return __irq_domain_alloc_fwnode(IRQCHIP_FWNODE_NAMED_ID, id, name,
251 					 NULL);
252 }
253 
irq_domain_alloc_fwnode(phys_addr_t * pa)254 static inline struct fwnode_handle *irq_domain_alloc_fwnode(phys_addr_t *pa)
255 {
256 	return __irq_domain_alloc_fwnode(IRQCHIP_FWNODE_REAL, 0, NULL, pa);
257 }
258 
259 void irq_domain_free_fwnode(struct fwnode_handle *fwnode);
260 struct irq_domain *__irq_domain_add(struct fwnode_handle *fwnode, unsigned int size,
261 				    irq_hw_number_t hwirq_max, int direct_max,
262 				    const struct irq_domain_ops *ops,
263 				    void *host_data);
264 struct irq_domain *irq_domain_create_simple(struct fwnode_handle *fwnode,
265 					    unsigned int size,
266 					    unsigned int first_irq,
267 					    const struct irq_domain_ops *ops,
268 					    void *host_data);
269 struct irq_domain *irq_domain_add_legacy(struct device_node *of_node,
270 					 unsigned int size,
271 					 unsigned int first_irq,
272 					 irq_hw_number_t first_hwirq,
273 					 const struct irq_domain_ops *ops,
274 					 void *host_data);
275 struct irq_domain *irq_domain_create_legacy(struct fwnode_handle *fwnode,
276 					    unsigned int size,
277 					    unsigned int first_irq,
278 					    irq_hw_number_t first_hwirq,
279 					    const struct irq_domain_ops *ops,
280 					    void *host_data);
281 extern struct irq_domain *irq_find_matching_fwspec(struct irq_fwspec *fwspec,
282 						   enum irq_domain_bus_token bus_token);
283 extern bool irq_domain_check_msi_remap(void);
284 extern void irq_set_default_host(struct irq_domain *host);
285 extern struct irq_domain *irq_get_default_host(void);
286 extern int irq_domain_alloc_descs(int virq, unsigned int nr_irqs,
287 				  irq_hw_number_t hwirq, int node,
288 				  const struct irq_affinity_desc *affinity);
289 
of_node_to_fwnode(struct device_node * node)290 static inline struct fwnode_handle *of_node_to_fwnode(struct device_node *node)
291 {
292 	return node ? &node->fwnode : NULL;
293 }
294 
295 extern const struct fwnode_operations irqchip_fwnode_ops;
296 
is_fwnode_irqchip(struct fwnode_handle * fwnode)297 static inline bool is_fwnode_irqchip(struct fwnode_handle *fwnode)
298 {
299 	return fwnode && fwnode->ops == &irqchip_fwnode_ops;
300 }
301 
302 extern void irq_domain_update_bus_token(struct irq_domain *domain,
303 					enum irq_domain_bus_token bus_token);
304 
305 static inline
irq_find_matching_fwnode(struct fwnode_handle * fwnode,enum irq_domain_bus_token bus_token)306 struct irq_domain *irq_find_matching_fwnode(struct fwnode_handle *fwnode,
307 					    enum irq_domain_bus_token bus_token)
308 {
309 	struct irq_fwspec fwspec = {
310 		.fwnode = fwnode,
311 	};
312 
313 	return irq_find_matching_fwspec(&fwspec, bus_token);
314 }
315 
irq_find_matching_host(struct device_node * node,enum irq_domain_bus_token bus_token)316 static inline struct irq_domain *irq_find_matching_host(struct device_node *node,
317 							enum irq_domain_bus_token bus_token)
318 {
319 	return irq_find_matching_fwnode(of_node_to_fwnode(node), bus_token);
320 }
321 
irq_find_host(struct device_node * node)322 static inline struct irq_domain *irq_find_host(struct device_node *node)
323 {
324 	struct irq_domain *d;
325 
326 	d = irq_find_matching_host(node, DOMAIN_BUS_WIRED);
327 	if (!d)
328 		d = irq_find_matching_host(node, DOMAIN_BUS_ANY);
329 
330 	return d;
331 }
332 
irq_domain_add_simple(struct device_node * of_node,unsigned int size,unsigned int first_irq,const struct irq_domain_ops * ops,void * host_data)333 static inline struct irq_domain *irq_domain_add_simple(struct device_node *of_node,
334 						       unsigned int size,
335 						       unsigned int first_irq,
336 						       const struct irq_domain_ops *ops,
337 						       void *host_data)
338 {
339 	return irq_domain_create_simple(of_node_to_fwnode(of_node), size, first_irq, ops, host_data);
340 }
341 
342 /**
343  * irq_domain_add_linear() - Allocate and register a linear revmap irq_domain.
344  * @of_node: pointer to interrupt controller's device tree node.
345  * @size: Number of interrupts in the domain.
346  * @ops: map/unmap domain callbacks
347  * @host_data: Controller private data pointer
348  */
irq_domain_add_linear(struct device_node * of_node,unsigned int size,const struct irq_domain_ops * ops,void * host_data)349 static inline struct irq_domain *irq_domain_add_linear(struct device_node *of_node,
350 					 unsigned int size,
351 					 const struct irq_domain_ops *ops,
352 					 void *host_data)
353 {
354 	return __irq_domain_add(of_node_to_fwnode(of_node), size, size, 0, ops, host_data);
355 }
356 
357 #ifdef CONFIG_IRQ_DOMAIN_NOMAP
irq_domain_add_nomap(struct device_node * of_node,unsigned int max_irq,const struct irq_domain_ops * ops,void * host_data)358 static inline struct irq_domain *irq_domain_add_nomap(struct device_node *of_node,
359 					 unsigned int max_irq,
360 					 const struct irq_domain_ops *ops,
361 					 void *host_data)
362 {
363 	return __irq_domain_add(of_node_to_fwnode(of_node), 0, max_irq, max_irq, ops, host_data);
364 }
365 
366 extern unsigned int irq_create_direct_mapping(struct irq_domain *host);
367 #endif
368 
irq_domain_add_tree(struct device_node * of_node,const struct irq_domain_ops * ops,void * host_data)369 static inline struct irq_domain *irq_domain_add_tree(struct device_node *of_node,
370 					 const struct irq_domain_ops *ops,
371 					 void *host_data)
372 {
373 	return __irq_domain_add(of_node_to_fwnode(of_node), 0, ~0, 0, ops, host_data);
374 }
375 
irq_domain_create_linear(struct fwnode_handle * fwnode,unsigned int size,const struct irq_domain_ops * ops,void * host_data)376 static inline struct irq_domain *irq_domain_create_linear(struct fwnode_handle *fwnode,
377 					 unsigned int size,
378 					 const struct irq_domain_ops *ops,
379 					 void *host_data)
380 {
381 	return __irq_domain_add(fwnode, size, size, 0, ops, host_data);
382 }
383 
irq_domain_create_tree(struct fwnode_handle * fwnode,const struct irq_domain_ops * ops,void * host_data)384 static inline struct irq_domain *irq_domain_create_tree(struct fwnode_handle *fwnode,
385 					 const struct irq_domain_ops *ops,
386 					 void *host_data)
387 {
388 	return __irq_domain_add(fwnode, 0, ~0, 0, ops, host_data);
389 }
390 
391 extern void irq_domain_remove(struct irq_domain *host);
392 
393 extern int irq_domain_associate(struct irq_domain *domain, unsigned int irq,
394 					irq_hw_number_t hwirq);
395 extern void irq_domain_associate_many(struct irq_domain *domain,
396 				      unsigned int irq_base,
397 				      irq_hw_number_t hwirq_base, int count);
398 
399 extern unsigned int irq_create_mapping_affinity(struct irq_domain *host,
400 				      irq_hw_number_t hwirq,
401 				      const struct irq_affinity_desc *affinity);
402 extern unsigned int irq_create_fwspec_mapping(struct irq_fwspec *fwspec);
403 extern void irq_dispose_mapping(unsigned int virq);
404 
irq_create_mapping(struct irq_domain * host,irq_hw_number_t hwirq)405 static inline unsigned int irq_create_mapping(struct irq_domain *host,
406 					      irq_hw_number_t hwirq)
407 {
408 	return irq_create_mapping_affinity(host, hwirq, NULL);
409 }
410 
411 extern struct irq_desc *__irq_resolve_mapping(struct irq_domain *domain,
412 					      irq_hw_number_t hwirq,
413 					      unsigned int *irq);
414 
irq_resolve_mapping(struct irq_domain * domain,irq_hw_number_t hwirq)415 static inline struct irq_desc *irq_resolve_mapping(struct irq_domain *domain,
416 						   irq_hw_number_t hwirq)
417 {
418 	return __irq_resolve_mapping(domain, hwirq, NULL);
419 }
420 
421 /**
422  * irq_find_mapping() - Find a linux irq from a hw irq number.
423  * @domain: domain owning this hardware interrupt
424  * @hwirq: hardware irq number in that domain space
425  */
irq_find_mapping(struct irq_domain * domain,irq_hw_number_t hwirq)426 static inline unsigned int irq_find_mapping(struct irq_domain *domain,
427 					    irq_hw_number_t hwirq)
428 {
429 	unsigned int irq;
430 
431 	if (__irq_resolve_mapping(domain, hwirq, &irq))
432 		return irq;
433 
434 	return 0;
435 }
436 
irq_linear_revmap(struct irq_domain * domain,irq_hw_number_t hwirq)437 static inline unsigned int irq_linear_revmap(struct irq_domain *domain,
438 					     irq_hw_number_t hwirq)
439 {
440 	return irq_find_mapping(domain, hwirq);
441 }
442 
443 extern const struct irq_domain_ops irq_domain_simple_ops;
444 
445 /* stock xlate functions */
446 int irq_domain_xlate_onecell(struct irq_domain *d, struct device_node *ctrlr,
447 			const u32 *intspec, unsigned int intsize,
448 			irq_hw_number_t *out_hwirq, unsigned int *out_type);
449 int irq_domain_xlate_twocell(struct irq_domain *d, struct device_node *ctrlr,
450 			const u32 *intspec, unsigned int intsize,
451 			irq_hw_number_t *out_hwirq, unsigned int *out_type);
452 int irq_domain_xlate_onetwocell(struct irq_domain *d, struct device_node *ctrlr,
453 			const u32 *intspec, unsigned int intsize,
454 			irq_hw_number_t *out_hwirq, unsigned int *out_type);
455 
456 int irq_domain_translate_twocell(struct irq_domain *d,
457 				 struct irq_fwspec *fwspec,
458 				 unsigned long *out_hwirq,
459 				 unsigned int *out_type);
460 
461 int irq_domain_translate_onecell(struct irq_domain *d,
462 				 struct irq_fwspec *fwspec,
463 				 unsigned long *out_hwirq,
464 				 unsigned int *out_type);
465 
466 /* IPI functions */
467 int irq_reserve_ipi(struct irq_domain *domain, const struct cpumask *dest);
468 int irq_destroy_ipi(unsigned int irq, const struct cpumask *dest);
469 
470 /* V2 interfaces to support hierarchy IRQ domains. */
471 extern struct irq_data *irq_domain_get_irq_data(struct irq_domain *domain,
472 						unsigned int virq);
473 extern void irq_domain_set_info(struct irq_domain *domain, unsigned int virq,
474 				irq_hw_number_t hwirq, struct irq_chip *chip,
475 				void *chip_data, irq_flow_handler_t handler,
476 				void *handler_data, const char *handler_name);
477 extern void irq_domain_reset_irq_data(struct irq_data *irq_data);
478 #ifdef	CONFIG_IRQ_DOMAIN_HIERARCHY
479 extern struct irq_domain *irq_domain_create_hierarchy(struct irq_domain *parent,
480 			unsigned int flags, unsigned int size,
481 			struct fwnode_handle *fwnode,
482 			const struct irq_domain_ops *ops, void *host_data);
483 
irq_domain_add_hierarchy(struct irq_domain * parent,unsigned int flags,unsigned int size,struct device_node * node,const struct irq_domain_ops * ops,void * host_data)484 static inline struct irq_domain *irq_domain_add_hierarchy(struct irq_domain *parent,
485 					    unsigned int flags,
486 					    unsigned int size,
487 					    struct device_node *node,
488 					    const struct irq_domain_ops *ops,
489 					    void *host_data)
490 {
491 	return irq_domain_create_hierarchy(parent, flags, size,
492 					   of_node_to_fwnode(node),
493 					   ops, host_data);
494 }
495 
496 extern int __irq_domain_alloc_irqs(struct irq_domain *domain, int irq_base,
497 				   unsigned int nr_irqs, int node, void *arg,
498 				   bool realloc,
499 				   const struct irq_affinity_desc *affinity);
500 extern void irq_domain_free_irqs(unsigned int virq, unsigned int nr_irqs);
501 extern int irq_domain_activate_irq(struct irq_data *irq_data, bool early);
502 extern void irq_domain_deactivate_irq(struct irq_data *irq_data);
503 
irq_domain_alloc_irqs(struct irq_domain * domain,unsigned int nr_irqs,int node,void * arg)504 static inline int irq_domain_alloc_irqs(struct irq_domain *domain,
505 			unsigned int nr_irqs, int node, void *arg)
506 {
507 	return __irq_domain_alloc_irqs(domain, -1, nr_irqs, node, arg, false,
508 				       NULL);
509 }
510 
511 extern int irq_domain_alloc_irqs_hierarchy(struct irq_domain *domain,
512 					   unsigned int irq_base,
513 					   unsigned int nr_irqs, void *arg);
514 extern int irq_domain_set_hwirq_and_chip(struct irq_domain *domain,
515 					 unsigned int virq,
516 					 irq_hw_number_t hwirq,
517 					 struct irq_chip *chip,
518 					 void *chip_data);
519 extern void irq_domain_free_irqs_common(struct irq_domain *domain,
520 					unsigned int virq,
521 					unsigned int nr_irqs);
522 extern void irq_domain_free_irqs_top(struct irq_domain *domain,
523 				     unsigned int virq, unsigned int nr_irqs);
524 
525 extern int irq_domain_push_irq(struct irq_domain *domain, int virq, void *arg);
526 extern int irq_domain_pop_irq(struct irq_domain *domain, int virq);
527 
528 extern int irq_domain_alloc_irqs_parent(struct irq_domain *domain,
529 					unsigned int irq_base,
530 					unsigned int nr_irqs, void *arg);
531 
532 extern void irq_domain_free_irqs_parent(struct irq_domain *domain,
533 					unsigned int irq_base,
534 					unsigned int nr_irqs);
535 
536 extern int irq_domain_disconnect_hierarchy(struct irq_domain *domain,
537 					   unsigned int virq);
538 
irq_domain_is_hierarchy(struct irq_domain * domain)539 static inline bool irq_domain_is_hierarchy(struct irq_domain *domain)
540 {
541 	return domain->flags & IRQ_DOMAIN_FLAG_HIERARCHY;
542 }
543 
irq_domain_is_ipi(struct irq_domain * domain)544 static inline bool irq_domain_is_ipi(struct irq_domain *domain)
545 {
546 	return domain->flags &
547 		(IRQ_DOMAIN_FLAG_IPI_PER_CPU | IRQ_DOMAIN_FLAG_IPI_SINGLE);
548 }
549 
irq_domain_is_ipi_per_cpu(struct irq_domain * domain)550 static inline bool irq_domain_is_ipi_per_cpu(struct irq_domain *domain)
551 {
552 	return domain->flags & IRQ_DOMAIN_FLAG_IPI_PER_CPU;
553 }
554 
irq_domain_is_ipi_single(struct irq_domain * domain)555 static inline bool irq_domain_is_ipi_single(struct irq_domain *domain)
556 {
557 	return domain->flags & IRQ_DOMAIN_FLAG_IPI_SINGLE;
558 }
559 
irq_domain_is_msi(struct irq_domain * domain)560 static inline bool irq_domain_is_msi(struct irq_domain *domain)
561 {
562 	return domain->flags & IRQ_DOMAIN_FLAG_MSI;
563 }
564 
irq_domain_is_msi_remap(struct irq_domain * domain)565 static inline bool irq_domain_is_msi_remap(struct irq_domain *domain)
566 {
567 	return domain->flags & IRQ_DOMAIN_FLAG_MSI_REMAP;
568 }
569 
570 extern bool irq_domain_hierarchical_is_msi_remap(struct irq_domain *domain);
571 
572 #else	/* CONFIG_IRQ_DOMAIN_HIERARCHY */
irq_domain_alloc_irqs(struct irq_domain * domain,unsigned int nr_irqs,int node,void * arg)573 static inline int irq_domain_alloc_irqs(struct irq_domain *domain,
574 			unsigned int nr_irqs, int node, void *arg)
575 {
576 	return -1;
577 }
578 
irq_domain_free_irqs(unsigned int virq,unsigned int nr_irqs)579 static inline void irq_domain_free_irqs(unsigned int virq,
580 					unsigned int nr_irqs) { }
581 
irq_domain_is_hierarchy(struct irq_domain * domain)582 static inline bool irq_domain_is_hierarchy(struct irq_domain *domain)
583 {
584 	return false;
585 }
586 
irq_domain_is_ipi(struct irq_domain * domain)587 static inline bool irq_domain_is_ipi(struct irq_domain *domain)
588 {
589 	return false;
590 }
591 
irq_domain_is_ipi_per_cpu(struct irq_domain * domain)592 static inline bool irq_domain_is_ipi_per_cpu(struct irq_domain *domain)
593 {
594 	return false;
595 }
596 
irq_domain_is_ipi_single(struct irq_domain * domain)597 static inline bool irq_domain_is_ipi_single(struct irq_domain *domain)
598 {
599 	return false;
600 }
601 
irq_domain_is_msi(struct irq_domain * domain)602 static inline bool irq_domain_is_msi(struct irq_domain *domain)
603 {
604 	return false;
605 }
606 
irq_domain_is_msi_remap(struct irq_domain * domain)607 static inline bool irq_domain_is_msi_remap(struct irq_domain *domain)
608 {
609 	return false;
610 }
611 
612 static inline bool
irq_domain_hierarchical_is_msi_remap(struct irq_domain * domain)613 irq_domain_hierarchical_is_msi_remap(struct irq_domain *domain)
614 {
615 	return false;
616 }
617 #endif	/* CONFIG_IRQ_DOMAIN_HIERARCHY */
618 
619 #else /* CONFIG_IRQ_DOMAIN */
irq_dispose_mapping(unsigned int virq)620 static inline void irq_dispose_mapping(unsigned int virq) { }
irq_find_matching_fwnode(struct fwnode_handle * fwnode,enum irq_domain_bus_token bus_token)621 static inline struct irq_domain *irq_find_matching_fwnode(
622 	struct fwnode_handle *fwnode, enum irq_domain_bus_token bus_token)
623 {
624 	return NULL;
625 }
irq_domain_check_msi_remap(void)626 static inline bool irq_domain_check_msi_remap(void)
627 {
628 	return false;
629 }
630 #endif /* !CONFIG_IRQ_DOMAIN */
631 
632 #endif /* _LINUX_IRQDOMAIN_H */
633