allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / sound / oss / opl3sa2.c
blobe20051f1be4d7b0efcdc3a88eeb004ae7a963dfd
1 /*
2 * sound/oss/opl3sa2.c
4 * A low level driver for Yamaha OPL3-SA2 and SA3 cards.
5 * NOTE: All traces of the name OPL3-SAx have now (December 2000) been
6 * removed from the driver code, as an email exchange with Yamaha
7 * provided the information that the YMF-719 is indeed just a
8 * re-badged 715.
10 * Copyright 1998-2001 Scott Murray <scott@spiteful.org>
12 * Originally based on the CS4232 driver (in cs4232.c) by Hannu Savolainen
13 * and others. Now incorporates code/ideas from pss.c, also by Hannu
14 * Savolainen. Both of those files are distributed with the following
15 * license:
17 * "Copyright (C) by Hannu Savolainen 1993-1997
19 * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
20 * Version 2 (June 1991). See the "COPYING" file distributed with this software
21 * for more info."
23 * As such, in accordance with the above license, this file, opl3sa2.c, is
24 * distributed under the GNU GENERAL PUBLIC LICENSE (GPL) Version 2 (June 1991).
25 * See the "COPYING" file distributed with this software for more information.
27 * Change History
28 * --------------
29 * Scott Murray Original driver (Jun 14, 1998)
30 * Paul J.Y. Lahaie Changed probing / attach code order
31 * Scott Murray Added mixer support (Dec 03, 1998)
32 * Scott Murray Changed detection code to be more forgiving,
33 * added force option as last resort,
34 * fixed ioctl return values. (Dec 30, 1998)
35 * Scott Murray Simpler detection code should work all the time now
36 * (with thanks to Ben Hutchings for the heuristic),
37 * removed now unnecessary force option. (Jan 5, 1999)
38 * Christoph Hellwig Adapted to module_init/module_exit (Mar 4, 2000)
39 * Scott Murray Reworked SA2 versus SA3 mixer code, updated chipset
40 * version detection code (again!). (Dec 5, 2000)
41 * Scott Murray Adjusted master volume mixer scaling. (Dec 6, 2000)
42 * Scott Murray Based on a patch by Joel Yliluoma (aka Bisqwit),
43 * integrated wide mixer and adjusted mic, bass, treble
44 * scaling. (Dec 6, 2000)
45 * Scott Murray Based on a patch by Peter Englmaier, integrated
46 * ymode and loopback options. (Dec 6, 2000)
47 * Scott Murray Inspired by a patch by Peter Englmaier, and based on
48 * what ALSA does, added initialization code for the
49 * default DMA and IRQ settings. (Dec 6, 2000)
50 * Scott Murray Added some more checks to the card detection code,
51 * based on what ALSA does. (Dec 12, 2000)
52 * Scott Murray Inspired by similar patches from John Fremlin,
53 * Jim Radford, Mike Rolig, and Ingmar Steen, added 2.4
54 * ISA PnP API support, mainly based on bits from
55 * sb_card.c and awe_wave.c. (Dec 12, 2000)
56 * Scott Murray Some small cleanups to the init code output.
57 * (Jan 7, 2001)
58 * Zwane Mwaikambo Added PM support. (Dec 4 2001)
60 * Adam Belay Converted driver to new PnP Layer (Oct 12, 2002)
61 * Zwane Mwaikambo Code, data structure cleanups. (Feb 15 2002)
62 * Zwane Mwaikambo Free resources during auxiliary device probe
63 * failures (Apr 29 2002)
67 #include <linux/pnp.h>
68 #include <linux/init.h>
69 #include <linux/module.h>
70 #include <linux/delay.h>
71 #include "sound_config.h"
73 #include "ad1848.h"
74 #include "mpu401.h"
76 #define OPL3SA2_MODULE_NAME "opl3sa2"
77 #define PFX OPL3SA2_MODULE_NAME ": "
79 /* Useful control port indexes: */
80 #define OPL3SA2_PM 0x01
81 #define OPL3SA2_SYS_CTRL 0x02
82 #define OPL3SA2_IRQ_CONFIG 0x03
83 #define OPL3SA2_DMA_CONFIG 0x06
84 #define OPL3SA2_MASTER_LEFT 0x07
85 #define OPL3SA2_MASTER_RIGHT 0x08
86 #define OPL3SA2_MIC 0x09
87 #define OPL3SA2_MISC 0x0A
89 #define OPL3SA3_WIDE 0x14
90 #define OPL3SA3_BASS 0x15
91 #define OPL3SA3_TREBLE 0x16
93 /* Useful constants: */
94 #define DEFAULT_VOLUME 50
95 #define DEFAULT_MIC 50
96 #define DEFAULT_TIMBRE 0
98 /* Power saving modes */
99 #define OPL3SA2_PM_MODE0 0x00
100 #define OPL3SA2_PM_MODE1 0x04 /* PSV */
101 #define OPL3SA2_PM_MODE2 0x05 /* PSV | PDX */
102 #define OPL3SA2_PM_MODE3 0x27 /* ADOWN | PSV | PDN | PDX */
105 /* For checking against what the card returns: */
106 #define VERSION_UNKNOWN 0
107 #define VERSION_YMF711 1
108 #define VERSION_YMF715 2
109 #define VERSION_YMF715B 3
110 #define VERSION_YMF715E 4
111 /* also assuming that anything > 4 but <= 7 is a 715E */
113 /* Chipset type constants for use below */
114 #define CHIPSET_UNKNOWN -1
115 #define CHIPSET_OPL3SA2 0
116 #define CHIPSET_OPL3SA3 1
117 static const char *CHIPSET_TABLE[] = {"OPL3-SA2", "OPL3-SA3"};
119 #ifdef CONFIG_PNP
120 #define OPL3SA2_CARDS_MAX 4
121 #else
122 #define OPL3SA2_CARDS_MAX 1
123 #endif
125 /* This should be pretty obvious */
126 static int opl3sa2_cards_num;
128 typedef struct {
129 /* device resources */
130 unsigned short cfg_port;
131 struct address_info cfg;
132 struct address_info cfg_mss;
133 struct address_info cfg_mpu;
134 #ifdef CONFIG_PNP
135 /* PnP Stuff */
136 struct pnp_dev* pdev;
137 int activated; /* Whether said devices have been activated */
138 #endif
139 unsigned int card;
140 int chipset; /* What's my version(s)? */
141 char *chipset_name;
143 /* mixer data */
144 int mixer;
145 unsigned int volume_l;
146 unsigned int volume_r;
147 unsigned int mic;
148 unsigned int bass_l;
149 unsigned int bass_r;
150 unsigned int treble_l;
151 unsigned int treble_r;
152 unsigned int wide_l;
153 unsigned int wide_r;
154 } opl3sa2_state_t;
155 static opl3sa2_state_t opl3sa2_state[OPL3SA2_CARDS_MAX];
159 /* Our parameters */
160 static int __initdata io = -1;
161 static int __initdata mss_io = -1;
162 static int __initdata mpu_io = -1;
163 static int __initdata irq = -1;
164 static int __initdata dma = -1;
165 static int __initdata dma2 = -1;
166 static int __initdata ymode = -1;
167 static int __initdata loopback = -1;
169 #ifdef CONFIG_PNP
170 /* PnP specific parameters */
171 static int __initdata isapnp = 1;
172 static int __initdata multiple = 1;
174 /* Whether said devices have been activated */
175 static int opl3sa2_activated[OPL3SA2_CARDS_MAX];
176 #else
177 static int __initdata isapnp; /* = 0 */
178 static int __initdata multiple; /* = 0 */
179 #endif
181 MODULE_DESCRIPTION("Module for OPL3-SA2 and SA3 sound cards (uses AD1848 MSS driver).");
182 MODULE_AUTHOR("Scott Murray <scott@spiteful.org>");
183 MODULE_LICENSE("GPL");
186 module_param(io, int, 0);
187 MODULE_PARM_DESC(io, "Set I/O base of OPL3-SA2 or SA3 card (usually 0x370. Address must be even and must be from 0x100 to 0xFFE)");
189 module_param(mss_io, int, 0);
190 MODULE_PARM_DESC(mss_io, "Set MSS (audio) I/O base (0x530, 0xE80, or other. Address must end in 0 or 4 and must be from 0x530 to 0xF48)");
192 module_param(mpu_io, int, 0);
193 MODULE_PARM_DESC(mpu_io, "Set MIDI I/O base (0x330 or other. Address must be even and must be from 0x300 to 0x334)");
195 module_param(irq, int, 0);
196 MODULE_PARM_DESC(irq, "Set MSS (audio) IRQ (5, 7, 9, 10, 11, 12)");
198 module_param(dma, int, 0);
199 MODULE_PARM_DESC(dma, "Set MSS (audio) first DMA channel (0, 1, 3)");
201 module_param(dma2, int, 0);
202 MODULE_PARM_DESC(dma2, "Set MSS (audio) second DMA channel (0, 1, 3)");
204 module_param(ymode, int, 0);
205 MODULE_PARM_DESC(ymode, "Set Yamaha 3D enhancement mode (0 = Desktop/Normal, 1 = Notebook PC (1), 2 = Notebook PC (2), 3 = Hi-Fi)");
207 module_param(loopback, int, 0);
208 MODULE_PARM_DESC(loopback, "Set A/D input source. Useful for echo cancellation (0 = Mic Rch (default), 1 = Mono output loopback)");
210 #ifdef CONFIG_PNP
211 module_param(isapnp, bool, 0);
212 MODULE_PARM_DESC(isapnp, "When set to 0, ISA PnP support will be disabled");
214 module_param(multiple, bool, 0);
215 MODULE_PARM_DESC(multiple, "When set to 0, will not search for multiple cards");
216 #endif
220 * Standard read and write functions
223 static inline void opl3sa2_write(unsigned short port,
224 unsigned char index,
225 unsigned char data)
227 outb_p(index, port);
228 outb(data, port + 1);
232 static inline void opl3sa2_read(unsigned short port,
233 unsigned char index,
234 unsigned char* data)
236 outb_p(index, port);
237 *data = inb(port + 1);
242 * All of the mixer functions...
245 static void opl3sa2_set_volume(opl3sa2_state_t* devc, int left, int right)
247 static unsigned char scale[101] = {
248 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0e, 0x0e, 0x0e,
249 0x0e, 0x0e, 0x0e, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0c,
250 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0b, 0x0b, 0x0b, 0x0b,
251 0x0b, 0x0b, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x09, 0x09,
252 0x09, 0x09, 0x09, 0x09, 0x09, 0x08, 0x08, 0x08, 0x08, 0x08,
253 0x08, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x06, 0x06, 0x06,
254 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
255 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x03, 0x03, 0x03, 0x03,
256 0x03, 0x03, 0x03, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x01,
257 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
258 0x00
260 unsigned char vol;
262 vol = scale[left];
264 /* If level is zero, turn on mute */
265 if(!left)
266 vol |= 0x80;
268 opl3sa2_write(devc->cfg_port, OPL3SA2_MASTER_LEFT, vol);
270 vol = scale[right];
272 /* If level is zero, turn on mute */
273 if(!right)
274 vol |= 0x80;
276 opl3sa2_write(devc->cfg_port, OPL3SA2_MASTER_RIGHT, vol);
280 static void opl3sa2_set_mic(opl3sa2_state_t* devc, int level)
282 unsigned char vol = 0x1F;
284 if((level >= 0) && (level <= 100))
285 vol = 0x1F - (unsigned char) (32 * level / 101);
287 /* If level is zero, turn on mute */
288 if(!level)
289 vol |= 0x80;
291 opl3sa2_write(devc->cfg_port, OPL3SA2_MIC, vol);
295 static void opl3sa3_set_bass(opl3sa2_state_t* devc, int left, int right)
297 unsigned char bass;
299 bass = left ? ((unsigned char) (8 * left / 101)) : 0;
300 bass |= (right ? ((unsigned char) (8 * right / 101)) : 0) << 4;
302 opl3sa2_write(devc->cfg_port, OPL3SA3_BASS, bass);
306 static void opl3sa3_set_treble(opl3sa2_state_t* devc, int left, int right)
308 unsigned char treble;
310 treble = left ? ((unsigned char) (8 * left / 101)) : 0;
311 treble |= (right ? ((unsigned char) (8 * right / 101)) : 0) << 4;
313 opl3sa2_write(devc->cfg_port, OPL3SA3_TREBLE, treble);
319 static void opl3sa2_mixer_reset(opl3sa2_state_t* devc)
321 if (devc) {
322 opl3sa2_set_volume(devc, DEFAULT_VOLUME, DEFAULT_VOLUME);
323 devc->volume_l = devc->volume_r = DEFAULT_VOLUME;
325 opl3sa2_set_mic(devc, DEFAULT_MIC);
326 devc->mic = DEFAULT_MIC;
328 if (devc->chipset == CHIPSET_OPL3SA3) {
329 opl3sa3_set_bass(devc, DEFAULT_TIMBRE, DEFAULT_TIMBRE);
330 devc->bass_l = devc->bass_r = DEFAULT_TIMBRE;
331 opl3sa3_set_treble(devc, DEFAULT_TIMBRE, DEFAULT_TIMBRE);
332 devc->treble_l = devc->treble_r = DEFAULT_TIMBRE;
337 static inline void arg_to_vol_mono(unsigned int vol, int* value)
339 int left;
341 left = vol & 0x00ff;
342 if (left > 100)
343 left = 100;
344 *value = left;
348 static inline void arg_to_vol_stereo(unsigned int vol, int* aleft, int* aright)
350 arg_to_vol_mono(vol, aleft);
351 arg_to_vol_mono(vol >> 8, aright);
355 static inline int ret_vol_mono(int vol)
357 return ((vol << 8) | vol);
361 static inline int ret_vol_stereo(int left, int right)
363 return ((right << 8) | left);
367 static int opl3sa2_mixer_ioctl(int dev, unsigned int cmd, void __user *arg)
369 int retval, value, cmdf = cmd & 0xff;
370 int __user *p = (int __user *)arg;
372 opl3sa2_state_t* devc = &opl3sa2_state[dev];
374 switch (cmdf) {
375 case SOUND_MIXER_VOLUME:
376 case SOUND_MIXER_MIC:
377 case SOUND_MIXER_DEVMASK:
378 case SOUND_MIXER_STEREODEVS:
379 case SOUND_MIXER_RECMASK:
380 case SOUND_MIXER_RECSRC:
381 case SOUND_MIXER_CAPS:
382 break;
384 default:
385 return -EINVAL;
388 if (((cmd >> 8) & 0xff) != 'M')
389 return -EINVAL;
391 retval = 0;
392 if (_SIOC_DIR (cmd) & _SIOC_WRITE) {
393 switch (cmdf) {
394 case SOUND_MIXER_VOLUME:
395 retval = get_user(value, (unsigned __user *) arg);
396 if (retval)
397 break;
398 arg_to_vol_stereo(value, &devc->volume_l, &devc->volume_r);
399 opl3sa2_set_volume(devc, devc->volume_l, devc->volume_r);
400 value = ret_vol_stereo(devc->volume_l, devc->volume_r);
401 retval = put_user(value, p);
402 break;
404 case SOUND_MIXER_MIC:
405 retval = get_user(value, (unsigned __user *) arg);
406 if (retval)
407 break;
408 arg_to_vol_mono(value, &devc->mic);
409 opl3sa2_set_mic(devc, devc->mic);
410 value = ret_vol_mono(devc->mic);
411 retval = put_user(value, p);
412 break;
414 default:
415 retval = -EINVAL;
418 else {
420 * Return parameters
422 switch (cmdf) {
423 case SOUND_MIXER_DEVMASK:
424 retval = put_user(SOUND_MASK_VOLUME | SOUND_MASK_MIC, p);
425 break;
427 case SOUND_MIXER_STEREODEVS:
428 retval = put_user(SOUND_MASK_VOLUME, p);
429 break;
431 case SOUND_MIXER_RECMASK:
432 /* No recording devices */
433 retval = put_user(0, p);
434 break;
436 case SOUND_MIXER_CAPS:
437 retval = put_user(SOUND_CAP_EXCL_INPUT, p);
438 break;
440 case SOUND_MIXER_RECSRC:
441 /* No recording source */
442 retval = put_user(0, p);
443 break;
445 case SOUND_MIXER_VOLUME:
446 value = ret_vol_stereo(devc->volume_l, devc->volume_r);
447 retval = put_user(value, p);
448 break;
450 case SOUND_MIXER_MIC:
451 value = ret_vol_mono(devc->mic);
452 put_user(value, p);
453 break;
455 default:
456 retval = -EINVAL;
459 return retval;
461 /* opl3sa2_mixer_ioctl end */
464 static int opl3sa3_mixer_ioctl(int dev, unsigned int cmd, void __user * arg)
466 int value, retval, cmdf = cmd & 0xff;
468 opl3sa2_state_t* devc = &opl3sa2_state[dev];
470 switch (cmdf) {
471 case SOUND_MIXER_BASS:
472 value = ret_vol_stereo(devc->bass_l, devc->bass_r);
473 retval = put_user(value, (int __user *) arg);
474 break;
476 case SOUND_MIXER_TREBLE:
477 value = ret_vol_stereo(devc->treble_l, devc->treble_r);
478 retval = put_user(value, (int __user *) arg);
479 break;
481 case SOUND_MIXER_DIGITAL1:
482 value = ret_vol_stereo(devc->wide_l, devc->wide_r);
483 retval = put_user(value, (int __user *) arg);
484 break;
486 default:
487 retval = -EINVAL;
489 return retval;
491 /* opl3sa3_mixer_ioctl end */
494 static struct mixer_operations opl3sa2_mixer_operations =
496 .owner = THIS_MODULE,
497 .id = "OPL3-SA2",
498 .name = "Yamaha OPL3-SA2",
499 .ioctl = opl3sa2_mixer_ioctl
502 static struct mixer_operations opl3sa3_mixer_operations =
504 .owner = THIS_MODULE,
505 .id = "OPL3-SA3",
506 .name = "Yamaha OPL3-SA3",
507 .ioctl = opl3sa3_mixer_ioctl
510 /* End of mixer-related stuff */
514 * Component probe, attach, unload functions
517 static inline void __exit unload_opl3sa2_mpu(struct address_info *hw_config)
519 unload_mpu401(hw_config);
523 static void __init attach_opl3sa2_mss(struct address_info* hw_config, struct resource *ports)
525 int initial_mixers;
527 initial_mixers = num_mixers;
528 attach_ms_sound(hw_config, ports, THIS_MODULE); /* Slot 0 */
529 if (hw_config->slots[0] != -1) {
530 /* Did the MSS driver install? */
531 if(num_mixers == (initial_mixers + 1)) {
532 /* The MSS mixer is installed, reroute mixers appropriately */
533 AD1848_REROUTE(SOUND_MIXER_LINE1, SOUND_MIXER_CD);
534 AD1848_REROUTE(SOUND_MIXER_LINE2, SOUND_MIXER_SYNTH);
535 AD1848_REROUTE(SOUND_MIXER_LINE3, SOUND_MIXER_LINE);
537 else {
538 printk(KERN_ERR PFX "MSS mixer not installed?\n");
544 static inline void __exit unload_opl3sa2_mss(struct address_info* hw_config)
546 unload_ms_sound(hw_config);
550 static int __init probe_opl3sa2(struct address_info* hw_config, int card)
552 unsigned char misc;
553 unsigned char tmp;
554 unsigned char version;
557 * Try and allocate our I/O port range.
559 if (!request_region(hw_config->io_base, 2, OPL3SA2_MODULE_NAME)) {
560 printk(KERN_ERR PFX "Control I/O port %#x not free\n",
561 hw_config->io_base);
562 goto out_nodev;
566 * Check if writing to the read-only version bits of the miscellaneous
567 * register succeeds or not (it should not).
569 opl3sa2_read(hw_config->io_base, OPL3SA2_MISC, &misc);
570 opl3sa2_write(hw_config->io_base, OPL3SA2_MISC, misc ^ 0x07);
571 opl3sa2_read(hw_config->io_base, OPL3SA2_MISC, &tmp);
572 if(tmp != misc) {
573 printk(KERN_ERR PFX "Control I/O port %#x is not a YMF7xx chipset!\n",
574 hw_config->io_base);
575 goto out_region;
579 * Check if the MIC register is accessible.
581 opl3sa2_read(hw_config->io_base, OPL3SA2_MIC, &tmp);
582 opl3sa2_write(hw_config->io_base, OPL3SA2_MIC, 0x8a);
583 opl3sa2_read(hw_config->io_base, OPL3SA2_MIC, &tmp);
584 if((tmp & 0x9f) != 0x8a) {
585 printk(KERN_ERR
586 PFX "Control I/O port %#x is not a YMF7xx chipset!\n",
587 hw_config->io_base);
588 goto out_region;
590 opl3sa2_write(hw_config->io_base, OPL3SA2_MIC, tmp);
593 * Determine chipset type (SA2 or SA3)
595 * This is done by looking at the chipset version in the lower 3 bits
596 * of the miscellaneous register.
598 version = misc & 0x07;
599 printk(KERN_DEBUG PFX "Chipset version = %#x\n", version);
600 switch (version) {
601 case 0:
602 opl3sa2_state[card].chipset = CHIPSET_UNKNOWN;
603 printk(KERN_ERR
604 PFX "Unknown Yamaha audio controller version\n");
605 break;
607 case VERSION_YMF711:
608 opl3sa2_state[card].chipset = CHIPSET_OPL3SA2;
609 printk(KERN_INFO PFX "Found OPL3-SA2 (YMF711)\n");
610 break;
612 case VERSION_YMF715:
613 opl3sa2_state[card].chipset = CHIPSET_OPL3SA3;
614 printk(KERN_INFO
615 PFX "Found OPL3-SA3 (YMF715 or YMF719)\n");
616 break;
618 case VERSION_YMF715B:
619 opl3sa2_state[card].chipset = CHIPSET_OPL3SA3;
620 printk(KERN_INFO
621 PFX "Found OPL3-SA3 (YMF715B or YMF719B)\n");
622 break;
624 case VERSION_YMF715E:
625 default:
626 opl3sa2_state[card].chipset = CHIPSET_OPL3SA3;
627 printk(KERN_INFO
628 PFX "Found OPL3-SA3 (YMF715E or YMF719E)\n");
629 break;
632 if (opl3sa2_state[card].chipset != CHIPSET_UNKNOWN) {
633 /* Generate a pretty name */
634 opl3sa2_state[card].chipset_name = (char *)CHIPSET_TABLE[opl3sa2_state[card].chipset];
635 return 0;
638 out_region:
639 release_region(hw_config->io_base, 2);
640 out_nodev:
641 return -ENODEV;
645 static void __init attach_opl3sa2(struct address_info* hw_config, int card)
647 /* Initialize IRQ configuration to IRQ-B: -, IRQ-A: WSS+MPU+OPL3 */
648 opl3sa2_write(hw_config->io_base, OPL3SA2_IRQ_CONFIG, 0x0d);
650 /* Initialize DMA configuration */
651 if(hw_config->dma2 == hw_config->dma) {
652 /* Want DMA configuration DMA-B: -, DMA-A: WSS-P+WSS-R */
653 opl3sa2_write(hw_config->io_base, OPL3SA2_DMA_CONFIG, 0x03);
655 else {
656 /* Want DMA configuration DMA-B: WSS-R, DMA-A: WSS-P */
657 opl3sa2_write(hw_config->io_base, OPL3SA2_DMA_CONFIG, 0x21);
662 static void __init attach_opl3sa2_mixer(struct address_info *hw_config, int card)
664 struct mixer_operations* mixer_operations;
665 opl3sa2_state_t* devc = &opl3sa2_state[card];
667 /* Install master mixer */
668 if (devc->chipset == CHIPSET_OPL3SA3) {
669 mixer_operations = &opl3sa3_mixer_operations;
671 else {
672 mixer_operations = &opl3sa2_mixer_operations;
675 devc->cfg_port = hw_config->io_base;
676 devc->mixer = sound_install_mixer(MIXER_DRIVER_VERSION,
677 mixer_operations->name,
678 mixer_operations,
679 sizeof(struct mixer_operations),
680 devc);
681 if(devc->mixer < 0) {
682 printk(KERN_ERR PFX "Could not install %s master mixer\n",
683 mixer_operations->name);
685 else {
686 opl3sa2_mixer_reset(devc);
692 static void opl3sa2_clear_slots(struct address_info* hw_config)
694 int i;
696 for(i = 0; i < 6; i++) {
697 hw_config->slots[i] = -1;
702 static void __init opl3sa2_set_ymode(struct address_info* hw_config, int ymode)
705 * Set the Yamaha 3D enhancement mode (aka Ymersion) if asked to and
706 * it's supported.
708 * 0: Desktop (aka normal) 5-12 cm speakers
709 * 1: Notebook PC mode 1 3 cm speakers
710 * 2: Notebook PC mode 2 1.5 cm speakers
711 * 3: Hi-fi 16-38 cm speakers
713 if(ymode >= 0 && ymode <= 3) {
714 unsigned char sys_ctrl;
716 opl3sa2_read(hw_config->io_base, OPL3SA2_SYS_CTRL, &sys_ctrl);
717 sys_ctrl = (sys_ctrl & 0xcf) | ((ymode & 3) << 4);
718 opl3sa2_write(hw_config->io_base, OPL3SA2_SYS_CTRL, sys_ctrl);
720 else {
721 printk(KERN_ERR PFX "not setting ymode, it must be one of 0,1,2,3\n");
726 static void __init opl3sa2_set_loopback(struct address_info* hw_config, int loopback)
728 if(loopback >= 0 && loopback <= 1) {
729 unsigned char misc;
731 opl3sa2_read(hw_config->io_base, OPL3SA2_MISC, &misc);
732 misc = (misc & 0xef) | ((loopback & 1) << 4);
733 opl3sa2_write(hw_config->io_base, OPL3SA2_MISC, misc);
735 else {
736 printk(KERN_ERR PFX "not setting loopback, it must be either 0 or 1\n");
741 static void __exit unload_opl3sa2(struct address_info* hw_config, int card)
743 /* Release control ports */
744 release_region(hw_config->io_base, 2);
746 /* Unload mixer */
747 if(opl3sa2_state[card].mixer >= 0)
748 sound_unload_mixerdev(opl3sa2_state[card].mixer);
752 #ifdef CONFIG_PNP
753 static struct pnp_device_id pnp_opl3sa2_list[] = {
754 {.id = "YMH0021", .driver_data = 0},
755 {.id = ""}
758 MODULE_DEVICE_TABLE(pnp, pnp_opl3sa2_list);
760 static int opl3sa2_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
762 int card = opl3sa2_cards_num;
764 /* we don't actually want to return an error as the user may have specified
765 * no multiple card search
768 if (opl3sa2_cards_num == OPL3SA2_CARDS_MAX)
769 return 0;
770 opl3sa2_activated[card] = 1;
772 /* Our own config: */
773 opl3sa2_state[card].cfg.io_base = pnp_port_start(dev, 4);
774 opl3sa2_state[card].cfg.irq = pnp_irq(dev, 0);
775 opl3sa2_state[card].cfg.dma = pnp_dma(dev, 0);
776 opl3sa2_state[card].cfg.dma2 = pnp_dma(dev, 1);
778 /* The MSS config: */
779 opl3sa2_state[card].cfg_mss.io_base = pnp_port_start(dev, 1);
780 opl3sa2_state[card].cfg_mss.irq = pnp_irq(dev, 0);
781 opl3sa2_state[card].cfg_mss.dma = pnp_dma(dev, 0);
782 opl3sa2_state[card].cfg_mss.dma2 = pnp_dma(dev, 1);
783 opl3sa2_state[card].cfg_mss.card_subtype = 1; /* No IRQ or DMA setup */
785 opl3sa2_state[card].cfg_mpu.io_base = pnp_port_start(dev, 3);
786 opl3sa2_state[card].cfg_mpu.irq = pnp_irq(dev, 0);
787 opl3sa2_state[card].cfg_mpu.dma = -1;
788 opl3sa2_state[card].cfg_mpu.dma2 = -1;
789 opl3sa2_state[card].cfg_mpu.always_detect = 1; /* It's there, so use shared IRQs */
791 /* Call me paranoid: */
792 opl3sa2_clear_slots(&opl3sa2_state[card].cfg);
793 opl3sa2_clear_slots(&opl3sa2_state[card].cfg_mss);
794 opl3sa2_clear_slots(&opl3sa2_state[card].cfg_mpu);
796 opl3sa2_state[card].pdev = dev;
797 opl3sa2_cards_num++;
799 return 0;
802 static struct pnp_driver opl3sa2_driver = {
803 .name = "opl3sa2",
804 .id_table = pnp_opl3sa2_list,
805 .probe = opl3sa2_pnp_probe,
808 #endif /* CONFIG_PNP */
810 /* End of component functions */
813 * Install OPL3-SA2 based card(s).
815 * Need to have ad1848 and mpu401 loaded ready.
817 static int __init init_opl3sa2(void)
819 int card, max;
821 /* Sanitize isapnp and multiple settings */
822 isapnp = isapnp != 0 ? 1 : 0;
823 multiple = multiple != 0 ? 1 : 0;
825 max = (multiple && isapnp) ? OPL3SA2_CARDS_MAX : 1;
827 #ifdef CONFIG_PNP
828 if (isapnp){
829 pnp_register_driver(&opl3sa2_driver);
830 if(!opl3sa2_cards_num){
831 printk(KERN_INFO PFX "No PnP cards found\n");
832 isapnp = 0;
834 max = opl3sa2_cards_num;
836 #endif
838 for (card = 0; card < max; card++) {
839 /* If a user wants an I/O then assume they meant it */
840 struct resource *ports;
841 int base;
843 if (!isapnp) {
844 if (io == -1 || irq == -1 || dma == -1 ||
845 dma2 == -1 || mss_io == -1) {
846 printk(KERN_ERR
847 PFX "io, mss_io, irq, dma, and dma2 must be set\n");
848 return -EINVAL;
850 opl3sa2_cards_num++;
853 * Our own config:
854 * (NOTE: IRQ and DMA aren't used, so they're set to
855 * give pretty output from conf_printf. :)
857 opl3sa2_state[card].cfg.io_base = io;
858 opl3sa2_state[card].cfg.irq = irq;
859 opl3sa2_state[card].cfg.dma = dma;
860 opl3sa2_state[card].cfg.dma2 = dma2;
862 /* The MSS config: */
863 opl3sa2_state[card].cfg_mss.io_base = mss_io;
864 opl3sa2_state[card].cfg_mss.irq = irq;
865 opl3sa2_state[card].cfg_mss.dma = dma;
866 opl3sa2_state[card].cfg_mss.dma2 = dma2;
867 opl3sa2_state[card].cfg_mss.card_subtype = 1; /* No IRQ or DMA setup */
869 opl3sa2_state[card].cfg_mpu.io_base = mpu_io;
870 opl3sa2_state[card].cfg_mpu.irq = irq;
871 opl3sa2_state[card].cfg_mpu.dma = -1;
872 opl3sa2_state[card].cfg_mpu.always_detect = 1; /* Use shared IRQs */
874 /* Call me paranoid: */
875 opl3sa2_clear_slots(&opl3sa2_state[card].cfg);
876 opl3sa2_clear_slots(&opl3sa2_state[card].cfg_mss);
877 opl3sa2_clear_slots(&opl3sa2_state[card].cfg_mpu);
880 /* FIXME: leak */
881 if (probe_opl3sa2(&opl3sa2_state[card].cfg, card))
882 return -ENODEV;
884 base = opl3sa2_state[card].cfg_mss.io_base;
886 if (!request_region(base, 4, "WSS config"))
887 goto failed;
889 ports = request_region(base + 4, 4, "ad1848");
890 if (!ports)
891 goto failed2;
893 if (!probe_ms_sound(&opl3sa2_state[card].cfg_mss, ports)) {
895 * If one or more cards are already registered, don't
896 * return an error but print a warning. Note, this
897 * should never really happen unless the hardware or
898 * ISA PnP screwed up.
900 release_region(base + 4, 4);
901 failed2:
902 release_region(base, 4);
903 failed:
904 release_region(opl3sa2_state[card].cfg.io_base, 2);
906 if (opl3sa2_cards_num) {
907 printk(KERN_WARNING
908 PFX "There was a problem probing one "
909 " of the ISA PNP cards, continuing\n");
910 opl3sa2_cards_num--;
911 continue;
912 } else
913 return -ENODEV;
916 attach_opl3sa2(&opl3sa2_state[card].cfg, card);
917 conf_printf(opl3sa2_state[card].chipset_name, &opl3sa2_state[card].cfg);
918 attach_opl3sa2_mixer(&opl3sa2_state[card].cfg, card);
919 attach_opl3sa2_mss(&opl3sa2_state[card].cfg_mss, ports);
921 /* ewww =) */
922 opl3sa2_state[card].card = card;
925 * Set the Yamaha 3D enhancement mode (aka Ymersion) if asked to and
926 * it's supported.
928 if (ymode != -1) {
929 if (opl3sa2_state[card].chipset == CHIPSET_OPL3SA2) {
930 printk(KERN_ERR
931 PFX "ymode not supported on OPL3-SA2\n");
933 else {
934 opl3sa2_set_ymode(&opl3sa2_state[card].cfg, ymode);
939 /* Set A/D input to Mono loopback if asked to. */
940 if (loopback != -1) {
941 opl3sa2_set_loopback(&opl3sa2_state[card].cfg, loopback);
944 /* Attach MPU if we've been asked to do so, failure isn't fatal */
945 if (opl3sa2_state[card].cfg_mpu.io_base != -1) {
946 int base = opl3sa2_state[card].cfg_mpu.io_base;
947 struct resource *ports;
948 ports = request_region(base, 2, "mpu401");
949 if (!ports)
950 goto out;
951 if (!probe_mpu401(&opl3sa2_state[card].cfg_mpu, ports)) {
952 release_region(base, 2);
953 goto out;
955 if (attach_mpu401(&opl3sa2_state[card].cfg_mpu, THIS_MODULE)) {
956 printk(KERN_ERR PFX "failed to attach MPU401\n");
957 opl3sa2_state[card].cfg_mpu.slots[1] = -1;
962 out:
963 if (isapnp) {
964 printk(KERN_NOTICE PFX "%d PnP card(s) found.\n", opl3sa2_cards_num);
967 return 0;
972 * Uninstall OPL3-SA2 based card(s).
974 static void __exit cleanup_opl3sa2(void)
976 int card;
978 for(card = 0; card < opl3sa2_cards_num; card++) {
979 if (opl3sa2_state[card].cfg_mpu.slots[1] != -1) {
980 unload_opl3sa2_mpu(&opl3sa2_state[card].cfg_mpu);
982 unload_opl3sa2_mss(&opl3sa2_state[card].cfg_mss);
983 unload_opl3sa2(&opl3sa2_state[card].cfg, card);
984 #ifdef CONFIG_PNP
985 pnp_unregister_driver(&opl3sa2_driver);
986 #endif
990 module_init(init_opl3sa2);
991 module_exit(cleanup_opl3sa2);
993 #ifndef MODULE
994 static int __init setup_opl3sa2(char *str)
996 /* io, irq, dma, dma2,... */
997 #ifdef CONFIG_PNP
998 int ints[11];
999 #else
1000 int ints[9];
1001 #endif
1002 str = get_options(str, ARRAY_SIZE(ints), ints);
1004 io = ints[1];
1005 irq = ints[2];
1006 dma = ints[3];
1007 dma2 = ints[4];
1008 mss_io = ints[5];
1009 mpu_io = ints[6];
1010 ymode = ints[7];
1011 loopback = ints[8];
1012 #ifdef CONFIG_PNP
1013 isapnp = ints[9];
1014 multiple = ints[10];
1015 #endif
1016 return 1;
1019 __setup("opl3sa2=", setup_opl3sa2);
1020 #endif