vserver 1.9.5.x5
[linux-2.6.git] / sound / pci / ymfpci / ymfpci.c
1 /*
2  *  The driver for the Yamaha's DS1/DS1E cards
3  *  Copyright (c) by Jaroslav Kysela <perex@suse.cz>
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
22 #include <sound/driver.h>
23 #include <linux/init.h>
24 #include <linux/pci.h>
25 #include <linux/time.h>
26 #include <linux/moduleparam.h>
27 #include <sound/core.h>
28 #include <sound/ymfpci.h>
29 #include <sound/mpu401.h>
30 #include <sound/opl3.h>
31 #include <sound/initval.h>
32
33 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
34 MODULE_DESCRIPTION("Yamaha DS-XG PCI");
35 MODULE_LICENSE("GPL");
36 MODULE_SUPPORTED_DEVICE("{{Yamaha,YMF724},"
37                 "{Yamaha,YMF724F},"
38                 "{Yamaha,YMF740},"
39                 "{Yamaha,YMF740C},"
40                 "{Yamaha,YMF744},"
41                 "{Yamaha,YMF754}}");
42
43 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;      /* Index 0-MAX */
44 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;       /* ID for this card */
45 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;      /* Enable this card */
46 static long fm_port[SNDRV_CARDS];
47 static long mpu_port[SNDRV_CARDS];
48 #ifdef SUPPORT_JOYSTICK
49 static long joystick_port[SNDRV_CARDS];
50 #endif
51 static int rear_switch[SNDRV_CARDS];
52
53 module_param_array(index, int, NULL, 0444);
54 MODULE_PARM_DESC(index, "Index value for the Yamaha DS-XG PCI soundcard.");
55 module_param_array(id, charp, NULL, 0444);
56 MODULE_PARM_DESC(id, "ID string for the Yamaha DS-XG PCI soundcard.");
57 module_param_array(enable, bool, NULL, 0444);
58 MODULE_PARM_DESC(enable, "Enable Yamaha DS-XG soundcard.");
59 module_param_array(mpu_port, long, NULL, 0444);
60 MODULE_PARM_DESC(mpu_port, "MPU-401 Port.");
61 module_param_array(fm_port, long, NULL, 0444);
62 MODULE_PARM_DESC(fm_port, "FM OPL-3 Port.");
63 #ifdef SUPPORT_JOYSTICK
64 module_param_array(joystick_port, long, NULL, 0444);
65 MODULE_PARM_DESC(joystick_port, "Joystick port address");
66 #endif
67 module_param_array(rear_switch, bool, NULL, 0444);
68 MODULE_PARM_DESC(rear_switch, "Enable shared rear/line-in switch");
69
70 static struct pci_device_id snd_ymfpci_ids[] = {
71         { 0x1073, 0x0004, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* YMF724 */
72         { 0x1073, 0x000d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* YMF724F */
73         { 0x1073, 0x000a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* YMF740 */
74         { 0x1073, 0x000c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* YMF740C */
75         { 0x1073, 0x0010, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* YMF744 */
76         { 0x1073, 0x0012, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* YMF754 */
77         { 0, }
78 };
79
80 MODULE_DEVICE_TABLE(pci, snd_ymfpci_ids);
81
82 static int __devinit snd_card_ymfpci_probe(struct pci_dev *pci,
83                                            const struct pci_device_id *pci_id)
84 {
85         static int dev;
86         snd_card_t *card;
87         struct resource *fm_res = NULL;
88         struct resource *mpu_res = NULL;
89 #ifdef SUPPORT_JOYSTICK
90         struct resource *joystick_res = NULL;
91 #endif
92         ymfpci_t *chip;
93         opl3_t *opl3;
94         char *str;
95         int err;
96         u16 legacy_ctrl, legacy_ctrl2, old_legacy_ctrl;
97
98         if (dev >= SNDRV_CARDS)
99                 return -ENODEV;
100         if (!enable[dev]) {
101                 dev++;
102                 return -ENOENT;
103         }
104
105         card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
106         if (card == NULL)
107                 return -ENOMEM;
108
109         switch (pci_id->device) {
110         case 0x0004: str = "YMF724"; break;
111         case 0x000d: str = "YMF724F"; break;
112         case 0x000a: str = "YMF740"; break;
113         case 0x000c: str = "YMF740C"; break;
114         case 0x0010: str = "YMF744"; break;
115         case 0x0012: str = "YMF754"; break;
116         default: str = "???"; break;
117         }
118
119         legacy_ctrl = 0;
120         legacy_ctrl2 = 0x0800;  /* SBEN = 0, SMOD = 01, LAD = 0 */
121
122         if (pci_id->device >= 0x0010) { /* YMF 744/754 */
123                 if (fm_port[dev] == 1) {
124                         /* auto-detect */
125                         fm_port[dev] = pci_resource_start(pci, 1);
126                 }
127                 if (fm_port[dev] > 0 &&
128                     (fm_res = request_region(fm_port[dev], 4, "YMFPCI OPL3")) != NULL) {
129                         legacy_ctrl |= YMFPCI_LEGACY_FMEN;
130                         pci_write_config_word(pci, PCIR_DSXG_FMBASE, fm_port[dev]);
131                 }
132                 if (mpu_port[dev] == 1) {
133                         /* auto-detect */
134                         mpu_port[dev] = pci_resource_start(pci, 1) + 0x20;
135                 }
136                 if (mpu_port[dev] > 0 &&
137                     (mpu_res = request_region(mpu_port[dev], 2, "YMFPCI MPU401")) != NULL) {
138                         legacy_ctrl |= YMFPCI_LEGACY_MEN;
139                         pci_write_config_word(pci, PCIR_DSXG_MPU401BASE, mpu_port[dev]);
140                 }
141 #ifdef SUPPORT_JOYSTICK
142                 if (joystick_port[dev] == 1) {
143                         /* auto-detect */
144                         joystick_port[dev] = pci_resource_start(pci, 2);
145                 }
146                 if (joystick_port[dev] > 0 &&
147                     (joystick_res = request_region(joystick_port[dev], 1, "YMFPCI gameport")) != NULL) {
148                         legacy_ctrl |= YMFPCI_LEGACY_JPEN;
149                         pci_write_config_word(pci, PCIR_DSXG_JOYBASE, joystick_port[dev]);
150                 }
151 #endif
152         } else {
153                 switch (fm_port[dev]) {
154                 case 0x388: legacy_ctrl2 |= 0; break;
155                 case 0x398: legacy_ctrl2 |= 1; break;
156                 case 0x3a0: legacy_ctrl2 |= 2; break;
157                 case 0x3a8: legacy_ctrl2 |= 3; break;
158                 default: fm_port[dev] = 0; break;
159                 }
160                 if (fm_port[dev] > 0 &&
161                     (fm_res = request_region(fm_port[dev], 4, "YMFPCI OPL3")) != NULL) {
162                         legacy_ctrl |= YMFPCI_LEGACY_FMEN;
163                 } else {
164                         legacy_ctrl2 &= ~YMFPCI_LEGACY2_FMIO;
165                         fm_port[dev] = 0;
166                 }
167                 switch (mpu_port[dev]) {
168                 case 0x330: legacy_ctrl2 |= 0 << 4; break;
169                 case 0x300: legacy_ctrl2 |= 1 << 4; break;
170                 case 0x332: legacy_ctrl2 |= 2 << 4; break;
171                 case 0x334: legacy_ctrl2 |= 3 << 4; break;
172                 default: mpu_port[dev] = 0; break;
173                 }
174                 if (mpu_port[dev] > 0 &&
175                     (mpu_res = request_region(mpu_port[dev], 2, "YMFPCI MPU401")) != NULL) {
176                         legacy_ctrl |= YMFPCI_LEGACY_MEN;
177                 } else {
178                         legacy_ctrl2 &= ~YMFPCI_LEGACY2_MPUIO;
179                         mpu_port[dev] = 0;
180                 }
181 #ifdef SUPPORT_JOYSTICK
182                 if (joystick_port[dev] == 1) {
183                         /* auto-detect */
184                         long p;
185                         for (p = 0x201; p <= 0x205; p++) {
186                                 if (p == 0x203) continue;
187                                 if ((joystick_res = request_region(p, 1, "YMFPCI gameport")) != NULL)
188                                         break;
189                         }
190                         if (joystick_res)
191                                 joystick_port[dev] = p;
192                 }
193                 switch (joystick_port[dev]) {
194                 case 0x201: legacy_ctrl2 |= 0 << 6; break;
195                 case 0x202: legacy_ctrl2 |= 1 << 6; break;
196                 case 0x204: legacy_ctrl2 |= 2 << 6; break;
197                 case 0x205: legacy_ctrl2 |= 3 << 6; break;
198                 default: joystick_port[dev] = 0; break;
199                 }
200                 if (! joystick_res && joystick_port[dev] > 0)
201                         joystick_res = request_region(joystick_port[dev], 1, "YMFPCI gameport");
202                 if (joystick_res) {
203                         legacy_ctrl |= YMFPCI_LEGACY_JPEN;
204                 } else {
205                         legacy_ctrl2 &= ~YMFPCI_LEGACY2_JSIO;
206                         joystick_port[dev] = 0;
207                 }
208 #endif
209         }
210         if (mpu_res) {
211                 legacy_ctrl |= YMFPCI_LEGACY_MIEN;
212                 legacy_ctrl2 |= YMFPCI_LEGACY2_IMOD;
213         }
214         pci_read_config_word(pci, PCIR_DSXG_LEGACY, &old_legacy_ctrl);
215         pci_write_config_word(pci, PCIR_DSXG_LEGACY, legacy_ctrl);
216         pci_write_config_word(pci, PCIR_DSXG_ELEGACY, legacy_ctrl2);
217         if ((err = snd_ymfpci_create(card, pci,
218                                      old_legacy_ctrl,
219                                      &chip)) < 0) {
220                 snd_card_free(card);
221                 if (mpu_res) {
222                         release_resource(mpu_res);
223                         kfree_nocheck(mpu_res);
224                 }
225                 if (fm_res) {
226                         release_resource(fm_res);
227                         kfree_nocheck(fm_res);
228                 }
229 #ifdef SUPPORT_JOYSTICK
230                 if (joystick_res) {
231                         release_resource(joystick_res);
232                         kfree_nocheck(joystick_res);
233                 }
234 #endif
235                 return err;
236         }
237         chip->fm_res = fm_res;
238         chip->mpu_res = mpu_res;
239 #ifdef SUPPORT_JOYSTICK
240         chip->joystick_res = joystick_res;
241 #endif
242         strcpy(card->driver, str);
243         sprintf(card->shortname, "Yamaha DS-XG (%s)", str);
244         sprintf(card->longname, "%s at 0x%lx, irq %i",
245                 card->shortname,
246                 chip->reg_area_phys,
247                 chip->irq);
248         if ((err = snd_ymfpci_pcm(chip, 0, NULL)) < 0) {
249                 snd_card_free(card);
250                 return err;
251         }
252         if ((err = snd_ymfpci_pcm_spdif(chip, 1, NULL)) < 0) {
253                 snd_card_free(card);
254                 return err;
255         }
256         if ((err = snd_ymfpci_pcm_4ch(chip, 2, NULL)) < 0) {
257                 snd_card_free(card);
258                 return err;
259         }
260         if ((err = snd_ymfpci_pcm2(chip, 3, NULL)) < 0) {
261                 snd_card_free(card);
262                 return err;
263         }
264         if ((err = snd_ymfpci_mixer(chip, rear_switch[dev])) < 0) {
265                 snd_card_free(card);
266                 return err;
267         }
268         if ((err = snd_ymfpci_timer(chip, 0)) < 0) {
269                 snd_card_free(card);
270                 return err;
271         }
272         if (chip->mpu_res) {
273                 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_YMFPCI,
274                                                mpu_port[dev], 1,
275                                                pci->irq, 0, &chip->rawmidi)) < 0) {
276                         printk(KERN_WARNING "ymfpci: cannot initialize MPU401 at 0x%lx, skipping...\n", mpu_port[dev]);
277                         legacy_ctrl &= ~YMFPCI_LEGACY_MIEN; /* disable MPU401 irq */
278                         pci_write_config_word(pci, PCIR_DSXG_LEGACY, legacy_ctrl);
279                 }
280         }
281         if (chip->fm_res) {
282                 if ((err = snd_opl3_create(card,
283                                            fm_port[dev],
284                                            fm_port[dev] + 2,
285                                            OPL3_HW_OPL3, 1, &opl3)) < 0) {
286                         printk(KERN_WARNING "ymfpci: cannot initialize FM OPL3 at 0x%lx, skipping...\n", fm_port[dev]);
287                         legacy_ctrl &= ~YMFPCI_LEGACY_FMEN;
288                         pci_write_config_word(pci, PCIR_DSXG_LEGACY, legacy_ctrl);
289                 } else if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) {
290                         snd_card_free(card);
291                         snd_printk("cannot create opl3 hwdep\n");
292                         return err;
293                 }
294         }
295 #ifdef SUPPORT_JOYSTICK
296         if (chip->joystick_res) {
297                 chip->gameport.io = joystick_port[dev];
298                 gameport_register_port(&chip->gameport);
299         }
300 #endif
301
302         if ((err = snd_card_register(card)) < 0) {
303                 snd_card_free(card);
304                 return err;
305         }
306         pci_set_drvdata(pci, card);
307         dev++;
308         return 0;
309 }
310
311 static void __devexit snd_card_ymfpci_remove(struct pci_dev *pci)
312 {
313         snd_card_free(pci_get_drvdata(pci));
314         pci_set_drvdata(pci, NULL);
315 }
316
317 static struct pci_driver driver = {
318         .name = "Yamaha DS-XG PCI",
319         .id_table = snd_ymfpci_ids,
320         .probe = snd_card_ymfpci_probe,
321         .remove = __devexit_p(snd_card_ymfpci_remove),
322         SND_PCI_PM_CALLBACKS
323 };
324
325 static int __init alsa_card_ymfpci_init(void)
326 {
327         return pci_module_init(&driver);
328 }
329
330 static void __exit alsa_card_ymfpci_exit(void)
331 {
332         pci_unregister_driver(&driver);
333 }
334
335 module_init(alsa_card_ymfpci_init)
336 module_exit(alsa_card_ymfpci_exit)