blob: ae133633a420c4886181326f933161820de85696 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Driver for Yamaha OPL3-SA[2,3] soundcards
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 Iwai704e0522005-11-17 17:11:53 +010023#include <linux/err.h>
Takashi Iwai5e24c1c2007-02-22 12:50:54 +010024#include <linux/isa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/interrupt.h>
26#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/pnp.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040028#include <linux/module.h>
Takashi Iwai6cbbfe12015-01-28 16:49:33 +010029#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <sound/core.h>
Krzysztof Helt61ef19d2008-07-31 21:02:42 +020031#include <sound/wss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <sound/mpu401.h>
33#include <sound/opl3.h>
34#include <sound/initval.h>
Takashi Iwaia1c7a7d2006-08-22 13:16:39 +020035#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020037MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070038MODULE_DESCRIPTION("Yamaha OPL3SA2+");
39MODULE_LICENSE("GPL");
40MODULE_SUPPORTED_DEVICE("{{Yamaha,YMF719E-S},"
41 "{Genius,Sound Maker 3DX},"
42 "{Yamaha,OPL3SA3},"
43 "{Intel,AL440LX sound},"
44 "{NeoMagic,MagicWave 3DX}}");
45
46static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
47static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103048static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifdef CONFIG_PNP
Rusty Russella67ff6a2011-12-15 13:49:36 +103050static bool isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#endif
52static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0xf86,0x370,0x100 */
53static long sb_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */
54static long wss_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x530,0xe80,0xf40,0x604 */
55static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x388 */
56static long midi_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x330,0x300 */
57static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 0,1,3,5,9,11,12,15 */
58static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */
59static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */
Takashi Iwai6581f4e2006-05-17 17:14:51 +020060static int opl3sa3_ymode[SNDRV_CARDS]; /* 0,1,2,3 */ /*SL Added*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62module_param_array(index, int, NULL, 0444);
63MODULE_PARM_DESC(index, "Index value for OPL3-SA soundcard.");
64module_param_array(id, charp, NULL, 0444);
65MODULE_PARM_DESC(id, "ID string for OPL3-SA soundcard.");
66module_param_array(enable, bool, NULL, 0444);
67MODULE_PARM_DESC(enable, "Enable OPL3-SA soundcard.");
68#ifdef CONFIG_PNP
69module_param_array(isapnp, bool, NULL, 0444);
70MODULE_PARM_DESC(isapnp, "PnP detection for specified soundcard.");
71#endif
72module_param_array(port, long, NULL, 0444);
73MODULE_PARM_DESC(port, "Port # for OPL3-SA driver.");
74module_param_array(sb_port, long, NULL, 0444);
75MODULE_PARM_DESC(sb_port, "SB port # for OPL3-SA driver.");
76module_param_array(wss_port, long, NULL, 0444);
77MODULE_PARM_DESC(wss_port, "WSS port # for OPL3-SA driver.");
78module_param_array(fm_port, long, NULL, 0444);
79MODULE_PARM_DESC(fm_port, "FM port # for OPL3-SA driver.");
80module_param_array(midi_port, long, NULL, 0444);
81MODULE_PARM_DESC(midi_port, "MIDI port # for OPL3-SA driver.");
82module_param_array(irq, int, NULL, 0444);
83MODULE_PARM_DESC(irq, "IRQ # for OPL3-SA driver.");
84module_param_array(dma1, int, NULL, 0444);
85MODULE_PARM_DESC(dma1, "DMA1 # for OPL3-SA driver.");
86module_param_array(dma2, int, NULL, 0444);
87MODULE_PARM_DESC(dma2, "DMA2 # for OPL3-SA driver.");
88module_param_array(opl3sa3_ymode, int, NULL, 0444);
89MODULE_PARM_DESC(opl3sa3_ymode, "Speaker size selection for 3D Enhancement mode: Desktop/Large Notebook/Small Notebook/HiFi.");
90
Takashi Iwai59b1b342006-01-04 15:06:44 +010091#ifdef CONFIG_PNP
Rene Herman609d7692007-05-15 11:42:56 +020092static int isa_registered;
Clemens Ladischf7a92752005-12-07 09:13:42 +010093static int pnp_registered;
94static int pnpc_registered;
Takashi Iwai59b1b342006-01-04 15:06:44 +010095#endif
Clemens Ladischf7a92752005-12-07 09:13:42 +010096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* control ports */
98#define OPL3SA2_PM_CTRL 0x01
99#define OPL3SA2_SYS_CTRL 0x02
100#define OPL3SA2_IRQ_CONFIG 0x03
101#define OPL3SA2_IRQ_STATUS 0x04
102#define OPL3SA2_DMA_CONFIG 0x06
103#define OPL3SA2_MASTER_LEFT 0x07
104#define OPL3SA2_MASTER_RIGHT 0x08
105#define OPL3SA2_MIC 0x09
106#define OPL3SA2_MISC 0x0A
107
108/* opl3sa3 only */
109#define OPL3SA3_DGTL_DOWN 0x12
110#define OPL3SA3_ANLG_DOWN 0x13
111#define OPL3SA3_WIDE 0x14
112#define OPL3SA3_BASS 0x15
113#define OPL3SA3_TREBLE 0x16
114
115/* power management bits */
116#define OPL3SA2_PM_ADOWN 0x20
117#define OPL3SA2_PM_PSV 0x04
118#define OPL3SA2_PM_PDN 0x02
119#define OPL3SA2_PM_PDX 0x01
120
121#define OPL3SA2_PM_D0 0x00
122#define OPL3SA2_PM_D3 (OPL3SA2_PM_ADOWN|OPL3SA2_PM_PSV|OPL3SA2_PM_PDN|OPL3SA2_PM_PDX)
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124struct snd_opl3sa2 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 int version; /* 2 or 3 */
126 unsigned long port; /* control port */
127 struct resource *res_port; /* control port resource */
128 int irq;
129 int single_dma;
130 spinlock_t reg_lock;
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100131 struct snd_hwdep *synth;
132 struct snd_rawmidi *rmidi;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200133 struct snd_wss *wss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 unsigned char ctlregs[0x20];
135 int ymode; /* SL added */
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100136 struct snd_kcontrol *master_switch;
137 struct snd_kcontrol *master_volume;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139
Takashi Iwai43bcd972005-09-05 17:19:20 +0200140#define PFX "opl3sa2: "
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#ifdef CONFIG_PNP
143
Jaroslav Kysela12655092005-08-12 17:24:24 +0200144static struct pnp_device_id snd_opl3sa2_pnpbiosids[] = {
Jaroslav Kysela53b26662005-08-12 17:35:09 +0200145 { .id = "YMH0021" },
Jaroslav Kysela12655092005-08-12 17:24:24 +0200146 { .id = "NMX2210" }, /* Gateway Solo 2500 */
147 { .id = "" } /* end */
148};
149
150MODULE_DEVICE_TABLE(pnp, snd_opl3sa2_pnpbiosids);
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static struct pnp_card_device_id snd_opl3sa2_pnpids[] = {
153 /* Yamaha YMF719E-S (Genius Sound Maker 3DX) */
154 { .id = "YMH0020", .devs = { { "YMH0021" } } },
155 /* Yamaha OPL3-SA3 (integrated on Intel's Pentium II AL440LX motherboard) */
156 { .id = "YMH0030", .devs = { { "YMH0021" } } },
157 /* Yamaha OPL3-SA2 */
158 { .id = "YMH0800", .devs = { { "YMH0021" } } },
159 /* Yamaha OPL3-SA2 */
160 { .id = "YMH0801", .devs = { { "YMH0021" } } },
161 /* NeoMagic MagicWave 3DX */
162 { .id = "NMX2200", .devs = { { "YMH2210" } } },
Paul Vojta47004182007-07-04 10:34:22 +0200163 /* NeoMagic MagicWave 3D */
164 { .id = "NMX2200", .devs = { { "NMX2210" } } },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /* --- */
166 { .id = "" } /* end */
167};
168
169MODULE_DEVICE_TABLE(pnp_card, snd_opl3sa2_pnpids);
170
171#endif /* CONFIG_PNP */
172
173
174/* read control port (w/o spinlock) */
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100175static unsigned char __snd_opl3sa2_read(struct snd_opl3sa2 *chip, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 unsigned char result;
178#if 0
179 outb(0x1d, port); /* password */
Takashi Iwai4c9f1d32009-02-05 15:47:51 +0100180 printk(KERN_DEBUG "read [0x%lx] = 0x%x\n", port, inb(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#endif
182 outb(reg, chip->port); /* register */
183 result = inb(chip->port + 1);
184#if 0
Takashi Iwai4c9f1d32009-02-05 15:47:51 +0100185 printk(KERN_DEBUG "read [0x%lx] = 0x%x [0x%x]\n",
186 port, result, inb(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#endif
188 return result;
189}
190
191/* read control port (with spinlock) */
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100192static unsigned char snd_opl3sa2_read(struct snd_opl3sa2 *chip, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 unsigned long flags;
195 unsigned char result;
196
197 spin_lock_irqsave(&chip->reg_lock, flags);
198 result = __snd_opl3sa2_read(chip, reg);
199 spin_unlock_irqrestore(&chip->reg_lock, flags);
200 return result;
201}
202
203/* write control port (w/o spinlock) */
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100204static void __snd_opl3sa2_write(struct snd_opl3sa2 *chip, unsigned char reg, unsigned char value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206#if 0
207 outb(0x1d, port); /* password */
208#endif
209 outb(reg, chip->port); /* register */
210 outb(value, chip->port + 1);
211 chip->ctlregs[reg] = value;
212}
213
214/* write control port (with spinlock) */
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100215static void snd_opl3sa2_write(struct snd_opl3sa2 *chip, unsigned char reg, unsigned char value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 unsigned long flags;
218 spin_lock_irqsave(&chip->reg_lock, flags);
219 __snd_opl3sa2_write(chip, reg, value);
220 spin_unlock_irqrestore(&chip->reg_lock, flags);
221}
222
Bill Pemberton1bff2922012-12-06 12:35:21 -0500223static int snd_opl3sa2_detect(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Krzysztof Helt503c10d2008-08-17 20:01:14 +0200225 struct snd_opl3sa2 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 unsigned long port;
227 unsigned char tmp, tmp1;
228 char str[2];
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 port = chip->port;
231 if ((chip->res_port = request_region(port, 2, "OPL3-SA control")) == NULL) {
Takashi Iwai43bcd972005-09-05 17:19:20 +0200232 snd_printk(KERN_ERR PFX "can't grab port 0x%lx\n", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return -EBUSY;
234 }
Takashi Iwai4c9f1d32009-02-05 15:47:51 +0100235 /*
236 snd_printk(KERN_DEBUG "REG 0A = 0x%x\n",
237 snd_opl3sa2_read(chip, 0x0a));
238 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 chip->version = 0;
240 tmp = snd_opl3sa2_read(chip, OPL3SA2_MISC);
241 if (tmp == 0xff) {
242 snd_printd("OPL3-SA [0x%lx] detect = 0x%x\n", port, tmp);
243 return -ENODEV;
244 }
245 switch (tmp & 0x07) {
246 case 0x01:
247 chip->version = 2; /* YMF711 */
248 break;
249 default:
250 chip->version = 3;
251 /* 0x02 - standard */
252 /* 0x03 - YM715B */
253 /* 0x04 - YM719 - OPL-SA4? */
254 /* 0x05 - OPL3-SA3 - Libretto 100 */
Paul Vojtae2340462007-07-27 12:20:38 +0200255 /* 0x07 - unknown - Neomagic MagicWave 3D */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 break;
257 }
258 str[0] = chip->version + '0';
259 str[1] = 0;
260 strcat(card->shortname, str);
261 snd_opl3sa2_write(chip, OPL3SA2_MISC, tmp ^ 7);
262 if ((tmp1 = snd_opl3sa2_read(chip, OPL3SA2_MISC)) != tmp) {
263 snd_printd("OPL3-SA [0x%lx] detect (1) = 0x%x (0x%x)\n", port, tmp, tmp1);
264 return -ENODEV;
265 }
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400266 /* try if the MIC register is accessible */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 tmp = snd_opl3sa2_read(chip, OPL3SA2_MIC);
268 snd_opl3sa2_write(chip, OPL3SA2_MIC, 0x8a);
269 if (((tmp1 = snd_opl3sa2_read(chip, OPL3SA2_MIC)) & 0x9f) != 0x8a) {
270 snd_printd("OPL3-SA [0x%lx] detect (2) = 0x%x (0x%x)\n", port, tmp, tmp1);
271 return -ENODEV;
272 }
273 snd_opl3sa2_write(chip, OPL3SA2_MIC, 0x9f);
274 /* initialization */
275 /* Power Management - full on */
276 snd_opl3sa2_write(chip, OPL3SA2_PM_CTRL, OPL3SA2_PM_D0);
277 if (chip->version > 2) {
278 /* ymode is bits 4&5 (of 0 to 7) on all but opl3sa2 versions */
279 snd_opl3sa2_write(chip, OPL3SA2_SYS_CTRL, (chip->ymode << 4));
280 } else {
281 /* default for opl3sa2 versions */
282 snd_opl3sa2_write(chip, OPL3SA2_SYS_CTRL, 0x00);
283 }
284 snd_opl3sa2_write(chip, OPL3SA2_IRQ_CONFIG, 0x0d); /* Interrupt Channel Configuration - IRQ A = OPL3 + MPU + WSS */
285 if (chip->single_dma) {
286 snd_opl3sa2_write(chip, OPL3SA2_DMA_CONFIG, 0x03); /* DMA Configuration - DMA A = WSS-R + WSS-P */
287 } else {
288 snd_opl3sa2_write(chip, OPL3SA2_DMA_CONFIG, 0x21); /* DMA Configuration - DMA B = WSS-R, DMA A = WSS-P */
289 }
290 snd_opl3sa2_write(chip, OPL3SA2_MISC, 0x80 | (tmp & 7)); /* Miscellaneous - default */
291 if (chip->version > 2) {
292 snd_opl3sa2_write(chip, OPL3SA3_DGTL_DOWN, 0x00); /* Digital Block Partial Power Down - default */
293 snd_opl3sa2_write(chip, OPL3SA3_ANLG_DOWN, 0x00); /* Analog Block Partial Power Down - default */
294 }
295 return 0;
296}
297
David Howells7d12e782006-10-05 14:55:46 +0100298static irqreturn_t snd_opl3sa2_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 unsigned short status;
Krzysztof Helt503c10d2008-08-17 20:01:14 +0200301 struct snd_card *card = dev_id;
302 struct snd_opl3sa2 *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 int handled = 0;
304
Krzysztof Heltf87426e2008-08-19 21:51:49 +0200305 if (card == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return IRQ_NONE;
307
Krzysztof Helt503c10d2008-08-17 20:01:14 +0200308 chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 status = snd_opl3sa2_read(chip, OPL3SA2_IRQ_STATUS);
310
311 if (status & 0x20) {
312 handled = 1;
313 snd_opl3_interrupt(chip->synth);
314 }
315
316 if ((status & 0x10) && chip->rmidi != NULL) {
317 handled = 1;
David Howells7d12e782006-10-05 14:55:46 +0100318 snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
321 if (status & 0x07) { /* TI,CI,PI */
322 handled = 1;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200323 snd_wss_interrupt(irq, chip->wss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325
326 if (status & 0x40) { /* hardware volume change */
327 handled = 1;
328 /* reading from Master Lch register at 0x07 clears this bit */
329 snd_opl3sa2_read(chip, OPL3SA2_MASTER_RIGHT);
330 snd_opl3sa2_read(chip, OPL3SA2_MASTER_LEFT);
331 if (chip->master_switch && chip->master_volume) {
Krzysztof Helt503c10d2008-08-17 20:01:14 +0200332 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
333 &chip->master_switch->id);
334 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
335 &chip->master_volume->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337 }
338 return IRQ_RETVAL(handled);
339}
340
341#define OPL3SA2_SINGLE(xname, xindex, reg, shift, mask, invert) \
342{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
Krzysztof Heltf87426e2008-08-19 21:51:49 +0200343 .info = snd_wss_info_single, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 .get = snd_opl3sa2_get_single, .put = snd_opl3sa2_put_single, \
345 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
Takashi Iwaia1c7a7d2006-08-22 13:16:39 +0200346#define OPL3SA2_SINGLE_TLV(xname, xindex, reg, shift, mask, invert, xtlv) \
347{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
348 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
349 .name = xname, .index = xindex, \
Krzysztof Heltf87426e2008-08-19 21:51:49 +0200350 .info = snd_wss_info_single, \
Takashi Iwaia1c7a7d2006-08-22 13:16:39 +0200351 .get = snd_opl3sa2_get_single, .put = snd_opl3sa2_put_single, \
352 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24), \
353 .tlv = { .p = (xtlv) } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100355static int snd_opl3sa2_get_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100357 struct snd_opl3sa2 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 unsigned long flags;
359 int reg = kcontrol->private_value & 0xff;
360 int shift = (kcontrol->private_value >> 8) & 0xff;
361 int mask = (kcontrol->private_value >> 16) & 0xff;
362 int invert = (kcontrol->private_value >> 24) & 0xff;
363
364 spin_lock_irqsave(&chip->reg_lock, flags);
365 ucontrol->value.integer.value[0] = (chip->ctlregs[reg] >> shift) & mask;
366 spin_unlock_irqrestore(&chip->reg_lock, flags);
367 if (invert)
368 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
369 return 0;
370}
371
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100372static int snd_opl3sa2_put_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100374 struct snd_opl3sa2 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 unsigned long flags;
376 int reg = kcontrol->private_value & 0xff;
377 int shift = (kcontrol->private_value >> 8) & 0xff;
378 int mask = (kcontrol->private_value >> 16) & 0xff;
379 int invert = (kcontrol->private_value >> 24) & 0xff;
380 int change;
381 unsigned short val, oval;
382
383 val = (ucontrol->value.integer.value[0] & mask);
384 if (invert)
385 val = mask - val;
386 val <<= shift;
387 spin_lock_irqsave(&chip->reg_lock, flags);
388 oval = chip->ctlregs[reg];
389 val = (oval & ~(mask << shift)) | val;
390 change = val != oval;
391 __snd_opl3sa2_write(chip, reg, val);
392 spin_unlock_irqrestore(&chip->reg_lock, flags);
393 return change;
394}
395
396#define OPL3SA2_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
397{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
Krzysztof Heltf87426e2008-08-19 21:51:49 +0200398 .info = snd_wss_info_double, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 .get = snd_opl3sa2_get_double, .put = snd_opl3sa2_put_double, \
400 .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) }
Takashi Iwaia1c7a7d2006-08-22 13:16:39 +0200401#define OPL3SA2_DOUBLE_TLV(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert, xtlv) \
402{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
403 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
404 .name = xname, .index = xindex, \
Krzysztof Heltf87426e2008-08-19 21:51:49 +0200405 .info = snd_wss_info_double, \
Takashi Iwaia1c7a7d2006-08-22 13:16:39 +0200406 .get = snd_opl3sa2_get_double, .put = snd_opl3sa2_put_double, \
407 .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22), \
408 .tlv = { .p = (xtlv) } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100410static int snd_opl3sa2_get_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100412 struct snd_opl3sa2 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 unsigned long flags;
414 int left_reg = kcontrol->private_value & 0xff;
415 int right_reg = (kcontrol->private_value >> 8) & 0xff;
416 int shift_left = (kcontrol->private_value >> 16) & 0x07;
417 int shift_right = (kcontrol->private_value >> 19) & 0x07;
418 int mask = (kcontrol->private_value >> 24) & 0xff;
419 int invert = (kcontrol->private_value >> 22) & 1;
420
421 spin_lock_irqsave(&chip->reg_lock, flags);
422 ucontrol->value.integer.value[0] = (chip->ctlregs[left_reg] >> shift_left) & mask;
423 ucontrol->value.integer.value[1] = (chip->ctlregs[right_reg] >> shift_right) & mask;
424 spin_unlock_irqrestore(&chip->reg_lock, flags);
425 if (invert) {
426 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
427 ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1];
428 }
429 return 0;
430}
431
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100432static int snd_opl3sa2_put_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100434 struct snd_opl3sa2 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 unsigned long flags;
436 int left_reg = kcontrol->private_value & 0xff;
437 int right_reg = (kcontrol->private_value >> 8) & 0xff;
438 int shift_left = (kcontrol->private_value >> 16) & 0x07;
439 int shift_right = (kcontrol->private_value >> 19) & 0x07;
440 int mask = (kcontrol->private_value >> 24) & 0xff;
441 int invert = (kcontrol->private_value >> 22) & 1;
442 int change;
443 unsigned short val1, val2, oval1, oval2;
444
445 val1 = ucontrol->value.integer.value[0] & mask;
446 val2 = ucontrol->value.integer.value[1] & mask;
447 if (invert) {
448 val1 = mask - val1;
449 val2 = mask - val2;
450 }
451 val1 <<= shift_left;
452 val2 <<= shift_right;
453 spin_lock_irqsave(&chip->reg_lock, flags);
454 if (left_reg != right_reg) {
455 oval1 = chip->ctlregs[left_reg];
456 oval2 = chip->ctlregs[right_reg];
457 val1 = (oval1 & ~(mask << shift_left)) | val1;
458 val2 = (oval2 & ~(mask << shift_right)) | val2;
459 change = val1 != oval1 || val2 != oval2;
460 __snd_opl3sa2_write(chip, left_reg, val1);
461 __snd_opl3sa2_write(chip, right_reg, val2);
462 } else {
463 oval1 = chip->ctlregs[left_reg];
464 val1 = (oval1 & ~((mask << shift_left) | (mask << shift_right))) | val1 | val2;
465 change = val1 != oval1;
466 __snd_opl3sa2_write(chip, left_reg, val1);
467 }
468 spin_unlock_irqrestore(&chip->reg_lock, flags);
469 return change;
470}
471
Takashi Iwai0cb29ea2007-01-29 15:33:49 +0100472static const DECLARE_TLV_DB_SCALE(db_scale_master, -3000, 200, 0);
473static const DECLARE_TLV_DB_SCALE(db_scale_5bit_12db_max, -3450, 150, 0);
Takashi Iwaia1c7a7d2006-08-22 13:16:39 +0200474
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100475static struct snd_kcontrol_new snd_opl3sa2_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476OPL3SA2_DOUBLE("Master Playback Switch", 0, 0x07, 0x08, 7, 7, 1, 1),
Takashi Iwaia1c7a7d2006-08-22 13:16:39 +0200477OPL3SA2_DOUBLE_TLV("Master Playback Volume", 0, 0x07, 0x08, 0, 0, 15, 1,
478 db_scale_master),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479OPL3SA2_SINGLE("Mic Playback Switch", 0, 0x09, 7, 1, 1),
Takashi Iwaia1c7a7d2006-08-22 13:16:39 +0200480OPL3SA2_SINGLE_TLV("Mic Playback Volume", 0, 0x09, 0, 31, 1,
481 db_scale_5bit_12db_max),
Krzysztof Helt1661c612009-03-24 22:37:14 +0100482OPL3SA2_SINGLE("ZV Port Switch", 0, 0x02, 0, 1, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483};
484
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100485static struct snd_kcontrol_new snd_opl3sa2_tone_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486OPL3SA2_DOUBLE("3D Control - Wide", 0, 0x14, 0x14, 4, 0, 7, 0),
487OPL3SA2_DOUBLE("Tone Control - Bass", 0, 0x15, 0x15, 4, 0, 7, 0),
488OPL3SA2_DOUBLE("Tone Control - Treble", 0, 0x16, 0x16, 4, 0, 7, 0)
489};
490
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100491static void snd_opl3sa2_master_free(struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100493 struct snd_opl3sa2 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 chip->master_switch = NULL;
495 chip->master_volume = NULL;
496}
497
Bill Pemberton1bff2922012-12-06 12:35:21 -0500498static int snd_opl3sa2_mixer(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Krzysztof Helt503c10d2008-08-17 20:01:14 +0200500 struct snd_opl3sa2 *chip = card->private_data;
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100501 struct snd_ctl_elem_id id1, id2;
502 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 unsigned int idx;
504 int err;
505
506 memset(&id1, 0, sizeof(id1));
507 memset(&id2, 0, sizeof(id2));
508 id1.iface = id2.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
509 /* reassign AUX0 to CD */
510 strcpy(id1.name, "Aux Playback Switch");
511 strcpy(id2.name, "CD Playback Switch");
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100512 if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0) {
513 snd_printk(KERN_ERR "Cannot rename opl3sa2 control\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return err;
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 strcpy(id1.name, "Aux Playback Volume");
517 strcpy(id2.name, "CD Playback Volume");
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100518 if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0) {
519 snd_printk(KERN_ERR "Cannot rename opl3sa2 control\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return err;
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* reassign AUX1 to FM */
523 strcpy(id1.name, "Aux Playback Switch"); id1.index = 1;
524 strcpy(id2.name, "FM Playback Switch");
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100525 if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0) {
526 snd_printk(KERN_ERR "Cannot rename opl3sa2 control\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return err;
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 strcpy(id1.name, "Aux Playback Volume");
530 strcpy(id2.name, "FM Playback Volume");
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100531 if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0) {
532 snd_printk(KERN_ERR "Cannot rename opl3sa2 control\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return err;
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /* add OPL3SA2 controls */
536 for (idx = 0; idx < ARRAY_SIZE(snd_opl3sa2_controls); idx++) {
537 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_opl3sa2_controls[idx], chip))) < 0)
538 return err;
539 switch (idx) {
540 case 0: chip->master_switch = kctl; kctl->private_free = snd_opl3sa2_master_free; break;
541 case 1: chip->master_volume = kctl; kctl->private_free = snd_opl3sa2_master_free; break;
542 }
543 }
544 if (chip->version > 2) {
545 for (idx = 0; idx < ARRAY_SIZE(snd_opl3sa2_tone_controls); idx++)
546 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_opl3sa2_tone_controls[idx], chip))) < 0)
547 return err;
548 }
549 return 0;
550}
551
552/* Power Management support functions */
553#ifdef CONFIG_PM
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100554static int snd_opl3sa2_suspend(struct snd_card *card, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Krzysztof Heltdde332b2009-03-16 21:32:25 +0100556 if (card) {
557 struct snd_opl3sa2 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Krzysztof Heltdde332b2009-03-16 21:32:25 +0100559 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
560 chip->wss->suspend(chip->wss);
561 /* power down */
562 snd_opl3sa2_write(chip, OPL3SA2_PM_CTRL, OPL3SA2_PM_D3);
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 return 0;
566}
567
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100568static int snd_opl3sa2_resume(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Krzysztof Heltdde332b2009-03-16 21:32:25 +0100570 struct snd_opl3sa2 *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 int i;
572
Krzysztof Heltdde332b2009-03-16 21:32:25 +0100573 if (!card)
574 return 0;
575
576 chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* power up */
578 snd_opl3sa2_write(chip, OPL3SA2_PM_CTRL, OPL3SA2_PM_D0);
579
580 /* restore registers */
581 for (i = 2; i <= 0x0a; i++) {
582 if (i != OPL3SA2_IRQ_STATUS)
583 snd_opl3sa2_write(chip, i, chip->ctlregs[i]);
584 }
585 if (chip->version > 2) {
586 for (i = 0x12; i <= 0x16; i++)
587 snd_opl3sa2_write(chip, i, chip->ctlregs[i]);
588 }
Krzysztof Helt7779f752008-07-31 21:03:41 +0200589 /* restore wss */
590 chip->wss->resume(chip->wss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Takashi Iwai704e0522005-11-17 17:11:53 +0100592 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
594}
595#endif /* CONFIG_PM */
596
597#ifdef CONFIG_PNP
Bill Pemberton1bff2922012-12-06 12:35:21 -0500598static int snd_opl3sa2_pnp(int dev, struct snd_opl3sa2 *chip,
599 struct pnp_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Rene Herman109c53f842007-11-30 17:59:25 +0100601 if (pnp_activate_dev(pdev) < 0) {
602 snd_printk(KERN_ERR "PnP configure failure (out of resources?)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return -EBUSY;
604 }
605 sb_port[dev] = pnp_port_start(pdev, 0);
606 wss_port[dev] = pnp_port_start(pdev, 1);
607 fm_port[dev] = pnp_port_start(pdev, 2);
608 midi_port[dev] = pnp_port_start(pdev, 3);
609 port[dev] = pnp_port_start(pdev, 4);
610 dma1[dev] = pnp_dma(pdev, 0);
611 dma2[dev] = pnp_dma(pdev, 1);
612 irq[dev] = pnp_irq(pdev, 0);
Jaroslav Kysela12655092005-08-12 17:24:24 +0200613 snd_printdd("%sPnP OPL3-SA: sb port=0x%lx, wss port=0x%lx, fm port=0x%lx, midi port=0x%lx\n",
614 pnp_device_is_pnpbios(pdev) ? "BIOS" : "ISA", sb_port[dev], wss_port[dev], fm_port[dev], midi_port[dev]);
615 snd_printdd("%sPnP OPL3-SA: control port=0x%lx, dma1=%i, dma2=%i, irq=%i\n",
616 pnp_device_is_pnpbios(pdev) ? "BIOS" : "ISA", port[dev], dma1[dev], dma2[dev], irq[dev]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return 0;
618}
619#endif /* CONFIG_PNP */
620
Takashi Iwai704e0522005-11-17 17:11:53 +0100621static void snd_opl3sa2_free(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Takashi Iwai704e0522005-11-17 17:11:53 +0100623 struct snd_opl3sa2 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (chip->irq >= 0)
Krzysztof Helt1713c0d2009-02-27 21:41:40 +0100625 free_irq(chip->irq, card);
Takashi Iwaib1d57762005-10-10 11:56:31 +0200626 release_and_free_resource(chip->res_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Takashi Iwai4323cc42014-01-29 13:03:56 +0100629static int snd_opl3sa2_card_new(struct device *pdev, int dev,
630 struct snd_card **cardp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Takashi Iwai704e0522005-11-17 17:11:53 +0100632 struct snd_card *card;
633 struct snd_opl3sa2 *chip;
Takashi Iwaic95eadd2008-12-28 16:43:35 +0100634 int err;
Takashi Iwai704e0522005-11-17 17:11:53 +0100635
Takashi Iwai4323cc42014-01-29 13:03:56 +0100636 err = snd_card_new(pdev, index[dev], id[dev], THIS_MODULE,
637 sizeof(struct snd_opl3sa2), &card);
Takashi Iwaic95eadd2008-12-28 16:43:35 +0100638 if (err < 0)
639 return err;
Takashi Iwai704e0522005-11-17 17:11:53 +0100640 strcpy(card->driver, "OPL3SA2");
Krzysztof Helt1713c0d2009-02-27 21:41:40 +0100641 strcpy(card->shortname, "Yamaha OPL3-SA");
Takashi Iwai704e0522005-11-17 17:11:53 +0100642 chip = card->private_data;
643 spin_lock_init(&chip->reg_lock);
644 chip->irq = -1;
Takashi Iwai704e0522005-11-17 17:11:53 +0100645 card->private_free = snd_opl3sa2_free;
Takashi Iwaic95eadd2008-12-28 16:43:35 +0100646 *cardp = card;
647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
Bill Pemberton1bff2922012-12-06 12:35:21 -0500650static int snd_opl3sa2_probe(struct snd_card *card, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 int xirq, xdma1, xdma2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct snd_opl3sa2 *chip;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200654 struct snd_wss *wss;
Takashi Iwaiec6c5ae2005-11-17 14:41:45 +0100655 struct snd_opl3 *opl3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 int err;
657
Takashi Iwai704e0522005-11-17 17:11:53 +0100658 /* initialise this card from supplied (or default) parameter*/
659 chip = card->private_data;
660 chip->ymode = opl3sa3_ymode[dev] & 0x03 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 chip->port = port[dev];
662 xirq = irq[dev];
663 xdma1 = dma1[dev];
664 xdma2 = dma2[dev];
665 if (xdma2 < 0)
666 chip->single_dma = 1;
Krzysztof Helt503c10d2008-08-17 20:01:14 +0200667 err = snd_opl3sa2_detect(card);
668 if (err < 0)
Takashi Iwai704e0522005-11-17 17:11:53 +0100669 return err;
Yong Zhang88e24c32011-09-22 16:59:20 +0800670 err = request_irq(xirq, snd_opl3sa2_interrupt, 0,
Krzysztof Helt503c10d2008-08-17 20:01:14 +0200671 "OPL3-SA2", card);
672 if (err) {
Takashi Iwai43bcd972005-09-05 17:19:20 +0200673 snd_printk(KERN_ERR PFX "can't grab IRQ %d\n", xirq);
Takashi Iwai704e0522005-11-17 17:11:53 +0100674 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676 chip->irq = xirq;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200677 err = snd_wss_create(card,
678 wss_port[dev] + 4, -1,
679 xirq, xdma1, xdma2,
680 WSS_HW_OPL3SA2, WSS_HWSHARE_IRQ, &wss);
681 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 snd_printd("Oops, WSS not detected at 0x%lx\n", wss_port[dev] + 4);
Takashi Iwai704e0522005-11-17 17:11:53 +0100683 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
Krzysztof Helt7779f752008-07-31 21:03:41 +0200685 chip->wss = wss;
Lars-Peter Clausenfa60c062015-01-02 12:24:43 +0100686 err = snd_wss_pcm(wss, 0);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200687 if (err < 0)
Takashi Iwai704e0522005-11-17 17:11:53 +0100688 return err;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200689 err = snd_wss_mixer(wss);
690 if (err < 0)
Takashi Iwai704e0522005-11-17 17:11:53 +0100691 return err;
Krzysztof Helt503c10d2008-08-17 20:01:14 +0200692 err = snd_opl3sa2_mixer(card);
693 if (err < 0)
Takashi Iwai704e0522005-11-17 17:11:53 +0100694 return err;
Lars-Peter Clausenfa60c062015-01-02 12:24:43 +0100695 err = snd_wss_timer(wss, 0);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200696 if (err < 0)
Takashi Iwai704e0522005-11-17 17:11:53 +0100697 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (fm_port[dev] >= 0x340 && fm_port[dev] < 0x400) {
699 if ((err = snd_opl3_create(card, fm_port[dev],
700 fm_port[dev] + 2,
701 OPL3_HW_OPL3, 0, &opl3)) < 0)
Takashi Iwai704e0522005-11-17 17:11:53 +0100702 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if ((err = snd_opl3_timer_new(opl3, 1, 2)) < 0)
Takashi Iwai704e0522005-11-17 17:11:53 +0100704 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if ((err = snd_opl3_hwdep_new(opl3, 0, 1, &chip->synth)) < 0)
Takashi Iwai704e0522005-11-17 17:11:53 +0100706 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708 if (midi_port[dev] >= 0x300 && midi_port[dev] < 0x340) {
709 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_OPL3SA2,
Clemens Ladischdba8b462011-09-13 11:24:41 +0200710 midi_port[dev],
711 MPU401_INFO_IRQ_HOOK, -1,
712 &chip->rmidi)) < 0)
Takashi Iwai704e0522005-11-17 17:11:53 +0100713 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d",
716 card->shortname, chip->port, xirq, xdma1);
Alexey Dobriyan1d797162006-01-25 14:30:44 +0100717 if (xdma2 >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 sprintf(card->longname + strlen(card->longname), "&%d", xdma2);
719
Takashi Iwai704e0522005-11-17 17:11:53 +0100720 return snd_card_register(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
723#ifdef CONFIG_PNP
Bill Pemberton1bff2922012-12-06 12:35:21 -0500724static int snd_opl3sa2_pnp_detect(struct pnp_dev *pdev,
725 const struct pnp_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Takashi Iwai704e0522005-11-17 17:11:53 +0100727 static int dev;
728 int err;
729 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Takashi Iwai704e0522005-11-17 17:11:53 +0100731 if (pnp_device_is_isapnp(pdev))
732 return -ENOENT; /* we have another procedure - card */
733 for (; dev < SNDRV_CARDS; dev++) {
734 if (enable[dev] && isapnp[dev])
735 break;
736 }
737 if (dev >= SNDRV_CARDS)
738 return -ENODEV;
739
Takashi Iwai4323cc42014-01-29 13:03:56 +0100740 err = snd_opl3sa2_card_new(&pdev->dev, dev, &card);
Takashi Iwaic95eadd2008-12-28 16:43:35 +0100741 if (err < 0)
742 return err;
Takashi Iwai704e0522005-11-17 17:11:53 +0100743 if ((err = snd_opl3sa2_pnp(dev, card->private_data, pdev)) < 0) {
744 snd_card_free(card);
745 return err;
746 }
Takashi Iwai704e0522005-11-17 17:11:53 +0100747 if ((err = snd_opl3sa2_probe(card, dev)) < 0) {
748 snd_card_free(card);
749 return err;
750 }
751 pnp_set_drvdata(pdev, card);
752 dev++;
753 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Bill Pemberton1bff2922012-12-06 12:35:21 -0500756static void snd_opl3sa2_pnp_remove(struct pnp_dev *pdev)
Jaroslav Kysela12655092005-08-12 17:24:24 +0200757{
Takashi Iwai704e0522005-11-17 17:11:53 +0100758 snd_card_free(pnp_get_drvdata(pdev));
Jaroslav Kysela12655092005-08-12 17:24:24 +0200759}
760
Takashi Iwai704e0522005-11-17 17:11:53 +0100761#ifdef CONFIG_PM
762static int snd_opl3sa2_pnp_suspend(struct pnp_dev *pdev, pm_message_t state)
763{
764 return snd_opl3sa2_suspend(pnp_get_drvdata(pdev), state);
765}
766static int snd_opl3sa2_pnp_resume(struct pnp_dev *pdev)
767{
768 return snd_opl3sa2_resume(pnp_get_drvdata(pdev));
769}
770#endif
771
Jaroslav Kysela12655092005-08-12 17:24:24 +0200772static struct pnp_driver opl3sa2_pnp_driver = {
Takashi Iwai62af9902006-01-20 14:03:06 +0100773 .name = "snd-opl3sa2-pnpbios",
Jaroslav Kysela12655092005-08-12 17:24:24 +0200774 .id_table = snd_opl3sa2_pnpbiosids,
775 .probe = snd_opl3sa2_pnp_detect,
Bill Pemberton1bff2922012-12-06 12:35:21 -0500776 .remove = snd_opl3sa2_pnp_remove,
Takashi Iwai704e0522005-11-17 17:11:53 +0100777#ifdef CONFIG_PM
778 .suspend = snd_opl3sa2_pnp_suspend,
779 .resume = snd_opl3sa2_pnp_resume,
780#endif
Jaroslav Kysela12655092005-08-12 17:24:24 +0200781};
782
Bill Pemberton1bff2922012-12-06 12:35:21 -0500783static int snd_opl3sa2_pnp_cdetect(struct pnp_card_link *pcard,
784 const struct pnp_card_device_id *id)
Jaroslav Kysela12655092005-08-12 17:24:24 +0200785{
Takashi Iwai704e0522005-11-17 17:11:53 +0100786 static int dev;
787 struct pnp_dev *pdev;
788 int err;
789 struct snd_card *card;
Jaroslav Kysela12655092005-08-12 17:24:24 +0200790
Takashi Iwai704e0522005-11-17 17:11:53 +0100791 pdev = pnp_request_card_device(pcard, id->devs[0].id, NULL);
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100792 if (pdev == NULL) {
793 snd_printk(KERN_ERR PFX "can't get pnp device from id '%s'\n",
794 id->devs[0].id);
Takashi Iwai704e0522005-11-17 17:11:53 +0100795 return -EBUSY;
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100796 }
Takashi Iwai704e0522005-11-17 17:11:53 +0100797 for (; dev < SNDRV_CARDS; dev++) {
798 if (enable[dev] && isapnp[dev])
799 break;
800 }
801 if (dev >= SNDRV_CARDS)
802 return -ENODEV;
803
Takashi Iwai4323cc42014-01-29 13:03:56 +0100804 err = snd_opl3sa2_card_new(&pdev->dev, dev, &card);
Takashi Iwaic95eadd2008-12-28 16:43:35 +0100805 if (err < 0)
806 return err;
Takashi Iwai704e0522005-11-17 17:11:53 +0100807 if ((err = snd_opl3sa2_pnp(dev, card->private_data, pdev)) < 0) {
808 snd_card_free(card);
809 return err;
810 }
Takashi Iwai704e0522005-11-17 17:11:53 +0100811 if ((err = snd_opl3sa2_probe(card, dev)) < 0) {
812 snd_card_free(card);
813 return err;
814 }
815 pnp_set_card_drvdata(pcard, card);
816 dev++;
817 return 0;
Jaroslav Kysela12655092005-08-12 17:24:24 +0200818}
819
Bill Pemberton1bff2922012-12-06 12:35:21 -0500820static void snd_opl3sa2_pnp_cremove(struct pnp_card_link *pcard)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Takashi Iwai704e0522005-11-17 17:11:53 +0100822 snd_card_free(pnp_get_card_drvdata(pcard));
823 pnp_set_card_drvdata(pcard, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Takashi Iwai704e0522005-11-17 17:11:53 +0100826#ifdef CONFIG_PM
827static int snd_opl3sa2_pnp_csuspend(struct pnp_card_link *pcard, pm_message_t state)
828{
829 return snd_opl3sa2_suspend(pnp_get_card_drvdata(pcard), state);
830}
831static int snd_opl3sa2_pnp_cresume(struct pnp_card_link *pcard)
832{
833 return snd_opl3sa2_resume(pnp_get_card_drvdata(pcard));
834}
835#endif
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837static struct pnp_card_driver opl3sa2_pnpc_driver = {
838 .flags = PNP_DRIVER_RES_DISABLE,
Takashi Iwai62af9902006-01-20 14:03:06 +0100839 .name = "snd-opl3sa2-cpnp",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 .id_table = snd_opl3sa2_pnpids,
Jaroslav Kysela12655092005-08-12 17:24:24 +0200841 .probe = snd_opl3sa2_pnp_cdetect,
Bill Pemberton1bff2922012-12-06 12:35:21 -0500842 .remove = snd_opl3sa2_pnp_cremove,
Takashi Iwai704e0522005-11-17 17:11:53 +0100843#ifdef CONFIG_PM
844 .suspend = snd_opl3sa2_pnp_csuspend,
845 .resume = snd_opl3sa2_pnp_cresume,
846#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847};
848#endif /* CONFIG_PNP */
849
Bill Pemberton1bff2922012-12-06 12:35:21 -0500850static int snd_opl3sa2_isa_match(struct device *pdev,
851 unsigned int dev)
Takashi Iwai704e0522005-11-17 17:11:53 +0100852{
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100853 if (!enable[dev])
854 return 0;
855#ifdef CONFIG_PNP
856 if (isapnp[dev])
857 return 0;
858#endif
Takashi Iwai704e0522005-11-17 17:11:53 +0100859 if (port[dev] == SNDRV_AUTO_PORT) {
860 snd_printk(KERN_ERR PFX "specify port\n");
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100861 return 0;
Takashi Iwai704e0522005-11-17 17:11:53 +0100862 }
863 if (wss_port[dev] == SNDRV_AUTO_PORT) {
864 snd_printk(KERN_ERR PFX "specify wss_port\n");
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100865 return 0;
Takashi Iwai704e0522005-11-17 17:11:53 +0100866 }
867 if (fm_port[dev] == SNDRV_AUTO_PORT) {
868 snd_printk(KERN_ERR PFX "specify fm_port\n");
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100869 return 0;
Takashi Iwai704e0522005-11-17 17:11:53 +0100870 }
871 if (midi_port[dev] == SNDRV_AUTO_PORT) {
872 snd_printk(KERN_ERR PFX "specify midi_port\n");
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100873 return 0;
Takashi Iwai704e0522005-11-17 17:11:53 +0100874 }
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100875 return 1;
876}
877
Bill Pemberton1bff2922012-12-06 12:35:21 -0500878static int snd_opl3sa2_isa_probe(struct device *pdev,
879 unsigned int dev)
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100880{
881 struct snd_card *card;
882 int err;
Takashi Iwai704e0522005-11-17 17:11:53 +0100883
Takashi Iwai4323cc42014-01-29 13:03:56 +0100884 err = snd_opl3sa2_card_new(pdev, dev, &card);
Takashi Iwaic95eadd2008-12-28 16:43:35 +0100885 if (err < 0)
886 return err;
Takashi Iwai704e0522005-11-17 17:11:53 +0100887 if ((err = snd_opl3sa2_probe(card, dev)) < 0) {
888 snd_card_free(card);
889 return err;
890 }
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100891 dev_set_drvdata(pdev, card);
Takashi Iwai704e0522005-11-17 17:11:53 +0100892 return 0;
893}
894
Bill Pemberton1bff2922012-12-06 12:35:21 -0500895static int snd_opl3sa2_isa_remove(struct device *devptr,
896 unsigned int dev)
Takashi Iwai704e0522005-11-17 17:11:53 +0100897{
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100898 snd_card_free(dev_get_drvdata(devptr));
Takashi Iwai704e0522005-11-17 17:11:53 +0100899 return 0;
900}
901
902#ifdef CONFIG_PM
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100903static int snd_opl3sa2_isa_suspend(struct device *dev, unsigned int n,
904 pm_message_t state)
Takashi Iwai704e0522005-11-17 17:11:53 +0100905{
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100906 return snd_opl3sa2_suspend(dev_get_drvdata(dev), state);
Takashi Iwai704e0522005-11-17 17:11:53 +0100907}
908
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100909static int snd_opl3sa2_isa_resume(struct device *dev, unsigned int n)
Takashi Iwai704e0522005-11-17 17:11:53 +0100910{
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100911 return snd_opl3sa2_resume(dev_get_drvdata(dev));
Takashi Iwai704e0522005-11-17 17:11:53 +0100912}
913#endif
914
Rene Herman83c51c02007-03-20 11:33:46 +0100915#define DEV_NAME "opl3sa2"
Takashi Iwai704e0522005-11-17 17:11:53 +0100916
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100917static struct isa_driver snd_opl3sa2_isa_driver = {
918 .match = snd_opl3sa2_isa_match,
919 .probe = snd_opl3sa2_isa_probe,
Bill Pemberton1bff2922012-12-06 12:35:21 -0500920 .remove = snd_opl3sa2_isa_remove,
Takashi Iwai704e0522005-11-17 17:11:53 +0100921#ifdef CONFIG_PM
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100922 .suspend = snd_opl3sa2_isa_suspend,
923 .resume = snd_opl3sa2_isa_resume,
Takashi Iwai704e0522005-11-17 17:11:53 +0100924#endif
925 .driver = {
Rene Herman83c51c02007-03-20 11:33:46 +0100926 .name = DEV_NAME
Takashi Iwai704e0522005-11-17 17:11:53 +0100927 },
928};
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930static int __init alsa_card_opl3sa2_init(void)
931{
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100932 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100934 err = isa_register_driver(&snd_opl3sa2_isa_driver, SNDRV_CARDS);
Takashi Iwai59b1b342006-01-04 15:06:44 +0100935#ifdef CONFIG_PNP
Rene Herman609d7692007-05-15 11:42:56 +0200936 if (!err)
937 isa_registered = 1;
938
Takashi Iwai704e0522005-11-17 17:11:53 +0100939 err = pnp_register_driver(&opl3sa2_pnp_driver);
Bjorn Helgaas8c59c4a2006-03-27 01:17:05 -0800940 if (!err)
Clemens Ladischf7a92752005-12-07 09:13:42 +0100941 pnp_registered = 1;
Rene Herman609d7692007-05-15 11:42:56 +0200942
Takashi Iwai704e0522005-11-17 17:11:53 +0100943 err = pnp_register_card_driver(&opl3sa2_pnpc_driver);
Bjorn Helgaas8c59c4a2006-03-27 01:17:05 -0800944 if (!err)
Clemens Ladischf7a92752005-12-07 09:13:42 +0100945 pnpc_registered = 1;
Rene Herman609d7692007-05-15 11:42:56 +0200946
947 if (isa_registered || pnp_registered)
948 err = 0;
Takashi Iwai59b1b342006-01-04 15:06:44 +0100949#endif
Rene Herman609d7692007-05-15 11:42:56 +0200950 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
953static void __exit alsa_card_opl3sa2_exit(void)
954{
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100955#ifdef CONFIG_PNP
956 if (pnpc_registered)
957 pnp_unregister_card_driver(&opl3sa2_pnpc_driver);
958 if (pnp_registered)
959 pnp_unregister_driver(&opl3sa2_pnp_driver);
Rene Herman609d7692007-05-15 11:42:56 +0200960 if (isa_registered)
Takashi Iwai5e24c1c2007-02-22 12:50:54 +0100961#endif
Rene Herman609d7692007-05-15 11:42:56 +0200962 isa_unregister_driver(&snd_opl3sa2_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
965module_init(alsa_card_opl3sa2_init)
966module_exit(alsa_card_opl3sa2_exit)