bc6e6c2e1ab18563f6a552eb88dd9ed093e14904
[linux-flexiantxendom0-3.2.10.git] / sound / pci / trident / trident.c
1 /*
2  *  Driver for Trident 4DWave DX/NX & SiS SI7018 Audio PCI soundcard
3  *
4  *  Driver was originated by Trident <audio@tridentmicro.com>
5  *                           Fri Feb 19 15:55:28 MST 1999
6  *
7  *
8  *   This program is free software; you can redistribute it and/or modify
9  *   it under the terms of the GNU General Public License as published by
10  *   the Free Software Foundation; either version 2 of the License, or
11  *   (at your option) any later version.
12  *
13  *   This program is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with this program; if not, write to the Free Software
20  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21  *
22  */
23
24 #include <sound/driver.h>
25 #include <linux/init.h>
26 #include <linux/pci.h>
27 #include <linux/time.h>
28 #include <sound/core.h>
29 #include <sound/trident.h>
30 #define SNDRV_GET_ID
31 #include <sound/initval.h>
32
33 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>, <audio@tridentmicro.com>");
34 MODULE_DESCRIPTION("Trident 4D-WaveDX/NX & SiS SI7018");
35 MODULE_LICENSE("GPL");
36 MODULE_CLASSES("{sound}");
37 MODULE_DEVICES("{{Trident,4DWave DX},"
38                 "{Trident,4DWave NX},"
39                 "{SiS,SI7018 PCI Audio},"
40                 "{Best Union,Miss Melody 4DWave PCI},"
41                 "{HIS,4DWave PCI},"
42                 "{Warpspeed,ONSpeed 4DWave PCI},"
43                 "{Aztech Systems,PCI 64-Q3D},"
44                 "{Addonics,SV 750},"
45                 "{CHIC,True Sound 4Dwave},"
46                 "{Shark,Predator4D-PCI},"
47                 "{Jaton,SonicWave 4D},"
48                 "{Hoontech,SoundTrack Digital 4DWave NX}}");
49
50 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;      /* Index 0-MAX */
51 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;       /* ID for this card */
52 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;      /* Enable this card */
53 static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 32};
54 static int wavetable_size[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 8192};
55
56 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
57 MODULE_PARM_DESC(index, "Index value for Trident 4DWave PCI soundcard.");
58 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC);
59 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");
60 MODULE_PARM_DESC(id, "ID string for Trident 4DWave PCI soundcard.");
61 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC);
62 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
63 MODULE_PARM_DESC(enable, "Enable Trident 4DWave PCI soundcard.");
64 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC);
65 MODULE_PARM(pcm_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
66 MODULE_PARM_DESC(pcm_channels, "Number of hardware channels assigned for PCM.");
67 MODULE_PARM_SYNTAX(pcm_channels, SNDRV_ENABLED ",default:32,allows:{{1,32}}");
68 MODULE_PARM(wavetable_size, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
69 MODULE_PARM_DESC(wavetable_size, "Maximum memory size in kB for wavetable synth.");
70 MODULE_PARM_SYNTAX(wavetable_size, SNDRV_ENABLED ",default:8192,skill:advanced");
71
72 static struct pci_device_id snd_trident_ids[] __devinitdata = {
73         { 0x1023, 0x2000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* Trident 4DWave DX PCI Audio */
74         { 0x1023, 0x2001, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* Trident 4DWave NX PCI Audio */
75         { 0x1039, 0x7018, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* SiS SI7018 PCI Audio */
76         { 0, }
77 };
78
79 MODULE_DEVICE_TABLE(pci, snd_trident_ids);
80
81 static int __devinit snd_trident_probe(struct pci_dev *pci,
82                                        const struct pci_device_id *pci_id)
83 {
84         static int dev;
85         snd_card_t *card;
86         trident_t *trident;
87         const char *str;
88         int err, pcm_dev = 0;
89
90         if (dev >= SNDRV_CARDS)
91                 return -ENODEV;
92         if (!enable[dev]) {
93                 dev++;
94                 return -ENOENT;
95         }
96
97         card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
98         if (card == NULL)
99                 return -ENOMEM;
100
101         if ((err = snd_trident_create(card, pci,
102                                       pcm_channels[dev],
103                                       ((pci->vendor << 16) | pci->device) == TRIDENT_DEVICE_ID_SI7018 ? 1 : 2,
104                                       wavetable_size[dev],
105                                       &trident)) < 0) {
106                 snd_card_free(card);
107                 return err;
108         }
109         if ((err = snd_trident_pcm(trident, pcm_dev++, NULL)) < 0) {
110                 snd_card_free(card);
111                 return err;
112         }
113         switch (trident->device) {
114         case TRIDENT_DEVICE_ID_DX:
115         case TRIDENT_DEVICE_ID_NX:
116                 if ((err = snd_trident_foldback_pcm(trident, pcm_dev++, NULL)) < 0) {
117                         snd_card_free(card);
118                         return err;
119                 }
120                 break;
121         }
122         if (trident->device == TRIDENT_DEVICE_ID_NX || trident->device == TRIDENT_DEVICE_ID_SI7018) {
123                 if ((err = snd_trident_spdif_pcm(trident, pcm_dev++, NULL)) < 0) {
124                         snd_card_free(card);
125                         return err;
126                 }
127         }
128         if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_TRID4DWAVE,
129                                        trident->midi_port, 1,
130                                        trident->irq, 0, &trident->rmidi)) < 0) {
131                 snd_card_free(card);
132                 return err;
133         }
134
135 #if defined(CONFIG_SND_SEQUENCER) || defined(CONFIG_SND_SEQUENCER_MODULE)
136         if ((err = snd_trident_attach_synthesizer(trident)) < 0) {
137                 snd_card_free(card);
138                 return err;
139         }
140 #endif
141
142         snd_trident_gameport(trident);
143
144         switch (trident->device) {
145         case TRIDENT_DEVICE_ID_DX:
146                 str = "TRID4DWAVEDX";
147                 break;
148         case TRIDENT_DEVICE_ID_NX:
149                 str = "TRID4DWAVENX";
150                 break;
151         case TRIDENT_DEVICE_ID_SI7018:
152                 str = "SI7018";
153                 break;
154         default:
155                 str = "Unknown";
156         }
157         strcpy(card->driver, str);
158         if (trident->device == TRIDENT_DEVICE_ID_SI7018) {
159                 strcpy(card->shortname, "SiS ");
160         } else {
161                 strcpy(card->shortname, "Trident ");
162         }
163         strcat(card->shortname, card->driver);
164         sprintf(card->longname, "%s PCI Audio at 0x%lx, irq %d",
165                 card->shortname, trident->port, trident->irq);
166
167         if ((err = snd_card_register(card)) < 0) {
168                 snd_card_free(card);
169                 return err;
170         }
171         pci_set_drvdata(pci, trident);
172         dev++;
173         return 0;
174 }
175
176 static void __devexit snd_trident_remove(struct pci_dev *pci)
177 {
178         trident_t *trident = snd_magic_cast(trident_t, pci_get_drvdata(pci), return);
179         if (trident)
180                 snd_card_free(trident->card);
181         pci_set_drvdata(pci, NULL);
182 }
183
184 #ifdef CONFIG_PM
185 #ifndef PCI_OLD_SUSPEND
186 static int snd_card_trident_suspend(struct pci_dev *pci, u32 state)
187 {
188         trident_t *chip = snd_magic_cast(trident_t, pci_get_drvdata(pci), return -ENXIO);
189         snd_trident_suspend(chip);
190         return 0;
191 }
192 static int snd_card_trident_resume(struct pci_dev *pci)
193 {
194         trident_t *chip = snd_magic_cast(trident_t, pci_get_drvdata(pci), return -ENXIO);
195         snd_trident_resume(chip);
196         return 0;
197 }
198 #else
199 static void snd_card_trident_suspend(struct pci_dev *pci)
200 {
201         trident_t *chip = snd_magic_cast(trident_t, pci_get_drvdata(pci), return);
202         snd_trident_suspend(chip);
203 }
204 static void snd_card_trident_resume(struct pci_dev *pci)
205 {
206         trident_t *chip = snd_magic_cast(trident_t, pci_get_drvdata(pci), return);
207         snd_trident_resume(chip);
208 }
209 #endif
210 #endif
211
212 static struct pci_driver driver = {
213         .name = "Trident4DWaveAudio",
214         .id_table = snd_trident_ids,
215         .probe = snd_trident_probe,
216         .remove = __devexit_p(snd_trident_remove),
217 #ifdef CONFIG_PM
218         .suspend = snd_card_trident_suspend,
219         .resume = snd_card_trident_resume,
220 #endif
221 };
222
223 static int __init alsa_card_trident_init(void)
224 {
225         int err;
226
227         if ((err = pci_module_init(&driver)) < 0) {
228 #ifdef MODULE
229                 printk(KERN_ERR "Trident 4DWave PCI soundcard not found or device busy\n");
230 #endif
231                 return err;
232         }
233         return 0;
234 }
235
236 static void __exit alsa_card_trident_exit(void)
237 {
238         pci_unregister_driver(&driver);
239 }
240
241 module_init(alsa_card_trident_init)
242 module_exit(alsa_card_trident_exit)
243
244 #ifndef MODULE
245
246 /* format is: snd-trident=enable,index,id,
247                           pcm_channels,wavetable_size */
248
249 static int __init alsa_card_trident_setup(char *str)
250 {
251         static unsigned __initdata nr_dev = 0;
252
253         if (nr_dev >= SNDRV_CARDS)
254                 return 0;
255         (void)(get_option(&str,&enable[nr_dev]) == 2 &&
256                get_option(&str,&index[nr_dev]) == 2 &&
257                get_id(&str,&id[nr_dev]) == 2 &&
258                get_option(&str,&pcm_channels[nr_dev]) == 2 &&
259                get_option(&str,&wavetable_size[nr_dev]) == 2);
260         nr_dev++;
261         return 1;
262 }
263
264 __setup("snd-trident=", alsa_card_trident_setup);
265
266 #endif /* ifndef MODULE */