1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Driver for Gravis UltraSound Extreme soundcards
4 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
7 #include <linux/init.h>
10 #include <linux/delay.h>
11 #include <linux/time.h>
12 #include <linux/module.h>
14 #include <sound/core.h>
15 #include <sound/gus.h>
16 #include <sound/es1688.h>
17 #include <sound/mpu401.h>
18 #include <sound/opl3.h>
19 #define SNDRV_LEGACY_AUTO_PROBE
20 #define SNDRV_LEGACY_FIND_FREE_IRQ
21 #define SNDRV_LEGACY_FIND_FREE_DMA
22 #include <sound/initval.h>
24 #define CRD_NAME "Gravis UltraSound Extreme"
25 #define DEV_NAME "gusextreme"
27 MODULE_DESCRIPTION(CRD_NAME);
28 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
29 MODULE_LICENSE("GPL");
31 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
32 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
33 static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
34 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */
35 static long gf1_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS) - 1] = -1}; /* 0x210,0x220,0x230,0x240,0x250,0x260,0x270 */
36 static long mpu_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS) - 1] = -1}; /* 0x300,0x310,0x320 */
37 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */
38 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */
39 static int gf1_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,3,5,9,11,12,15 */
40 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */
41 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
42 static int joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29};
43 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */
44 static int channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24};
45 static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
47 module_param_array(index, int, NULL, 0444);
48 MODULE_PARM_DESC(index, "Index value for " CRD_NAME " soundcard.");
49 module_param_array(id, charp, NULL, 0444);
50 MODULE_PARM_DESC(id, "ID string for " CRD_NAME " soundcard.");
51 module_param_array(enable, bool, NULL, 0444);
52 MODULE_PARM_DESC(enable, "Enable " CRD_NAME " soundcard.");
53 module_param_hw_array(port, long, ioport, NULL, 0444);
54 MODULE_PARM_DESC(port, "Port # for " CRD_NAME " driver.");
55 module_param_hw_array(gf1_port, long, ioport, NULL, 0444);
56 MODULE_PARM_DESC(gf1_port, "GF1 port # for " CRD_NAME " driver (optional).");
57 module_param_hw_array(mpu_port, long, ioport, NULL, 0444);
58 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for " CRD_NAME " driver.");
59 module_param_hw_array(irq, int, irq, NULL, 0444);
60 MODULE_PARM_DESC(irq, "IRQ # for " CRD_NAME " driver.");
61 module_param_hw_array(mpu_irq, int, irq, NULL, 0444);
62 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for " CRD_NAME " driver.");
63 module_param_hw_array(gf1_irq, int, irq, NULL, 0444);
64 MODULE_PARM_DESC(gf1_irq, "GF1 IRQ # for " CRD_NAME " driver.");
65 module_param_hw_array(dma8, int, dma, NULL, 0444);
66 MODULE_PARM_DESC(dma8, "8-bit DMA # for " CRD_NAME " driver.");
67 module_param_hw_array(dma1, int, dma, NULL, 0444);
68 MODULE_PARM_DESC(dma1, "GF1 DMA # for " CRD_NAME " driver.");
69 module_param_array(joystick_dac, int, NULL, 0444);
70 MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for " CRD_NAME " driver.");
71 module_param_array(channels, int, NULL, 0444);
72 MODULE_PARM_DESC(channels, "GF1 channels for " CRD_NAME " driver.");
73 module_param_array(pcm_channels, int, NULL, 0444);
74 MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for " CRD_NAME " driver.");
76 static int snd_gusextreme_match(struct device *dev, unsigned int n)
81 static int snd_gusextreme_es1688_create(struct snd_card *card,
82 struct snd_es1688 *chip,
83 struct device *dev, unsigned int n)
85 static const long possible_ports[] = {0x220, 0x240, 0x260};
86 static const int possible_irqs[] = {5, 9, 10, 7, -1};
87 static const int possible_dmas[] = {1, 3, 0, -1};
91 if (irq[n] == SNDRV_AUTO_IRQ) {
92 irq[n] = snd_legacy_find_free_irq(possible_irqs);
94 dev_err(dev, "unable to find a free IRQ for ES1688\n");
98 if (dma8[n] == SNDRV_AUTO_DMA) {
99 dma8[n] = snd_legacy_find_free_dma(possible_dmas);
101 dev_err(dev, "unable to find a free DMA for ES1688\n");
106 if (port[n] != SNDRV_AUTO_PORT)
107 return snd_es1688_create(card, chip, port[n], mpu_port[n],
108 irq[n], mpu_irq[n], dma8[n], ES1688_HW_1688);
112 port[n] = possible_ports[i];
113 error = snd_es1688_create(card, chip, port[n], mpu_port[n],
114 irq[n], mpu_irq[n], dma8[n], ES1688_HW_1688);
115 } while (error < 0 && ++i < ARRAY_SIZE(possible_ports));
120 static int snd_gusextreme_gus_card_create(struct snd_card *card,
121 struct device *dev, unsigned int n,
122 struct snd_gus_card **rgus)
124 static const int possible_irqs[] = {11, 12, 15, 9, 5, 7, 3, -1};
125 static const int possible_dmas[] = {5, 6, 7, 3, 1, -1};
127 if (gf1_irq[n] == SNDRV_AUTO_IRQ) {
128 gf1_irq[n] = snd_legacy_find_free_irq(possible_irqs);
129 if (gf1_irq[n] < 0) {
130 dev_err(dev, "unable to find a free IRQ for GF1\n");
134 if (dma1[n] == SNDRV_AUTO_DMA) {
135 dma1[n] = snd_legacy_find_free_dma(possible_dmas);
137 dev_err(dev, "unable to find a free DMA for GF1\n");
141 return snd_gus_create(card, gf1_port[n], gf1_irq[n], dma1[n], -1,
142 0, channels[n], pcm_channels[n], 0, rgus);
145 static int snd_gusextreme_detect(struct snd_gus_card *gus,
146 struct snd_es1688 *es1688)
152 * This is main stuff - enable access to GF1 chip...
153 * I'm not sure, if this will work for card which have
154 * ES1688 chip in another place than 0x220.
156 * I used reverse-engineering in DOSEMU. [--jk]
165 spin_lock_irqsave(&es1688->mixer_lock, flags);
166 snd_es1688_mixer_write(es1688, 0x40, 0x0b); /* don't change!!! */
167 spin_unlock_irqrestore(&es1688->mixer_lock, flags);
169 spin_lock_irqsave(&es1688->reg_lock, flags);
170 outb(gus->gf1.port & 0x040 ? 2 : 0, ES1688P(es1688, INIT1));
172 outb(gus->gf1.port & 0x020 ? 2 : 0, ES1688P(es1688, INIT1));
174 outb(gus->gf1.port & 0x010 ? 3 : 1, ES1688P(es1688, INIT1));
175 spin_unlock_irqrestore(&es1688->reg_lock, flags);
179 snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 0); /* reset GF1 */
180 d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET);
181 if ((d & 0x07) != 0) {
182 snd_printdd("[0x%lx] check 1 failed - 0x%x\n", gus->gf1.port, d);
186 snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 1); /* release reset */
188 d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET);
189 if ((d & 0x07) != 1) {
190 snd_printdd("[0x%lx] check 2 failed - 0x%x\n", gus->gf1.port, d);
197 static int snd_gusextreme_mixer(struct snd_card *card)
199 struct snd_ctl_elem_id id1, id2;
202 memset(&id1, 0, sizeof(id1));
203 memset(&id2, 0, sizeof(id2));
204 id1.iface = id2.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
206 /* reassign AUX to SYNTHESIZER */
207 strcpy(id1.name, "Aux Playback Volume");
208 strcpy(id2.name, "Synth Playback Volume");
209 error = snd_ctl_rename_id(card, &id1, &id2);
213 /* reassign Master Playback Switch to Synth Playback Switch */
214 strcpy(id1.name, "Master Playback Switch");
215 strcpy(id2.name, "Synth Playback Switch");
216 error = snd_ctl_rename_id(card, &id1, &id2);
223 static int snd_gusextreme_probe(struct device *dev, unsigned int n)
225 struct snd_card *card;
226 struct snd_gus_card *gus;
227 struct snd_es1688 *es1688;
228 struct snd_opl3 *opl3;
231 error = snd_devm_card_new(dev, index[n], id[n], THIS_MODULE,
232 sizeof(struct snd_es1688), &card);
236 es1688 = card->private_data;
238 if (mpu_port[n] == SNDRV_AUTO_PORT)
244 error = snd_gusextreme_es1688_create(card, es1688, dev, n);
249 gf1_port[n] = es1688->port + 0x20;
251 error = snd_gusextreme_gus_card_create(card, dev, n, &gus);
255 error = snd_gusextreme_detect(gus, es1688);
259 gus->joystick_dac = joystick_dac[n];
261 error = snd_gus_initialize(gus);
266 if (!gus->ess_flag) {
267 dev_err(dev, "GUS Extreme soundcard was not "
268 "detected at 0x%lx\n", gus->gf1.port);
273 error = snd_es1688_pcm(card, es1688, 0);
277 error = snd_es1688_mixer(card, es1688);
281 snd_component_add(card, "ES1688");
283 if (pcm_channels[n] > 0) {
284 error = snd_gf1_pcm_new(gus, 1, 1);
289 error = snd_gf1_new_mixer(gus);
293 error = snd_gusextreme_mixer(card);
297 if (snd_opl3_create(card, es1688->port, es1688->port + 2,
298 OPL3_HW_OPL3, 0, &opl3) < 0)
299 dev_warn(dev, "opl3 not detected at 0x%lx\n", es1688->port);
301 error = snd_opl3_hwdep_new(opl3, 0, 2, NULL);
306 if (es1688->mpu_port >= 0x300) {
307 error = snd_mpu401_uart_new(card, 0, MPU401_HW_ES1688,
308 es1688->mpu_port, 0, mpu_irq[n], NULL);
313 sprintf(card->longname, "Gravis UltraSound Extreme at 0x%lx, "
314 "irq %i&%i, dma %i&%i", es1688->port,
315 gus->gf1.irq, es1688->irq, gus->gf1.dma1, es1688->dma8);
317 error = snd_card_register(card);
321 dev_set_drvdata(dev, card);
325 static struct isa_driver snd_gusextreme_driver = {
326 .match = snd_gusextreme_match,
327 .probe = snd_gusextreme_probe,
329 .suspend = snd_gusextreme_suspend,
330 .resume = snd_gusextreme_resume,
337 module_isa_driver(snd_gusextreme_driver, SNDRV_CARDS);