blob: 7ce29ffa1af9b476ef264cc874591a0d8829415d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Driver for Gravis UltraSound Classic soundcard
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *
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.
10 *
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.
15 *
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
19 *
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
Takashi Iwai654aa662005-11-17 17:13:43 +010023#include <linux/err.h>
Rene Herman93f02c62007-02-19 13:05:02 +010024#include <linux/isa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/delay.h>
26#include <linux/time.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040027#include <linux/module.h>
Takashi Iwai654aa662005-11-17 17:13:43 +010028#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <sound/core.h>
30#include <sound/gus.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define SNDRV_LEGACY_FIND_FREE_IRQ
32#define SNDRV_LEGACY_FIND_FREE_DMA
33#include <sound/initval.h>
34
Rene Herman93f02c62007-02-19 13:05:02 +010035#define CRD_NAME "Gravis UltraSound Classic"
36#define DEV_NAME "gusclassic"
37
38MODULE_DESCRIPTION(CRD_NAME);
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020039MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070040MODULE_LICENSE("GPL");
41MODULE_SUPPORTED_DEVICE("{{Gravis,UltraSound Classic}}");
42
43static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
44static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103045static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x230,0x240,0x250,0x260 */
47static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 3,5,9,11,12,15 */
48static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */
49static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */
50static int joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29};
51 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */
52static int channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24};
53static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
54
55module_param_array(index, int, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010056MODULE_PARM_DESC(index, "Index value for " CRD_NAME " soundcard.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070057module_param_array(id, charp, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010058MODULE_PARM_DESC(id, "ID string for " CRD_NAME " soundcard.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059module_param_array(enable, bool, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010060MODULE_PARM_DESC(enable, "Enable " CRD_NAME " soundcard.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061module_param_array(port, long, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010062MODULE_PARM_DESC(port, "Port # for " CRD_NAME " driver.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070063module_param_array(irq, int, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010064MODULE_PARM_DESC(irq, "IRQ # for " CRD_NAME " driver.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065module_param_array(dma1, int, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010066MODULE_PARM_DESC(dma1, "DMA1 # for " CRD_NAME " driver.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070067module_param_array(dma2, int, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010068MODULE_PARM_DESC(dma2, "DMA2 # for " CRD_NAME " driver.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069module_param_array(joystick_dac, int, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010070MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for " CRD_NAME " driver.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070071module_param_array(channels, int, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010072MODULE_PARM_DESC(channels, "GF1 channels for " CRD_NAME " driver.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070073module_param_array(pcm_channels, int, NULL, 0444);
Rene Herman93f02c62007-02-19 13:05:02 +010074MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for " CRD_NAME " driver.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Bill Pemberton1bff2922012-12-06 12:35:21 -050076static int snd_gusclassic_match(struct device *dev, unsigned int n)
Rene Herman93f02c62007-02-19 13:05:02 +010077{
78 return enable[n];
79}
Clemens Ladischf7a92752005-12-07 09:13:42 +010080
Bill Pemberton1bff2922012-12-06 12:35:21 -050081static int snd_gusclassic_create(struct snd_card *card,
82 struct device *dev, unsigned int n,
83 struct snd_gus_card **rgus)
Rene Herman93f02c62007-02-19 13:05:02 +010084{
85 static long possible_ports[] = {0x220, 0x230, 0x240, 0x250, 0x260};
86 static int possible_irqs[] = {5, 11, 12, 9, 7, 15, 3, 4, -1};
87 static int possible_dmas[] = {5, 6, 7, 1, 3, -1};
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Rene Herman93f02c62007-02-19 13:05:02 +010089 int i, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Rene Herman93f02c62007-02-19 13:05:02 +010091 if (irq[n] == SNDRV_AUTO_IRQ) {
92 irq[n] = snd_legacy_find_free_irq(possible_irqs);
93 if (irq[n] < 0) {
Takashi Iwai0418ff02008-11-03 08:51:33 +010094 dev_err(dev, "unable to find a free IRQ\n");
Rene Herman93f02c62007-02-19 13:05:02 +010095 return -EBUSY;
96 }
97 }
98 if (dma1[n] == SNDRV_AUTO_DMA) {
99 dma1[n] = snd_legacy_find_free_dma(possible_dmas);
100 if (dma1[n] < 0) {
Takashi Iwai0418ff02008-11-03 08:51:33 +0100101 dev_err(dev, "unable to find a free DMA1\n");
Rene Herman93f02c62007-02-19 13:05:02 +0100102 return -EBUSY;
103 }
104 }
105 if (dma2[n] == SNDRV_AUTO_DMA) {
106 dma2[n] = snd_legacy_find_free_dma(possible_dmas);
107 if (dma2[n] < 0) {
Takashi Iwai0418ff02008-11-03 08:51:33 +0100108 dev_err(dev, "unable to find a free DMA2\n");
Rene Herman93f02c62007-02-19 13:05:02 +0100109 return -EBUSY;
110 }
111 }
112
113 if (port[n] != SNDRV_AUTO_PORT)
114 return snd_gus_create(card, port[n], irq[n], dma1[n], dma2[n],
115 0, channels[n], pcm_channels[n], 0, rgus);
116
117 i = 0;
118 do {
119 port[n] = possible_ports[i];
120 error = snd_gus_create(card, port[n], irq[n], dma1[n], dma2[n],
121 0, channels[n], pcm_channels[n], 0, rgus);
122 } while (error < 0 && ++i < ARRAY_SIZE(possible_ports));
123
124 return error;
125}
126
Bill Pemberton1bff2922012-12-06 12:35:21 -0500127static int snd_gusclassic_detect(struct snd_gus_card *gus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Takashi Iwai43bcd972005-09-05 17:19:20 +0200129 unsigned char d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Takashi Iwai43bcd972005-09-05 17:19:20 +0200131 snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 0); /* reset GF1 */
132 if (((d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET)) & 0x07) != 0) {
133 snd_printdd("[0x%lx] check 1 failed - 0x%x\n", gus->gf1.port, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return -ENODEV;
Takashi Iwai43bcd972005-09-05 17:19:20 +0200135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 udelay(160);
137 snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 1); /* release reset */
138 udelay(160);
Takashi Iwai43bcd972005-09-05 17:19:20 +0200139 if (((d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET)) & 0x07) != 1) {
140 snd_printdd("[0x%lx] check 2 failed - 0x%x\n", gus->gf1.port, d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return -ENODEV;
Takashi Iwai43bcd972005-09-05 17:19:20 +0200142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return 0;
144}
145
Bill Pemberton1bff2922012-12-06 12:35:21 -0500146static int snd_gusclassic_probe(struct device *dev, unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Takashi Iwai5e2da202005-11-17 14:36:44 +0100148 struct snd_card *card;
Rene Herman93f02c62007-02-19 13:05:02 +0100149 struct snd_gus_card *gus;
150 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Takashi Iwai4323cc42014-01-29 13:03:56 +0100152 error = snd_card_new(dev, index[n], id[n], THIS_MODULE, 0, &card);
Takashi Iwaic95eadd2008-12-28 16:43:35 +0100153 if (error < 0)
154 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Rene Herman93f02c62007-02-19 13:05:02 +0100156 if (pcm_channels[n] < 2)
157 pcm_channels[n] = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Rene Herman93f02c62007-02-19 13:05:02 +0100159 error = snd_gusclassic_create(card, dev, n, &gus);
160 if (error < 0)
161 goto out;
Takashi Iwai43bcd972005-09-05 17:19:20 +0200162
Rene Herman93f02c62007-02-19 13:05:02 +0100163 error = snd_gusclassic_detect(gus);
164 if (error < 0)
165 goto out;
Takashi Iwai43bcd972005-09-05 17:19:20 +0200166
Rene Herman93f02c62007-02-19 13:05:02 +0100167 gus->joystick_dac = joystick_dac[n];
Takashi Iwai43bcd972005-09-05 17:19:20 +0200168
Rene Herman93f02c62007-02-19 13:05:02 +0100169 error = snd_gus_initialize(gus);
170 if (error < 0)
171 goto out;
172
173 error = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (gus->max_flag || gus->ess_flag) {
Takashi Iwai0418ff02008-11-03 08:51:33 +0100175 dev_err(dev, "GUS Classic or ACE soundcard was "
176 "not detected at 0x%lx\n", gus->gf1.port);
Rene Herman93f02c62007-02-19 13:05:02 +0100177 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
Takashi Iwai43bcd972005-09-05 17:19:20 +0200179
Rene Herman93f02c62007-02-19 13:05:02 +0100180 error = snd_gf1_new_mixer(gus);
181 if (error < 0)
182 goto out;
Takashi Iwai43bcd972005-09-05 17:19:20 +0200183
Rene Herman93f02c62007-02-19 13:05:02 +0100184 error = snd_gf1_pcm_new(gus, 0, 0, NULL);
185 if (error < 0)
186 goto out;
Takashi Iwai43bcd972005-09-05 17:19:20 +0200187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!gus->ace_flag) {
Rene Herman93f02c62007-02-19 13:05:02 +0100189 error = snd_gf1_rawmidi_new(gus, 0, NULL);
190 if (error < 0)
191 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Takashi Iwai43bcd972005-09-05 17:19:20 +0200193
Rene Herman93f02c62007-02-19 13:05:02 +0100194 sprintf(card->longname + strlen(card->longname),
195 " at 0x%lx, irq %d, dma %d",
196 gus->gf1.port, gus->gf1.irq, gus->gf1.dma1);
Takashi Iwai43bcd972005-09-05 17:19:20 +0200197
Rene Herman93f02c62007-02-19 13:05:02 +0100198 if (gus->gf1.dma2 >= 0)
199 sprintf(card->longname + strlen(card->longname),
200 "&%d", gus->gf1.dma2);
Takashi Iwai43bcd972005-09-05 17:19:20 +0200201
Rene Herman93f02c62007-02-19 13:05:02 +0100202 error = snd_card_register(card);
203 if (error < 0)
204 goto out;
205
206 dev_set_drvdata(dev, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return 0;
Takashi Iwai43bcd972005-09-05 17:19:20 +0200208
Rene Herman93f02c62007-02-19 13:05:02 +0100209out: snd_card_free(card);
210 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Bill Pemberton1bff2922012-12-06 12:35:21 -0500213static int snd_gusclassic_remove(struct device *dev, unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Rene Herman93f02c62007-02-19 13:05:02 +0100215 snd_card_free(dev_get_drvdata(dev));
Takashi Iwai654aa662005-11-17 17:13:43 +0100216 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Rene Herman93f02c62007-02-19 13:05:02 +0100219static struct isa_driver snd_gusclassic_driver = {
220 .match = snd_gusclassic_match,
Takashi Iwai654aa662005-11-17 17:13:43 +0100221 .probe = snd_gusclassic_probe,
Bill Pemberton1bff2922012-12-06 12:35:21 -0500222 .remove = snd_gusclassic_remove,
Rene Herman93f02c62007-02-19 13:05:02 +0100223#if 0 /* FIXME */
224 .suspend = snd_gusclassic_suspend,
225 .remove = snd_gusclassic_remove,
226#endif
Takashi Iwai654aa662005-11-17 17:13:43 +0100227 .driver = {
Rene Herman93f02c62007-02-19 13:05:02 +0100228 .name = DEV_NAME
229 }
Takashi Iwai654aa662005-11-17 17:13:43 +0100230};
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232static int __init alsa_card_gusclassic_init(void)
233{
Rene Herman93f02c62007-02-19 13:05:02 +0100234 return isa_register_driver(&snd_gusclassic_driver, SNDRV_CARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237static void __exit alsa_card_gusclassic_exit(void)
238{
Rene Herman93f02c62007-02-19 13:05:02 +0100239 isa_unregister_driver(&snd_gusclassic_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Rene Herman93f02c62007-02-19 13:05:02 +0100242module_init(alsa_card_gusclassic_init);
243module_exit(alsa_card_gusclassic_exit);