aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2010-06-08 09:48:06 -0400
committerGrant Likely <grant.likely@secretlab.ca>2010-07-05 18:14:25 -0400
commit7dc2e1134a22dc242175d5321c0c9e97d16eb87b (patch)
tree213406e4688340c788b40a8eb272255e8c44c8fe /drivers/of
parentb83da291b4c73eaddc20e2edb614123a6d681b3b (diff)
of/irq: merge irq mapping code
Merge common irq mapping code between PowerPC and Microblaze. This patch merges of_irq_find_parent(), of_irq_map_raw() and of_irq_map_one(). The functions are dependent on one another, so all three are merged in a single patch. Other than cosmetic difference (ie. DBG() vs. pr_debug()), the implementations are identical. of_irq_to_resource() is also merged, but in this case the implementations are different. This patch drops the microblaze version and uses the powerpc implementation unchanged. The microblaze version essentially open-coded irq_of_parse_and_map() which it does not need to do. Therefore the powerpc version is safe to adopt. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> CC: Michal Simek <monstr@monstr.eu> CC: Benjamin Herrenschmidt <benh@kernel.crashing.org> CC: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/irq.c301
1 files changed, 301 insertions, 0 deletions
diff --git a/drivers/of/irq.c b/drivers/of/irq.c
index 9b3397c27096..598454fbdd1e 100644
--- a/drivers/of/irq.c
+++ b/drivers/of/irq.c
@@ -43,3 +43,304 @@ unsigned int irq_of_parse_and_map(struct device_node *dev, int index)
43 oirq.size); 43 oirq.size);
44} 44}
45EXPORT_SYMBOL_GPL(irq_of_parse_and_map); 45EXPORT_SYMBOL_GPL(irq_of_parse_and_map);
46
47/**
48 * of_irq_find_parent - Given a device node, find its interrupt parent node
49 * @child: pointer to device node
50 *
51 * Returns a pointer to the interrupt parent node, or NULL if the interrupt
52 * parent could not be determined.
53 */
54static struct device_node *of_irq_find_parent(struct device_node *child)
55{
56 struct device_node *p;
57 const phandle *parp;
58
59 if (!of_node_get(child))
60 return NULL;
61
62 do {
63 parp = of_get_property(child, "interrupt-parent", NULL);
64 if (parp == NULL)
65 p = of_get_parent(child);
66 else {
67 if (of_irq_workarounds & OF_IMAP_NO_PHANDLE)
68 p = of_node_get(of_irq_dflt_pic);
69 else
70 p = of_find_node_by_phandle(*parp);
71 }
72 of_node_put(child);
73 child = p;
74 } while (p && of_get_property(p, "#interrupt-cells", NULL) == NULL);
75
76 return p;
77}
78
79/**
80 * of_irq_map_raw - Low level interrupt tree parsing
81 * @parent: the device interrupt parent
82 * @intspec: interrupt specifier ("interrupts" property of the device)
83 * @ointsize: size of the passed in interrupt specifier
84 * @addr: address specifier (start of "reg" property of the device)
85 * @out_irq: structure of_irq filled by this function
86 *
87 * Returns 0 on success and a negative number on error
88 *
89 * This function is a low-level interrupt tree walking function. It
90 * can be used to do a partial walk with synthetized reg and interrupts
91 * properties, for example when resolving PCI interrupts when no device
92 * node exist for the parent.
93 */
94int of_irq_map_raw(struct device_node *parent, const u32 *intspec, u32 ointsize,
95 const u32 *addr, struct of_irq *out_irq)
96{
97 struct device_node *ipar, *tnode, *old = NULL, *newpar = NULL;
98 const u32 *tmp, *imap, *imask;
99 u32 intsize = 1, addrsize, newintsize = 0, newaddrsize = 0;
100 int imaplen, match, i;
101
102 pr_debug("of_irq_map_raw: par=%s,intspec=[0x%08x 0x%08x...],ointsize=%d\n",
103 parent->full_name, intspec[0], intspec[1], ointsize);
104
105 ipar = of_node_get(parent);
106
107 /* First get the #interrupt-cells property of the current cursor
108 * that tells us how to interpret the passed-in intspec. If there
109 * is none, we are nice and just walk up the tree
110 */
111 do {
112 tmp = of_get_property(ipar, "#interrupt-cells", NULL);
113 if (tmp != NULL) {
114 intsize = *tmp;
115 break;
116 }
117 tnode = ipar;
118 ipar = of_irq_find_parent(ipar);
119 of_node_put(tnode);
120 } while (ipar);
121 if (ipar == NULL) {
122 pr_debug(" -> no parent found !\n");
123 goto fail;
124 }
125
126 pr_debug("of_irq_map_raw: ipar=%s, size=%d\n", ipar->full_name, intsize);
127
128 if (ointsize != intsize)
129 return -EINVAL;
130
131 /* Look for this #address-cells. We have to implement the old linux
132 * trick of looking for the parent here as some device-trees rely on it
133 */
134 old = of_node_get(ipar);
135 do {
136 tmp = of_get_property(old, "#address-cells", NULL);
137 tnode = of_get_parent(old);
138 of_node_put(old);
139 old = tnode;
140 } while (old && tmp == NULL);
141 of_node_put(old);
142 old = NULL;
143 addrsize = (tmp == NULL) ? 2 : *tmp;
144
145 pr_debug(" -> addrsize=%d\n", addrsize);
146
147 /* Now start the actual "proper" walk of the interrupt tree */
148 while (ipar != NULL) {
149 /* Now check if cursor is an interrupt-controller and if it is
150 * then we are done
151 */
152 if (of_get_property(ipar, "interrupt-controller", NULL) !=
153 NULL) {
154 pr_debug(" -> got it !\n");
155 memcpy(out_irq->specifier, intspec,
156 intsize * sizeof(u32));
157 out_irq->size = intsize;
158 out_irq->controller = ipar;
159 of_node_put(old);
160 return 0;
161 }
162
163 /* Now look for an interrupt-map */
164 imap = of_get_property(ipar, "interrupt-map", &imaplen);
165 /* No interrupt map, check for an interrupt parent */
166 if (imap == NULL) {
167 pr_debug(" -> no map, getting parent\n");
168 newpar = of_irq_find_parent(ipar);
169 goto skiplevel;
170 }
171 imaplen /= sizeof(u32);
172
173 /* Look for a mask */
174 imask = of_get_property(ipar, "interrupt-map-mask", NULL);
175
176 /* If we were passed no "reg" property and we attempt to parse
177 * an interrupt-map, then #address-cells must be 0.
178 * Fail if it's not.
179 */
180 if (addr == NULL && addrsize != 0) {
181 pr_debug(" -> no reg passed in when needed !\n");
182 goto fail;
183 }
184
185 /* Parse interrupt-map */
186 match = 0;
187 while (imaplen > (addrsize + intsize + 1) && !match) {
188 /* Compare specifiers */
189 match = 1;
190 for (i = 0; i < addrsize && match; ++i) {
191 u32 mask = imask ? imask[i] : 0xffffffffu;
192 match = ((addr[i] ^ imap[i]) & mask) == 0;
193 }
194 for (; i < (addrsize + intsize) && match; ++i) {
195 u32 mask = imask ? imask[i] : 0xffffffffu;
196 match =
197 ((intspec[i-addrsize] ^ imap[i]) & mask) == 0;
198 }
199 imap += addrsize + intsize;
200 imaplen -= addrsize + intsize;
201
202 pr_debug(" -> match=%d (imaplen=%d)\n", match, imaplen);
203
204 /* Get the interrupt parent */
205 if (of_irq_workarounds & OF_IMAP_NO_PHANDLE)
206 newpar = of_node_get(of_irq_dflt_pic);
207 else
208 newpar = of_find_node_by_phandle((phandle)*imap);
209 imap++;
210 --imaplen;
211
212 /* Check if not found */
213 if (newpar == NULL) {
214 pr_debug(" -> imap parent not found !\n");
215 goto fail;
216 }
217
218 /* Get #interrupt-cells and #address-cells of new
219 * parent
220 */
221 tmp = of_get_property(newpar, "#interrupt-cells", NULL);
222 if (tmp == NULL) {
223 pr_debug(" -> parent lacks #interrupt-cells!\n");
224 goto fail;
225 }
226 newintsize = *tmp;
227 tmp = of_get_property(newpar, "#address-cells", NULL);
228 newaddrsize = (tmp == NULL) ? 0 : *tmp;
229
230 pr_debug(" -> newintsize=%d, newaddrsize=%d\n",
231 newintsize, newaddrsize);
232
233 /* Check for malformed properties */
234 if (imaplen < (newaddrsize + newintsize))
235 goto fail;
236
237 imap += newaddrsize + newintsize;
238 imaplen -= newaddrsize + newintsize;
239
240 pr_debug(" -> imaplen=%d\n", imaplen);
241 }
242 if (!match)
243 goto fail;
244
245 of_node_put(old);
246 old = of_node_get(newpar);
247 addrsize = newaddrsize;
248 intsize = newintsize;
249 intspec = imap - intsize;
250 addr = intspec - addrsize;
251
252 skiplevel:
253 /* Iterate again with new parent */
254 pr_debug(" -> new parent: %s\n", newpar ? newpar->full_name : "<>");
255 of_node_put(ipar);
256 ipar = newpar;
257 newpar = NULL;
258 }
259 fail:
260 of_node_put(ipar);
261 of_node_put(old);
262 of_node_put(newpar);
263
264 return -EINVAL;
265}
266EXPORT_SYMBOL_GPL(of_irq_map_raw);
267
268/**
269 * of_irq_map_one - Resolve an interrupt for a device
270 * @device: the device whose interrupt is to be resolved
271 * @index: index of the interrupt to resolve
272 * @out_irq: structure of_irq filled by this function
273 *
274 * This function resolves an interrupt, walking the tree, for a given
275 * device-tree node. It's the high level pendant to of_irq_map_raw().
276 */
277int of_irq_map_one(struct device_node *device, int index, struct of_irq *out_irq)
278{
279 struct device_node *p;
280 const u32 *intspec, *tmp, *addr;
281 u32 intsize, intlen;
282 int res = -EINVAL;
283
284 pr_debug("of_irq_map_one: dev=%s, index=%d\n", device->full_name, index);
285
286 /* OldWorld mac stuff is "special", handle out of line */
287 if (of_irq_workarounds & OF_IMAP_OLDWORLD_MAC)
288 return of_irq_map_oldworld(device, index, out_irq);
289
290 /* Get the interrupts property */
291 intspec = of_get_property(device, "interrupts", &intlen);
292 if (intspec == NULL)
293 return -EINVAL;
294 intlen /= sizeof(u32);
295
296 pr_debug(" intspec=%d intlen=%d\n", *intspec, intlen);
297
298 /* Get the reg property (if any) */
299 addr = of_get_property(device, "reg", NULL);
300
301 /* Look for the interrupt parent. */
302 p = of_irq_find_parent(device);
303 if (p == NULL)
304 return -EINVAL;
305
306 /* Get size of interrupt specifier */
307 tmp = of_get_property(p, "#interrupt-cells", NULL);
308 if (tmp == NULL)
309 goto out;
310 intsize = *tmp;
311
312 pr_debug(" intsize=%d intlen=%d\n", intsize, intlen);
313
314 /* Check index */
315 if ((index + 1) * intsize > intlen)
316 goto out;
317
318 /* Get new specifier and map it */
319 res = of_irq_map_raw(p, intspec + index * intsize, intsize,
320 addr, out_irq);
321 out:
322 of_node_put(p);
323 return res;
324}
325EXPORT_SYMBOL_GPL(of_irq_map_one);
326
327/**
328 * of_irq_to_resource - Decode a node's IRQ and return it as a resource
329 * @dev: pointer to device tree node
330 * @index: zero-based index of the irq
331 * @r: pointer to resource structure to return result into.
332 */
333int of_irq_to_resource(struct device_node *dev, int index, struct resource *r)
334{
335 int irq = irq_of_parse_and_map(dev, index);
336
337 /* Only dereference the resource if both the
338 * resource and the irq are valid. */
339 if (r && irq != NO_IRQ) {
340 r->start = r->end = irq;
341 r->flags = IORESOURCE_IRQ;
342 }
343
344 return irq;
345}
346EXPORT_SYMBOL_GPL(of_irq_to_resource);