2 card-opti92x-ad1848.c - driver for OPTi 82c92x based soundcards.
3 Copyright (C) 1998-2000 by Massimo Piccioni <dafastidio@libero.it>
5 Part of this code was developed at the Italian Ministry of Air Defence,
6 Sixth Division (oh, che pace ...), Rome.
8 Thanks to Maria Grazia Pollarini, Salvatore Vassallo.
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.
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.
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
26 #include <linux/init.h>
27 #include <linux/err.h>
28 #include <linux/isa.h>
29 #include <linux/delay.h>
30 #include <linux/pnp.h>
31 #include <linux/module.h>
34 #include <sound/core.h>
35 #include <sound/tlv.h>
36 #include <sound/wss.h>
37 #include <sound/mpu401.h>
38 #include <sound/opl3.h>
40 #include <sound/opl4.h>
42 #define SNDRV_LEGACY_FIND_FREE_IOPORT
43 #define SNDRV_LEGACY_FIND_FREE_IRQ
44 #define SNDRV_LEGACY_FIND_FREE_DMA
45 #include <sound/initval.h>
47 MODULE_AUTHOR("Massimo Piccioni <dafastidio@libero.it>");
48 MODULE_LICENSE("GPL");
50 MODULE_DESCRIPTION("OPTi93X");
51 MODULE_SUPPORTED_DEVICE("{{OPTi,82C931/3}}");
54 MODULE_DESCRIPTION("OPTi92X - CS4231");
55 MODULE_SUPPORTED_DEVICE("{{OPTi,82C924 (CS4231)},"
56 "{OPTi,82C925 (CS4231)}}");
58 MODULE_DESCRIPTION("OPTi92X - AD1848");
59 MODULE_SUPPORTED_DEVICE("{{OPTi,82C924 (AD1848)},"
60 "{OPTi,82C925 (AD1848)},"
65 static int index
= SNDRV_DEFAULT_IDX1
; /* Index 0-MAX */
66 static char *id
= SNDRV_DEFAULT_STR1
; /* ID for this card */
67 //static bool enable = SNDRV_DEFAULT_ENABLE1; /* Enable this card */
69 static bool isapnp
= true; /* Enable ISA PnP detection */
71 static long port
= SNDRV_DEFAULT_PORT1
; /* 0x530,0xe80,0xf40,0x604 */
72 static long mpu_port
= SNDRV_DEFAULT_PORT1
; /* 0x300,0x310,0x320,0x330 */
73 static long fm_port
= SNDRV_DEFAULT_PORT1
; /* 0x388 */
74 static int irq
= SNDRV_DEFAULT_IRQ1
; /* 5,7,9,10,11 */
75 static int mpu_irq
= SNDRV_DEFAULT_IRQ1
; /* 5,7,9,10 */
76 static int dma1
= SNDRV_DEFAULT_DMA1
; /* 0,1,3 */
77 #if defined(CS4231) || defined(OPTi93X)
78 static int dma2
= SNDRV_DEFAULT_DMA1
; /* 0,1,3 */
79 #endif /* CS4231 || OPTi93X */
81 module_param(index
, int, 0444);
82 MODULE_PARM_DESC(index
, "Index value for opti9xx based soundcard.");
83 module_param(id
, charp
, 0444);
84 MODULE_PARM_DESC(id
, "ID string for opti9xx based soundcard.");
85 //module_param(enable, bool, 0444);
86 //MODULE_PARM_DESC(enable, "Enable opti9xx soundcard.");
88 module_param(isapnp
, bool, 0444);
89 MODULE_PARM_DESC(isapnp
, "Enable ISA PnP detection for specified soundcard.");
91 module_param(port
, long, 0444);
92 MODULE_PARM_DESC(port
, "WSS port # for opti9xx driver.");
93 module_param(mpu_port
, long, 0444);
94 MODULE_PARM_DESC(mpu_port
, "MPU-401 port # for opti9xx driver.");
95 module_param(fm_port
, long, 0444);
96 MODULE_PARM_DESC(fm_port
, "FM port # for opti9xx driver.");
97 module_param(irq
, int, 0444);
98 MODULE_PARM_DESC(irq
, "WSS irq # for opti9xx driver.");
99 module_param(mpu_irq
, int, 0444);
100 MODULE_PARM_DESC(mpu_irq
, "MPU-401 irq # for opti9xx driver.");
101 module_param(dma1
, int, 0444);
102 MODULE_PARM_DESC(dma1
, "1st dma # for opti9xx driver.");
103 #if defined(CS4231) || defined(OPTi93X)
104 module_param(dma2
, int, 0444);
105 MODULE_PARM_DESC(dma2
, "2nd dma # for opti9xx driver.");
106 #endif /* CS4231 || OPTi93X */
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
117 #define OPTi9XX_MC_REG(n) n
121 #define OPTi93X_STATUS 0x02
122 #define OPTi93X_PORT(chip, r) ((chip)->port + OPTi93X_##r)
124 #define OPTi93X_IRQ_PLAYBACK 0x04
125 #define OPTi93X_IRQ_CAPTURE 0x08
130 unsigned short hardware
;
131 unsigned char password
;
134 unsigned long mc_base
;
135 struct resource
*res_mc_base
;
136 unsigned long mc_base_size
;
138 unsigned long mc_indir_index
;
139 struct resource
*res_mc_indir
;
141 struct snd_wss
*codec
;
142 unsigned long pwd_reg
;
150 static int snd_opti9xx_pnp_is_probed
;
154 static struct pnp_card_device_id snd_opti9xx_pnpids
[] = {
158 .devs
= { { "OPT0000" }, { "OPT0002" }, { "OPT0005" } },
159 .driver_data
= 0x0924 },
162 .devs
= { { "OPT9250" }, { "OPT0002" }, { "OPT0005" } },
163 .driver_data
= 0x0925 },
166 { .id
= "OPT0931", .devs
= { { "OPT9310" }, { "OPT0002" } },
167 .driver_data
= 0x0931 },
172 MODULE_DEVICE_TABLE(pnp_card
, snd_opti9xx_pnpids
);
174 #endif /* CONFIG_PNP */
176 #define DEV_NAME KBUILD_MODNAME
178 static char * snd_opti9xx_names
[] = {
182 "82C930", "82C931", "82C933"
185 static int snd_opti9xx_init(struct snd_opti9xx
*chip
,
186 unsigned short hardware
)
188 static int opti9xx_mc_size
[] = {7, 7, 10, 10, 2, 2, 2};
190 chip
->hardware
= hardware
;
191 strcpy(chip
->name
, snd_opti9xx_names
[hardware
]);
193 spin_lock_init(&chip
->lock
);
199 if (isapnp
&& chip
->mc_base
)
200 /* PnP resource gives the least 10 bits */
201 chip
->mc_base
|= 0xc00;
203 #endif /* CONFIG_PNP */
205 chip
->mc_base
= 0xf8c;
206 chip
->mc_base_size
= opti9xx_mc_size
[hardware
];
209 chip
->mc_base_size
= opti9xx_mc_size
[hardware
];
214 case OPTi9XX_HW_82C928
:
215 case OPTi9XX_HW_82C929
:
216 chip
->password
= (hardware
== OPTi9XX_HW_82C928
) ? 0xe2 : 0xe3;
220 case OPTi9XX_HW_82C924
:
221 case OPTi9XX_HW_82C925
:
222 chip
->password
= 0xe5;
227 case OPTi9XX_HW_82C930
:
228 case OPTi9XX_HW_82C931
:
229 case OPTi9XX_HW_82C933
:
230 chip
->mc_base
= (hardware
== OPTi9XX_HW_82C930
) ? 0xf8f : 0xf8d;
231 if (!chip
->mc_indir_index
)
232 chip
->mc_indir_index
= 0xe0e;
233 chip
->password
= 0xe4;
239 snd_printk(KERN_ERR
"chip %d not supported\n", hardware
);
245 static unsigned char snd_opti9xx_read(struct snd_opti9xx
*chip
,
249 unsigned char retval
= 0xff;
251 spin_lock_irqsave(&chip
->lock
, flags
);
252 outb(chip
->password
, chip
->mc_base
+ chip
->pwd_reg
);
254 switch (chip
->hardware
) {
256 case OPTi9XX_HW_82C924
:
257 case OPTi9XX_HW_82C925
:
259 outb(reg
, chip
->mc_base
+ 8);
260 outb(chip
->password
, chip
->mc_base
+ chip
->pwd_reg
);
261 retval
= inb(chip
->mc_base
+ 9);
265 case OPTi9XX_HW_82C928
:
266 case OPTi9XX_HW_82C929
:
267 retval
= inb(chip
->mc_base
+ reg
);
271 case OPTi9XX_HW_82C930
:
272 case OPTi9XX_HW_82C931
:
273 case OPTi9XX_HW_82C933
:
274 outb(reg
, chip
->mc_indir_index
);
275 outb(chip
->password
, chip
->mc_base
+ chip
->pwd_reg
);
276 retval
= inb(chip
->mc_indir_index
+ 1);
281 snd_printk(KERN_ERR
"chip %d not supported\n", chip
->hardware
);
284 spin_unlock_irqrestore(&chip
->lock
, flags
);
288 static void snd_opti9xx_write(struct snd_opti9xx
*chip
, unsigned char reg
,
293 spin_lock_irqsave(&chip
->lock
, flags
);
294 outb(chip
->password
, chip
->mc_base
+ chip
->pwd_reg
);
296 switch (chip
->hardware
) {
298 case OPTi9XX_HW_82C924
:
299 case OPTi9XX_HW_82C925
:
301 outb(reg
, chip
->mc_base
+ 8);
302 outb(chip
->password
, chip
->mc_base
+ chip
->pwd_reg
);
303 outb(value
, chip
->mc_base
+ 9);
307 case OPTi9XX_HW_82C928
:
308 case OPTi9XX_HW_82C929
:
309 outb(value
, chip
->mc_base
+ reg
);
313 case OPTi9XX_HW_82C930
:
314 case OPTi9XX_HW_82C931
:
315 case OPTi9XX_HW_82C933
:
316 outb(reg
, chip
->mc_indir_index
);
317 outb(chip
->password
, chip
->mc_base
+ chip
->pwd_reg
);
318 outb(value
, chip
->mc_indir_index
+ 1);
323 snd_printk(KERN_ERR
"chip %d not supported\n", chip
->hardware
);
326 spin_unlock_irqrestore(&chip
->lock
, flags
);
330 #define snd_opti9xx_write_mask(chip, reg, value, mask) \
331 snd_opti9xx_write(chip, reg, \
332 (snd_opti9xx_read(chip, reg) & ~(mask)) | ((value) & (mask)))
335 static int snd_opti9xx_configure(struct snd_opti9xx
*chip
,
337 int irq
, int dma1
, int dma2
,
338 long mpu_port
, int mpu_irq
)
340 unsigned char wss_base_bits
;
341 unsigned char irq_bits
;
342 unsigned char dma_bits
;
343 unsigned char mpu_port_bits
= 0;
344 unsigned char mpu_irq_bits
;
346 switch (chip
->hardware
) {
348 case OPTi9XX_HW_82C924
:
349 /* opti 929 mode (?), OPL3 clock output, audio enable */
350 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(4), 0xf0, 0xfc);
351 /* enable wave audio */
352 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(6), 0x02, 0x02);
354 case OPTi9XX_HW_82C925
:
355 /* enable WSS mode */
356 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(1), 0x80, 0x80);
357 /* OPL3 FM synthesis */
358 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(2), 0x00, 0x20);
359 /* disable Sound Blaster IRQ and DMA */
360 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(3), 0xf0, 0xff);
362 /* cs4231/4248 fix enabled */
363 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(5), 0x02, 0x02);
365 /* cs4231/4248 fix disabled */
366 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(5), 0x00, 0x02);
370 case OPTi9XX_HW_82C928
:
371 case OPTi9XX_HW_82C929
:
372 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(1), 0x80, 0x80);
373 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(2), 0x00, 0x20);
375 snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(3), 0xa2, 0xae);
377 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(4), 0x00, 0x0c);
379 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(5), 0x02, 0x02);
381 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(5), 0x00, 0x02);
386 case OPTi9XX_HW_82C931
:
387 /* disable 3D sound (set GPIO1 as output, low) */
388 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(20), 0x04, 0x0c);
389 case OPTi9XX_HW_82C933
: /* FALL THROUGH */
391 * The BTC 1817DW has QS1000 wavetable which is connected
392 * to the serial digital input of the OPTI931.
394 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(21), 0x82, 0xff);
396 * This bit sets OPTI931 to automaticaly select FM
397 * or digital input signal.
399 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(26), 0x01, 0x01);
400 case OPTi9XX_HW_82C930
: /* FALL THROUGH */
401 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(6), 0x02, 0x03);
402 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(3), 0x00, 0xff);
403 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(4), 0x10 |
404 (chip
->hardware
== OPTi9XX_HW_82C930
? 0x00 : 0x04),
406 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(5), 0x20, 0xbf);
411 snd_printk(KERN_ERR
"chip %d not supported\n", chip
->hardware
);
415 /* PnP resource says it decodes only 10 bits of address */
416 switch (port
& 0x3ff) {
418 chip
->wss_base
= 0x530;
419 wss_base_bits
= 0x00;
422 chip
->wss_base
= 0x604;
423 wss_base_bits
= 0x03;
426 chip
->wss_base
= 0xe80;
427 wss_base_bits
= 0x01;
430 chip
->wss_base
= 0xf40;
431 wss_base_bits
= 0x02;
434 snd_printk(KERN_WARNING
"WSS port 0x%lx not valid\n", port
);
437 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(1), wss_base_bits
<< 4, 0x30);
445 //#endif /* OPTi93X */
459 snd_printk(KERN_WARNING
"WSS irq # %d not valid\n", irq
);
460 goto __skip_resources
;
474 snd_printk(KERN_WARNING
"WSS dma1 # %d not valid\n", dma1
);
475 goto __skip_resources
;
478 #if defined(CS4231) || defined(OPTi93X)
480 snd_printk(KERN_ERR
"don't want to share dmas\n");
489 snd_printk(KERN_WARNING
"WSS dma2 # %d not valid\n", dma2
);
490 goto __skip_resources
;
493 #endif /* CS4231 || OPTi93X */
496 outb(irq_bits
<< 3 | dma_bits
, chip
->wss_base
);
498 snd_opti9xx_write(chip
, OPTi9XX_MC_REG(3), (irq_bits
<< 3 | dma_bits
));
502 if (chip
->hardware
> OPTi9XX_HW_82C928
) {
508 mpu_port_bits
= 0x03;
511 mpu_port_bits
= 0x02;
514 mpu_port_bits
= 0x01;
517 mpu_port_bits
= 0x00;
520 snd_printk(KERN_WARNING
521 "MPU-401 port 0x%lx not valid\n", mpu_port
);
539 snd_printk(KERN_WARNING
"MPU-401 irq # %d not valid\n",
544 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(6),
545 (mpu_port
<= 0) ? 0x00 :
546 0x80 | mpu_port_bits
<< 5 | mpu_irq_bits
<< 3,
556 static const DECLARE_TLV_DB_SCALE(db_scale_5bit_3db_step
, -9300, 300, 0);
557 static const DECLARE_TLV_DB_SCALE(db_scale_5bit
, -4650, 150, 0);
558 static const DECLARE_TLV_DB_SCALE(db_scale_4bit_12db_max
, -3300, 300, 0);
560 static struct snd_kcontrol_new snd_opti93x_controls
[] = {
561 WSS_DOUBLE("Master Playback Switch", 0,
562 OPTi93X_OUT_LEFT
, OPTi93X_OUT_RIGHT
, 7, 7, 1, 1),
563 WSS_DOUBLE_TLV("Master Playback Volume", 0,
564 OPTi93X_OUT_LEFT
, OPTi93X_OUT_RIGHT
, 1, 1, 31, 1,
565 db_scale_5bit_3db_step
),
566 WSS_DOUBLE_TLV("PCM Playback Volume", 0,
567 CS4231_LEFT_OUTPUT
, CS4231_RIGHT_OUTPUT
, 0, 0, 31, 1,
569 WSS_DOUBLE_TLV("FM Playback Volume", 0,
570 CS4231_AUX2_LEFT_INPUT
, CS4231_AUX2_RIGHT_INPUT
, 1, 1, 15, 1,
571 db_scale_4bit_12db_max
),
572 WSS_DOUBLE("Line Playback Switch", 0,
573 CS4231_LEFT_LINE_IN
, CS4231_RIGHT_LINE_IN
, 7, 7, 1, 1),
574 WSS_DOUBLE_TLV("Line Playback Volume", 0,
575 CS4231_LEFT_LINE_IN
, CS4231_RIGHT_LINE_IN
, 0, 0, 15, 1,
576 db_scale_4bit_12db_max
),
577 WSS_DOUBLE("Mic Playback Switch", 0,
578 OPTi93X_MIC_LEFT_INPUT
, OPTi93X_MIC_RIGHT_INPUT
, 7, 7, 1, 1),
579 WSS_DOUBLE_TLV("Mic Playback Volume", 0,
580 OPTi93X_MIC_LEFT_INPUT
, OPTi93X_MIC_RIGHT_INPUT
, 1, 1, 15, 1,
581 db_scale_4bit_12db_max
),
582 WSS_DOUBLE_TLV("CD Playback Volume", 0,
583 CS4231_AUX1_LEFT_INPUT
, CS4231_AUX1_RIGHT_INPUT
, 1, 1, 15, 1,
584 db_scale_4bit_12db_max
),
585 WSS_DOUBLE("Aux Playback Switch", 0,
586 OPTi931_AUX_LEFT_INPUT
, OPTi931_AUX_RIGHT_INPUT
, 7, 7, 1, 1),
587 WSS_DOUBLE_TLV("Aux Playback Volume", 0,
588 OPTi931_AUX_LEFT_INPUT
, OPTi931_AUX_RIGHT_INPUT
, 1, 1, 15, 1,
589 db_scale_4bit_12db_max
),
592 static int snd_opti93x_mixer(struct snd_wss
*chip
)
594 struct snd_card
*card
;
596 struct snd_ctl_elem_id id1
, id2
;
599 if (snd_BUG_ON(!chip
|| !chip
->pcm
))
604 strcpy(card
->mixername
, chip
->pcm
->name
);
606 memset(&id1
, 0, sizeof(id1
));
607 memset(&id2
, 0, sizeof(id2
));
608 id1
.iface
= id2
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
609 /* reassign AUX0 switch to CD */
610 strcpy(id1
.name
, "Aux Playback Switch");
611 strcpy(id2
.name
, "CD Playback Switch");
612 err
= snd_ctl_rename_id(card
, &id1
, &id2
);
614 snd_printk(KERN_ERR
"Cannot rename opti93x control\n");
617 /* reassign AUX1 switch to FM */
618 strcpy(id1
.name
, "Aux Playback Switch"); id1
.index
= 1;
619 strcpy(id2
.name
, "FM Playback Switch");
620 err
= snd_ctl_rename_id(card
, &id1
, &id2
);
622 snd_printk(KERN_ERR
"Cannot rename opti93x control\n");
625 /* remove AUX1 volume */
626 strcpy(id1
.name
, "Aux Playback Volume"); id1
.index
= 1;
627 snd_ctl_remove_id(card
, &id1
);
629 /* Replace WSS volume controls with OPTi93x volume controls */
631 for (idx
= 0; idx
< ARRAY_SIZE(snd_opti93x_controls
); idx
++) {
632 strcpy(id1
.name
, snd_opti93x_controls
[idx
].name
);
633 snd_ctl_remove_id(card
, &id1
);
635 err
= snd_ctl_add(card
,
636 snd_ctl_new1(&snd_opti93x_controls
[idx
], chip
));
643 static irqreturn_t
snd_opti93x_interrupt(int irq
, void *dev_id
)
645 struct snd_opti9xx
*chip
= dev_id
;
646 struct snd_wss
*codec
= chip
->codec
;
647 unsigned char status
;
652 status
= snd_opti9xx_read(chip
, OPTi9XX_MC_REG(11));
653 if ((status
& OPTi93X_IRQ_PLAYBACK
) && codec
->playback_substream
)
654 snd_pcm_period_elapsed(codec
->playback_substream
);
655 if ((status
& OPTi93X_IRQ_CAPTURE
) && codec
->capture_substream
) {
656 snd_wss_overrange(codec
);
657 snd_pcm_period_elapsed(codec
->capture_substream
);
659 outb(0x00, OPTi93X_PORT(codec
, STATUS
));
665 static int snd_opti9xx_read_check(struct snd_opti9xx
*chip
)
672 chip
->res_mc_base
= request_region(chip
->mc_base
, chip
->mc_base_size
,
674 if (chip
->res_mc_base
== NULL
)
677 value
= snd_opti9xx_read(chip
, OPTi9XX_MC_REG(1));
678 if (value
!= 0xff && value
!= inb(chip
->mc_base
+ OPTi9XX_MC_REG(1)))
679 if (value
== snd_opti9xx_read(chip
, OPTi9XX_MC_REG(1)))
682 chip
->res_mc_indir
= request_region(chip
->mc_indir_index
, 2,
684 if (chip
->res_mc_indir
== NULL
)
687 spin_lock_irqsave(&chip
->lock
, flags
);
688 outb(chip
->password
, chip
->mc_base
+ chip
->pwd_reg
);
689 outb(((chip
->mc_indir_index
& 0x1f0) >> 4), chip
->mc_base
);
690 spin_unlock_irqrestore(&chip
->lock
, flags
);
692 value
= snd_opti9xx_read(chip
, OPTi9XX_MC_REG(7));
693 snd_opti9xx_write(chip
, OPTi9XX_MC_REG(7), 0xff - value
);
694 if (snd_opti9xx_read(chip
, OPTi9XX_MC_REG(7)) == 0xff - value
)
697 release_and_free_resource(chip
->res_mc_indir
);
698 chip
->res_mc_indir
= NULL
;
700 release_and_free_resource(chip
->res_mc_base
);
701 chip
->res_mc_base
= NULL
;
706 static int snd_card_opti9xx_detect(struct snd_card
*card
,
707 struct snd_opti9xx
*chip
)
712 for (i
= OPTi9XX_HW_82C928
; i
< OPTi9XX_HW_82C930
; i
++) {
714 for (i
= OPTi9XX_HW_82C931
; i
>= OPTi9XX_HW_82C930
; i
--) {
716 err
= snd_opti9xx_init(chip
, i
);
720 err
= snd_opti9xx_read_check(chip
);
724 chip
->mc_indir_index
= 0;
731 static int snd_card_opti9xx_pnp(struct snd_opti9xx
*chip
,
732 struct pnp_card_link
*card
,
733 const struct pnp_card_device_id
*pid
)
735 struct pnp_dev
*pdev
;
737 struct pnp_dev
*devmpu
;
739 struct pnp_dev
*devmc
;
742 pdev
= pnp_request_card_device(card
, pid
->devs
[0].id
, NULL
);
746 err
= pnp_activate_dev(pdev
);
748 snd_printk(KERN_ERR
"AUDIO pnp configure failure: %d\n", err
);
753 port
= pnp_port_start(pdev
, 0) - 4;
754 fm_port
= pnp_port_start(pdev
, 1) + 8;
755 /* adjust mc_indir_index - some cards report it at 0xe?d,
756 other at 0xe?c but it really is always at 0xe?e */
757 chip
->mc_indir_index
= (pnp_port_start(pdev
, 3) & ~0xf) | 0xe;
759 devmc
= pnp_request_card_device(card
, pid
->devs
[2].id
, NULL
);
763 err
= pnp_activate_dev(devmc
);
765 snd_printk(KERN_ERR
"MC pnp configure failure: %d\n", err
);
769 port
= pnp_port_start(pdev
, 1);
770 fm_port
= pnp_port_start(pdev
, 2) + 8;
772 * The MC(0) is never accessed and card does not
773 * include it in the PnP resource range. OPTI93x include it.
775 chip
->mc_base
= pnp_port_start(devmc
, 0) - 1;
776 chip
->mc_base_size
= pnp_port_len(devmc
, 0) + 1;
778 irq
= pnp_irq(pdev
, 0);
779 dma1
= pnp_dma(pdev
, 0);
780 #if defined(CS4231) || defined(OPTi93X)
781 dma2
= pnp_dma(pdev
, 1);
782 #endif /* CS4231 || OPTi93X */
784 devmpu
= pnp_request_card_device(card
, pid
->devs
[1].id
, NULL
);
786 if (devmpu
&& mpu_port
> 0) {
787 err
= pnp_activate_dev(devmpu
);
789 snd_printk(KERN_ERR
"MPU401 pnp configure failure\n");
792 mpu_port
= pnp_port_start(devmpu
, 0);
793 mpu_irq
= pnp_irq(devmpu
, 0);
796 return pid
->driver_data
;
798 #endif /* CONFIG_PNP */
800 static void snd_card_opti9xx_free(struct snd_card
*card
)
802 struct snd_opti9xx
*chip
= card
->private_data
;
807 disable_irq(chip
->irq
);
808 free_irq(chip
->irq
, chip
);
810 release_and_free_resource(chip
->res_mc_indir
);
812 release_and_free_resource(chip
->res_mc_base
);
816 static int snd_opti9xx_probe(struct snd_card
*card
)
818 static long possible_ports
[] = {0x530, 0xe80, 0xf40, 0x604, -1};
821 struct snd_opti9xx
*chip
= card
->private_data
;
822 struct snd_wss
*codec
;
823 struct snd_rawmidi
*rmidi
;
824 struct snd_hwdep
*synth
;
826 #if defined(CS4231) || defined(OPTi93X)
832 if (port
== SNDRV_AUTO_PORT
) {
833 port
= snd_legacy_find_free_ioport(possible_ports
, 4);
835 snd_printk(KERN_ERR
"unable to find a free WSS port\n");
839 error
= snd_opti9xx_configure(chip
, port
, irq
, dma1
, xdma2
,
844 error
= snd_wss_create(card
, chip
->wss_base
+ 4, -1, irq
, dma1
, xdma2
,
846 WSS_HW_OPTI93X
, WSS_HWSHARE_IRQ
,
854 error
= snd_wss_pcm(codec
, 0);
857 error
= snd_wss_mixer(codec
);
861 error
= snd_opti93x_mixer(codec
);
866 error
= snd_wss_timer(codec
, 0);
871 error
= request_irq(irq
, snd_opti93x_interrupt
,
872 0, DEV_NAME
" - WSS", chip
);
874 snd_printk(KERN_ERR
"opti9xx: can't grab IRQ %d\n", irq
);
879 strcpy(card
->driver
, chip
->name
);
880 sprintf(card
->shortname
, "OPTi %s", card
->driver
);
881 #if defined(CS4231) || defined(OPTi93X)
882 sprintf(card
->longname
, "%s, %s at 0x%lx, irq %d, dma %d&%d",
883 card
->shortname
, codec
->pcm
->name
,
884 chip
->wss_base
+ 4, irq
, dma1
, xdma2
);
886 sprintf(card
->longname
, "%s, %s at 0x%lx, irq %d, dma %d",
887 card
->shortname
, codec
->pcm
->name
, chip
->wss_base
+ 4, irq
,
889 #endif /* CS4231 || OPTi93X */
891 if (mpu_port
<= 0 || mpu_port
== SNDRV_AUTO_PORT
)
894 error
= snd_mpu401_uart_new(card
, 0, MPU401_HW_MPU401
,
895 mpu_port
, 0, mpu_irq
, &rmidi
);
897 snd_printk(KERN_WARNING
"no MPU-401 device at 0x%lx?\n",
901 if (fm_port
> 0 && fm_port
!= SNDRV_AUTO_PORT
) {
902 struct snd_opl3
*opl3
= NULL
;
904 if (chip
->hardware
== OPTi9XX_HW_82C928
||
905 chip
->hardware
== OPTi9XX_HW_82C929
||
906 chip
->hardware
== OPTi9XX_HW_82C924
) {
907 struct snd_opl4
*opl4
;
908 /* assume we have an OPL4 */
909 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(2),
911 if (snd_opl4_create(card
, fm_port
, fm_port
- 8,
912 2, &opl3
, &opl4
) < 0) {
913 /* no luck, use OPL3 instead */
914 snd_opti9xx_write_mask(chip
, OPTi9XX_MC_REG(2),
918 #endif /* !OPTi93X */
919 if (!opl3
&& snd_opl3_create(card
, fm_port
, fm_port
+ 2,
920 OPL3_HW_AUTO
, 0, &opl3
) < 0) {
921 snd_printk(KERN_WARNING
"no OPL device at 0x%lx-0x%lx\n",
922 fm_port
, fm_port
+ 4 - 1);
925 error
= snd_opl3_hwdep_new(opl3
, 0, 1, &synth
);
931 return snd_card_register(card
);
934 static int snd_opti9xx_card_new(struct device
*pdev
, struct snd_card
**cardp
)
936 struct snd_card
*card
;
939 err
= snd_card_new(pdev
, index
, id
, THIS_MODULE
,
940 sizeof(struct snd_opti9xx
), &card
);
943 card
->private_free
= snd_card_opti9xx_free
;
948 static int snd_opti9xx_isa_match(struct device
*devptr
,
952 if (snd_opti9xx_pnp_is_probed
)
960 static int snd_opti9xx_isa_probe(struct device
*devptr
,
963 struct snd_card
*card
;
965 static long possible_mpu_ports
[] = {0x300, 0x310, 0x320, 0x330, -1};
967 static int possible_irqs
[] = {5, 9, 10, 11, 7, -1};
969 static int possible_irqs
[] = {9, 10, 11, 7, -1};
971 static int possible_mpu_irqs
[] = {5, 9, 10, 7, -1};
972 static int possible_dma1s
[] = {3, 1, 0, -1};
973 #if defined(CS4231) || defined(OPTi93X)
974 static int possible_dma2s
[][2] = {{1,-1}, {0,-1}, {-1,-1}, {0,-1}};
975 #endif /* CS4231 || OPTi93X */
977 if (mpu_port
== SNDRV_AUTO_PORT
) {
978 if ((mpu_port
= snd_legacy_find_free_ioport(possible_mpu_ports
, 2)) < 0) {
979 snd_printk(KERN_ERR
"unable to find a free MPU401 port\n");
983 if (irq
== SNDRV_AUTO_IRQ
) {
984 if ((irq
= snd_legacy_find_free_irq(possible_irqs
)) < 0) {
985 snd_printk(KERN_ERR
"unable to find a free IRQ\n");
989 if (mpu_irq
== SNDRV_AUTO_IRQ
) {
990 if ((mpu_irq
= snd_legacy_find_free_irq(possible_mpu_irqs
)) < 0) {
991 snd_printk(KERN_ERR
"unable to find a free MPU401 IRQ\n");
995 if (dma1
== SNDRV_AUTO_DMA
) {
996 if ((dma1
= snd_legacy_find_free_dma(possible_dma1s
)) < 0) {
997 snd_printk(KERN_ERR
"unable to find a free DMA1\n");
1001 #if defined(CS4231) || defined(OPTi93X)
1002 if (dma2
== SNDRV_AUTO_DMA
) {
1003 if ((dma2
= snd_legacy_find_free_dma(possible_dma2s
[dma1
% 4])) < 0) {
1004 snd_printk(KERN_ERR
"unable to find a free DMA2\n");
1010 error
= snd_opti9xx_card_new(devptr
, &card
);
1014 if ((error
= snd_card_opti9xx_detect(card
, card
->private_data
)) < 0) {
1015 snd_card_free(card
);
1018 if ((error
= snd_opti9xx_probe(card
)) < 0) {
1019 snd_card_free(card
);
1022 dev_set_drvdata(devptr
, card
);
1026 static int snd_opti9xx_isa_remove(struct device
*devptr
,
1029 snd_card_free(dev_get_drvdata(devptr
));
1034 static int snd_opti9xx_suspend(struct snd_card
*card
)
1036 struct snd_opti9xx
*chip
= card
->private_data
;
1038 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
1039 chip
->codec
->suspend(chip
->codec
);
1043 static int snd_opti9xx_resume(struct snd_card
*card
)
1045 struct snd_opti9xx
*chip
= card
->private_data
;
1047 #if defined(CS4231) || defined(OPTi93X)
1053 error
= snd_opti9xx_configure(chip
, port
, irq
, dma1
, xdma2
,
1057 chip
->codec
->resume(chip
->codec
);
1058 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
1062 static int snd_opti9xx_isa_suspend(struct device
*dev
, unsigned int n
,
1065 return snd_opti9xx_suspend(dev_get_drvdata(dev
));
1068 static int snd_opti9xx_isa_resume(struct device
*dev
, unsigned int n
)
1070 return snd_opti9xx_resume(dev_get_drvdata(dev
));
1074 static struct isa_driver snd_opti9xx_driver
= {
1075 .match
= snd_opti9xx_isa_match
,
1076 .probe
= snd_opti9xx_isa_probe
,
1077 .remove
= snd_opti9xx_isa_remove
,
1079 .suspend
= snd_opti9xx_isa_suspend
,
1080 .resume
= snd_opti9xx_isa_resume
,
1088 static int snd_opti9xx_pnp_probe(struct pnp_card_link
*pcard
,
1089 const struct pnp_card_device_id
*pid
)
1091 struct snd_card
*card
;
1093 struct snd_opti9xx
*chip
;
1095 if (snd_opti9xx_pnp_is_probed
)
1099 error
= snd_opti9xx_card_new(&pcard
->card
->dev
, &card
);
1102 chip
= card
->private_data
;
1104 hw
= snd_card_opti9xx_pnp(chip
, pcard
, pid
);
1107 hw
= OPTi9XX_HW_82C924
;
1110 hw
= OPTi9XX_HW_82C925
;
1113 hw
= OPTi9XX_HW_82C931
;
1116 snd_card_free(card
);
1120 if ((error
= snd_opti9xx_init(chip
, hw
))) {
1121 snd_card_free(card
);
1124 error
= snd_opti9xx_read_check(chip
);
1126 snd_printk(KERN_ERR
"OPTI chip not found\n");
1127 snd_card_free(card
);
1130 if ((error
= snd_opti9xx_probe(card
)) < 0) {
1131 snd_card_free(card
);
1134 pnp_set_card_drvdata(pcard
, card
);
1135 snd_opti9xx_pnp_is_probed
= 1;
1139 static void snd_opti9xx_pnp_remove(struct pnp_card_link
*pcard
)
1141 snd_card_free(pnp_get_card_drvdata(pcard
));
1142 pnp_set_card_drvdata(pcard
, NULL
);
1143 snd_opti9xx_pnp_is_probed
= 0;
1147 static int snd_opti9xx_pnp_suspend(struct pnp_card_link
*pcard
,
1150 return snd_opti9xx_suspend(pnp_get_card_drvdata(pcard
));
1153 static int snd_opti9xx_pnp_resume(struct pnp_card_link
*pcard
)
1155 return snd_opti9xx_resume(pnp_get_card_drvdata(pcard
));
1159 static struct pnp_card_driver opti9xx_pnpc_driver
= {
1160 .flags
= PNP_DRIVER_RES_DISABLE
,
1162 .id_table
= snd_opti9xx_pnpids
,
1163 .probe
= snd_opti9xx_pnp_probe
,
1164 .remove
= snd_opti9xx_pnp_remove
,
1166 .suspend
= snd_opti9xx_pnp_suspend
,
1167 .resume
= snd_opti9xx_pnp_resume
,
1173 #define CHIP_NAME "82C93x"
1175 #define CHIP_NAME "82C92x"
1178 static int __init
alsa_card_opti9xx_init(void)
1181 pnp_register_card_driver(&opti9xx_pnpc_driver
);
1182 if (snd_opti9xx_pnp_is_probed
)
1184 pnp_unregister_card_driver(&opti9xx_pnpc_driver
);
1186 return isa_register_driver(&snd_opti9xx_driver
, 1);
1189 static void __exit
alsa_card_opti9xx_exit(void)
1191 if (!snd_opti9xx_pnp_is_probed
) {
1192 isa_unregister_driver(&snd_opti9xx_driver
);
1196 pnp_unregister_card_driver(&opti9xx_pnpc_driver
);
1200 module_init(alsa_card_opti9xx_init
)
1201 module_exit(alsa_card_opti9xx_exit
)