]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - sound/isa/opti9xx/opti92x-ad1848.c
sound: fix opti92x-ad1848 build
[mirror_ubuntu-artful-kernel.git] / sound / isa / opti9xx / opti92x-ad1848.c
CommitLineData
1da177e4
LT
1/*
2 card-opti92x-ad1848.c - driver for OPTi 82c92x based soundcards.
3 Copyright (C) 1998-2000 by Massimo Piccioni <dafastidio@libero.it>
4
5 Part of this code was developed at the Italian Ministry of Air Defence,
6 Sixth Division (oh, che pace ...), Rome.
7
8 Thanks to Maria Grazia Pollarini, Salvatore Vassallo.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23*/
24
25
1da177e4 26#include <linux/init.h>
99a0b768 27#include <linux/err.h>
5e24c1c1 28#include <linux/isa.h>
99a0b768 29#include <linux/delay.h>
1da177e4
LT
30#include <linux/slab.h>
31#include <linux/pnp.h>
32#include <linux/moduleparam.h>
99a0b768
TI
33#include <asm/io.h>
34#include <asm/dma.h>
1da177e4 35#include <sound/core.h>
b2e8d7da 36#include <sound/tlv.h>
61ef19d7 37#include <sound/wss.h>
1da177e4
LT
38#include <sound/mpu401.h>
39#include <sound/opl3.h>
40#ifndef OPTi93X
41#include <sound/opl4.h>
42#endif
43#define SNDRV_LEGACY_FIND_FREE_IRQ
44#define SNDRV_LEGACY_FIND_FREE_DMA
45#include <sound/initval.h>
46
47MODULE_AUTHOR("Massimo Piccioni <dafastidio@libero.it>");
48MODULE_LICENSE("GPL");
49#ifdef OPTi93X
50MODULE_DESCRIPTION("OPTi93X");
51MODULE_SUPPORTED_DEVICE("{{OPTi,82C931/3}}");
52#else /* OPTi93X */
53#ifdef CS4231
54MODULE_DESCRIPTION("OPTi92X - CS4231");
55MODULE_SUPPORTED_DEVICE("{{OPTi,82C924 (CS4231)},"
56 "{OPTi,82C925 (CS4231)}}");
57#else /* CS4231 */
58MODULE_DESCRIPTION("OPTi92X - AD1848");
59MODULE_SUPPORTED_DEVICE("{{OPTi,82C924 (AD1848)},"
60 "{OPTi,82C925 (AD1848)},"
61 "{OAK,Mozart}}");
62#endif /* CS4231 */
63#endif /* OPTi93X */
64
65static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */
66static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
67//static int enable = SNDRV_DEFAULT_ENABLE1; /* Enable this card */
51f6baad 68#ifdef CONFIG_PNP
1da177e4 69static int isapnp = 1; /* Enable ISA PnP detection */
51f6baad 70#endif
1da177e4
LT
71static long port = SNDRV_DEFAULT_PORT1; /* 0x530,0xe80,0xf40,0x604 */
72static long mpu_port = SNDRV_DEFAULT_PORT1; /* 0x300,0x310,0x320,0x330 */
73static long fm_port = SNDRV_DEFAULT_PORT1; /* 0x388 */
74static int irq = SNDRV_DEFAULT_IRQ1; /* 5,7,9,10,11 */
75static int mpu_irq = SNDRV_DEFAULT_IRQ1; /* 5,7,9,10 */
76static int dma1 = SNDRV_DEFAULT_DMA1; /* 0,1,3 */
77#if defined(CS4231) || defined(OPTi93X)
78static int dma2 = SNDRV_DEFAULT_DMA1; /* 0,1,3 */
79#endif /* CS4231 || OPTi93X */
80
81module_param(index, int, 0444);
82MODULE_PARM_DESC(index, "Index value for opti9xx based soundcard.");
83module_param(id, charp, 0444);
84MODULE_PARM_DESC(id, "ID string for opti9xx based soundcard.");
85//module_param(enable, bool, 0444);
86//MODULE_PARM_DESC(enable, "Enable opti9xx soundcard.");
51f6baad 87#ifdef CONFIG_PNP
1da177e4
LT
88module_param(isapnp, bool, 0444);
89MODULE_PARM_DESC(isapnp, "Enable ISA PnP detection for specified soundcard.");
51f6baad 90#endif
1da177e4
LT
91module_param(port, long, 0444);
92MODULE_PARM_DESC(port, "WSS port # for opti9xx driver.");
93module_param(mpu_port, long, 0444);
94MODULE_PARM_DESC(mpu_port, "MPU-401 port # for opti9xx driver.");
95module_param(fm_port, long, 0444);
96MODULE_PARM_DESC(fm_port, "FM port # for opti9xx driver.");
97module_param(irq, int, 0444);
98MODULE_PARM_DESC(irq, "WSS irq # for opti9xx driver.");
99module_param(mpu_irq, int, 0444);
100MODULE_PARM_DESC(mpu_irq, "MPU-401 irq # for opti9xx driver.");
101module_param(dma1, int, 0444);
102MODULE_PARM_DESC(dma1, "1st dma # for opti9xx driver.");
103#if defined(CS4231) || defined(OPTi93X)
104module_param(dma2, int, 0444);
105MODULE_PARM_DESC(dma2, "2nd dma # for opti9xx driver.");
106#endif /* CS4231 || OPTi93X */
107
1da177e4
LT
108#define OPTi9XX_HW_82C928 1
109#define OPTi9XX_HW_82C929 2
110#define OPTi9XX_HW_82C924 3
111#define OPTi9XX_HW_82C925 4
112#define OPTi9XX_HW_82C930 5
113#define OPTi9XX_HW_82C931 6
114#define OPTi9XX_HW_82C933 7
115#define OPTi9XX_HW_LAST OPTi9XX_HW_82C933
116
117#define OPTi9XX_MC_REG(n) n
118
1da177e4
LT
119#ifdef OPTi93X
120
1da177e4 121#define OPTi93X_STATUS 0x02
1da177e4
LT
122#define OPTi93X_PORT(chip, r) ((chip)->port + OPTi93X_##r)
123
1da177e4
LT
124#define OPTi93X_IRQ_PLAYBACK 0x04
125#define OPTi93X_IRQ_CAPTURE 0x08
126
1da177e4
LT
127#endif /* OPTi93X */
128
346c7a68 129struct snd_opti9xx {
1da177e4
LT
130 unsigned short hardware;
131 unsigned char password;
132 char name[7];
133
134 unsigned long mc_base;
135 struct resource *res_mc_base;
136 unsigned long mc_base_size;
137#ifdef OPTi93X
138 unsigned long mc_indir_index;
e6960e19
KH
139 unsigned long mc_indir_size;
140 struct resource *res_mc_indir;
7779f75f 141 struct snd_wss *codec;
1da177e4
LT
142#endif /* OPTi93X */
143 unsigned long pwd_reg;
144
145 spinlock_t lock;
146
fd8d4735 147 long wss_base;
1da177e4 148 int irq;
1da177e4
LT
149};
150
99a0b768 151static int snd_opti9xx_pnp_is_probed;
1da177e4
LT
152
153#ifdef CONFIG_PNP
154
155static struct pnp_card_device_id snd_opti9xx_pnpids[] = {
156#ifndef OPTi93X
157 /* OPTi 82C924 */
fd8d4735
KH
158 { .id = "OPT0924",
159 .devs = { { "OPT0000" }, { "OPT0002" }, { "OPT0005" } },
160 .driver_data = 0x0924 },
1da177e4 161 /* OPTi 82C925 */
fd8d4735
KH
162 { .id = "OPT0925",
163 .devs = { { "OPT9250" }, { "OPT0002" }, { "OPT0005" } },
164 .driver_data = 0x0925 },
1da177e4
LT
165#else
166 /* OPTi 82C931/3 */
fd8d4735
KH
167 { .id = "OPT0931", .devs = { { "OPT9310" }, { "OPT0002" } },
168 .driver_data = 0x0931 },
1da177e4
LT
169#endif /* OPTi93X */
170 { .id = "" }
171};
172
173MODULE_DEVICE_TABLE(pnp_card, snd_opti9xx_pnpids);
174
175#endif /* CONFIG_PNP */
176
177#ifdef OPTi93X
83c51c0a 178#define DEV_NAME "opti93x"
1da177e4 179#else
83c51c0a
RH
180#define DEV_NAME "opti92x"
181#endif
1da177e4
LT
182
183static char * snd_opti9xx_names[] = {
af901ca1 184 "unknown",
1da177e4
LT
185 "82C928", "82C929",
186 "82C924", "82C925",
187 "82C930", "82C931", "82C933"
188};
189
190
5e24c1c1 191static long __devinit snd_legacy_find_free_ioport(long *port_table, long size)
1da177e4
LT
192{
193 while (*port_table != -1) {
b1d5776d
TI
194 if (request_region(*port_table, size, "ALSA test")) {
195 release_region(*port_table, size);
1da177e4
LT
196 return *port_table;
197 }
198 port_table++;
199 }
200 return -1;
201}
202
5e24c1c1
TI
203static int __devinit snd_opti9xx_init(struct snd_opti9xx *chip,
204 unsigned short hardware)
1da177e4
LT
205{
206 static int opti9xx_mc_size[] = {7, 7, 10, 10, 2, 2, 2};
207
208 chip->hardware = hardware;
209 strcpy(chip->name, snd_opti9xx_names[hardware]);
210
1da177e4
LT
211 spin_lock_init(&chip->lock);
212
1da177e4 213 chip->irq = -1;
1da177e4 214
fd8d4735
KH
215#ifndef OPTi93X
216#ifdef CONFIG_PNP
217 if (isapnp && chip->mc_base)
218 /* PnP resource gives the least 10 bits */
219 chip->mc_base |= 0xc00;
89c0ac7c 220 else
fd8d4735 221#endif /* CONFIG_PNP */
89c0ac7c 222 {
fd8d4735
KH
223 chip->mc_base = 0xf8c;
224 chip->mc_base_size = opti9xx_mc_size[hardware];
225 }
226#else
227 chip->mc_base_size = opti9xx_mc_size[hardware];
228#endif
229
1da177e4
LT
230 switch (hardware) {
231#ifndef OPTi93X
232 case OPTi9XX_HW_82C928:
233 case OPTi9XX_HW_82C929:
1da177e4
LT
234 chip->password = (hardware == OPTi9XX_HW_82C928) ? 0xe2 : 0xe3;
235 chip->pwd_reg = 3;
236 break;
237
238 case OPTi9XX_HW_82C924:
239 case OPTi9XX_HW_82C925:
1da177e4
LT
240 chip->password = 0xe5;
241 chip->pwd_reg = 3;
242 break;
243#else /* OPTi93X */
244
245 case OPTi9XX_HW_82C930:
246 case OPTi9XX_HW_82C931:
247 case OPTi9XX_HW_82C933:
248 chip->mc_base = (hardware == OPTi9XX_HW_82C930) ? 0xf8f : 0xf8d;
e6960e19
KH
249 if (!chip->mc_indir_index) {
250 chip->mc_indir_index = 0xe0e;
251 chip->mc_indir_size = 2;
252 }
1da177e4
LT
253 chip->password = 0xe4;
254 chip->pwd_reg = 0;
255 break;
256#endif /* OPTi93X */
257
258 default:
4c9f1d3e 259 snd_printk(KERN_ERR "chip %d not supported\n", hardware);
1da177e4
LT
260 return -ENODEV;
261 }
262 return 0;
263}
264
346c7a68 265static unsigned char snd_opti9xx_read(struct snd_opti9xx *chip,
1da177e4
LT
266 unsigned char reg)
267{
268 unsigned long flags;
269 unsigned char retval = 0xff;
270
271 spin_lock_irqsave(&chip->lock, flags);
272 outb(chip->password, chip->mc_base + chip->pwd_reg);
273
274 switch (chip->hardware) {
275#ifndef OPTi93X
276 case OPTi9XX_HW_82C924:
277 case OPTi9XX_HW_82C925:
278 if (reg > 7) {
279 outb(reg, chip->mc_base + 8);
280 outb(chip->password, chip->mc_base + chip->pwd_reg);
281 retval = inb(chip->mc_base + 9);
282 break;
283 }
284
285 case OPTi9XX_HW_82C928:
286 case OPTi9XX_HW_82C929:
287 retval = inb(chip->mc_base + reg);
288 break;
289#else /* OPTi93X */
290
291 case OPTi9XX_HW_82C930:
292 case OPTi9XX_HW_82C931:
293 case OPTi9XX_HW_82C933:
294 outb(reg, chip->mc_indir_index);
295 outb(chip->password, chip->mc_base + chip->pwd_reg);
296 retval = inb(chip->mc_indir_index + 1);
297 break;
298#endif /* OPTi93X */
299
300 default:
4c9f1d3e 301 snd_printk(KERN_ERR "chip %d not supported\n", chip->hardware);
1da177e4
LT
302 }
303
304 spin_unlock_irqrestore(&chip->lock, flags);
305 return retval;
306}
fd8d4735 307
346c7a68 308static void snd_opti9xx_write(struct snd_opti9xx *chip, unsigned char reg,
1da177e4
LT
309 unsigned char value)
310{
311 unsigned long flags;
312
313 spin_lock_irqsave(&chip->lock, flags);
314 outb(chip->password, chip->mc_base + chip->pwd_reg);
315
316 switch (chip->hardware) {
317#ifndef OPTi93X
318 case OPTi9XX_HW_82C924:
319 case OPTi9XX_HW_82C925:
320 if (reg > 7) {
321 outb(reg, chip->mc_base + 8);
322 outb(chip->password, chip->mc_base + chip->pwd_reg);
323 outb(value, chip->mc_base + 9);
324 break;
325 }
326
327 case OPTi9XX_HW_82C928:
328 case OPTi9XX_HW_82C929:
329 outb(value, chip->mc_base + reg);
330 break;
331#else /* OPTi93X */
332
333 case OPTi9XX_HW_82C930:
334 case OPTi9XX_HW_82C931:
335 case OPTi9XX_HW_82C933:
336 outb(reg, chip->mc_indir_index);
337 outb(chip->password, chip->mc_base + chip->pwd_reg);
338 outb(value, chip->mc_indir_index + 1);
339 break;
340#endif /* OPTi93X */
341
342 default:
4c9f1d3e 343 snd_printk(KERN_ERR "chip %d not supported\n", chip->hardware);
1da177e4
LT
344 }
345
346 spin_unlock_irqrestore(&chip->lock, flags);
347}
348
349
350#define snd_opti9xx_write_mask(chip, reg, value, mask) \
351 snd_opti9xx_write(chip, reg, \
352 (snd_opti9xx_read(chip, reg) & ~(mask)) | ((value) & (mask)))
353
354
d8ea2393 355static int __devinit snd_opti9xx_configure(struct snd_opti9xx *chip,
fd8d4735 356 long port,
d8ea2393
KH
357 int irq, int dma1, int dma2,
358 long mpu_port, int mpu_irq)
1da177e4
LT
359{
360 unsigned char wss_base_bits;
361 unsigned char irq_bits;
362 unsigned char dma_bits;
363 unsigned char mpu_port_bits = 0;
364 unsigned char mpu_irq_bits;
365
366 switch (chip->hardware) {
367#ifndef OPTi93X
368 case OPTi9XX_HW_82C924:
fd8d4735 369 /* opti 929 mode (?), OPL3 clock output, audio enable */
1da177e4 370 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(4), 0xf0, 0xfc);
fd8d4735 371 /* enable wave audio */
1da177e4
LT
372 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(6), 0x02, 0x02);
373
374 case OPTi9XX_HW_82C925:
fd8d4735 375 /* enable WSS mode */
1da177e4 376 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(1), 0x80, 0x80);
fd8d4735 377 /* OPL3 FM synthesis */
1da177e4 378 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(2), 0x00, 0x20);
fd8d4735 379 /* disable Sound Blaster IRQ and DMA */
1da177e4
LT
380 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(3), 0xf0, 0xff);
381#ifdef CS4231
fd8d4735 382 /* cs4231/4248 fix enabled */
1da177e4
LT
383 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x02, 0x02);
384#else
fd8d4735 385 /* cs4231/4248 fix disabled */
1da177e4
LT
386 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x00, 0x02);
387#endif /* CS4231 */
388 break;
389
390 case OPTi9XX_HW_82C928:
391 case OPTi9XX_HW_82C929:
392 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(1), 0x80, 0x80);
393 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(2), 0x00, 0x20);
394 /*
395 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(3), 0xa2, 0xae);
396 */
397 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(4), 0x00, 0x0c);
398#ifdef CS4231
399 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x02, 0x02);
400#else
401 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x00, 0x02);
402#endif /* CS4231 */
403 break;
404
405#else /* OPTi93X */
1da177e4
LT
406 case OPTi9XX_HW_82C931:
407 case OPTi9XX_HW_82C933:
3ae5f36a 408 /*
f81b953d
KH
409 * The BTC 1817DW has QS1000 wavetable which is connected
410 * to the serial digital input of the OPTI931.
411 */
412 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(21), 0x82, 0xff);
413 /*
414 * This bit sets OPTI931 to automaticaly select FM
415 * or digital input signal.
416 */
417 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(26), 0x01, 0x01);
3ae5f36a
KH
418 case OPTi9XX_HW_82C930: /* FALL THROUGH */
419 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(6), 0x02, 0x03);
420 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(3), 0x00, 0xff);
421 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(4), 0x10 |
422 (chip->hardware == OPTi9XX_HW_82C930 ? 0x00 : 0x04),
423 0x34);
424 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x20, 0xbf);
1da177e4
LT
425 break;
426#endif /* OPTi93X */
427
428 default:
4c9f1d3e 429 snd_printk(KERN_ERR "chip %d not supported\n", chip->hardware);
1da177e4
LT
430 return -EINVAL;
431 }
432
fd8d4735
KH
433 /* PnP resource says it decodes only 10 bits of address */
434 switch (port & 0x3ff) {
435 case 0x130:
436 chip->wss_base = 0x530;
1da177e4
LT
437 wss_base_bits = 0x00;
438 break;
fd8d4735
KH
439 case 0x204:
440 chip->wss_base = 0x604;
1da177e4
LT
441 wss_base_bits = 0x03;
442 break;
fd8d4735
KH
443 case 0x280:
444 chip->wss_base = 0xe80;
1da177e4
LT
445 wss_base_bits = 0x01;
446 break;
fd8d4735
KH
447 case 0x340:
448 chip->wss_base = 0xf40;
1da177e4
LT
449 wss_base_bits = 0x02;
450 break;
451 default:
fd8d4735 452 snd_printk(KERN_WARNING "WSS port 0x%lx not valid\n", port);
1da177e4
LT
453 goto __skip_base;
454 }
455 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(1), wss_base_bits << 4, 0x30);
456
457__skip_base:
d8ea2393 458 switch (irq) {
1da177e4
LT
459//#ifdef OPTi93X
460 case 5:
461 irq_bits = 0x05;
462 break;
463//#endif /* OPTi93X */
464 case 7:
465 irq_bits = 0x01;
466 break;
467 case 9:
468 irq_bits = 0x02;
469 break;
470 case 10:
471 irq_bits = 0x03;
472 break;
473 case 11:
474 irq_bits = 0x04;
475 break;
476 default:
d8ea2393 477 snd_printk(KERN_WARNING "WSS irq # %d not valid\n", irq);
1da177e4
LT
478 goto __skip_resources;
479 }
480
d8ea2393 481 switch (dma1) {
1da177e4
LT
482 case 0:
483 dma_bits = 0x01;
484 break;
485 case 1:
486 dma_bits = 0x02;
487 break;
488 case 3:
489 dma_bits = 0x03;
490 break;
491 default:
d8ea2393 492 snd_printk(KERN_WARNING "WSS dma1 # %d not valid\n", dma1);
1da177e4
LT
493 goto __skip_resources;
494 }
495
496#if defined(CS4231) || defined(OPTi93X)
d8ea2393 497 if (dma1 == dma2) {
4c9f1d3e 498 snd_printk(KERN_ERR "don't want to share dmas\n");
1da177e4
LT
499 return -EBUSY;
500 }
501
d8ea2393 502 switch (dma2) {
1da177e4
LT
503 case 0:
504 case 1:
505 break;
506 default:
d8ea2393 507 snd_printk(KERN_WARNING "WSS dma2 # %d not valid\n", dma2);
1da177e4
LT
508 goto __skip_resources;
509 }
510 dma_bits |= 0x04;
511#endif /* CS4231 || OPTi93X */
512
513#ifndef OPTi93X
fd8d4735 514 outb(irq_bits << 3 | dma_bits, chip->wss_base);
1da177e4
LT
515#else /* OPTi93X */
516 snd_opti9xx_write(chip, OPTi9XX_MC_REG(3), (irq_bits << 3 | dma_bits));
517#endif /* OPTi93X */
518
519__skip_resources:
520 if (chip->hardware > OPTi9XX_HW_82C928) {
d8ea2393 521 switch (mpu_port) {
1da177e4
LT
522 case 0:
523 case -1:
524 break;
525 case 0x300:
526 mpu_port_bits = 0x03;
527 break;
528 case 0x310:
529 mpu_port_bits = 0x02;
530 break;
531 case 0x320:
532 mpu_port_bits = 0x01;
533 break;
534 case 0x330:
535 mpu_port_bits = 0x00;
536 break;
537 default:
4c9f1d3e 538 snd_printk(KERN_WARNING
d8ea2393 539 "MPU-401 port 0x%lx not valid\n", mpu_port);
1da177e4
LT
540 goto __skip_mpu;
541 }
542
d8ea2393 543 switch (mpu_irq) {
1da177e4
LT
544 case 5:
545 mpu_irq_bits = 0x02;
546 break;
547 case 7:
548 mpu_irq_bits = 0x03;
549 break;
550 case 9:
551 mpu_irq_bits = 0x00;
552 break;
553 case 10:
554 mpu_irq_bits = 0x01;
555 break;
556 default:
4c9f1d3e 557 snd_printk(KERN_WARNING "MPU-401 irq # %d not valid\n",
d8ea2393 558 mpu_irq);
1da177e4
LT
559 goto __skip_mpu;
560 }
561
562 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(6),
d8ea2393 563 (mpu_port <= 0) ? 0x00 :
1da177e4
LT
564 0x80 | mpu_port_bits << 5 | mpu_irq_bits << 3,
565 0xf8);
566 }
567__skip_mpu:
568
569 return 0;
570}
571
572#ifdef OPTi93X
573
e9d0a803
KH
574static const DECLARE_TLV_DB_SCALE(db_scale_5bit_3db_step, -9300, 300, 0);
575static const DECLARE_TLV_DB_SCALE(db_scale_5bit, -4650, 150, 0);
576static const DECLARE_TLV_DB_SCALE(db_scale_4bit_12db_max, -3300, 300, 0);
b2e8d7da
KH
577
578static struct snd_kcontrol_new snd_opti93x_controls[] = {
579WSS_DOUBLE("Master Playback Switch", 0,
580 OPTi93X_OUT_LEFT, OPTi93X_OUT_RIGHT, 7, 7, 1, 1),
581WSS_DOUBLE_TLV("Master Playback Volume", 0,
582 OPTi93X_OUT_LEFT, OPTi93X_OUT_RIGHT, 1, 1, 31, 1,
e9d0a803
KH
583 db_scale_5bit_3db_step),
584WSS_DOUBLE_TLV("PCM Playback Volume", 0,
585 CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 31, 1,
586 db_scale_5bit),
587WSS_DOUBLE_TLV("FM Playback Volume", 0,
588 CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 1, 1, 15, 1,
589 db_scale_4bit_12db_max),
b2e8d7da
KH
590WSS_DOUBLE("Line Playback Switch", 0,
591 CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 7, 7, 1, 1),
e9d0a803
KH
592WSS_DOUBLE_TLV("Line Playback Volume", 0,
593 CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 0, 0, 15, 1,
594 db_scale_4bit_12db_max),
b2e8d7da
KH
595WSS_DOUBLE("Mic Playback Switch", 0,
596 OPTi93X_MIC_LEFT_INPUT, OPTi93X_MIC_RIGHT_INPUT, 7, 7, 1, 1),
e9d0a803
KH
597WSS_DOUBLE_TLV("Mic Playback Volume", 0,
598 OPTi93X_MIC_LEFT_INPUT, OPTi93X_MIC_RIGHT_INPUT, 1, 1, 15, 1,
599 db_scale_4bit_12db_max),
600WSS_DOUBLE_TLV("CD Playback Volume", 0,
601 CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 1, 1, 15, 1,
602 db_scale_4bit_12db_max),
b2e8d7da
KH
603WSS_DOUBLE("Aux Playback Switch", 0,
604 OPTi931_AUX_LEFT_INPUT, OPTi931_AUX_RIGHT_INPUT, 7, 7, 1, 1),
e9d0a803
KH
605WSS_DOUBLE_TLV("Aux Playback Volume", 0,
606 OPTi931_AUX_LEFT_INPUT, OPTi931_AUX_RIGHT_INPUT, 1, 1, 15, 1,
607 db_scale_4bit_12db_max),
b2e8d7da
KH
608};
609
610static int __devinit snd_opti93x_mixer(struct snd_wss *chip)
611{
612 struct snd_card *card;
613 unsigned int idx;
614 struct snd_ctl_elem_id id1, id2;
615 int err;
616
617 if (snd_BUG_ON(!chip || !chip->pcm))
618 return -EINVAL;
619
620 card = chip->card;
621
622 strcpy(card->mixername, chip->pcm->name);
623
624 memset(&id1, 0, sizeof(id1));
625 memset(&id2, 0, sizeof(id2));
626 id1.iface = id2.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
627 /* reassign AUX0 switch to CD */
628 strcpy(id1.name, "Aux Playback Switch");
629 strcpy(id2.name, "CD Playback Switch");
630 err = snd_ctl_rename_id(card, &id1, &id2);
631 if (err < 0) {
632 snd_printk(KERN_ERR "Cannot rename opti93x control\n");
633 return err;
634 }
635 /* reassign AUX1 switch to FM */
636 strcpy(id1.name, "Aux Playback Switch"); id1.index = 1;
637 strcpy(id2.name, "FM Playback Switch");
638 err = snd_ctl_rename_id(card, &id1, &id2);
639 if (err < 0) {
640 snd_printk(KERN_ERR "Cannot rename opti93x control\n");
641 return err;
642 }
643 /* remove AUX1 volume */
644 strcpy(id1.name, "Aux Playback Volume"); id1.index = 1;
645 snd_ctl_remove_id(card, &id1);
646
647 /* Replace WSS volume controls with OPTi93x volume controls */
648 id1.index = 0;
649 for (idx = 0; idx < ARRAY_SIZE(snd_opti93x_controls); idx++) {
650 strcpy(id1.name, snd_opti93x_controls[idx].name);
651 snd_ctl_remove_id(card, &id1);
652
653 err = snd_ctl_add(card,
654 snd_ctl_new1(&snd_opti93x_controls[idx], chip));
655 if (err < 0)
656 return err;
657 }
658 return 0;
659}
660
7d12e780 661static irqreturn_t snd_opti93x_interrupt(int irq, void *dev_id)
1da177e4 662{
5f60e496
KH
663 struct snd_opti9xx *chip = dev_id;
664 struct snd_wss *codec = chip->codec;
1da177e4
LT
665 unsigned char status;
666
5f60e496
KH
667 if (!codec)
668 return IRQ_HANDLED;
669
9f240a55 670 status = snd_opti9xx_read(chip, OPTi9XX_MC_REG(11));
1da177e4
LT
671 if ((status & OPTi93X_IRQ_PLAYBACK) && codec->playback_substream)
672 snd_pcm_period_elapsed(codec->playback_substream);
673 if ((status & OPTi93X_IRQ_CAPTURE) && codec->capture_substream) {
7779f75f 674 snd_wss_overrange(codec);
1da177e4
LT
675 snd_pcm_period_elapsed(codec->capture_substream);
676 }
677 outb(0x00, OPTi93X_PORT(codec, STATUS));
678 return IRQ_HANDLED;
679}
680
1da177e4
LT
681#endif /* OPTi93X */
682
e6960e19 683static int __devinit snd_opti9xx_read_check(struct snd_opti9xx *chip)
1da177e4 684{
e6960e19
KH
685 unsigned char value;
686#ifdef OPTi93X
687 unsigned long flags;
688#endif
1da177e4 689
e6960e19
KH
690 chip->res_mc_base = request_region(chip->mc_base, chip->mc_base_size,
691 "OPTi9xx MC");
692 if (chip->res_mc_base == NULL)
693 return -EBUSY;
1da177e4 694#ifndef OPTi93X
e6960e19
KH
695 value = snd_opti9xx_read(chip, OPTi9XX_MC_REG(1));
696 if (value != 0xff && value != inb(chip->mc_base + OPTi9XX_MC_REG(1)))
697 if (value == snd_opti9xx_read(chip, OPTi9XX_MC_REG(1)))
698 return 0;
699#else /* OPTi93X */
700 chip->res_mc_indir = request_region(chip->mc_indir_index,
701 chip->mc_indir_size,
702 "OPTi93x MC");
703 if (chip->res_mc_indir == NULL)
704 return -EBUSY;
1da177e4 705
e6960e19
KH
706 spin_lock_irqsave(&chip->lock, flags);
707 outb(chip->password, chip->mc_base + chip->pwd_reg);
708 outb(((chip->mc_indir_index & 0x1f0) >> 4), chip->mc_base);
709 spin_unlock_irqrestore(&chip->lock, flags);
1da177e4 710
e6960e19
KH
711 value = snd_opti9xx_read(chip, OPTi9XX_MC_REG(7));
712 snd_opti9xx_write(chip, OPTi9XX_MC_REG(7), 0xff - value);
713 if (snd_opti9xx_read(chip, OPTi9XX_MC_REG(7)) == 0xff - value)
714 return 0;
1da177e4 715
e6960e19
KH
716 release_and_free_resource(chip->res_mc_indir);
717 chip->res_mc_indir = NULL;
718#endif /* OPTi93X */
719 release_and_free_resource(chip->res_mc_base);
720 chip->res_mc_base = NULL;
1da177e4 721
e6960e19
KH
722 return -ENODEV;
723}
1da177e4 724
e6960e19
KH
725static int __devinit snd_card_opti9xx_detect(struct snd_card *card,
726 struct snd_opti9xx *chip)
727{
728 int i, err;
1da177e4 729
e6960e19
KH
730#ifndef OPTi93X
731 for (i = OPTi9XX_HW_82C928; i < OPTi9XX_HW_82C930; i++) {
732#else
733 for (i = OPTi9XX_HW_82C931; i >= OPTi9XX_HW_82C930; i--) {
734#endif
735 err = snd_opti9xx_init(chip, i);
736 if (err < 0)
1da177e4
LT
737 return err;
738
e6960e19
KH
739 err = snd_opti9xx_read_check(chip);
740 if (err == 0)
1da177e4 741 return 1;
e6960e19
KH
742#ifdef OPTi93X
743 chip->mc_indir_index = 0;
744#endif
1da177e4 745 }
1da177e4
LT
746 return -ENODEV;
747}
748
749#ifdef CONFIG_PNP
5e24c1c1
TI
750static int __devinit snd_card_opti9xx_pnp(struct snd_opti9xx *chip,
751 struct pnp_card_link *card,
752 const struct pnp_card_device_id *pid)
1da177e4
LT
753{
754 struct pnp_dev *pdev;
1da177e4 755 int err;
fd8d4735
KH
756 struct pnp_dev *devmpu;
757#ifndef OPTi93X
758 struct pnp_dev *devmc;
759#endif
1da177e4 760
fd8d4735
KH
761 pdev = pnp_request_card_device(card, pid->devs[0].id, NULL);
762 if (pdev == NULL)
1da177e4 763 return -EBUSY;
109c53f8 764
1da177e4
LT
765 err = pnp_activate_dev(pdev);
766 if (err < 0) {
767 snd_printk(KERN_ERR "AUDIO pnp configure failure: %d\n", err);
1da177e4
LT
768 return err;
769 }
770
771#ifdef OPTi93X
772 port = pnp_port_start(pdev, 0) - 4;
1ea73412 773 fm_port = pnp_port_start(pdev, 1) + 8;
e6960e19
KH
774 chip->mc_indir_index = pnp_port_start(pdev, 3) + 2;
775 chip->mc_indir_size = pnp_port_len(pdev, 3) - 2;
1da177e4 776#else
fd8d4735
KH
777 devmc = pnp_request_card_device(card, pid->devs[2].id, NULL);
778 if (devmc == NULL)
779 return -EBUSY;
780
781 err = pnp_activate_dev(devmc);
782 if (err < 0) {
783 snd_printk(KERN_ERR "MC pnp configure failure: %d\n", err);
784 return err;
785 }
786
787 port = pnp_port_start(pdev, 1);
1ea73412 788 fm_port = pnp_port_start(pdev, 2) + 8;
fd8d4735
KH
789 /*
790 * The MC(0) is never accessed and card does not
791 * include it in the PnP resource range. OPTI93x include it.
792 */
793 chip->mc_base = pnp_port_start(devmc, 0) - 1;
794 chip->mc_base_size = pnp_port_len(devmc, 0) + 1;
1da177e4
LT
795#endif /* OPTi93X */
796 irq = pnp_irq(pdev, 0);
797 dma1 = pnp_dma(pdev, 0);
798#if defined(CS4231) || defined(OPTi93X)
799 dma2 = pnp_dma(pdev, 1);
800#endif /* CS4231 || OPTi93X */
801
fd8d4735
KH
802 devmpu = pnp_request_card_device(card, pid->devs[1].id, NULL);
803
804 if (devmpu && mpu_port > 0) {
805 err = pnp_activate_dev(devmpu);
1da177e4 806 if (err < 0) {
fd8d4735 807 snd_printk(KERN_ERR "MPU401 pnp configure failure\n");
1da177e4 808 mpu_port = -1;
1da177e4 809 } else {
fd8d4735
KH
810 mpu_port = pnp_port_start(devmpu, 0);
811 mpu_irq = pnp_irq(devmpu, 0);
1da177e4
LT
812 }
813 }
1da177e4
LT
814 return pid->driver_data;
815}
816#endif /* CONFIG_PNP */
817
346c7a68 818static void snd_card_opti9xx_free(struct snd_card *card)
1da177e4 819{
99a0b768 820 struct snd_opti9xx *chip = card->private_data;
e6960e19 821
9f240a55
KH
822 if (chip) {
823#ifdef OPTi93X
5f60e496
KH
824 if (chip->irq > 0) {
825 disable_irq(chip->irq);
826 free_irq(chip->irq, chip);
9f240a55 827 }
e6960e19 828 release_and_free_resource(chip->res_mc_indir);
9f240a55 829#endif
b1d5776d 830 release_and_free_resource(chip->res_mc_base);
9f240a55 831 }
1da177e4
LT
832}
833
5e24c1c1 834static int __devinit snd_opti9xx_probe(struct snd_card *card)
1da177e4
LT
835{
836 static long possible_ports[] = {0x530, 0xe80, 0xf40, 0x604, -1};
1da177e4 837 int error;
d8ea2393 838 int xdma2;
99a0b768 839 struct snd_opti9xx *chip = card->private_data;
7779f75f 840 struct snd_wss *codec;
9f240a55 841#ifdef CS4231
346c7a68 842 struct snd_timer *timer;
1da177e4 843#endif
346c7a68
TI
844 struct snd_pcm *pcm;
845 struct snd_rawmidi *rmidi;
846 struct snd_hwdep *synth;
1da177e4 847
1da177e4 848#if defined(CS4231) || defined(OPTi93X)
d8ea2393 849 xdma2 = dma2;
a0d9274c 850#else
d8ea2393 851 xdma2 = -1;
1da177e4
LT
852#endif
853
d8ea2393
KH
854 if (port == SNDRV_AUTO_PORT) {
855 port = snd_legacy_find_free_ioport(possible_ports, 4);
856 if (port < 0) {
4c9f1d3e 857 snd_printk(KERN_ERR "unable to find a free WSS port\n");
1da177e4
LT
858 return -EBUSY;
859 }
860 }
d8ea2393
KH
861 error = snd_opti9xx_configure(chip, port, irq, dma1, xdma2,
862 mpu_port, mpu_irq);
7779f75f 863 if (error)
1da177e4 864 return error;
1da177e4 865
fd8d4735 866 error = snd_wss_create(card, chip->wss_base + 4, -1, irq, dma1, xdma2,
a0d9274c 867#ifdef OPTi93X
7779f75f 868 WSS_HW_OPTI93X, WSS_HWSHARE_IRQ,
a0d9274c
RH
869#else
870 WSS_HW_DETECT, 0,
9f240a55 871#endif
7779f75f
KH
872 &codec);
873 if (error < 0)
1da177e4 874 return error;
9f240a55
KH
875#ifdef OPTi93X
876 chip->codec = codec;
ead893c0
KH
877#endif
878 error = snd_wss_pcm(codec, 0, &pcm);
5664daa1
KH
879 if (error < 0)
880 return error;
7779f75f
KH
881 error = snd_wss_mixer(codec);
882 if (error < 0)
1da177e4 883 return error;
b2e8d7da
KH
884#ifdef OPTi93X
885 error = snd_opti93x_mixer(codec);
886 if (error < 0)
887 return error;
888#endif
9f240a55 889#ifdef CS4231
7779f75f
KH
890 error = snd_wss_timer(codec, 0, &timer);
891 if (error < 0)
1da177e4 892 return error;
5664daa1
KH
893#endif
894#ifdef OPTi93X
d8ea2393 895 error = request_irq(irq, snd_opti93x_interrupt,
5f60e496 896 IRQF_DISABLED, DEV_NAME" - WSS", chip);
9f240a55 897 if (error < 0) {
5f60e496 898 snd_printk(KERN_ERR "opti9xx: can't grab IRQ %d\n", irq);
9f240a55
KH
899 return error;
900 }
1da177e4 901#endif
d8ea2393 902 chip->irq = irq;
1da177e4
LT
903 strcpy(card->driver, chip->name);
904 sprintf(card->shortname, "OPTi %s", card->driver);
905#if defined(CS4231) || defined(OPTi93X)
906 sprintf(card->longname, "%s, %s at 0x%lx, irq %d, dma %d&%d",
fd8d4735
KH
907 card->shortname, pcm->name,
908 chip->wss_base + 4, irq, dma1, xdma2);
1da177e4
LT
909#else
910 sprintf(card->longname, "%s, %s at 0x%lx, irq %d, dma %d",
fd8d4735 911 card->shortname, pcm->name, chip->wss_base + 4, irq, dma1);
1da177e4
LT
912#endif /* CS4231 || OPTi93X */
913
d8ea2393 914 if (mpu_port <= 0 || mpu_port == SNDRV_AUTO_PORT)
1da177e4 915 rmidi = NULL;
d8ea2393
KH
916 else {
917 error = snd_mpu401_uart_new(card, 0, MPU401_HW_MPU401,
918 mpu_port, 0, mpu_irq, IRQF_DISABLED, &rmidi);
919 if (error)
99a0b768 920 snd_printk(KERN_WARNING "no MPU-401 device at 0x%lx?\n",
d8ea2393
KH
921 mpu_port);
922 }
1da177e4 923
d8ea2393 924 if (fm_port > 0 && fm_port != SNDRV_AUTO_PORT) {
346c7a68 925 struct snd_opl3 *opl3 = NULL;
1da177e4
LT
926#ifndef OPTi93X
927 if (chip->hardware == OPTi9XX_HW_82C928 ||
928 chip->hardware == OPTi9XX_HW_82C929 ||
929 chip->hardware == OPTi9XX_HW_82C924) {
346c7a68 930 struct snd_opl4 *opl4;
1da177e4
LT
931 /* assume we have an OPL4 */
932 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(2),
933 0x20, 0x20);
d8ea2393 934 if (snd_opl4_create(card, fm_port, fm_port - 8,
1da177e4
LT
935 2, &opl3, &opl4) < 0) {
936 /* no luck, use OPL3 instead */
937 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(2),
938 0x00, 0x20);
939 }
940 }
941#endif /* !OPTi93X */
d8ea2393 942 if (!opl3 && snd_opl3_create(card, fm_port, fm_port + 2,
1da177e4 943 OPL3_HW_AUTO, 0, &opl3) < 0) {
99a0b768 944 snd_printk(KERN_WARNING "no OPL device at 0x%lx-0x%lx\n",
d8ea2393 945 fm_port, fm_port + 4 - 1);
1da177e4
LT
946 }
947 if (opl3) {
aa9c293a
KH
948 error = snd_opl3_hwdep_new(opl3, 0, 1, &synth);
949 if (error < 0)
1da177e4 950 return error;
1da177e4
LT
951 }
952 }
953
99a0b768
TI
954 return snd_card_register(card);
955}
956
3e7fb9f7 957static int snd_opti9xx_card_new(struct snd_card **cardp)
99a0b768
TI
958{
959 struct snd_card *card;
b1a0aac0 960 int err;
99a0b768 961
c95eadd2
TI
962 err = snd_card_create(index, id, THIS_MODULE,
963 sizeof(struct snd_opti9xx), &card);
964 if (err < 0)
3e7fb9f7 965 return err;
99a0b768 966 card->private_free = snd_card_opti9xx_free;
3e7fb9f7
TI
967 *cardp = card;
968 return 0;
99a0b768
TI
969}
970
5e24c1c1
TI
971static int __devinit snd_opti9xx_isa_match(struct device *devptr,
972 unsigned int dev)
973{
101f6f4b 974#ifdef CONFIG_PNP
5e24c1c1
TI
975 if (snd_opti9xx_pnp_is_probed)
976 return 0;
977 if (isapnp)
978 return 0;
101f6f4b 979#endif
5e24c1c1
TI
980 return 1;
981}
982
983static int __devinit snd_opti9xx_isa_probe(struct device *devptr,
984 unsigned int dev)
99a0b768
TI
985{
986 struct snd_card *card;
987 int error;
988 static long possible_mpu_ports[] = {0x300, 0x310, 0x320, 0x330, -1};
989#ifdef OPTi93X
990 static int possible_irqs[] = {5, 9, 10, 11, 7, -1};
991#else
992 static int possible_irqs[] = {9, 10, 11, 7, -1};
993#endif /* OPTi93X */
994 static int possible_mpu_irqs[] = {5, 9, 10, 7, -1};
995 static int possible_dma1s[] = {3, 1, 0, -1};
996#if defined(CS4231) || defined(OPTi93X)
997 static int possible_dma2s[][2] = {{1,-1}, {0,-1}, {-1,-1}, {0,-1}};
998#endif /* CS4231 || OPTi93X */
999
99a0b768
TI
1000 if (mpu_port == SNDRV_AUTO_PORT) {
1001 if ((mpu_port = snd_legacy_find_free_ioport(possible_mpu_ports, 2)) < 0) {
1002 snd_printk(KERN_ERR "unable to find a free MPU401 port\n");
1003 return -EBUSY;
1004 }
1005 }
1006 if (irq == SNDRV_AUTO_IRQ) {
1007 if ((irq = snd_legacy_find_free_irq(possible_irqs)) < 0) {
1008 snd_printk(KERN_ERR "unable to find a free IRQ\n");
1009 return -EBUSY;
1010 }
1011 }
1012 if (mpu_irq == SNDRV_AUTO_IRQ) {
1013 if ((mpu_irq = snd_legacy_find_free_irq(possible_mpu_irqs)) < 0) {
1014 snd_printk(KERN_ERR "unable to find a free MPU401 IRQ\n");
1015 return -EBUSY;
1016 }
1017 }
1018 if (dma1 == SNDRV_AUTO_DMA) {
1019 if ((dma1 = snd_legacy_find_free_dma(possible_dma1s)) < 0) {
1020 snd_printk(KERN_ERR "unable to find a free DMA1\n");
1021 return -EBUSY;
1022 }
1023 }
1024#if defined(CS4231) || defined(OPTi93X)
1025 if (dma2 == SNDRV_AUTO_DMA) {
1026 if ((dma2 = snd_legacy_find_free_dma(possible_dma2s[dma1 % 4])) < 0) {
4c9f1d3e 1027 snd_printk(KERN_ERR "unable to find a free DMA2\n");
99a0b768
TI
1028 return -EBUSY;
1029 }
1030 }
1031#endif
1032
3e7fb9f7
TI
1033 error = snd_opti9xx_card_new(&card);
1034 if (error < 0)
1035 return error;
99a0b768
TI
1036
1037 if ((error = snd_card_opti9xx_detect(card, card->private_data)) < 0) {
1da177e4
LT
1038 snd_card_free(card);
1039 return error;
1040 }
5e24c1c1 1041 snd_card_set_dev(card, devptr);
99a0b768
TI
1042 if ((error = snd_opti9xx_probe(card)) < 0) {
1043 snd_card_free(card);
1044 return error;
1045 }
5e24c1c1 1046 dev_set_drvdata(devptr, card);
99a0b768
TI
1047 return 0;
1048}
1049
5e24c1c1
TI
1050static int __devexit snd_opti9xx_isa_remove(struct device *devptr,
1051 unsigned int dev)
99a0b768 1052{
5e24c1c1
TI
1053 snd_card_free(dev_get_drvdata(devptr));
1054 dev_set_drvdata(devptr, NULL);
1da177e4
LT
1055 return 0;
1056}
1057
5e24c1c1
TI
1058static struct isa_driver snd_opti9xx_driver = {
1059 .match = snd_opti9xx_isa_match,
1060 .probe = snd_opti9xx_isa_probe,
1061 .remove = __devexit_p(snd_opti9xx_isa_remove),
99a0b768
TI
1062 /* FIXME: suspend/resume */
1063 .driver = {
83c51c0a 1064 .name = DEV_NAME
99a0b768
TI
1065 },
1066};
1067
1da177e4 1068#ifdef CONFIG_PNP
5e24c1c1
TI
1069static int __devinit snd_opti9xx_pnp_probe(struct pnp_card_link *pcard,
1070 const struct pnp_card_device_id *pid)
1da177e4 1071{
99a0b768
TI
1072 struct snd_card *card;
1073 int error, hw;
1074 struct snd_opti9xx *chip;
1075
1076 if (snd_opti9xx_pnp_is_probed)
1077 return -EBUSY;
1078 if (! isapnp)
1079 return -ENODEV;
3e7fb9f7
TI
1080 error = snd_opti9xx_card_new(&card);
1081 if (error < 0)
1082 return error;
99a0b768 1083 chip = card->private_data;
1da177e4 1084
99a0b768
TI
1085 hw = snd_card_opti9xx_pnp(chip, pcard, pid);
1086 switch (hw) {
1087 case 0x0924:
1088 hw = OPTi9XX_HW_82C924;
1089 break;
1090 case 0x0925:
1091 hw = OPTi9XX_HW_82C925;
1092 break;
1093 case 0x0931:
1094 hw = OPTi9XX_HW_82C931;
1095 break;
1096 default:
1097 snd_card_free(card);
1098 return -ENODEV;
1099 }
1100
1101 if ((error = snd_opti9xx_init(chip, hw))) {
1102 snd_card_free(card);
1103 return error;
1104 }
e6960e19
KH
1105 error = snd_opti9xx_read_check(chip);
1106 if (error) {
1107 snd_printk(KERN_ERR "OPTI chip not found\n");
1108 snd_card_free(card);
1109 return error;
1110 }
99a0b768
TI
1111 snd_card_set_dev(card, &pcard->card->dev);
1112 if ((error = snd_opti9xx_probe(card)) < 0) {
1113 snd_card_free(card);
1114 return error;
1115 }
1116 pnp_set_card_drvdata(pcard, card);
1117 snd_opti9xx_pnp_is_probed = 1;
1118 return 0;
1119}
1120
1121static void __devexit snd_opti9xx_pnp_remove(struct pnp_card_link * pcard)
1122{
1123 snd_card_free(pnp_get_card_drvdata(pcard));
1124 pnp_set_card_drvdata(pcard, NULL);
1125 snd_opti9xx_pnp_is_probed = 0;
1da177e4
LT
1126}
1127
1128static struct pnp_card_driver opti9xx_pnpc_driver = {
1129 .flags = PNP_DRIVER_RES_DISABLE,
1130 .name = "opti9xx",
1131 .id_table = snd_opti9xx_pnpids,
99a0b768 1132 .probe = snd_opti9xx_pnp_probe,
1da177e4
LT
1133 .remove = __devexit_p(snd_opti9xx_pnp_remove),
1134};
1135#endif
1136
1da177e4 1137#ifdef OPTi93X
99a0b768 1138#define CHIP_NAME "82C93x"
1da177e4 1139#else
99a0b768 1140#define CHIP_NAME "82C92x"
1da177e4 1141#endif
99a0b768
TI
1142
1143static int __init alsa_card_opti9xx_init(void)
1144{
0bbbc4ca 1145#ifdef CONFIG_PNP
99a0b768
TI
1146 pnp_register_card_driver(&opti9xx_pnpc_driver);
1147 if (snd_opti9xx_pnp_is_probed)
1148 return 0;
101f6f4b 1149 pnp_unregister_card_driver(&opti9xx_pnpc_driver);
0bbbc4ca 1150#endif
5e24c1c1 1151 return isa_register_driver(&snd_opti9xx_driver, 1);
1da177e4
LT
1152}
1153
1154static void __exit alsa_card_opti9xx_exit(void)
1155{
f7a9275d 1156 if (!snd_opti9xx_pnp_is_probed) {
5e24c1c1
TI
1157 isa_unregister_driver(&snd_opti9xx_driver);
1158 return;
f7a9275d 1159 }
0bbbc4ca 1160#ifdef CONFIG_PNP
1da177e4 1161 pnp_unregister_card_driver(&opti9xx_pnpc_driver);
0bbbc4ca 1162#endif
1da177e4
LT
1163}
1164
1165module_init(alsa_card_opti9xx_init)
1166module_exit(alsa_card_opti9xx_exit)