2 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
4 * Routines for IRQ control of EMU10K1 chips
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include <sound/driver.h>
29 #include <linux/time.h>
30 #include <sound/core.h>
31 #include <sound/emu10k1.h>
33 irqreturn_t
snd_emu10k1_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
35 struct snd_emu10k1
*emu
= dev_id
;
36 unsigned int status
, status2
, orig_status
, orig_status2
;
39 while ((status
= inl(emu
->port
+ IPR
)) != 0) {
40 //printk("emu10k1 irq - status = 0x%x\n", status);
43 if (status
& IPR_PCIERROR
) {
44 snd_printk(KERN_ERR
"interrupt: PCI error\n");
45 snd_emu10k1_intr_disable(emu
, INTE_PCIERRORENABLE
);
46 status
&= ~IPR_PCIERROR
;
48 if (status
& (IPR_VOLINCR
|IPR_VOLDECR
|IPR_MUTE
)) {
49 if (emu
->hwvol_interrupt
)
50 emu
->hwvol_interrupt(emu
, status
);
52 snd_emu10k1_intr_disable(emu
, INTE_VOLINCRENABLE
|INTE_VOLDECRENABLE
|INTE_MUTEENABLE
);
53 status
&= ~(IPR_VOLINCR
|IPR_VOLDECR
|IPR_MUTE
);
55 if (status
& IPR_CHANNELLOOP
) {
57 int voice_max
= status
& IPR_CHANNELNUMBERMASK
;
59 struct snd_emu10k1_voice
*pvoice
= emu
->voices
;
61 val
= snd_emu10k1_ptr_read(emu
, CLIPL
, 0);
62 for (voice
= 0; voice
<= voice_max
; voice
++) {
64 val
= snd_emu10k1_ptr_read(emu
, CLIPH
, 0);
66 if (pvoice
->use
&& pvoice
->interrupt
!= NULL
) {
67 pvoice
->interrupt(emu
, pvoice
);
68 snd_emu10k1_voice_intr_ack(emu
, voice
);
70 snd_emu10k1_voice_intr_disable(emu
, voice
);
76 val
= snd_emu10k1_ptr_read(emu
, HLIPL
, 0);
77 for (voice
= 0; voice
<= voice_max
; voice
++) {
79 val
= snd_emu10k1_ptr_read(emu
, HLIPH
, 0);
81 if (pvoice
->use
&& pvoice
->interrupt
!= NULL
) {
82 pvoice
->interrupt(emu
, pvoice
);
83 snd_emu10k1_voice_half_loop_intr_ack(emu
, voice
);
85 snd_emu10k1_voice_half_loop_intr_disable(emu
, voice
);
91 status
&= ~IPR_CHANNELLOOP
;
93 status
&= ~IPR_CHANNELNUMBERMASK
;
94 if (status
& (IPR_ADCBUFFULL
|IPR_ADCBUFHALFFULL
)) {
95 if (emu
->capture_interrupt
)
96 emu
->capture_interrupt(emu
, status
);
98 snd_emu10k1_intr_disable(emu
, INTE_ADCBUFENABLE
);
99 status
&= ~(IPR_ADCBUFFULL
|IPR_ADCBUFHALFFULL
);
101 if (status
& (IPR_MICBUFFULL
|IPR_MICBUFHALFFULL
)) {
102 if (emu
->capture_mic_interrupt
)
103 emu
->capture_mic_interrupt(emu
, status
);
105 snd_emu10k1_intr_disable(emu
, INTE_MICBUFENABLE
);
106 status
&= ~(IPR_MICBUFFULL
|IPR_MICBUFHALFFULL
);
108 if (status
& (IPR_EFXBUFFULL
|IPR_EFXBUFHALFFULL
)) {
109 if (emu
->capture_efx_interrupt
)
110 emu
->capture_efx_interrupt(emu
, status
);
112 snd_emu10k1_intr_disable(emu
, INTE_EFXBUFENABLE
);
113 status
&= ~(IPR_EFXBUFFULL
|IPR_EFXBUFHALFFULL
);
115 if (status
& (IPR_MIDITRANSBUFEMPTY
|IPR_MIDIRECVBUFEMPTY
)) {
116 if (emu
->midi
.interrupt
)
117 emu
->midi
.interrupt(emu
, status
);
119 snd_emu10k1_intr_disable(emu
, INTE_MIDITXENABLE
|INTE_MIDIRXENABLE
);
120 status
&= ~(IPR_MIDITRANSBUFEMPTY
|IPR_MIDIRECVBUFEMPTY
);
122 if (status
& (IPR_A_MIDITRANSBUFEMPTY2
|IPR_A_MIDIRECVBUFEMPTY2
)) {
123 if (emu
->midi2
.interrupt
)
124 emu
->midi2
.interrupt(emu
, status
);
126 snd_emu10k1_intr_disable(emu
, INTE_A_MIDITXENABLE2
|INTE_A_MIDIRXENABLE2
);
127 status
&= ~(IPR_A_MIDITRANSBUFEMPTY2
|IPR_A_MIDIRECVBUFEMPTY2
);
129 if (status
& IPR_INTERVALTIMER
) {
131 snd_timer_interrupt(emu
->timer
, emu
->timer
->sticks
);
133 snd_emu10k1_intr_disable(emu
, INTE_INTERVALTIMERENB
);
134 status
&= ~IPR_INTERVALTIMER
;
136 if (status
& (IPR_GPSPDIFSTATUSCHANGE
|IPR_CDROMSTATUSCHANGE
)) {
137 if (emu
->spdif_interrupt
)
138 emu
->spdif_interrupt(emu
, status
);
140 snd_emu10k1_intr_disable(emu
, INTE_GPSPDIFENABLE
|INTE_CDSPDIFENABLE
);
141 status
&= ~(IPR_GPSPDIFSTATUSCHANGE
|IPR_CDROMSTATUSCHANGE
);
143 if (status
& IPR_FXDSP
) {
144 if (emu
->dsp_interrupt
)
145 emu
->dsp_interrupt(emu
);
147 snd_emu10k1_intr_disable(emu
, INTE_FXDSPENABLE
);
148 status
&= ~IPR_FXDSP
;
150 if (status
& IPR_P16V
) {
151 while ((status2
= inl(emu
->port
+ IPR2
)) != 0) {
152 u32 mask
= INTE2_PLAYBACK_CH_0_LOOP
; /* Full Loop */
153 struct snd_emu10k1_voice
*pvoice
= &(emu
->p16v_voices
[0]);
154 struct snd_emu10k1_voice
*cvoice
= &(emu
->p16v_capture_voice
);
156 //printk(KERN_INFO "status2=0x%x\n", status2);
157 orig_status2
= status2
;
160 snd_pcm_period_elapsed(pvoice
->epcm
->substream
);
162 snd_printk(KERN_ERR
"p16v: status: 0x%08x, mask=0x%08x, pvoice=%p, use=%d\n", status2
, mask
, pvoice
, pvoice
->use
);
165 if(status2
& 0x110000) {
166 //printk(KERN_INFO "capture int found\n");
168 //printk(KERN_INFO "capture period_elapsed\n");
169 snd_pcm_period_elapsed(cvoice
->epcm
->substream
);
172 outl(orig_status2
, emu
->port
+ IPR2
); /* ack all */
179 snd_printk(KERN_ERR
"emu10k1: unhandled interrupt: 0x%08x\n", status
);
180 //make sure any interrupts we don't handle are disabled:
181 bits
= INTE_FXDSPENABLE
|
182 INTE_PCIERRORENABLE
|
191 INTE_INTERVALTIMERENB
|
195 bits
|= INTE_A_MIDITXENABLE2
| INTE_A_MIDIRXENABLE2
;
196 snd_emu10k1_intr_disable(emu
, bits
);
198 outl(orig_status
, emu
->port
+ IPR
); /* ack all */
200 return IRQ_RETVAL(handled
);