You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding various abstractions and features to it, without impacting existing functionality. While the queue can be best described as "fix and improve everything in the generic IRQ layer that we could think of", and thus it consists of many smaller features and lots of cleanups, the one feature that stands out most is the new 'irq chip' abstraction. The irq-chip abstraction is about describing and coding and IRQ controller driver by mapping its raw hardware capabilities [and quirks, if needed] in a straightforward way, without having to think about "IRQ flow" (level/edge/etc.) type of details. This stands in contrast with the current 'irq-type' model of genirq architectures, which 'mixes' raw hardware capabilities with 'flow' details. The patchset supports both types of irq controller designs at once, and converts i386 and x86_64 to the new irq-chip design. As a bonus side-effect of the irq-chip approach, chained interrupt controllers (master/slave PIC constructs, etc.) are now supported by design as well. The end result of this patchset intends to be simpler architecture-level code and more consolidation between architectures. We reused many bits of code and many concepts from Russell King's ARM IRQ layer, the merging of which was one of the motivations for this patchset. This patch: rename desc->handler to desc->chip. Originally i did not want to do this, because it's a big patch. But having both "desc->handler", "desc->handle_irq" and "action->handler" caused a large degree of confusion and made the code appear alot less clean than it truly is. I have also attempted a dual approach as well by introducing a desc->chip alias - but that just wasnt robust enough and broke frequently. So lets get over with this quickly. The conversion was done automatically via scripts and converts all the code in the kernel. This renaming patch is the first one amongst the patches, so that the remaining patches can stay flexible and can be merged and split up without having some big monolithic patch act as a merge barrier. [akpm@osdl.org: build fix] [akpm@osdl.org: another build fix] Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
cfb9e32f2f
commit
d1bef4ed5f
@@ -49,7 +49,7 @@ select_smp_affinity(unsigned int irq)
|
||||
static int last_cpu;
|
||||
int cpu = last_cpu + 1;
|
||||
|
||||
if (!irq_desc[irq].handler->set_affinity || irq_user_affinity[irq])
|
||||
if (!irq_desc[irq].chip->set_affinity || irq_user_affinity[irq])
|
||||
return 1;
|
||||
|
||||
while (!cpu_possible(cpu))
|
||||
@@ -57,7 +57,7 @@ select_smp_affinity(unsigned int irq)
|
||||
last_cpu = cpu;
|
||||
|
||||
irq_affinity[irq] = cpumask_of_cpu(cpu);
|
||||
irq_desc[irq].handler->set_affinity(irq, cpumask_of_cpu(cpu));
|
||||
irq_desc[irq].chip->set_affinity(irq, cpumask_of_cpu(cpu));
|
||||
return 0;
|
||||
}
|
||||
#endif /* CONFIG_SMP */
|
||||
@@ -93,7 +93,7 @@ show_interrupts(struct seq_file *p, void *v)
|
||||
for_each_online_cpu(j)
|
||||
seq_printf(p, "%10u ", kstat_cpu(j).irqs[irq]);
|
||||
#endif
|
||||
seq_printf(p, " %14s", irq_desc[irq].handler->typename);
|
||||
seq_printf(p, " %14s", irq_desc[irq].chip->typename);
|
||||
seq_printf(p, " %c%s",
|
||||
(action->flags & SA_INTERRUPT)?'+':' ',
|
||||
action->name);
|
||||
|
||||
@@ -233,7 +233,7 @@ void __init
|
||||
init_rtc_irq(void)
|
||||
{
|
||||
irq_desc[RTC_IRQ].status = IRQ_DISABLED;
|
||||
irq_desc[RTC_IRQ].handler = &rtc_irq_type;
|
||||
irq_desc[RTC_IRQ].chip = &rtc_irq_type;
|
||||
setup_irq(RTC_IRQ, &timer_irqaction);
|
||||
}
|
||||
|
||||
|
||||
@@ -109,7 +109,7 @@ init_i8259a_irqs(void)
|
||||
|
||||
for (i = 0; i < 16; i++) {
|
||||
irq_desc[i].status = IRQ_DISABLED;
|
||||
irq_desc[i].handler = &i8259a_irq_type;
|
||||
irq_desc[i].chip = &i8259a_irq_type;
|
||||
}
|
||||
|
||||
setup_irq(2, &cascade);
|
||||
|
||||
@@ -120,7 +120,7 @@ init_pyxis_irqs(unsigned long ignore_mask)
|
||||
if ((ignore_mask >> i) & 1)
|
||||
continue;
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &pyxis_irq_type;
|
||||
irq_desc[i].chip = &pyxis_irq_type;
|
||||
}
|
||||
|
||||
setup_irq(16+7, &isa_cascade_irqaction);
|
||||
|
||||
@@ -67,7 +67,7 @@ init_srm_irqs(long max, unsigned long ignore_mask)
|
||||
if (i < 64 && ((ignore_mask >> i) & 1))
|
||||
continue;
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &srm_irq_type;
|
||||
irq_desc[i].chip = &srm_irq_type;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -144,7 +144,7 @@ alcor_init_irq(void)
|
||||
if (i >= 16+20 && i <= 16+30)
|
||||
continue;
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &alcor_irq_type;
|
||||
irq_desc[i].chip = &alcor_irq_type;
|
||||
}
|
||||
i8259a_irq_type.ack = alcor_isa_mask_and_ack_irq;
|
||||
|
||||
|
||||
@@ -124,7 +124,7 @@ common_init_irq(void (*srm_dev_int)(unsigned long v, struct pt_regs *r))
|
||||
|
||||
for (i = 16; i < 35; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &cabriolet_irq_type;
|
||||
irq_desc[i].chip = &cabriolet_irq_type;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -300,7 +300,7 @@ init_tsunami_irqs(struct hw_interrupt_type * ops, int imin, int imax)
|
||||
long i;
|
||||
for (i = imin; i <= imax; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = ops;
|
||||
irq_desc[i].chip = ops;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -137,7 +137,7 @@ eb64p_init_irq(void)
|
||||
|
||||
for (i = 16; i < 32; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &eb64p_irq_type;
|
||||
irq_desc[i].chip = &eb64p_irq_type;
|
||||
}
|
||||
|
||||
common_init_isa_dma();
|
||||
|
||||
@@ -154,7 +154,7 @@ eiger_init_irq(void)
|
||||
|
||||
for (i = 16; i < 128; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &eiger_irq_type;
|
||||
irq_desc[i].chip = &eiger_irq_type;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -206,11 +206,11 @@ jensen_init_irq(void)
|
||||
{
|
||||
init_i8259a_irqs();
|
||||
|
||||
irq_desc[1].handler = &jensen_local_irq_type;
|
||||
irq_desc[4].handler = &jensen_local_irq_type;
|
||||
irq_desc[3].handler = &jensen_local_irq_type;
|
||||
irq_desc[7].handler = &jensen_local_irq_type;
|
||||
irq_desc[9].handler = &jensen_local_irq_type;
|
||||
irq_desc[1].chip = &jensen_local_irq_type;
|
||||
irq_desc[4].chip = &jensen_local_irq_type;
|
||||
irq_desc[3].chip = &jensen_local_irq_type;
|
||||
irq_desc[7].chip = &jensen_local_irq_type;
|
||||
irq_desc[9].chip = &jensen_local_irq_type;
|
||||
|
||||
common_init_isa_dma();
|
||||
}
|
||||
|
||||
@@ -303,7 +303,7 @@ init_io7_irqs(struct io7 *io7,
|
||||
/* Set up the lsi irqs. */
|
||||
for (i = 0; i < 128; ++i) {
|
||||
irq_desc[base + i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[base + i].handler = lsi_ops;
|
||||
irq_desc[base + i].chip = lsi_ops;
|
||||
}
|
||||
|
||||
/* Disable the implemented irqs in hardware. */
|
||||
@@ -317,7 +317,7 @@ init_io7_irqs(struct io7 *io7,
|
||||
/* Set up the msi irqs. */
|
||||
for (i = 128; i < (128 + 512); ++i) {
|
||||
irq_desc[base + i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[base + i].handler = msi_ops;
|
||||
irq_desc[base + i].chip = msi_ops;
|
||||
}
|
||||
|
||||
for (i = 0; i < 16; ++i)
|
||||
@@ -335,7 +335,7 @@ marvel_init_irq(void)
|
||||
/* Reserve the legacy irqs. */
|
||||
for (i = 0; i < 16; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED;
|
||||
irq_desc[i].handler = &marvel_legacy_irq_type;
|
||||
irq_desc[i].chip = &marvel_legacy_irq_type;
|
||||
}
|
||||
|
||||
/* Init the io7 irqs. */
|
||||
|
||||
@@ -117,7 +117,7 @@ mikasa_init_irq(void)
|
||||
|
||||
for (i = 16; i < 32; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &mikasa_irq_type;
|
||||
irq_desc[i].chip = &mikasa_irq_type;
|
||||
}
|
||||
|
||||
init_i8259a_irqs();
|
||||
|
||||
@@ -139,7 +139,7 @@ noritake_init_irq(void)
|
||||
|
||||
for (i = 16; i < 48; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &noritake_irq_type;
|
||||
irq_desc[i].chip = &noritake_irq_type;
|
||||
}
|
||||
|
||||
init_i8259a_irqs();
|
||||
|
||||
@@ -180,7 +180,7 @@ rawhide_init_irq(void)
|
||||
|
||||
for (i = 16; i < 128; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &rawhide_irq_type;
|
||||
irq_desc[i].chip = &rawhide_irq_type;
|
||||
}
|
||||
|
||||
init_i8259a_irqs();
|
||||
|
||||
@@ -117,7 +117,7 @@ rx164_init_irq(void)
|
||||
rx164_update_irq_hw(0);
|
||||
for (i = 16; i < 40; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &rx164_irq_type;
|
||||
irq_desc[i].chip = &rx164_irq_type;
|
||||
}
|
||||
|
||||
init_i8259a_irqs();
|
||||
|
||||
@@ -537,7 +537,7 @@ sable_lynx_init_irq(int nr_irqs)
|
||||
|
||||
for (i = 0; i < nr_irqs; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &sable_lynx_irq_type;
|
||||
irq_desc[i].chip = &sable_lynx_irq_type;
|
||||
}
|
||||
|
||||
common_init_isa_dma();
|
||||
|
||||
@@ -154,7 +154,7 @@ takara_init_irq(void)
|
||||
|
||||
for (i = 16; i < 128; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = &takara_irq_type;
|
||||
irq_desc[i].chip = &takara_irq_type;
|
||||
}
|
||||
|
||||
common_init_isa_dma();
|
||||
|
||||
@@ -189,7 +189,7 @@ init_titan_irqs(struct hw_interrupt_type * ops, int imin, int imax)
|
||||
long i;
|
||||
for (i = imin; i <= imax; ++i) {
|
||||
irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i].handler = ops;
|
||||
irq_desc[i].chip = ops;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -199,14 +199,14 @@ wildfire_init_irq_per_pca(int qbbno, int pcano)
|
||||
if (i == 2)
|
||||
continue;
|
||||
irq_desc[i+irq_bias].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i+irq_bias].handler = &wildfire_irq_type;
|
||||
irq_desc[i+irq_bias].chip = &wildfire_irq_type;
|
||||
}
|
||||
|
||||
irq_desc[36+irq_bias].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[36+irq_bias].handler = &wildfire_irq_type;
|
||||
irq_desc[36+irq_bias].chip = &wildfire_irq_type;
|
||||
for (i = 40; i < 64; ++i) {
|
||||
irq_desc[i+irq_bias].status = IRQ_DISABLED | IRQ_LEVEL;
|
||||
irq_desc[i+irq_bias].handler = &wildfire_irq_type;
|
||||
irq_desc[i+irq_bias].chip = &wildfire_irq_type;
|
||||
}
|
||||
|
||||
setup_irq(32+irq_bias, &isa_enable);
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user