mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
MIPS: Alchemy: devboards: remove unneeded BCSR IRQ reg acc
Initially I had to write to both the MASK and ENABLE registers, otherwise the CPLD would generate tons of spurious interrupts. With the change to the demux handler to disable the muxed line, it is now sufficient to disable the interrupt by writing either the enable or mask register. Signed-off-by: Manuel Lauss <manuel.lauss@googlemail.com> To: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/2865/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
435037c630
commit
fb469f084f
1 changed files with 2 additions and 9 deletions
|
@ -97,14 +97,9 @@ static void bcsr_csc_handler(unsigned int irq, struct irq_desc *d)
|
||||||
enable_irq(irq);
|
enable_irq(irq);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* NOTE: both the enable and mask bits must be cleared, otherwise the
|
|
||||||
* CPLD generates tons of spurious interrupts (at least on my DB1200).
|
|
||||||
* -- mlau
|
|
||||||
*/
|
|
||||||
static void bcsr_irq_mask(struct irq_data *d)
|
static void bcsr_irq_mask(struct irq_data *d)
|
||||||
{
|
{
|
||||||
unsigned short v = 1 << (d->irq - bcsr_csc_base);
|
unsigned short v = 1 << (d->irq - bcsr_csc_base);
|
||||||
__raw_writew(v, bcsr_virt + BCSR_REG_INTCLR);
|
|
||||||
__raw_writew(v, bcsr_virt + BCSR_REG_MASKCLR);
|
__raw_writew(v, bcsr_virt + BCSR_REG_MASKCLR);
|
||||||
wmb();
|
wmb();
|
||||||
}
|
}
|
||||||
|
@ -112,7 +107,6 @@ static void bcsr_irq_mask(struct irq_data *d)
|
||||||
static void bcsr_irq_maskack(struct irq_data *d)
|
static void bcsr_irq_maskack(struct irq_data *d)
|
||||||
{
|
{
|
||||||
unsigned short v = 1 << (d->irq - bcsr_csc_base);
|
unsigned short v = 1 << (d->irq - bcsr_csc_base);
|
||||||
__raw_writew(v, bcsr_virt + BCSR_REG_INTCLR);
|
|
||||||
__raw_writew(v, bcsr_virt + BCSR_REG_MASKCLR);
|
__raw_writew(v, bcsr_virt + BCSR_REG_MASKCLR);
|
||||||
__raw_writew(v, bcsr_virt + BCSR_REG_INTSTAT); /* ack */
|
__raw_writew(v, bcsr_virt + BCSR_REG_INTSTAT); /* ack */
|
||||||
wmb();
|
wmb();
|
||||||
|
@ -121,7 +115,6 @@ static void bcsr_irq_maskack(struct irq_data *d)
|
||||||
static void bcsr_irq_unmask(struct irq_data *d)
|
static void bcsr_irq_unmask(struct irq_data *d)
|
||||||
{
|
{
|
||||||
unsigned short v = 1 << (d->irq - bcsr_csc_base);
|
unsigned short v = 1 << (d->irq - bcsr_csc_base);
|
||||||
__raw_writew(v, bcsr_virt + BCSR_REG_INTSET);
|
|
||||||
__raw_writew(v, bcsr_virt + BCSR_REG_MASKSET);
|
__raw_writew(v, bcsr_virt + BCSR_REG_MASKSET);
|
||||||
wmb();
|
wmb();
|
||||||
}
|
}
|
||||||
|
@ -137,9 +130,9 @@ void __init bcsr_init_irq(int csc_start, int csc_end, int hook_irq)
|
||||||
{
|
{
|
||||||
unsigned int irq;
|
unsigned int irq;
|
||||||
|
|
||||||
/* mask & disable & ack all */
|
/* mask & enable & ack all */
|
||||||
__raw_writew(0xffff, bcsr_virt + BCSR_REG_INTCLR);
|
|
||||||
__raw_writew(0xffff, bcsr_virt + BCSR_REG_MASKCLR);
|
__raw_writew(0xffff, bcsr_virt + BCSR_REG_MASKCLR);
|
||||||
|
__raw_writew(0xffff, bcsr_virt + BCSR_REG_INTSET);
|
||||||
__raw_writew(0xffff, bcsr_virt + BCSR_REG_INTSTAT);
|
__raw_writew(0xffff, bcsr_virt + BCSR_REG_INTSTAT);
|
||||||
wmb();
|
wmb();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue