Skip to content

Commit 55601c9

Browse files
Felipe Balbitmlind
authored andcommitted
arm: omap: intc: switch over to linear irq domain
now that we don't need to support legacy board-files, we can completely switch over to a linear irq domain and make use of irq_alloc_domain_generic_chips() to allocate all generic irq chips for us. Signed-off-by: Felipe Balbi <[email protected]> Signed-off-by: Tony Lindgren <[email protected]>
1 parent d6a7c5c commit 55601c9

File tree

1 file changed

+79
-9
lines changed

1 file changed

+79
-9
lines changed

arch/arm/mach-omap2/irq.c

Lines changed: 79 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -188,14 +188,51 @@ void omap3_intc_suspend(void)
188188
omap_ack_irq(NULL);
189189
}
190190

191-
static __init void
192-
omap_alloc_gc(void __iomem *base, unsigned int irq_start, unsigned int num)
191+
static int __init omap_alloc_gc_of(struct irq_domain *d, void __iomem *base)
192+
{
193+
int ret;
194+
int i;
195+
196+
ret = irq_alloc_domain_generic_chips(d, 32, 1, "INTC",
197+
handle_level_irq, IRQ_NOREQUEST | IRQ_NOPROBE,
198+
IRQ_LEVEL, 0);
199+
if (ret) {
200+
pr_warn("Failed to allocate irq chips\n");
201+
return ret;
202+
}
203+
204+
for (i = 0; i < omap_nr_pending; i++) {
205+
struct irq_chip_generic *gc;
206+
struct irq_chip_type *ct;
207+
208+
gc = irq_get_domain_generic_chip(d, 32 * i);
209+
gc->reg_base = base;
210+
ct = gc->chip_types;
211+
212+
ct->type = IRQ_TYPE_LEVEL_MASK;
213+
ct->handler = handle_level_irq;
214+
215+
ct->chip.irq_ack = omap_mask_ack_irq;
216+
ct->chip.irq_mask = irq_gc_mask_disable_reg;
217+
ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
218+
219+
ct->chip.flags |= IRQCHIP_SKIP_SET_WAKE;
220+
221+
ct->regs.enable = INTC_MIR_CLEAR0 + 32 * i;
222+
ct->regs.disable = INTC_MIR_SET0 + 32 * i;
223+
}
224+
225+
return 0;
226+
}
227+
228+
static void __init omap_alloc_gc_legacy(void __iomem *base,
229+
unsigned int irq_start, unsigned int num)
193230
{
194231
struct irq_chip_generic *gc;
195232
struct irq_chip_type *ct;
196233

197234
gc = irq_alloc_generic_chip("INTC", 1, irq_start, base,
198-
handle_level_irq);
235+
handle_level_irq);
199236
ct = gc->chip_types;
200237
ct->chip.irq_ack = omap_mask_ack_irq;
201238
ct->chip.irq_mask = irq_gc_mask_disable_reg;
@@ -205,30 +242,60 @@ omap_alloc_gc(void __iomem *base, unsigned int irq_start, unsigned int num)
205242
ct->regs.enable = INTC_MIR_CLEAR0;
206243
ct->regs.disable = INTC_MIR_SET0;
207244
irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
208-
IRQ_NOREQUEST | IRQ_NOPROBE, 0);
245+
IRQ_NOREQUEST | IRQ_NOPROBE, 0);
209246
}
210247

211-
static void __init omap_init_irq(u32 base, struct device_node *node)
248+
static int __init omap_init_irq_of(struct device_node *node)
249+
{
250+
int ret;
251+
252+
omap_irq_base = of_iomap(node, 0);
253+
if (WARN_ON(!omap_irq_base))
254+
return -ENOMEM;
255+
256+
domain = irq_domain_add_linear(node, omap_nr_irqs,
257+
&irq_generic_chip_ops, NULL);
258+
259+
omap_irq_soft_reset();
260+
261+
ret = omap_alloc_gc_of(domain, omap_irq_base);
262+
if (ret < 0)
263+
irq_domain_remove(domain);
264+
265+
return ret;
266+
}
267+
268+
static int __init omap_init_irq_legacy(u32 base)
212269
{
213270
int j, irq_base;
214271

215272
omap_irq_base = ioremap(base, SZ_4K);
216273
if (WARN_ON(!omap_irq_base))
217-
return;
274+
return -ENOMEM;
218275

219276
irq_base = irq_alloc_descs(-1, 0, omap_nr_irqs, 0);
220277
if (irq_base < 0) {
221278
pr_warn("Couldn't allocate IRQ numbers\n");
222279
irq_base = 0;
223280
}
224281

225-
domain = irq_domain_add_legacy(node, omap_nr_irqs, irq_base, 0,
282+
domain = irq_domain_add_legacy(NULL, omap_nr_irqs, irq_base, 0,
226283
&irq_domain_simple_ops, NULL);
227284

228285
omap_irq_soft_reset();
229286

230287
for (j = 0; j < omap_nr_irqs; j += 32)
231-
omap_alloc_gc(omap_irq_base + j, j + irq_base, 32);
288+
omap_alloc_gc_legacy(omap_irq_base + j, j + irq_base, 32);
289+
290+
return 0;
291+
}
292+
293+
static int __init omap_init_irq(u32 base, struct device_node *node)
294+
{
295+
if (node)
296+
return omap_init_irq_of(node);
297+
else
298+
return omap_init_irq_legacy(base);
232299
}
233300

234301
static asmlinkage void __exception_irq_entry
@@ -294,6 +361,7 @@ static int __init intc_of_init(struct device_node *node,
294361
struct device_node *parent)
295362
{
296363
struct resource res;
364+
int ret;
297365

298366
omap_nr_pending = 3;
299367
omap_nr_irqs = 96;
@@ -311,7 +379,9 @@ static int __init intc_of_init(struct device_node *node,
311379
omap_nr_pending = 4;
312380
}
313381

314-
omap_init_irq(res.start, of_node_get(node));
382+
ret = omap_init_irq(-1, of_node_get(node));
383+
if (ret < 0)
384+
return ret;
315385

316386
set_handle_irq(omap_intc_handle_irq);
317387

0 commit comments

Comments
 (0)