1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /***************************************************************************
- nec7210/interrupt.c
- -------------------
- begin : Dec 2001
- copyright : (C) 2001, 2002 by Frank Mori Hess
- email : fmhess@users.sourceforge.net
- ***************************************************************************/
- /***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
- #include "pc2.h"
- #include <asm/bitops.h>
- #include <asm/dma.h>
- /*
- * GPIB interrupt service routines
- */
- irqreturn_t pc2_interrupt(int irq, void *arg PT_REGS_ARG)
- {
- gpib_board_t *board = arg;
- pc2_private_t *priv = board->private_data;
- unsigned long flags;
- irqreturn_t retval;
-
- spin_lock_irqsave( &board->spinlock, flags );
- retval = nec7210_interrupt(board, &priv->nec7210_priv);
- spin_unlock_irqrestore( &board->spinlock, flags );
- return retval;
- }
- irqreturn_t pc2a_interrupt(int irq, void *arg PT_REGS_ARG)
- {
- gpib_board_t *board = arg;
- pc2_private_t *priv = board->private_data;
- int status1, status2;
- unsigned long flags;
- irqreturn_t retval;
-
- spin_lock_irqsave( &board->spinlock, flags );
- // read interrupt status (also clears status)
- status1 = read_byte( &priv->nec7210_priv, ISR1 );
- status2 = read_byte( &priv->nec7210_priv, ISR2 );
- /* clear interrupt circuit */
- if(priv->irq)
- outb(0xff , CLEAR_INTR_REG(priv->irq) );
- retval = nec7210_interrupt_have_status( board, &priv->nec7210_priv, status1, status2 );
- spin_unlock_irqrestore( &board->spinlock, flags );
- return retval;
- }
|