2019-05-27 06:55:01 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* DEC I/O ASIC interrupts.
|
|
|
|
*
|
2013-09-22 20:55:19 +00:00
|
|
|
* Copyright (c) 2002, 2003, 2013 Maciej W. Rozycki
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
#include <asm/dec/ioasic.h>
|
|
|
|
#include <asm/dec/ioasic_addrs.h>
|
|
|
|
#include <asm/dec/ioasic_ints.h>
|
|
|
|
|
|
|
|
static int ioasic_irq_base;
|
|
|
|
|
2011-03-23 21:08:51 +00:00
|
|
|
static void unmask_ioasic_irq(struct irq_data *d)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
u32 simr;
|
|
|
|
|
|
|
|
simr = ioasic_read(IO_REG_SIMR);
|
2011-03-23 21:08:51 +00:00
|
|
|
simr |= (1 << (d->irq - ioasic_irq_base));
|
2005-04-16 22:20:36 +00:00
|
|
|
ioasic_write(IO_REG_SIMR, simr);
|
|
|
|
}
|
|
|
|
|
2011-03-23 21:08:51 +00:00
|
|
|
static void mask_ioasic_irq(struct irq_data *d)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
u32 simr;
|
|
|
|
|
|
|
|
simr = ioasic_read(IO_REG_SIMR);
|
2011-03-23 21:08:51 +00:00
|
|
|
simr &= ~(1 << (d->irq - ioasic_irq_base));
|
2005-04-16 22:20:36 +00:00
|
|
|
ioasic_write(IO_REG_SIMR, simr);
|
|
|
|
}
|
|
|
|
|
2011-03-23 21:08:51 +00:00
|
|
|
static void ack_ioasic_irq(struct irq_data *d)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2011-03-23 21:08:51 +00:00
|
|
|
mask_ioasic_irq(d);
|
2005-04-16 22:20:36 +00:00
|
|
|
fast_iob();
|
|
|
|
}
|
|
|
|
|
2006-07-02 13:41:42 +00:00
|
|
|
static struct irq_chip ioasic_irq_type = {
|
2007-01-14 15:07:25 +00:00
|
|
|
.name = "IO-ASIC",
|
2011-03-23 21:08:51 +00:00
|
|
|
.irq_ack = ack_ioasic_irq,
|
|
|
|
.irq_mask = mask_ioasic_irq,
|
|
|
|
.irq_mask_ack = ack_ioasic_irq,
|
|
|
|
.irq_unmask = unmask_ioasic_irq,
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2013-09-22 20:55:19 +00:00
|
|
|
static void clear_ioasic_dma_irq(struct irq_data *d)
|
2013-09-12 11:14:31 +00:00
|
|
|
{
|
|
|
|
u32 sir;
|
|
|
|
|
2013-09-22 20:55:19 +00:00
|
|
|
sir = ~(1 << (d->irq - ioasic_irq_base));
|
2013-09-12 11:14:31 +00:00
|
|
|
ioasic_write(IO_REG_SIR, sir);
|
2013-09-22 20:55:19 +00:00
|
|
|
fast_iob();
|
2013-09-12 11:14:31 +00:00
|
|
|
}
|
|
|
|
|
2006-07-02 13:41:42 +00:00
|
|
|
static struct irq_chip ioasic_dma_irq_type = {
|
2007-01-14 15:07:25 +00:00
|
|
|
.name = "IO-ASIC-DMA",
|
2013-09-22 20:55:19 +00:00
|
|
|
.irq_ack = clear_ioasic_dma_irq,
|
2011-03-23 21:08:51 +00:00
|
|
|
.irq_mask = mask_ioasic_irq,
|
|
|
|
.irq_unmask = unmask_ioasic_irq,
|
2013-09-22 20:55:19 +00:00
|
|
|
.irq_eoi = clear_ioasic_dma_irq,
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2013-09-22 20:55:19 +00:00
|
|
|
/*
|
|
|
|
* I/O ASIC implements two kinds of DMA interrupts, informational and
|
|
|
|
* error interrupts.
|
|
|
|
*
|
|
|
|
* The formers do not stop DMA and should be cleared as soon as possible
|
|
|
|
* so that if they retrigger before the handler has completed, usually as
|
|
|
|
* a side effect of actions taken by the handler, then they are reissued.
|
|
|
|
* These use the `handle_edge_irq' handler that clears the request right
|
|
|
|
* away.
|
|
|
|
*
|
|
|
|
* The latters stop DMA and do not resume it until the interrupt has been
|
|
|
|
* cleared. This cannot be done until after a corrective action has been
|
|
|
|
* taken and this also means they will not retrigger. Therefore they use
|
|
|
|
* the `handle_fasteoi_irq' handler that only clears the request on the
|
|
|
|
* way out. Because MIPS processor interrupt inputs, one of which the I/O
|
|
|
|
* ASIC is cascaded to, are level-triggered it is recommended that error
|
|
|
|
* DMA interrupt action handlers are registered with the IRQF_ONESHOT flag
|
|
|
|
* set so that they are run with the interrupt line masked.
|
|
|
|
*
|
|
|
|
* This mask has `1' bits in the positions of informational interrupts.
|
|
|
|
*/
|
|
|
|
#define IO_IRQ_DMA_INFO \
|
|
|
|
(IO_IRQ_MASK(IO_INR_SCC0A_RXDMA) | \
|
|
|
|
IO_IRQ_MASK(IO_INR_SCC1A_RXDMA) | \
|
|
|
|
IO_IRQ_MASK(IO_INR_ISDN_TXDMA) | \
|
|
|
|
IO_IRQ_MASK(IO_INR_ISDN_RXDMA) | \
|
|
|
|
IO_IRQ_MASK(IO_INR_ASC_DMA))
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
void __init init_ioasic_irqs(int base)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Mask interrupts. */
|
|
|
|
ioasic_write(IO_REG_SIMR, 0);
|
|
|
|
fast_iob();
|
|
|
|
|
2006-11-01 17:08:36 +00:00
|
|
|
for (i = base; i < base + IO_INR_DMA; i++)
|
2011-03-27 13:19:28 +00:00
|
|
|
irq_set_chip_and_handler(i, &ioasic_irq_type,
|
2006-11-13 16:13:18 +00:00
|
|
|
handle_level_irq);
|
2006-11-01 17:08:36 +00:00
|
|
|
for (; i < base + IO_IRQ_LINES; i++)
|
2013-09-22 20:55:19 +00:00
|
|
|
irq_set_chip_and_handler(i, &ioasic_dma_irq_type,
|
|
|
|
1 << (i - base) & IO_IRQ_DMA_INFO ?
|
|
|
|
handle_edge_irq : handle_fasteoi_irq);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
ioasic_irq_base = base;
|
|
|
|
}
|