2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* arch/sh/boards/se/73180/irq.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp>
|
|
|
|
* Based on arch/sh/boards/se/7300/irq.c
|
|
|
|
*
|
|
|
|
* Modified for SH-Mobile SolutionEngine 73180 Support
|
|
|
|
* by YOSHII Takashi <yoshii-takashi@hitachi-ul.co.jp>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <asm/irq.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/mach/se73180.h>
|
|
|
|
|
|
|
|
static int
|
|
|
|
irq2intreq(int irq)
|
|
|
|
{
|
|
|
|
if (irq == 10)
|
|
|
|
return 5;
|
|
|
|
return 7 - (irq - 32);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
disable_intreq_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
ctrl_outb(1 << (7 - irq2intreq(irq)), INTMSK0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
enable_intreq_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
ctrl_outb(1 << (7 - irq2intreq(irq)), INTMSKCLR0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mask_and_ack_intreq_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
disable_intreq_irq(irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
startup_intreq_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
enable_intreq_irq(irq);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shutdown_intreq_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
disable_intreq_irq(irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
end_intreq_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS)))
|
|
|
|
enable_intreq_irq(irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct hw_interrupt_type intreq_irq_type = {
|
|
|
|
.typename = "intreq",
|
|
|
|
.startup = startup_intreq_irq,
|
|
|
|
.shutdown = shutdown_intreq_irq,
|
|
|
|
.enable = enable_intreq_irq,
|
|
|
|
.disable = disable_intreq_irq,
|
|
|
|
.ack = mask_and_ack_intreq_irq,
|
|
|
|
.end = end_intreq_irq
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
make_intreq_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
disable_irq_nosync(irq);
|
[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>
2006-06-29 05:24:36 -04:00
|
|
|
irq_desc[irq].chip = &intreq_irq_type;
|
2005-04-16 18:20:36 -04:00
|
|
|
disable_intreq_irq(irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
shmse_irq_demux(int irq)
|
|
|
|
{
|
|
|
|
if (irq == IRQ5_IRQ)
|
|
|
|
return 10;
|
|
|
|
return irq;
|
|
|
|
}
|
|
|
|
|
2006-10-30 22:35:02 -05:00
|
|
|
static struct ipr_data se73180_siof0_ipr_map[] = {
|
|
|
|
{ SIOF0_IRQ, SIOF0_IPR_ADDR, SIOF0_IPR_POS, SIOF0_PRIORITY },
|
|
|
|
};
|
|
|
|
static struct ipr_data se73180_vpu_ipr_map[] = {
|
|
|
|
{ VPU_IRQ, VPU_IPR_ADDR, VPU_IPR_POS, 8 },
|
|
|
|
};
|
|
|
|
static struct ipr_data se73180_other_ipr_map[] = {
|
|
|
|
{ DMTE2_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY },
|
|
|
|
{ DMTE3_IRQ, DMA1_IPR_ADDR, DMA1_IPR_POS, DMA1_PRIORITY },
|
|
|
|
{ DMTE4_IRQ, DMA2_IPR_ADDR, DMA2_IPR_POS, DMA2_PRIORITY },
|
|
|
|
{ IIC0_ALI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY },
|
|
|
|
{ IIC0_TACKI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY },
|
|
|
|
{ IIC0_WAITI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY },
|
|
|
|
{ IIC0_DTEI_IRQ, IIC0_IPR_ADDR, IIC0_IPR_POS, IIC0_PRIORITY },
|
|
|
|
{ SIOF0_IRQ, SIOF0_IPR_ADDR, SIOF0_IPR_POS, SIOF0_PRIORITY },
|
|
|
|
{ SIU_IRQ, SIU_IPR_ADDR, SIU_IPR_POS, SIU_PRIORITY },
|
|
|
|
|
|
|
|
/* VIO interrupt */
|
|
|
|
{ CEU_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY },
|
|
|
|
{ BEU_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY },
|
|
|
|
{ VEU_IRQ, VIO_IPR_ADDR, VIO_IPR_POS, VIO_PRIORITY },
|
|
|
|
|
|
|
|
{ LCDC_IRQ, LCDC_IPR_ADDR, LCDC_IPR_POS, LCDC_PRIORITY },
|
|
|
|
};
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* Initialize IRQ setting
|
|
|
|
*/
|
|
|
|
void __init
|
|
|
|
init_73180se_IRQ(void)
|
|
|
|
{
|
2006-10-30 22:35:02 -05:00
|
|
|
make_ipr_irq(se73180_siof0_ipr_map, ARRAY_SIZE(se73180_siof0_ipr_map));
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
ctrl_outw(0x2000, 0xb03fffec); /* mrshpc irq enable */
|
|
|
|
ctrl_outw(0x2000, 0xb07fffec); /* mrshpc irq enable */
|
|
|
|
ctrl_outl(3 << ((7 - 5) * 4), INTC_INTPRI0); /* irq5 pri=3 */
|
|
|
|
ctrl_outw(2 << ((7 - 5) * 2), INTC_ICR1); /* low-level irq */
|
|
|
|
make_intreq_irq(10);
|
|
|
|
|
2006-10-30 22:35:02 -05:00
|
|
|
make_ipr_irq(se73180_vpu_ipr_map, ARRAY_SIZE(se73180_vpu_ipr_map));
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
ctrl_outb(0x0f, INTC_IMCR5); /* enable SCIF IRQ */
|
|
|
|
|
2006-10-30 22:35:02 -05:00
|
|
|
make_ipr_irq(se73180_other_ipr_map, ARRAY_SIZE(se73180_other_ipr_map));
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
ctrl_outw(0x2000, PA_MRSHPC + 0x0c); /* mrshpc irq enable */
|
|
|
|
}
|