Searched refs:dgc (Results 1 – 5 of 5) sorted by relevance
73 struct irq_domain_chip_generic *dgc = aic5_domain->gc; in aic5_handle() local74 struct irq_chip_generic *gc = dgc->gc[0]; in aic5_handle()90 struct irq_domain_chip_generic *dgc = domain->gc; in aic5_mask() local91 struct irq_chip_generic *bgc = dgc->gc[0]; in aic5_mask()108 struct irq_domain_chip_generic *dgc = domain->gc; in aic5_unmask() local109 struct irq_chip_generic *bgc = dgc->gc[0]; in aic5_unmask()126 struct irq_domain_chip_generic *dgc = domain->gc; in aic5_retrigger() local127 struct irq_chip_generic *gc = dgc->gc[0]; in aic5_retrigger()141 struct irq_domain_chip_generic *dgc = domain->gc; in aic5_set_type() local142 struct irq_chip_generic *gc = dgc->gc[0]; in aic5_set_type()[all …]
63 struct irq_domain_chip_generic *dgc = aic_domain->gc; in aic_handle() local64 struct irq_chip_generic *gc = dgc->gc[0]; in aic_handle()177 struct irq_domain_chip_generic *dgc = d->gc; in aic_irq_domain_xlate() local183 if (!dgc) in aic_irq_domain_xlate()191 idx = intspec[0] / dgc->irqs_per_chip; in aic_irq_domain_xlate()192 if (idx >= dgc->num_chips) in aic_irq_domain_xlate()195 gc = dgc->gc[idx]; in aic_irq_domain_xlate()
38 struct irq_domain_chip_generic *dgc = digicolor_irq_domain->gc; in digicolor_handle_irq() local39 struct irq_chip_generic *gc = dgc->gc[0]; in digicolor_handle_irq()
36 struct irq_domain_chip_generic *dgc = orion_irq_domain->gc; in orion_handle_irq() local39 for (n = 0; n < dgc->num_chips; n++, base += ORION_IRQS_PER_CHIP) { in orion_handle_irq()
279 struct irq_domain_chip_generic *dgc; in irq_alloc_domain_generic_chips() local293 sz = sizeof(*dgc) + numchips * sizeof(gc); in irq_alloc_domain_generic_chips()296 tmp = dgc = kzalloc(sz, GFP_KERNEL); in irq_alloc_domain_generic_chips()297 if (!dgc) in irq_alloc_domain_generic_chips()299 dgc->irqs_per_chip = irqs_per_chip; in irq_alloc_domain_generic_chips()300 dgc->num_chips = numchips; in irq_alloc_domain_generic_chips()301 dgc->irq_flags_to_set = set; in irq_alloc_domain_generic_chips()302 dgc->irq_flags_to_clear = clr; in irq_alloc_domain_generic_chips()303 dgc->gc_flags = gcflags; in irq_alloc_domain_generic_chips()304 d->gc = dgc; in irq_alloc_domain_generic_chips()[all …]