2 **********************************************************************
3 * irqmgr.c - IRQ manager for emu10k1 driver
4 * Copyright 1999, 2000 Creative Labs, Inc.
6 **********************************************************************
8 * Date Author Summary of changes
9 * ---- ------ ------------------
10 * October 20, 1999 Bertrand Lee base code release
12 **********************************************************************
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public
25 * License along with this program; if not, write to the Free
26 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
29 **********************************************************************
38 /* Interrupt handler */
40 irqreturn_t
emu10k1_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
42 struct emu10k1_card
*card
= (struct emu10k1_card
*) dev_id
;
43 u32 irqstatus
, irqstatus_tmp
;
46 DPD(4, "emu10k1_interrupt called, irq = %u\n", irq
);
50 ** We do a 'while loop' here cos on certain machines, with both
51 ** playback and recording going on at the same time, IRQs will
52 ** stop coming in after a while. Checking IPND indeed shows that
53 ** there are interrupts pending but the PIC says no IRQs pending.
54 ** I suspect that some boards need edge-triggered IRQs but are not
55 ** getting that condition if we don't completely clear the IPND
56 ** (make sure no more interrupts are pending).
60 while ((irqstatus
= inl(card
->iobase
+ IPR
))) {
61 DPD(4, "irq status %#x\n", irqstatus
);
63 irqstatus_tmp
= irqstatus
;
65 if (irqstatus
& IRQTYPE_TIMER
) {
66 emu10k1_timer_irqhandler(card
);
67 irqstatus
&= ~IRQTYPE_TIMER
;
70 if (irqstatus
& IRQTYPE_DSP
) {
71 emu10k1_dsp_irqhandler(card
);
72 irqstatus
&= ~IRQTYPE_DSP
;
75 if (irqstatus
& IRQTYPE_MPUIN
) {
76 emu10k1_mpuin_irqhandler(card
);
77 irqstatus
&= ~IRQTYPE_MPUIN
;
80 if (irqstatus
& IRQTYPE_MPUOUT
) {
81 emu10k1_mpuout_irqhandler(card
);
82 irqstatus
&= ~IRQTYPE_MPUOUT
;
85 if (irqstatus
& IPR_MUTE
) {
86 emu10k1_mute_irqhandler(card
);
87 irqstatus
&=~IPR_MUTE
;
90 if (irqstatus
& IPR_VOLINCR
) {
91 emu10k1_volincr_irqhandler(card
);
92 irqstatus
&=~IPR_VOLINCR
;
95 if (irqstatus
& IPR_VOLDECR
) {
96 emu10k1_voldecr_irqhandler(card
);
97 irqstatus
&=~IPR_VOLDECR
;
101 printk(KERN_ERR
"emu10k1: Warning, unhandled interrupt: %#08x\n", irqstatus
);
102 //make sure any interrupts we don't handle are disabled:
103 emu10k1_irq_disable(card
, ~(INTE_MIDIRXENABLE
| INTE_MIDITXENABLE
| INTE_INTERVALTIMERENB
|
104 INTE_VOLDECRENABLE
| INTE_VOLINCRENABLE
| INTE_MUTEENABLE
|
108 /* acknowledge interrupt */
109 outl(irqstatus_tmp
, card
->iobase
+ IPR
);
112 return IRQ_RETVAL(handled
);