Merge branch 'clk-fixes' into clk-next
[deliverable/linux.git] / sound / isa / gus / gusclassic.c
CommitLineData
1da177e4
LT
1/*
2 * Driver for Gravis UltraSound Classic soundcard
c1017a4c 3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
1da177e4
LT
4 *
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
1da177e4 22#include <linux/init.h>
654aa661 23#include <linux/err.h>
93f02c6e 24#include <linux/isa.h>
1da177e4
LT
25#include <linux/delay.h>
26#include <linux/time.h>
65a77217 27#include <linux/module.h>
654aa661 28#include <asm/dma.h>
1da177e4
LT
29#include <sound/core.h>
30#include <sound/gus.h>
1da177e4
LT
31#define SNDRV_LEGACY_FIND_FREE_IRQ
32#define SNDRV_LEGACY_FIND_FREE_DMA
33#include <sound/initval.h>
34
93f02c6e
RH
35#define CRD_NAME "Gravis UltraSound Classic"
36#define DEV_NAME "gusclassic"
37
38MODULE_DESCRIPTION(CRD_NAME);
c1017a4c 39MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
1da177e4
LT
40MODULE_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 */
a67ff6a5 45static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
1da177e4
LT
46static 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);
93f02c6e 56MODULE_PARM_DESC(index, "Index value for " CRD_NAME " soundcard.");
1da177e4 57module_param_array(id, charp, NULL, 0444);
93f02c6e 58MODULE_PARM_DESC(id, "ID string for " CRD_NAME " soundcard.");
1da177e4 59module_param_array(enable, bool, NULL, 0444);
93f02c6e 60MODULE_PARM_DESC(enable, "Enable " CRD_NAME " soundcard.");
1da177e4 61module_param_array(port, long, NULL, 0444);
93f02c6e 62MODULE_PARM_DESC(port, "Port # for " CRD_NAME " driver.");
1da177e4 63module_param_array(irq, int, NULL, 0444);
93f02c6e 64MODULE_PARM_DESC(irq, "IRQ # for " CRD_NAME " driver.");
1da177e4 65module_param_array(dma1, int, NULL, 0444);
93f02c6e 66MODULE_PARM_DESC(dma1, "DMA1 # for " CRD_NAME " driver.");
1da177e4 67module_param_array(dma2, int, NULL, 0444);
93f02c6e 68MODULE_PARM_DESC(dma2, "DMA2 # for " CRD_NAME " driver.");
1da177e4 69module_param_array(joystick_dac, int, NULL, 0444);
93f02c6e 70MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for " CRD_NAME " driver.");
1da177e4 71module_param_array(channels, int, NULL, 0444);
93f02c6e 72MODULE_PARM_DESC(channels, "GF1 channels for " CRD_NAME " driver.");
1da177e4 73module_param_array(pcm_channels, int, NULL, 0444);
93f02c6e
RH
74MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for " CRD_NAME " driver.");
75
1bff292e 76static int snd_gusclassic_match(struct device *dev, unsigned int n)
93f02c6e
RH
77{
78 return enable[n];
79}
80
1bff292e
BP
81static int snd_gusclassic_create(struct snd_card *card,
82 struct device *dev, unsigned int n,
83 struct snd_gus_card **rgus)
93f02c6e
RH
84{
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};
88
89 int i, error;
90
91 if (irq[n] == SNDRV_AUTO_IRQ) {
92 irq[n] = snd_legacy_find_free_irq(possible_irqs);
93 if (irq[n] < 0) {
0418ff0c 94 dev_err(dev, "unable to find a free IRQ\n");
93f02c6e
RH
95 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) {
0418ff0c 101 dev_err(dev, "unable to find a free DMA1\n");
93f02c6e
RH
102 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) {
0418ff0c 108 dev_err(dev, "unable to find a free DMA2\n");
93f02c6e
RH
109 return -EBUSY;
110 }
111 }
1da177e4 112
93f02c6e
RH
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);
f7a9275d 116
93f02c6e
RH
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));
1da177e4 123
93f02c6e
RH
124 return error;
125}
1da177e4 126
1bff292e 127static int snd_gusclassic_detect(struct snd_gus_card *gus)
1da177e4 128{
43bcd973 129 unsigned char d;
1da177e4 130
43bcd973
TI
131 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);
1da177e4 134 return -ENODEV;
43bcd973 135 }
1da177e4
LT
136 udelay(160);
137 snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 1); /* release reset */
138 udelay(160);
43bcd973
TI
139 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);
1da177e4 141 return -ENODEV;
43bcd973 142 }
1da177e4
LT
143 return 0;
144}
145
1bff292e 146static int snd_gusclassic_probe(struct device *dev, unsigned int n)
1da177e4 147{
5e2da206 148 struct snd_card *card;
93f02c6e
RH
149 struct snd_gus_card *gus;
150 int error;
1da177e4 151
4323cc4d 152 error = snd_card_new(dev, index[n], id[n], THIS_MODULE, 0, &card);
c95eadd2
TI
153 if (error < 0)
154 return error;
43bcd973 155
93f02c6e
RH
156 if (pcm_channels[n] < 2)
157 pcm_channels[n] = 2;
43bcd973 158
93f02c6e
RH
159 error = snd_gusclassic_create(card, dev, n, &gus);
160 if (error < 0)
161 goto out;
43bcd973 162
93f02c6e
RH
163 error = snd_gusclassic_detect(gus);
164 if (error < 0)
165 goto out;
166
167 gus->joystick_dac = joystick_dac[n];
168
169 error = snd_gus_initialize(gus);
170 if (error < 0)
171 goto out;
172
173 error = -ENODEV;
1da177e4 174 if (gus->max_flag || gus->ess_flag) {
0418ff0c
TI
175 dev_err(dev, "GUS Classic or ACE soundcard was "
176 "not detected at 0x%lx\n", gus->gf1.port);
93f02c6e 177 goto out;
1da177e4 178 }
43bcd973 179
93f02c6e
RH
180 error = snd_gf1_new_mixer(gus);
181 if (error < 0)
182 goto out;
43bcd973 183
db5abb3c 184 error = snd_gf1_pcm_new(gus, 0, 0);
93f02c6e
RH
185 if (error < 0)
186 goto out;
43bcd973 187
1da177e4 188 if (!gus->ace_flag) {
db5abb3c 189 error = snd_gf1_rawmidi_new(gus, 0);
93f02c6e
RH
190 if (error < 0)
191 goto out;
1da177e4 192 }
43bcd973 193
93f02c6e
RH
194 sprintf(card->longname + strlen(card->longname),
195 " at 0x%lx, irq %d, dma %d",
196 gus->gf1.port, gus->gf1.irq, gus->gf1.dma1);
43bcd973 197
93f02c6e
RH
198 if (gus->gf1.dma2 >= 0)
199 sprintf(card->longname + strlen(card->longname),
200 "&%d", gus->gf1.dma2);
43bcd973 201
93f02c6e
RH
202 error = snd_card_register(card);
203 if (error < 0)
204 goto out;
205
206 dev_set_drvdata(dev, card);
1da177e4 207 return 0;
43bcd973 208
93f02c6e
RH
209out: snd_card_free(card);
210 return error;
1da177e4
LT
211}
212
1bff292e 213static int snd_gusclassic_remove(struct device *dev, unsigned int n)
1da177e4 214{
93f02c6e 215 snd_card_free(dev_get_drvdata(dev));
654aa661 216 return 0;
1da177e4
LT
217}
218
93f02c6e
RH
219static struct isa_driver snd_gusclassic_driver = {
220 .match = snd_gusclassic_match,
654aa661 221 .probe = snd_gusclassic_probe,
1bff292e 222 .remove = snd_gusclassic_remove,
93f02c6e
RH
223#if 0 /* FIXME */
224 .suspend = snd_gusclassic_suspend,
225 .remove = snd_gusclassic_remove,
226#endif
654aa661 227 .driver = {
93f02c6e
RH
228 .name = DEV_NAME
229 }
654aa661
TI
230};
231
1da177e4
LT
232static int __init alsa_card_gusclassic_init(void)
233{
93f02c6e 234 return isa_register_driver(&snd_gusclassic_driver, SNDRV_CARDS);
1da177e4
LT
235}
236
237static void __exit alsa_card_gusclassic_exit(void)
238{
93f02c6e 239 isa_unregister_driver(&snd_gusclassic_driver);
1da177e4
LT
240}
241
93f02c6e
RH
242module_init(alsa_card_gusclassic_init);
243module_exit(alsa_card_gusclassic_exit);
This page took 0.714625 seconds and 5 git commands to generate.