]>
Commit | Line | Data |
---|---|---|
08a543ad GL |
1 | /* |
2 | * irq_domain - IRQ translation domains | |
3 | * | |
4 | * Translation infrastructure between hw and linux irq numbers. This is | |
5 | * helpful for interrupt controllers to implement mapping between hardware | |
6 | * irq numbers and the Linux irq number space. | |
7 | * | |
8 | * irq_domains also have a hook for translating device tree interrupt | |
9 | * representation into a hardware irq number that can be mapped back to a | |
10 | * Linux irq number without any extra platform support code. | |
11 | * | |
7bb69bad GL |
12 | * Interrupt controller "domain" data structure. This could be defined as a |
13 | * irq domain controller. That is, it handles the mapping between hardware | |
14 | * and virtual interrupt numbers for a given interrupt domain. The domain | |
15 | * structure is generally created by the PIC code for a given PIC instance | |
16 | * (though a domain can cover more than one PIC if they have a flat number | |
17 | * model). It's the domain callbacks that are responsible for setting the | |
18 | * irq_chip on a given irq_desc after it's been mapped. | |
cc79ca69 GL |
19 | * |
20 | * The host code and data structures are agnostic to whether or not | |
21 | * we use an open firmware device-tree. We do have references to struct | |
22 | * device_node in two places: in irq_find_host() to find the host matching | |
23 | * a given interrupt controller node, and of course as an argument to its | |
24 | * counterpart domain->ops->match() callback. However, those are treated as | |
25 | * generic pointers by the core and the fact that it's actually a device-node | |
26 | * pointer is purely a convention between callers and implementation. This | |
27 | * code could thus be used on other architectures by replacing those two | |
28 | * by some sort of arch-specific void * "token" used to identify interrupt | |
29 | * controllers. | |
08a543ad | 30 | */ |
7bb69bad | 31 | |
08a543ad GL |
32 | #ifndef _LINUX_IRQDOMAIN_H |
33 | #define _LINUX_IRQDOMAIN_H | |
34 | ||
7bb69bad GL |
35 | #include <linux/types.h> |
36 | #include <linux/radix-tree.h> | |
08a543ad | 37 | |
08a543ad GL |
38 | struct device_node; |
39 | struct irq_domain; | |
7bb69bad GL |
40 | struct of_device_id; |
41 | ||
1bc04f2c GL |
42 | /* Number of irqs reserved for a legacy isa controller */ |
43 | #define NUM_ISA_INTERRUPTS 16 | |
44 | ||
08a543ad GL |
45 | /** |
46 | * struct irq_domain_ops - Methods for irq_domain objects | |
7bb69bad GL |
47 | * @match: Match an interrupt controller device node to a host, returns |
48 | * 1 on a match | |
49 | * @map: Create or update a mapping between a virtual irq number and a hw | |
50 | * irq number. This is called only once for a given mapping. | |
51 | * @unmap: Dispose of such a mapping | |
7bb69bad GL |
52 | * @xlate: Given a device tree node and interrupt specifier, decode |
53 | * the hardware irq number and linux irq type value. | |
54 | * | |
55 | * Functions below are provided by the driver and called whenever a new mapping | |
56 | * is created or an old mapping is disposed. The driver can then proceed to | |
57 | * whatever internal data structures management is required. It also needs | |
58 | * to setup the irq_desc when returning from map(). | |
08a543ad GL |
59 | */ |
60 | struct irq_domain_ops { | |
7bb69bad GL |
61 | int (*match)(struct irq_domain *d, struct device_node *node); |
62 | int (*map)(struct irq_domain *d, unsigned int virq, irq_hw_number_t hw); | |
63 | void (*unmap)(struct irq_domain *d, unsigned int virq); | |
7bb69bad GL |
64 | int (*xlate)(struct irq_domain *d, struct device_node *node, |
65 | const u32 *intspec, unsigned int intsize, | |
66 | unsigned long *out_hwirq, unsigned int *out_type); | |
08a543ad GL |
67 | }; |
68 | ||
69 | /** | |
70 | * struct irq_domain - Hardware interrupt number translation object | |
7bb69bad GL |
71 | * @link: Element in global irq_domain list. |
72 | * @revmap_type: Method used for reverse mapping hwirq numbers to linux irq. This | |
73 | * will be one of the IRQ_DOMAIN_MAP_* values. | |
74 | * @revmap_data: Revmap method specific data. | |
75 | * @ops: pointer to irq_domain methods | |
76 | * @host_data: private data pointer for use by owner. Not touched by irq_domain | |
77 | * core code. | |
08a543ad GL |
78 | * @irq_base: Start of irq_desc range assigned to the irq_domain. The creator |
79 | * of the irq_domain is responsible for allocating the array of | |
80 | * irq_desc structures. | |
81 | * @nr_irq: Number of irqs managed by the irq domain | |
6d274309 | 82 | * @hwirq_base: Starting number for hwirqs managed by the irq domain |
08a543ad GL |
83 | * @of_node: (optional) Pointer to device tree nodes associated with the |
84 | * irq_domain. Used when decoding device tree interrupt specifiers. | |
85 | */ | |
86 | struct irq_domain { | |
7bb69bad GL |
87 | struct list_head link; |
88 | ||
89 | /* type of reverse mapping_technique */ | |
90 | unsigned int revmap_type; | |
7bb69bad | 91 | union { |
1bc04f2c GL |
92 | struct { |
93 | unsigned int size; | |
94 | unsigned int first_irq; | |
95 | irq_hw_number_t first_hwirq; | |
96 | } legacy; | |
7bb69bad GL |
97 | struct { |
98 | unsigned int size; | |
99 | unsigned int *revmap; | |
100 | } linear; | |
6fa6c8e2 GL |
101 | struct { |
102 | unsigned int max_irq; | |
103 | } nomap; | |
7bb69bad GL |
104 | struct radix_tree_root tree; |
105 | } revmap_data; | |
a18dc81b | 106 | const struct irq_domain_ops *ops; |
7bb69bad GL |
107 | void *host_data; |
108 | irq_hw_number_t inval_irq; | |
109 | ||
7bb69bad | 110 | /* Optional device node pointer */ |
08a543ad GL |
111 | struct device_node *of_node; |
112 | }; | |
113 | ||
7bb69bad | 114 | #ifdef CONFIG_IRQ_DOMAIN |
a8db8cf0 | 115 | struct irq_domain *irq_domain_add_legacy(struct device_node *of_node, |
1bc04f2c GL |
116 | unsigned int size, |
117 | unsigned int first_irq, | |
118 | irq_hw_number_t first_hwirq, | |
a18dc81b | 119 | const struct irq_domain_ops *ops, |
a8db8cf0 GL |
120 | void *host_data); |
121 | struct irq_domain *irq_domain_add_linear(struct device_node *of_node, | |
122 | unsigned int size, | |
a18dc81b | 123 | const struct irq_domain_ops *ops, |
a8db8cf0 GL |
124 | void *host_data); |
125 | struct irq_domain *irq_domain_add_nomap(struct device_node *of_node, | |
6fa6c8e2 | 126 | unsigned int max_irq, |
a18dc81b | 127 | const struct irq_domain_ops *ops, |
a8db8cf0 GL |
128 | void *host_data); |
129 | struct irq_domain *irq_domain_add_tree(struct device_node *of_node, | |
a18dc81b | 130 | const struct irq_domain_ops *ops, |
a8db8cf0 GL |
131 | void *host_data); |
132 | ||
cc79ca69 GL |
133 | extern struct irq_domain *irq_find_host(struct device_node *node); |
134 | extern void irq_set_default_host(struct irq_domain *host); | |
cc79ca69 | 135 | |
1bc04f2c GL |
136 | static inline struct irq_domain *irq_domain_add_legacy_isa( |
137 | struct device_node *of_node, | |
a18dc81b | 138 | const struct irq_domain_ops *ops, |
1bc04f2c GL |
139 | void *host_data) |
140 | { | |
141 | return irq_domain_add_legacy(of_node, NUM_ISA_INTERRUPTS, 0, 0, ops, | |
142 | host_data); | |
143 | } | |
58ee99ad PM |
144 | |
145 | extern void irq_domain_remove(struct irq_domain *host); | |
146 | ||
cc79ca69 GL |
147 | extern unsigned int irq_create_mapping(struct irq_domain *host, |
148 | irq_hw_number_t hwirq); | |
149 | extern void irq_dispose_mapping(unsigned int virq); | |
150 | extern unsigned int irq_find_mapping(struct irq_domain *host, | |
151 | irq_hw_number_t hwirq); | |
152 | extern unsigned int irq_create_direct_mapping(struct irq_domain *host); | |
153 | extern void irq_radix_revmap_insert(struct irq_domain *host, unsigned int virq, | |
154 | irq_hw_number_t hwirq); | |
155 | extern unsigned int irq_radix_revmap_lookup(struct irq_domain *host, | |
156 | irq_hw_number_t hwirq); | |
157 | extern unsigned int irq_linear_revmap(struct irq_domain *host, | |
158 | irq_hw_number_t hwirq); | |
159 | ||
a18dc81b | 160 | extern const struct irq_domain_ops irq_domain_simple_ops; |
16b2e6e2 GL |
161 | |
162 | /* stock xlate functions */ | |
163 | int irq_domain_xlate_onecell(struct irq_domain *d, struct device_node *ctrlr, | |
164 | const u32 *intspec, unsigned int intsize, | |
165 | irq_hw_number_t *out_hwirq, unsigned int *out_type); | |
166 | int irq_domain_xlate_twocell(struct irq_domain *d, struct device_node *ctrlr, | |
167 | const u32 *intspec, unsigned int intsize, | |
168 | irq_hw_number_t *out_hwirq, unsigned int *out_type); | |
169 | int irq_domain_xlate_onetwocell(struct irq_domain *d, struct device_node *ctrlr, | |
170 | const u32 *intspec, unsigned int intsize, | |
171 | irq_hw_number_t *out_hwirq, unsigned int *out_type); | |
172 | ||
cc79ca69 | 173 | #if defined(CONFIG_OF_IRQ) |
7e713301 GL |
174 | extern void irq_domain_generate_simple(const struct of_device_id *match, |
175 | u64 phys_base, unsigned int irq_start); | |
cc79ca69 | 176 | #else /* CONFIG_OF_IRQ */ |
7e713301 GL |
177 | static inline void irq_domain_generate_simple(const struct of_device_id *match, |
178 | u64 phys_base, unsigned int irq_start) { } | |
cc79ca69 | 179 | #endif /* !CONFIG_OF_IRQ */ |
d593f25f GL |
180 | |
181 | #else /* CONFIG_IRQ_DOMAIN */ | |
182 | static inline void irq_dispose_mapping(unsigned int virq) { } | |
183 | #endif /* !CONFIG_IRQ_DOMAIN */ | |
7e713301 | 184 | |
08a543ad | 185 | #endif /* _LINUX_IRQDOMAIN_H */ |