2 * Driver for Yamaha OPL3-SA[2,3] soundcards
3 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
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.
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.
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
22 #include <sound/driver.h>
23 #include <linux/init.h>
24 #include <linux/interrupt.h>
26 #include <linux/slab.h>
27 #include <linux/pnp.h>
28 #include <linux/moduleparam.h>
29 #include <sound/core.h>
30 #include <sound/cs4231.h>
31 #include <sound/mpu401.h>
32 #include <sound/opl3.h>
33 #include <sound/initval.h>
37 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
38 MODULE_DESCRIPTION("Yamaha OPL3SA2+");
39 MODULE_LICENSE("GPL");
40 MODULE_SUPPORTED_DEVICE("{{Yamaha,YMF719E-S},"
41 "{Genius,Sound Maker 3DX},"
43 "{Intel,AL440LX sound},"
44 "{NeoMagic,MagicWave 3DX}}");
46 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
47 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
48 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */
50 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
52 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0xf86,0x370,0x100 */
53 static long sb_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */
54 static long wss_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x530,0xe80,0xf40,0x604 */
55 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x388 */
56 static long midi_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x330,0x300 */
57 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 0,1,3,5,9,11,12,15 */
58 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */
59 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */
60 static int opl3sa3_ymode[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0 }; /* 0,1,2,3 */ /*SL Added*/
62 module_param_array(index, int, NULL, 0444);
63 MODULE_PARM_DESC(index, "Index value for OPL3-SA soundcard.");
64 module_param_array(id, charp, NULL, 0444);
65 MODULE_PARM_DESC(id, "ID string for OPL3-SA soundcard.");
66 module_param_array(enable, bool, NULL, 0444);
67 MODULE_PARM_DESC(enable, "Enable OPL3-SA soundcard.");
69 module_param_array(isapnp, bool, NULL, 0444);
70 MODULE_PARM_DESC(isapnp, "PnP detection for specified soundcard.");
72 module_param_array(port, long, NULL, 0444);
73 MODULE_PARM_DESC(port, "Port # for OPL3-SA driver.");
74 module_param_array(sb_port, long, NULL, 0444);
75 MODULE_PARM_DESC(sb_port, "SB port # for OPL3-SA driver.");
76 module_param_array(wss_port, long, NULL, 0444);
77 MODULE_PARM_DESC(wss_port, "WSS port # for OPL3-SA driver.");
78 module_param_array(fm_port, long, NULL, 0444);
79 MODULE_PARM_DESC(fm_port, "FM port # for OPL3-SA driver.");
80 module_param_array(midi_port, long, NULL, 0444);
81 MODULE_PARM_DESC(midi_port, "MIDI port # for OPL3-SA driver.");
82 module_param_array(irq, int, NULL, 0444);
83 MODULE_PARM_DESC(irq, "IRQ # for OPL3-SA driver.");
84 module_param_array(dma1, int, NULL, 0444);
85 MODULE_PARM_DESC(dma1, "DMA1 # for OPL3-SA driver.");
86 module_param_array(dma2, int, NULL, 0444);
87 MODULE_PARM_DESC(dma2, "DMA2 # for OPL3-SA driver.");
88 module_param_array(opl3sa3_ymode, int, NULL, 0444);
89 MODULE_PARM_DESC(opl3sa3_ymode, "Speaker size selection for 3D Enhancement mode: Desktop/Large Notebook/Small Notebook/HiFi.");
92 #define OPL3SA2_PM_CTRL 0x01
93 #define OPL3SA2_SYS_CTRL 0x02
94 #define OPL3SA2_IRQ_CONFIG 0x03
95 #define OPL3SA2_IRQ_STATUS 0x04
96 #define OPL3SA2_DMA_CONFIG 0x06
97 #define OPL3SA2_MASTER_LEFT 0x07
98 #define OPL3SA2_MASTER_RIGHT 0x08
99 #define OPL3SA2_MIC 0x09
100 #define OPL3SA2_MISC 0x0A
103 #define OPL3SA3_DGTL_DOWN 0x12
104 #define OPL3SA3_ANLG_DOWN 0x13
105 #define OPL3SA3_WIDE 0x14
106 #define OPL3SA3_BASS 0x15
107 #define OPL3SA3_TREBLE 0x16
109 /* power management bits */
110 #define OPL3SA2_PM_ADOWN 0x20
111 #define OPL3SA2_PM_PSV 0x04
112 #define OPL3SA2_PM_PDN 0x02
113 #define OPL3SA2_PM_PDX 0x01
115 #define OPL3SA2_PM_D0 0x00
116 #define OPL3SA2_PM_D3 (OPL3SA2_PM_ADOWN|OPL3SA2_PM_PSV|OPL3SA2_PM_PDN|OPL3SA2_PM_PDX)
118 typedef struct snd_opl3sa2 opl3sa2_t;
122 int version; /* 2 or 3 */
123 unsigned long port; /* control port */
124 struct resource *res_port; /* control port resource */
129 snd_rawmidi_t *rmidi;
134 unsigned char ctlregs[0x20];
135 int ymode; /* SL added */
136 snd_kcontrol_t *master_switch;
137 snd_kcontrol_t *master_volume;
139 void (*cs4231_suspend)(cs4231_t *);
140 void (*cs4231_resume)(cs4231_t *);
144 static snd_card_t *snd_opl3sa2_legacy[SNDRV_CARDS] = SNDRV_DEFAULT_PTR;
148 static struct pnp_card_device_id snd_opl3sa2_pnpids[] = {
149 /* Yamaha YMF719E-S (Genius Sound Maker 3DX) */
150 { .id = "YMH0020", .devs = { { "YMH0021" } } },
151 /* Yamaha OPL3-SA3 (integrated on Intel's Pentium II AL440LX motherboard) */
152 { .id = "YMH0030", .devs = { { "YMH0021" } } },
153 /* Yamaha OPL3-SA2 */
154 { .id = "YMH0800", .devs = { { "YMH0021" } } },
155 /* Yamaha OPL3-SA2 */
156 { .id = "YMH0801", .devs = { { "YMH0021" } } },
157 /* NeoMagic MagicWave 3DX */
158 { .id = "NMX2200", .devs = { { "YMH2210" } } },
160 { .id = "" } /* end */
163 MODULE_DEVICE_TABLE(pnp_card, snd_opl3sa2_pnpids);
165 #endif /* CONFIG_PNP */
168 /* read control port (w/o spinlock) */
169 static unsigned char __snd_opl3sa2_read(opl3sa2_t *chip, unsigned char reg)
171 unsigned char result;
173 outb(0x1d, port); /* password */
174 printk("read [0x%lx] = 0x%x\n", port, inb(port));
176 outb(reg, chip->port); /* register */
177 result = inb(chip->port + 1);
179 printk("read [0x%lx] = 0x%x [0x%x]\n", port, result, inb(port));
184 /* read control port (with spinlock) */
185 static unsigned char snd_opl3sa2_read(opl3sa2_t *chip, unsigned char reg)
188 unsigned char result;
190 spin_lock_irqsave(&chip->reg_lock, flags);
191 result = __snd_opl3sa2_read(chip, reg);
192 spin_unlock_irqrestore(&chip->reg_lock, flags);
196 /* write control port (w/o spinlock) */
197 static void __snd_opl3sa2_write(opl3sa2_t *chip, unsigned char reg, unsigned char value)
200 outb(0x1d, port); /* password */
202 outb(reg, chip->port); /* register */
203 outb(value, chip->port + 1);
204 chip->ctlregs[reg] = value;
207 /* write control port (with spinlock) */
208 static void snd_opl3sa2_write(opl3sa2_t *chip, unsigned char reg, unsigned char value)
211 spin_lock_irqsave(&chip->reg_lock, flags);
212 __snd_opl3sa2_write(chip, reg, value);
213 spin_unlock_irqrestore(&chip->reg_lock, flags);
216 static int __init snd_opl3sa2_detect(opl3sa2_t *chip)
220 unsigned char tmp, tmp1;
225 if ((chip->res_port = request_region(port, 2, "OPL3-SA control")) == NULL) {
226 snd_printk(KERN_ERR "opl3sa2: can't grab port 0x%lx\n", port);
229 // snd_printk("REG 0A = 0x%x\n", snd_opl3sa2_read(chip, 0x0a));
231 tmp = snd_opl3sa2_read(chip, OPL3SA2_MISC);
233 snd_printd("OPL3-SA [0x%lx] detect = 0x%x\n", port, tmp);
236 switch (tmp & 0x07) {
238 chip->version = 2; /* YMF711 */
242 /* 0x02 - standard */
244 /* 0x04 - YM719 - OPL-SA4? */
245 /* 0x05 - OPL3-SA3 - Libretto 100 */
248 str[0] = chip->version + '0';
250 strcat(card->shortname, str);
251 snd_opl3sa2_write(chip, OPL3SA2_MISC, tmp ^ 7);
252 if ((tmp1 = snd_opl3sa2_read(chip, OPL3SA2_MISC)) != tmp) {
253 snd_printd("OPL3-SA [0x%lx] detect (1) = 0x%x (0x%x)\n", port, tmp, tmp1);
256 /* try if the MIC register is accesible */
257 tmp = snd_opl3sa2_read(chip, OPL3SA2_MIC);
258 snd_opl3sa2_write(chip, OPL3SA2_MIC, 0x8a);
259 if (((tmp1 = snd_opl3sa2_read(chip, OPL3SA2_MIC)) & 0x9f) != 0x8a) {
260 snd_printd("OPL3-SA [0x%lx] detect (2) = 0x%x (0x%x)\n", port, tmp, tmp1);
263 snd_opl3sa2_write(chip, OPL3SA2_MIC, 0x9f);
265 /* Power Management - full on */
266 snd_opl3sa2_write(chip, OPL3SA2_PM_CTRL, OPL3SA2_PM_D0);
267 if (chip->version > 2) {
268 /* ymode is bits 4&5 (of 0 to 7) on all but opl3sa2 versions */
269 snd_opl3sa2_write(chip, OPL3SA2_SYS_CTRL, (chip->ymode << 4));
271 /* default for opl3sa2 versions */
272 snd_opl3sa2_write(chip, OPL3SA2_SYS_CTRL, 0x00);
274 snd_opl3sa2_write(chip, OPL3SA2_IRQ_CONFIG, 0x0d); /* Interrupt Channel Configuration - IRQ A = OPL3 + MPU + WSS */
275 if (chip->single_dma) {
276 snd_opl3sa2_write(chip, OPL3SA2_DMA_CONFIG, 0x03); /* DMA Configuration - DMA A = WSS-R + WSS-P */
278 snd_opl3sa2_write(chip, OPL3SA2_DMA_CONFIG, 0x21); /* DMA Configuration - DMA B = WSS-R, DMA A = WSS-P */
280 snd_opl3sa2_write(chip, OPL3SA2_MISC, 0x80 | (tmp & 7)); /* Miscellaneous - default */
281 if (chip->version > 2) {
282 snd_opl3sa2_write(chip, OPL3SA3_DGTL_DOWN, 0x00); /* Digital Block Partial Power Down - default */
283 snd_opl3sa2_write(chip, OPL3SA3_ANLG_DOWN, 0x00); /* Analog Block Partial Power Down - default */
288 static irqreturn_t snd_opl3sa2_interrupt(int irq, void *dev_id, struct pt_regs *regs)
290 unsigned short status;
291 opl3sa2_t *chip = dev_id;
294 if (chip == NULL || chip->card == NULL)
297 status = snd_opl3sa2_read(chip, OPL3SA2_IRQ_STATUS);
301 snd_opl3_interrupt(chip->synth);
304 if ((status & 0x10) && chip->rmidi != NULL) {
306 snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data, regs);
309 if (status & 0x07) { /* TI,CI,PI */
311 snd_cs4231_interrupt(irq, chip->cs4231, regs);
314 if (status & 0x40) { /* hardware volume change */
316 /* reading from Master Lch register at 0x07 clears this bit */
317 snd_opl3sa2_read(chip, OPL3SA2_MASTER_RIGHT);
318 snd_opl3sa2_read(chip, OPL3SA2_MASTER_LEFT);
319 if (chip->master_switch && chip->master_volume) {
320 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->master_switch->id);
321 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->master_volume->id);
324 return IRQ_RETVAL(handled);
327 #define OPL3SA2_SINGLE(xname, xindex, reg, shift, mask, invert) \
328 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
329 .info = snd_opl3sa2_info_single, \
330 .get = snd_opl3sa2_get_single, .put = snd_opl3sa2_put_single, \
331 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
333 static int snd_opl3sa2_info_single(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
335 int mask = (kcontrol->private_value >> 16) & 0xff;
337 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
339 uinfo->value.integer.min = 0;
340 uinfo->value.integer.max = mask;
344 static int snd_opl3sa2_get_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
346 opl3sa2_t *chip = snd_kcontrol_chip(kcontrol);
348 int reg = kcontrol->private_value & 0xff;
349 int shift = (kcontrol->private_value >> 8) & 0xff;
350 int mask = (kcontrol->private_value >> 16) & 0xff;
351 int invert = (kcontrol->private_value >> 24) & 0xff;
353 spin_lock_irqsave(&chip->reg_lock, flags);
354 ucontrol->value.integer.value[0] = (chip->ctlregs[reg] >> shift) & mask;
355 spin_unlock_irqrestore(&chip->reg_lock, flags);
357 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
361 static int snd_opl3sa2_put_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
363 opl3sa2_t *chip = snd_kcontrol_chip(kcontrol);
365 int reg = kcontrol->private_value & 0xff;
366 int shift = (kcontrol->private_value >> 8) & 0xff;
367 int mask = (kcontrol->private_value >> 16) & 0xff;
368 int invert = (kcontrol->private_value >> 24) & 0xff;
370 unsigned short val, oval;
372 val = (ucontrol->value.integer.value[0] & mask);
376 spin_lock_irqsave(&chip->reg_lock, flags);
377 oval = chip->ctlregs[reg];
378 val = (oval & ~(mask << shift)) | val;
379 change = val != oval;
380 __snd_opl3sa2_write(chip, reg, val);
381 spin_unlock_irqrestore(&chip->reg_lock, flags);
385 #define OPL3SA2_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
386 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
387 .info = snd_opl3sa2_info_double, \
388 .get = snd_opl3sa2_get_double, .put = snd_opl3sa2_put_double, \
389 .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) }
391 static int snd_opl3sa2_info_double(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
393 int mask = (kcontrol->private_value >> 24) & 0xff;
395 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
397 uinfo->value.integer.min = 0;
398 uinfo->value.integer.max = mask;
402 static int snd_opl3sa2_get_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
404 opl3sa2_t *chip = snd_kcontrol_chip(kcontrol);
406 int left_reg = kcontrol->private_value & 0xff;
407 int right_reg = (kcontrol->private_value >> 8) & 0xff;
408 int shift_left = (kcontrol->private_value >> 16) & 0x07;
409 int shift_right = (kcontrol->private_value >> 19) & 0x07;
410 int mask = (kcontrol->private_value >> 24) & 0xff;
411 int invert = (kcontrol->private_value >> 22) & 1;
413 spin_lock_irqsave(&chip->reg_lock, flags);
414 ucontrol->value.integer.value[0] = (chip->ctlregs[left_reg] >> shift_left) & mask;
415 ucontrol->value.integer.value[1] = (chip->ctlregs[right_reg] >> shift_right) & mask;
416 spin_unlock_irqrestore(&chip->reg_lock, flags);
418 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
419 ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1];
424 static int snd_opl3sa2_put_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
426 opl3sa2_t *chip = snd_kcontrol_chip(kcontrol);
428 int left_reg = kcontrol->private_value & 0xff;
429 int right_reg = (kcontrol->private_value >> 8) & 0xff;
430 int shift_left = (kcontrol->private_value >> 16) & 0x07;
431 int shift_right = (kcontrol->private_value >> 19) & 0x07;
432 int mask = (kcontrol->private_value >> 24) & 0xff;
433 int invert = (kcontrol->private_value >> 22) & 1;
435 unsigned short val1, val2, oval1, oval2;
437 val1 = ucontrol->value.integer.value[0] & mask;
438 val2 = ucontrol->value.integer.value[1] & mask;
444 val2 <<= shift_right;
445 spin_lock_irqsave(&chip->reg_lock, flags);
446 if (left_reg != right_reg) {
447 oval1 = chip->ctlregs[left_reg];
448 oval2 = chip->ctlregs[right_reg];
449 val1 = (oval1 & ~(mask << shift_left)) | val1;
450 val2 = (oval2 & ~(mask << shift_right)) | val2;
451 change = val1 != oval1 || val2 != oval2;
452 __snd_opl3sa2_write(chip, left_reg, val1);
453 __snd_opl3sa2_write(chip, right_reg, val2);
455 oval1 = chip->ctlregs[left_reg];
456 val1 = (oval1 & ~((mask << shift_left) | (mask << shift_right))) | val1 | val2;
457 change = val1 != oval1;
458 __snd_opl3sa2_write(chip, left_reg, val1);
460 spin_unlock_irqrestore(&chip->reg_lock, flags);
464 static snd_kcontrol_new_t snd_opl3sa2_controls[] = {
465 OPL3SA2_DOUBLE("Master Playback Switch", 0, 0x07, 0x08, 7, 7, 1, 1),
466 OPL3SA2_DOUBLE("Master Playback Volume", 0, 0x07, 0x08, 0, 0, 15, 1),
467 OPL3SA2_SINGLE("Mic Playback Switch", 0, 0x09, 7, 1, 1),
468 OPL3SA2_SINGLE("Mic Playback Volume", 0, 0x09, 0, 31, 1)
471 static snd_kcontrol_new_t snd_opl3sa2_tone_controls[] = {
472 OPL3SA2_DOUBLE("3D Control - Wide", 0, 0x14, 0x14, 4, 0, 7, 0),
473 OPL3SA2_DOUBLE("Tone Control - Bass", 0, 0x15, 0x15, 4, 0, 7, 0),
474 OPL3SA2_DOUBLE("Tone Control - Treble", 0, 0x16, 0x16, 4, 0, 7, 0)
477 static void snd_opl3sa2_master_free(snd_kcontrol_t *kcontrol)
479 opl3sa2_t *chip = snd_kcontrol_chip(kcontrol);
480 chip->master_switch = NULL;
481 chip->master_volume = NULL;
484 static int __init snd_opl3sa2_mixer(opl3sa2_t *chip)
486 snd_card_t *card = chip->card;
487 snd_ctl_elem_id_t id1, id2;
488 snd_kcontrol_t *kctl;
492 memset(&id1, 0, sizeof(id1));
493 memset(&id2, 0, sizeof(id2));
494 id1.iface = id2.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
495 /* reassign AUX0 to CD */
496 strcpy(id1.name, "Aux Playback Switch");
497 strcpy(id2.name, "CD Playback Switch");
498 if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
500 strcpy(id1.name, "Aux Playback Volume");
501 strcpy(id2.name, "CD Playback Volume");
502 if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
504 /* reassign AUX1 to FM */
505 strcpy(id1.name, "Aux Playback Switch"); id1.index = 1;
506 strcpy(id2.name, "FM Playback Switch");
507 if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
509 strcpy(id1.name, "Aux Playback Volume");
510 strcpy(id2.name, "FM Playback Volume");
511 if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
513 /* add OPL3SA2 controls */
514 for (idx = 0; idx < ARRAY_SIZE(snd_opl3sa2_controls); idx++) {
515 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_opl3sa2_controls[idx], chip))) < 0)
518 case 0: chip->master_switch = kctl; kctl->private_free = snd_opl3sa2_master_free; break;
519 case 1: chip->master_volume = kctl; kctl->private_free = snd_opl3sa2_master_free; break;
522 if (chip->version > 2) {
523 for (idx = 0; idx < ARRAY_SIZE(snd_opl3sa2_tone_controls); idx++)
524 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_opl3sa2_tone_controls[idx], chip))) < 0)
530 /* Power Management support functions */
532 static int snd_opl3sa2_suspend(snd_card_t *card, pm_message_t state)
534 opl3sa2_t *chip = card->pm_private_data;
536 snd_pcm_suspend_all(chip->cs4231->pcm); /* stop before saving regs */
537 chip->cs4231_suspend(chip->cs4231);
540 snd_opl3sa2_write(chip, OPL3SA2_PM_CTRL, OPL3SA2_PM_D3);
545 static int snd_opl3sa2_resume(snd_card_t *card)
547 opl3sa2_t *chip = card->pm_private_data;
551 snd_opl3sa2_write(chip, OPL3SA2_PM_CTRL, OPL3SA2_PM_D0);
553 /* restore registers */
554 for (i = 2; i <= 0x0a; i++) {
555 if (i != OPL3SA2_IRQ_STATUS)
556 snd_opl3sa2_write(chip, i, chip->ctlregs[i]);
558 if (chip->version > 2) {
559 for (i = 0x12; i <= 0x16; i++)
560 snd_opl3sa2_write(chip, i, chip->ctlregs[i]);
563 chip->cs4231_resume(chip->cs4231);
567 #endif /* CONFIG_PM */
570 static int __init snd_opl3sa2_pnp(int dev, opl3sa2_t *chip,
571 struct pnp_card_link *card,
572 const struct pnp_card_device_id *id)
574 struct pnp_dev *pdev;
575 struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
580 pdev = chip->dev = pnp_request_card_device(card, id->devs[0].id, NULL);
581 if (chip->dev == NULL) {
585 /* PnP initialization */
586 pnp_init_resource_table(cfg);
587 if (sb_port[dev] != SNDRV_AUTO_PORT)
588 pnp_resource_change(&cfg->port_resource[0], sb_port[dev], 16);
589 if (wss_port[dev] != SNDRV_AUTO_PORT)
590 pnp_resource_change(&cfg->port_resource[1], wss_port[dev], 8);
591 if (fm_port[dev] != SNDRV_AUTO_PORT)
592 pnp_resource_change(&cfg->port_resource[2], fm_port[dev], 4);
593 if (midi_port[dev] != SNDRV_AUTO_PORT)
594 pnp_resource_change(&cfg->port_resource[3], midi_port[dev], 2);
595 if (port[dev] != SNDRV_AUTO_PORT)
596 pnp_resource_change(&cfg->port_resource[4], port[dev], 2);
597 if (dma1[dev] != SNDRV_AUTO_DMA)
598 pnp_resource_change(&cfg->dma_resource[0], dma1[dev], 1);
599 if (dma2[dev] != SNDRV_AUTO_DMA)
600 pnp_resource_change(&cfg->dma_resource[1], dma2[dev], 1);
601 if (irq[dev] != SNDRV_AUTO_IRQ)
602 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
603 err = pnp_manual_config_dev(pdev, cfg, 0);
605 snd_printk(KERN_ERR "PnP manual resources are invalid, using auto config\n");
606 err = pnp_activate_dev(pdev);
609 snd_printk(KERN_ERR "PnP configure failure (out of resources?) err = %d\n", err);
612 sb_port[dev] = pnp_port_start(pdev, 0);
613 wss_port[dev] = pnp_port_start(pdev, 1);
614 fm_port[dev] = pnp_port_start(pdev, 2);
615 midi_port[dev] = pnp_port_start(pdev, 3);
616 port[dev] = pnp_port_start(pdev, 4);
617 dma1[dev] = pnp_dma(pdev, 0);
618 dma2[dev] = pnp_dma(pdev, 1);
619 irq[dev] = pnp_irq(pdev, 0);
620 snd_printdd("PnP OPL3-SA: sb port=0x%lx, wss port=0x%lx, fm port=0x%lx, midi port=0x%lx\n",
621 sb_port[dev], wss_port[dev], fm_port[dev], midi_port[dev]);
622 snd_printdd("PnP OPL3-SA: control port=0x%lx, dma1=%i, dma2=%i, irq=%i\n",
623 port[dev], dma1[dev], dma2[dev], irq[dev]);
627 #endif /* CONFIG_PNP */
629 static int snd_opl3sa2_free(opl3sa2_t *chip)
632 free_irq(chip->irq, (void *)chip);
633 if (chip->res_port) {
634 release_resource(chip->res_port);
635 kfree_nocheck(chip->res_port);
641 static int snd_opl3sa2_dev_free(snd_device_t *device)
643 opl3sa2_t *chip = device->device_data;
644 return snd_opl3sa2_free(chip);
647 static int __devinit snd_opl3sa2_probe(int dev,
648 struct pnp_card_link *pcard,
649 const struct pnp_card_device_id *pid)
651 int xirq, xdma1, xdma2;
653 struct snd_opl3sa2 *chip;
656 static snd_device_ops_t ops = {
657 .dev_free = snd_opl3sa2_dev_free,
664 if (port[dev] == SNDRV_AUTO_PORT) {
665 snd_printk("specify port\n");
668 if (wss_port[dev] == SNDRV_AUTO_PORT) {
669 snd_printk("specify wss_port\n");
672 if (fm_port[dev] == SNDRV_AUTO_PORT) {
673 snd_printk("specify fm_port\n");
676 if (midi_port[dev] == SNDRV_AUTO_PORT) {
677 snd_printk("specify midi_port\n");
683 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
686 strcpy(card->driver, "OPL3SA2");
687 strcpy(card->shortname, "Yamaha OPL3-SA2");
688 chip = kcalloc(1, sizeof(*chip), GFP_KERNEL);
693 spin_lock_init(&chip->reg_lock);
695 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0)
699 if ((err = snd_opl3sa2_pnp(dev, chip, pcard, pid)) < 0)
701 snd_card_set_dev(card, &pcard->card->dev);
704 chip->ymode = opl3sa3_ymode[dev] & 0x03 ; /* initialise this card from supplied (or default) parameter*/
706 chip->port = port[dev];
711 chip->single_dma = 1;
712 if ((err = snd_opl3sa2_detect(chip)) < 0)
714 if (request_irq(xirq, snd_opl3sa2_interrupt, SA_INTERRUPT, "OPL3-SA2", (void *)chip)) {
715 snd_printk(KERN_ERR "opl3sa2: can't grab IRQ %d\n", xirq);
720 if ((err = snd_cs4231_create(card,
721 wss_port[dev] + 4, -1,
726 snd_printd("Oops, WSS not detected at 0x%lx\n", wss_port[dev] + 4);
729 chip->cs4231 = cs4231;
730 if ((err = snd_cs4231_pcm(cs4231, 0, NULL)) < 0)
732 if ((err = snd_cs4231_mixer(cs4231)) < 0)
734 if ((err = snd_opl3sa2_mixer(chip)) < 0)
736 if ((err = snd_cs4231_timer(cs4231, 0, NULL)) < 0)
738 if (fm_port[dev] >= 0x340 && fm_port[dev] < 0x400) {
739 if ((err = snd_opl3_create(card, fm_port[dev],
741 OPL3_HW_OPL3, 0, &opl3)) < 0)
743 if ((err = snd_opl3_timer_new(opl3, 1, 2)) < 0)
745 if ((err = snd_opl3_hwdep_new(opl3, 0, 1, &chip->synth)) < 0)
748 if (midi_port[dev] >= 0x300 && midi_port[dev] < 0x340) {
749 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_OPL3SA2,
751 xirq, 0, &chip->rmidi)) < 0)
755 chip->cs4231_suspend = chip->cs4231->suspend;
756 chip->cs4231_resume = chip->cs4231->resume;
757 /* now clear callbacks for cs4231 */
758 chip->cs4231->suspend = NULL;
759 chip->cs4231->resume = NULL;
760 snd_card_set_isa_pm_callback(card, snd_opl3sa2_suspend, snd_opl3sa2_resume, chip);
763 sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d",
764 card->shortname, chip->port, xirq, xdma1);
766 sprintf(card->longname + strlen(card->longname), "&%d", xdma2);
768 if ((err = snd_card_register(card)) < 0)
772 pnp_set_card_drvdata(pcard, card);
774 snd_opl3sa2_legacy[dev] = card;
783 static int __devinit snd_opl3sa2_pnp_detect(struct pnp_card_link *card,
784 const struct pnp_card_device_id *id)
789 for ( ; dev < SNDRV_CARDS; dev++) {
790 if (!enable[dev] || !isapnp[dev])
792 res = snd_opl3sa2_probe(dev, card, id);
801 static void __devexit snd_opl3sa2_pnp_remove(struct pnp_card_link * pcard)
803 snd_card_t *card = (snd_card_t *) pnp_get_card_drvdata(pcard);
805 snd_card_disconnect(card);
806 snd_card_free_in_thread(card);
809 static struct pnp_card_driver opl3sa2_pnpc_driver = {
810 .flags = PNP_DRIVER_RES_DISABLE,
812 .id_table = snd_opl3sa2_pnpids,
813 .probe = snd_opl3sa2_pnp_detect,
814 .remove = __devexit_p(snd_opl3sa2_pnp_remove),
816 #endif /* CONFIG_PNP */
818 static int __init alsa_card_opl3sa2_init(void)
822 for (dev = 0; dev < SNDRV_CARDS; dev++) {
829 if (snd_opl3sa2_probe(dev, NULL, NULL) >= 0)
833 cards += pnp_register_card_driver(&opl3sa2_pnpc_driver);
837 snd_printk(KERN_ERR "Yamaha OPL3-SA soundcard not found or device busy\n");
840 pnp_unregister_card_driver(&opl3sa2_pnpc_driver);
847 static void __exit alsa_card_opl3sa2_exit(void)
852 /* PnP cards first */
853 pnp_unregister_card_driver(&opl3sa2_pnpc_driver);
855 for (idx = 0; idx < SNDRV_CARDS; idx++)
856 snd_card_free(snd_opl3sa2_legacy[idx]);
859 module_init(alsa_card_opl3sa2_init)
860 module_exit(alsa_card_opl3sa2_exit)