2005-04-17 05:20:36 +07:00
|
|
|
/*
|
|
|
|
* linux/arch/m68k/amiga/amiints.c -- Amiga Linux interrupt handling code
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
2006-06-25 19:47:00 +07:00
|
|
|
#include <linux/interrupt.h>
|
2005-04-17 05:20:36 +07:00
|
|
|
#include <linux/errno.h>
|
|
|
|
|
|
|
|
#include <asm/irq.h>
|
|
|
|
#include <asm/traps.h>
|
|
|
|
#include <asm/amigahw.h>
|
|
|
|
#include <asm/amigaints.h>
|
|
|
|
#include <asm/amipcmcia.h>
|
|
|
|
|
2011-04-18 03:53:04 +07:00
|
|
|
static void amiga_irq_enable(struct irq_data *data);
|
|
|
|
static void amiga_irq_disable(struct irq_data *data);
|
2006-10-07 20:16:45 +07:00
|
|
|
static irqreturn_t ami_int1(int irq, void *dev_id);
|
|
|
|
static irqreturn_t ami_int3(int irq, void *dev_id);
|
|
|
|
static irqreturn_t ami_int4(int irq, void *dev_id);
|
|
|
|
static irqreturn_t ami_int5(int irq, void *dev_id);
|
2006-06-25 19:47:01 +07:00
|
|
|
|
2011-04-14 03:31:28 +07:00
|
|
|
static struct irq_chip amiga_irq_chip = {
|
2006-06-25 19:47:01 +07:00
|
|
|
.name = "amiga",
|
2011-04-18 03:53:04 +07:00
|
|
|
.irq_enable = amiga_irq_enable,
|
|
|
|
.irq_disable = amiga_irq_disable,
|
2005-04-17 05:20:36 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* void amiga_init_IRQ(void)
|
|
|
|
*
|
|
|
|
* Parameters: None
|
|
|
|
*
|
|
|
|
* Returns: Nothing
|
|
|
|
*
|
|
|
|
* This function should be called during kernel startup to initialize
|
|
|
|
* the amiga IRQ handling routines.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void __init amiga_init_IRQ(void)
|
|
|
|
{
|
2008-12-30 20:00:34 +07:00
|
|
|
if (request_irq(IRQ_AUTO_1, ami_int1, 0, "int1", NULL))
|
|
|
|
pr_err("Couldn't register int%d\n", 1);
|
|
|
|
if (request_irq(IRQ_AUTO_3, ami_int3, 0, "int3", NULL))
|
|
|
|
pr_err("Couldn't register int%d\n", 3);
|
|
|
|
if (request_irq(IRQ_AUTO_4, ami_int4, 0, "int4", NULL))
|
|
|
|
pr_err("Couldn't register int%d\n", 4);
|
|
|
|
if (request_irq(IRQ_AUTO_5, ami_int5, 0, "int5", NULL))
|
|
|
|
pr_err("Couldn't register int%d\n", 5);
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2011-06-01 16:15:21 +07:00
|
|
|
m68k_setup_irq_controller(&amiga_irq_chip, handle_simple_irq, IRQ_USER,
|
|
|
|
AMI_STD_IRQS);
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
/* turn off PCMCIA interrupts */
|
|
|
|
if (AMIGAHW_PRESENT(PCMCIA))
|
|
|
|
gayle.inten = GAYLE_IRQ_IDE;
|
|
|
|
|
|
|
|
/* turn off all interrupts and enable the master interrupt bit */
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intena = 0x7fff;
|
|
|
|
amiga_custom.intreq = 0x7fff;
|
|
|
|
amiga_custom.intena = IF_SETCLR | IF_INTEN;
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
cia_init_IRQ(&ciaa_base);
|
|
|
|
cia_init_IRQ(&ciab_base);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable/disable a particular machine specific interrupt source.
|
|
|
|
* Note that this may affect other interrupts in case of a shared interrupt.
|
|
|
|
* This function should only be called for a _very_ short time to change some
|
|
|
|
* internal data, that may not be changed by the interrupt at the same time.
|
|
|
|
*/
|
|
|
|
|
2011-04-18 03:53:04 +07:00
|
|
|
static void amiga_irq_enable(struct irq_data *data)
|
2005-04-17 05:20:36 +07:00
|
|
|
{
|
2011-04-18 03:53:04 +07:00
|
|
|
amiga_custom.intena = IF_SETCLR | (1 << (data->irq - IRQ_USER));
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
2011-04-18 03:53:04 +07:00
|
|
|
static void amiga_irq_disable(struct irq_data *data)
|
2005-04-17 05:20:36 +07:00
|
|
|
{
|
2011-04-18 03:53:04 +07:00
|
|
|
amiga_custom.intena = 1 << (data->irq - IRQ_USER);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The builtin Amiga hardware interrupt handlers.
|
|
|
|
*/
|
|
|
|
|
2006-10-07 20:16:45 +07:00
|
|
|
static irqreturn_t ami_int1(int irq, void *dev_id)
|
2005-04-17 05:20:36 +07:00
|
|
|
{
|
2006-01-12 16:06:12 +07:00
|
|
|
unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
/* if serial transmit buffer empty, interrupt */
|
|
|
|
if (ints & IF_TBE) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_TBE;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_TBE);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if floppy disk transfer complete, interrupt */
|
|
|
|
if (ints & IF_DSKBLK) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_DSKBLK;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_DSKBLK);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if software interrupt set, interrupt */
|
|
|
|
if (ints & IF_SOFT) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_SOFT;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_SOFT);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2006-10-07 20:16:45 +07:00
|
|
|
static irqreturn_t ami_int3(int irq, void *dev_id)
|
2005-04-17 05:20:36 +07:00
|
|
|
{
|
2006-01-12 16:06:12 +07:00
|
|
|
unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
/* if a blitter interrupt */
|
|
|
|
if (ints & IF_BLIT) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_BLIT;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_BLIT);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if a copper interrupt */
|
|
|
|
if (ints & IF_COPER) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_COPER;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_COPPER);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if a vertical blank interrupt */
|
2006-06-25 19:47:01 +07:00
|
|
|
if (ints & IF_VERTB) {
|
|
|
|
amiga_custom.intreq = IF_VERTB;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_VERTB);
|
2006-06-25 19:47:01 +07:00
|
|
|
}
|
2005-04-17 05:20:36 +07:00
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2006-10-07 20:16:45 +07:00
|
|
|
static irqreturn_t ami_int4(int irq, void *dev_id)
|
2005-04-17 05:20:36 +07:00
|
|
|
{
|
2006-01-12 16:06:12 +07:00
|
|
|
unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
/* if audio 0 interrupt */
|
|
|
|
if (ints & IF_AUD0) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_AUD0;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_AUD0);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if audio 1 interrupt */
|
|
|
|
if (ints & IF_AUD1) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_AUD1;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_AUD1);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if audio 2 interrupt */
|
|
|
|
if (ints & IF_AUD2) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_AUD2;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_AUD2);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if audio 3 interrupt */
|
|
|
|
if (ints & IF_AUD3) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_AUD3;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_AUD3);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2006-10-07 20:16:45 +07:00
|
|
|
static irqreturn_t ami_int5(int irq, void *dev_id)
|
2005-04-17 05:20:36 +07:00
|
|
|
{
|
2006-01-12 16:06:12 +07:00
|
|
|
unsigned short ints = amiga_custom.intreqr & amiga_custom.intenar;
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
/* if serial receive buffer full interrupt */
|
|
|
|
if (ints & IF_RBF) {
|
|
|
|
/* acknowledge of IF_RBF must be done by the serial interrupt */
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_RBF);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if a disk sync interrupt */
|
|
|
|
if (ints & IF_DSKSYN) {
|
2006-01-12 16:06:12 +07:00
|
|
|
amiga_custom.intreq = IF_DSKSYN;
|
2011-07-02 01:39:19 +07:00
|
|
|
generic_handle_irq(IRQ_AMIGA_DSKSYN);
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|