2 * Routine for IRQ handling from GF1/InterWave chip
3 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <sound/driver.h>
23 #include <sound/core.h>
24 #include <sound/info.h>
25 #include <sound/gus.h>
27 #ifdef CONFIG_SND_DEBUG
28 #define STAT_ADD(x) ((x)++)
30 #define STAT_ADD(x) while (0) { ; }
33 irqreturn_t
snd_gus_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
35 snd_gus_card_t
* gus
= dev_id
;
41 status
= inb(gus
->gf1
.reg_irqstat
);
43 return IRQ_RETVAL(handled
);
45 // snd_printk("IRQ: status = 0x%x\n", status);
47 STAT_ADD(gus
->gf1
.interrupt_stat_midi_in
);
48 gus
->gf1
.interrupt_handler_midi_in(gus
);
51 STAT_ADD(gus
->gf1
.interrupt_stat_midi_out
);
52 gus
->gf1
.interrupt_handler_midi_out(gus
);
54 if (status
& (0x20 | 0x40)) {
55 unsigned int already
, _current_
;
56 unsigned char voice_status
, voice
;
57 snd_gus_voice_t
*pvoice
;
60 while (((voice_status
= snd_gf1_i_read8(gus
, SNDRV_GF1_GB_VOICES_IRQ
)) & 0xc0) != 0xc0) {
61 voice
= voice_status
& 0x1f;
62 _current_
= 1 << voice
;
63 if (already
& _current_
)
64 continue; /* multi request */
65 already
|= _current_
; /* mark request */
67 printk("voice = %i, voice_status = 0x%x, voice_verify = %i\n", voice
, voice_status
, inb(GUSP(gus
, GF1PAGE
)));
69 pvoice
= &gus
->gf1
.voices
[voice
];
71 if (!(voice_status
& 0x80)) { /* voice position IRQ */
72 STAT_ADD(pvoice
->interrupt_stat_wave
);
73 pvoice
->handler_wave(gus
, pvoice
);
75 if (!(voice_status
& 0x40)) { /* volume ramp IRQ */
76 STAT_ADD(pvoice
->interrupt_stat_volume
);
77 pvoice
->handler_volume(gus
, pvoice
);
80 STAT_ADD(gus
->gf1
.interrupt_stat_voice_lost
);
81 snd_gf1_i_ctrl_stop(gus
, SNDRV_GF1_VB_ADDRESS_CONTROL
);
82 snd_gf1_i_ctrl_stop(gus
, SNDRV_GF1_VB_VOLUME_CONTROL
);
87 STAT_ADD(gus
->gf1
.interrupt_stat_timer1
);
88 gus
->gf1
.interrupt_handler_timer1(gus
);
91 STAT_ADD(gus
->gf1
.interrupt_stat_timer2
);
92 gus
->gf1
.interrupt_handler_timer2(gus
);
95 if (snd_gf1_i_look8(gus
, SNDRV_GF1_GB_DRAM_DMA_CONTROL
) & 0x40) {
96 STAT_ADD(gus
->gf1
.interrupt_stat_dma_write
);
97 gus
->gf1
.interrupt_handler_dma_write(gus
);
99 if (snd_gf1_i_look8(gus
, SNDRV_GF1_GB_REC_DMA_CONTROL
) & 0x40) {
100 STAT_ADD(gus
->gf1
.interrupt_stat_dma_read
);
101 gus
->gf1
.interrupt_handler_dma_read(gus
);
109 #ifdef CONFIG_SND_DEBUG
110 static void snd_gus_irq_info_read(snd_info_entry_t
*entry
,
111 snd_info_buffer_t
* buffer
)
114 snd_gus_voice_t
*pvoice
;
117 gus
= entry
->private_data
;
118 snd_iprintf(buffer
, "midi out = %u\n", gus
->gf1
.interrupt_stat_midi_out
);
119 snd_iprintf(buffer
, "midi in = %u\n", gus
->gf1
.interrupt_stat_midi_in
);
120 snd_iprintf(buffer
, "timer1 = %u\n", gus
->gf1
.interrupt_stat_timer1
);
121 snd_iprintf(buffer
, "timer2 = %u\n", gus
->gf1
.interrupt_stat_timer2
);
122 snd_iprintf(buffer
, "dma write = %u\n", gus
->gf1
.interrupt_stat_dma_write
);
123 snd_iprintf(buffer
, "dma read = %u\n", gus
->gf1
.interrupt_stat_dma_read
);
124 snd_iprintf(buffer
, "voice lost = %u\n", gus
->gf1
.interrupt_stat_voice_lost
);
125 for (idx
= 0; idx
< 32; idx
++) {
126 pvoice
= &gus
->gf1
.voices
[idx
];
127 snd_iprintf(buffer
, "voice %i: wave = %u, volume = %u\n",
129 pvoice
->interrupt_stat_wave
,
130 pvoice
->interrupt_stat_volume
);
134 void snd_gus_irq_profile_init(snd_gus_card_t
*gus
)
136 snd_info_entry_t
*entry
;
138 if (! snd_card_proc_new(gus
->card
, "gusirq", &entry
))
139 snd_info_set_text_ops(entry
, gus
, 1024, snd_gus_irq_info_read
);