3 * AD1816 lowlevel sound driver for Linux 2.6.0 and above
5 * Copyright (C) 1998-2003 by Thorsten Knabe <linux@thorsten-knabe.de>
7 * Based on the CS4232/AD1848 driver Copyright (C) by Hannu Savolainen 1993-1996
15 * Oleg Drokin: Some cleanup of load/unload functions. 1998/11/24
17 * Thorsten Knabe: attach and unload rewritten,
18 * some argument checks added 1998/11/30
20 * Thorsten Knabe: Buggy isa bridge workaround added 1999/01/16
22 * David Moews/Thorsten Knabe: Introduced options
23 * parameter. Added slightly modified patch from
24 * David Moews to disable dsp audio sources by setting
25 * bit 0 of options parameter. This seems to be
26 * required by some Aztech/Newcom SC-16 cards. 1999/04/18
28 * Christoph Hellwig: Adapted to module_init/module_exit. 2000/03/03
30 * Christoph Hellwig: Added isapnp support 2000/03/15
32 * Arnaldo Carvalho de Melo: get rid of check_region 2001/10/07
34 * Thorsten Knabe: Compiling with CONFIG_PNP enabled
35 * works again. It is now possible to use more than one
36 * AD1816 sound card. Sample rate now may be changed during
37 * playback/capture. printk() uses log levels everywhere.
38 * SMP fixes. DMA handling fixes.
39 * Other minor code cleanup. 2003/07/15
44 #include <linux/module.h>
45 #include <linux/init.h>
46 #include <linux/interrupt.h>
47 #include <linux/isapnp.h>
48 #include <linux/stddef.h>
49 #include <linux/spinlock.h>
50 #include "sound_config.h"
54 #define CHECK_FOR_POWER { int timeout=100; \
55 while (timeout > 0 && (inb(devc->base)&0x80)!= 0x80) {\
59 printk(KERN_WARNING "ad1816: Check for power failed in %s line: %d\n",__FILE__,__LINE__); \
63 /* structure to hold device specific information */
66 int base; /* set in attach */
71 int opened; /* open */
77 int recmask; /* setup */
78 unsigned char format_bits;
79 int supported_devices;
80 int supported_rec_devices;
81 unsigned short levels[SOUND_MIXER_NRDEVICES];
83 struct pnp_dev *pnpdev; /* configured via pnp */
84 int dev_no; /* this is the # in audio_devs and NOT
89 static int nr_ad1816_devs;
90 static int ad1816_clockfreq = 33000;
93 /* supported audio formats */
94 static int ad_format_mask =
95 AFMT_U8 | AFMT_S16_LE | AFMT_S16_BE | AFMT_MU_LAW | AFMT_A_LAW;
97 /* array of device info structures */
98 static ad1816_info dev_info[MAX_AUDIO_DEV];
101 /* ------------------------------------------------------------------- */
103 /* functions for easier access to inderect registers */
105 static int ad_read (ad1816_info * devc, int reg)
110 outb ((unsigned char) (reg & 0x3f), devc->base+0);
111 result = inb(devc->base+2);
112 result+= inb(devc->base+3)<<8;
117 static void ad_write (ad1816_info * devc, int reg, int data)
120 outb ((unsigned char) (reg & 0xff), devc->base+0);
121 outb ((unsigned char) (data & 0xff),devc->base+2);
122 outb ((unsigned char) ((data>>8)&0xff),devc->base+3);
125 /* ------------------------------------------------------------------- */
127 /* function interface required by struct audio_driver */
129 static void ad1816_halt_input (int dev)
132 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
133 unsigned char buffer;
135 DEBUGNOISE(printk(KERN_DEBUG "ad1816: halt_input called\n"));
137 spin_lock_irqsave(&devc->lock,flags);
139 if(!isa_dma_bridge_buggy) {
140 disable_dma(audio_devs[dev]->dmap_in->dma);
143 buffer=inb(devc->base+9);
145 /* disable capture */
146 outb(buffer & ~0x01,devc->base+9);
149 if(!isa_dma_bridge_buggy) {
150 enable_dma(audio_devs[dev]->dmap_in->dma);
153 /* Clear interrupt status */
154 outb (~0x40, devc->base+1);
156 devc->audio_mode &= ~PCM_ENABLE_INPUT;
157 spin_unlock_irqrestore(&devc->lock,flags);
160 static void ad1816_halt_output (int dev)
163 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
165 unsigned char buffer;
167 DEBUGNOISE(printk(KERN_DEBUG "ad1816: halt_output called!\n"));
169 spin_lock_irqsave(&devc->lock,flags);
170 /* Mute pcm output */
171 ad_write(devc, 4, ad_read(devc,4)|0x8080);
173 if(!isa_dma_bridge_buggy) {
174 disable_dma(audio_devs[dev]->dmap_out->dma);
177 buffer=inb(devc->base+8);
179 /* disable capture */
180 outb(buffer & ~0x01,devc->base+8);
183 if(!isa_dma_bridge_buggy) {
184 enable_dma(audio_devs[dev]->dmap_out->dma);
187 /* Clear interrupt status */
188 outb ((unsigned char)~0x80, devc->base+1);
190 devc->audio_mode &= ~PCM_ENABLE_OUTPUT;
191 spin_unlock_irqrestore(&devc->lock,flags);
194 static void ad1816_output_block (int dev, unsigned long buf,
195 int count, int intrflag)
199 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
201 DEBUGNOISE(printk(KERN_DEBUG "ad1816: output_block called buf=%ld count=%d flags=%d\n",buf,count,intrflag));
205 spin_lock_irqsave(&devc->lock,flags);
207 /* set transfer count */
208 ad_write (devc, 8, cnt & 0xffff);
210 devc->audio_mode |= PCM_ENABLE_OUTPUT;
211 spin_unlock_irqrestore(&devc->lock,flags);
215 static void ad1816_start_input (int dev, unsigned long buf, int count,
220 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
222 DEBUGNOISE(printk(KERN_DEBUG "ad1816: start_input called buf=%ld count=%d flags=%d\n",buf,count,intrflag));
226 spin_lock_irqsave(&devc->lock,flags);
228 /* set transfer count */
229 ad_write (devc, 10, cnt & 0xffff);
230 devc->audio_mode |= PCM_ENABLE_INPUT;
231 spin_unlock_irqrestore(&devc->lock,flags);
234 static int ad1816_prepare_for_input (int dev, int bsize, int bcount)
238 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
239 unsigned char fmt_bits;
241 DEBUGNOISE(printk(KERN_DEBUG "ad1816: prepare_for_input called: bsize=%d bcount=%d\n",bsize,bcount));
243 spin_lock_irqsave(&devc->lock,flags);
244 fmt_bits= (devc->format_bits&0x7)<<3;
246 /* set mono/stereo mode */
247 if (devc->channels > 1) {
250 /* set Mono/Stereo in playback/capture register */
251 outb( (inb(devc->base+8) & ~0x3C)|fmt_bits, devc->base+8);
252 outb( (inb(devc->base+9) & ~0x3C)|fmt_bits, devc->base+9);
254 freq=((unsigned int)devc->speed*33000)/ad1816_clockfreq;
256 /* write playback/capture speeds */
257 ad_write (devc, 2, freq & 0xffff);
258 ad_write (devc, 3, freq & 0xffff);
260 spin_unlock_irqrestore(&devc->lock,flags);
262 ad1816_halt_input(dev);
266 static int ad1816_prepare_for_output (int dev, int bsize, int bcount)
270 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
271 unsigned char fmt_bits;
273 DEBUGNOISE(printk(KERN_DEBUG "ad1816: prepare_for_output called: bsize=%d bcount=%d\n",bsize,bcount));
275 spin_lock_irqsave(&devc->lock,flags);
277 fmt_bits= (devc->format_bits&0x7)<<3;
278 /* set mono/stereo mode */
279 if (devc->channels > 1) {
283 /* write format bits to playback/capture registers */
284 outb( (inb(devc->base+8) & ~0x3C)|fmt_bits, devc->base+8);
285 outb( (inb(devc->base+9) & ~0x3C)|fmt_bits, devc->base+9);
287 freq=((unsigned int)devc->speed*33000)/ad1816_clockfreq;
289 /* write playback/capture speeds */
290 ad_write (devc, 2, freq & 0xffff);
291 ad_write (devc, 3, freq & 0xffff);
293 spin_unlock_irqrestore(&devc->lock,flags);
295 ad1816_halt_output(dev);
300 static void ad1816_trigger (int dev, int state)
303 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
305 DEBUGNOISE(printk(KERN_DEBUG "ad1816: trigger called! (devc=%d,devc->base=%d\n", devc, devc->base));
307 /* mode may have changed */
309 spin_lock_irqsave(&devc->lock,flags);
311 /* mask out modes not specified on open call */
312 state &= devc->audio_mode;
314 /* setup soundchip to new io-mode */
315 if (state & PCM_ENABLE_INPUT) {
317 outb(inb(devc->base+9)|0x01, devc->base+9);
319 /* disable capture */
320 outb(inb(devc->base+9)&~0x01, devc->base+9);
323 if (state & PCM_ENABLE_OUTPUT) {
324 /* enable playback */
325 outb(inb(devc->base+8)|0x01, devc->base+8);
326 /* unmute pcm output */
327 ad_write(devc, 4, ad_read(devc,4)&~0x8080);
329 /* mute pcm output */
330 ad_write(devc, 4, ad_read(devc,4)|0x8080);
331 /* disable capture */
332 outb(inb(devc->base+8)&~0x01, devc->base+8);
334 spin_unlock_irqrestore(&devc->lock,flags);
338 /* halt input & output */
339 static void ad1816_halt (int dev)
341 ad1816_halt_input(dev);
342 ad1816_halt_output(dev);
345 static void ad1816_reset (int dev)
350 /* set playback speed */
351 static int ad1816_set_speed (int dev, int arg)
357 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
359 spin_lock_irqsave(&devc->lock, flags);
362 spin_unlock_irqrestore(&devc->lock, flags);
374 /* change speed during playback */
375 freq=((unsigned int)devc->speed*33000)/ad1816_clockfreq;
376 /* write playback/capture speeds */
377 ad_write (devc, 2, freq & 0xffff);
378 ad_write (devc, 3, freq & 0xffff);
381 spin_unlock_irqrestore(&devc->lock, flags);
386 static unsigned int ad1816_set_bits (int dev, unsigned int arg)
389 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
391 static struct format_tbl {
398 { AFMT_IMA_ADPCM, 0 },
407 int i, n = sizeof (format2bits) / sizeof (struct format_tbl);
409 spin_lock_irqsave(&devc->lock, flags);
410 /* return current format */
412 arg = devc->audio_format;
413 spin_unlock_irqrestore(&devc->lock, flags);
416 devc->audio_format = arg;
418 /* search matching format bits */
419 for (i = 0; i < n; i++)
420 if (format2bits[i].format == arg) {
421 devc->format_bits = format2bits[i].bits;
422 devc->audio_format = arg;
423 spin_unlock_irqrestore(&devc->lock, flags);
427 /* Still hanging here. Something must be terribly wrong */
428 devc->format_bits = 0;
429 devc->audio_format = AFMT_U8;
430 spin_unlock_irqrestore(&devc->lock, flags);
434 static short ad1816_set_channels (int dev, short arg)
436 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
438 if (arg != 1 && arg != 2)
439 return devc->channels;
441 devc->channels = arg;
446 static int ad1816_open (int dev, int mode)
448 ad1816_info *devc = NULL;
451 /* is device number valid ? */
452 if (dev < 0 || dev >= num_audiodevs)
455 /* get device info of this dev */
456 devc = (ad1816_info *) audio_devs[dev]->devc;
458 /* make check if device already open atomic */
459 spin_lock_irqsave(&devc->lock,flags);
462 spin_unlock_irqrestore(&devc->lock,flags);
466 /* mark device as open */
469 devc->audio_mode = 0;
471 devc->audio_format=AFMT_U8;
473 spin_unlock_irqrestore(&devc->lock,flags);
474 ad1816_reset(devc->dev_no); /* halt all pending output */
478 static void ad1816_close (int dev) /* close device */
481 ad1816_info *devc = (ad1816_info *) audio_devs[dev]->devc;
483 /* halt all pending output */
484 ad1816_reset(devc->dev_no);
486 spin_lock_irqsave(&devc->lock,flags);
488 devc->audio_mode = 0;
490 devc->audio_format=AFMT_U8;
491 devc->format_bits = 0;
492 spin_unlock_irqrestore(&devc->lock,flags);
496 /* ------------------------------------------------------------------- */
498 /* Audio driver structure */
500 static struct audio_driver ad1816_audio_driver =
502 .owner = THIS_MODULE,
504 .close = ad1816_close,
505 .output_block = ad1816_output_block,
506 .start_input = ad1816_start_input,
507 .prepare_for_input = ad1816_prepare_for_input,
508 .prepare_for_output = ad1816_prepare_for_output,
509 .halt_io = ad1816_halt,
510 .halt_input = ad1816_halt_input,
511 .halt_output = ad1816_halt_output,
512 .trigger = ad1816_trigger,
513 .set_speed = ad1816_set_speed,
514 .set_bits = ad1816_set_bits,
515 .set_channels = ad1816_set_channels,
519 /* ------------------------------------------------------------------- */
521 /* Interrupt handler */
524 static irqreturn_t ad1816_interrupt (int irq, void *dev_id)
526 unsigned char status;
527 ad1816_info *devc = (ad1816_info *)dev_id;
529 if (irq < 0 || irq > 15) {
530 printk(KERN_WARNING "ad1816: Got bogus interrupt %d\n", irq);
534 spin_lock(&devc->lock);
536 /* read interrupt register */
537 status = inb (devc->base+1);
538 /* Clear all interrupt */
539 outb (~status, devc->base+1);
541 DEBUGNOISE(printk(KERN_DEBUG "ad1816: Got interrupt subclass %d\n",status));
544 DEBUGNOISE(printk(KERN_DEBUG "ad1816: interrupt: Got interrupt, but no source.\n"));
545 spin_unlock(&devc->lock);
549 if (devc->opened && (devc->audio_mode & PCM_ENABLE_INPUT) && (status&64))
550 DMAbuf_inputintr (devc->dev_no);
552 if (devc->opened && (devc->audio_mode & PCM_ENABLE_OUTPUT) && (status & 128))
553 DMAbuf_outputintr (devc->dev_no, 1);
555 spin_unlock(&devc->lock);
559 /* ------------------------------------------------------------------- */
564 unsigned int regno: 7;
565 unsigned int polarity:1; /* 0=normal, 1=reversed */
566 unsigned int bitpos:4;
567 unsigned int nbits:4;
570 static char mix_cvt[101] = {
571 0, 0, 3, 7,10,13,16,19,21,23,26,28,30,32,34,35,37,39,40,42,
572 43,45,46,47,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,
573 65,66,67,68,69,70,70,71,72,73,73,74,75,75,76,77,77,78,79,79,
574 80,81,81,82,82,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,
575 91,91,92,92,93,93,94,94,95,95,96,96,96,97,97,98,98,98,99,99,
579 typedef struct mixer_def mixer_ent;
582 * Most of the mixer entries work in backwards. Setting the polarity field
583 * makes them to work correctly.
585 * The channel numbering used by individual soundcards is not fixed. Some
586 * cards have assigned different meanings for the AUX1, AUX2 and LINE inputs.
587 * The current version doesn't try to compensate this.
590 #define MIX_ENT(name, reg_l, pola_l, pos_l, len_l, reg_r, pola_r, pos_r, len_r) \
591 {{reg_l, pola_l, pos_l, len_l}, {reg_r, pola_r, pos_r, len_r}}
594 static mixer_ent mix_devices[SOUND_MIXER_NRDEVICES][2] = {
595 MIX_ENT(SOUND_MIXER_VOLUME, 14, 1, 8, 5, 14, 1, 0, 5),
596 MIX_ENT(SOUND_MIXER_BASS, 0, 0, 0, 0, 0, 0, 0, 0),
597 MIX_ENT(SOUND_MIXER_TREBLE, 0, 0, 0, 0, 0, 0, 0, 0),
598 MIX_ENT(SOUND_MIXER_SYNTH, 5, 1, 8, 6, 5, 1, 0, 6),
599 MIX_ENT(SOUND_MIXER_PCM, 4, 1, 8, 6, 4, 1, 0, 6),
600 MIX_ENT(SOUND_MIXER_SPEAKER, 0, 0, 0, 0, 0, 0, 0, 0),
601 MIX_ENT(SOUND_MIXER_LINE, 18, 1, 8, 5, 18, 1, 0, 5),
602 MIX_ENT(SOUND_MIXER_MIC, 19, 1, 8, 5, 19, 1, 0, 5),
603 MIX_ENT(SOUND_MIXER_CD, 15, 1, 8, 5, 15, 1, 0, 5),
604 MIX_ENT(SOUND_MIXER_IMIX, 0, 0, 0, 0, 0, 0, 0, 0),
605 MIX_ENT(SOUND_MIXER_ALTPCM, 0, 0, 0, 0, 0, 0, 0, 0),
606 MIX_ENT(SOUND_MIXER_RECLEV, 20, 0, 8, 4, 20, 0, 0, 4),
607 MIX_ENT(SOUND_MIXER_IGAIN, 0, 0, 0, 0, 0, 0, 0, 0),
608 MIX_ENT(SOUND_MIXER_OGAIN, 0, 0, 0, 0, 0, 0, 0, 0),
609 MIX_ENT(SOUND_MIXER_LINE1, 17, 1, 8, 5, 17, 1, 0, 5),
610 MIX_ENT(SOUND_MIXER_LINE2, 16, 1, 8, 5, 16, 1, 0, 5),
611 MIX_ENT(SOUND_MIXER_LINE3, 39, 0, 9, 4, 39, 1, 0, 5)
615 static unsigned short default_mixer_levels[SOUND_MIXER_NRDEVICES] =
617 0x4343, /* Master Volume */
622 0x0000, /* PC Speaker */
623 0x0000, /* Ext Line */
626 0x0000, /* Recording monitor */
628 0x0000, /* Recording level */
629 0x0000, /* Input gain */
630 0x0000, /* Output gain */
633 0x0000 /* Line3 (usually line in)*/
642 ad1816_set_recmask (ad1816_info * devc, int mask)
645 unsigned char recdev;
648 spin_lock_irqsave(&devc->lock, flags);
649 mask &= devc->supported_rec_devices;
652 /* Count selected device bits */
653 for (i = 0; i < 32; i++)
658 mask = SOUND_MASK_MIC;
659 else if (n != 1) { /* Too many devices selected */
660 /* Filter out active settings */
661 mask &= ~devc->recmask;
664 /* Count selected device bits */
665 for (i = 0; i < 32; i++)
670 mask = SOUND_MASK_MIC;
678 case SOUND_MASK_LINE:
686 case SOUND_MASK_LINE1:
690 case SOUND_MASK_LINE2:
694 case SOUND_MASK_VOLUME:
699 mask = SOUND_MASK_MIC;
705 (ad_read (devc, 20) & 0x8f8f) | recdev | (recdev<<8));
707 devc->recmask = mask;
708 spin_unlock_irqrestore(&devc->lock, flags);
713 change_bits (int *regval, int dev, int chn, int newval)
718 /* Reverse polarity*/
720 if (mix_devices[dev][chn].polarity == 1)
721 newval = 100 - newval;
723 mask = (1 << mix_devices[dev][chn].nbits) - 1;
724 shift = mix_devices[dev][chn].bitpos;
726 newval = (int) ((newval * mask) + 50) / 100;
728 *regval &= ~(mask << shift);
730 *regval |= (newval & mask) << shift;
734 ad1816_mixer_get (ad1816_info * devc, int dev)
736 DEBUGNOISE(printk(KERN_DEBUG "ad1816: mixer_get called!\n"));
738 /* range check + supported mixer check */
739 if (dev < 0 || dev >= SOUND_MIXER_NRDEVICES )
741 if (!((1 << dev) & devc->supported_devices))
744 return devc->levels[dev];
748 ad1816_mixer_set (ad1816_info * devc, int dev, int value)
750 int left = value & 0x000000ff;
751 int right = (value & 0x0000ff00) >> 8;
759 DEBUGNOISE(printk(KERN_DEBUG "ad1816: mixer_set called!\n"));
761 if (dev < 0 || dev >= SOUND_MIXER_NRDEVICES )
774 if (mix_devices[dev][RIGHT_CHN].nbits == 0)
776 retvol = left | (right << 8);
780 left = mix_cvt[left];
781 right = mix_cvt[right];
783 /* reject all mixers that are not supported */
784 if (!(devc->supported_devices & (1 << dev)))
788 if (mix_devices[dev][LEFT_CHN].nbits == 0)
790 spin_lock_irqsave(&devc->lock, flags);
792 /* keep precise volume internal */
793 devc->levels[dev] = retvol;
795 /* Set the left channel */
796 regoffs = mix_devices[dev][LEFT_CHN].regno;
797 val = ad_read (devc, regoffs);
798 change_bits (&val, dev, LEFT_CHN, left);
802 /* Mute bit masking on some registers */
803 if ( regoffs==5 || regoffs==14 || regoffs==15 ||
804 regoffs==16 || regoffs==17 || regoffs==18 ||
805 regoffs==19 || regoffs==39) {
811 ad_write (devc, regoffs, valmute); /* mute */
814 * Set the right channel
817 /* Was just a mono channel */
818 if (mix_devices[dev][RIGHT_CHN].nbits == 0) {
819 spin_unlock_irqrestore(&devc->lock, flags);
823 regoffs = mix_devices[dev][RIGHT_CHN].regno;
824 val = ad_read (devc, regoffs);
825 change_bits (&val, dev, RIGHT_CHN, right);
828 if ( regoffs==5 || regoffs==14 || regoffs==15 ||
829 regoffs==16 || regoffs==17 || regoffs==18 ||
830 regoffs==19 || regoffs==39) {
836 ad_write (devc, regoffs, valmute); /* mute */
837 spin_unlock_irqrestore(&devc->lock, flags);
841 #define MIXER_DEVICES ( SOUND_MASK_VOLUME | \
852 #define REC_DEVICES ( SOUND_MASK_LINE2 |\
861 ad1816_mixer_reset (ad1816_info * devc)
865 devc->supported_devices = MIXER_DEVICES;
867 devc->supported_rec_devices = REC_DEVICES;
869 for (i = 0; i < SOUND_MIXER_NRDEVICES; i++)
870 if (devc->supported_devices & (1 << i))
871 ad1816_mixer_set (devc, i, default_mixer_levels[i]);
872 ad1816_set_recmask (devc, SOUND_MASK_MIC);
876 ad1816_mixer_ioctl (int dev, unsigned int cmd, void __user * arg)
878 ad1816_info *devc = mixer_devs[dev]->devc;
882 DEBUGNOISE(printk(KERN_DEBUG "ad1816: mixer_ioctl called!\n"));
885 if (((cmd >> 8) & 0xff) == 'M') {
888 if (_SIOC_DIR (cmd) & _SIOC_WRITE) {
890 case SOUND_MIXER_RECSRC:
892 if (get_user(val, p))
894 val=ad1816_set_recmask (devc, val);
895 return put_user(val, p);
899 if (get_user(val, p))
901 if ((val=ad1816_mixer_set (devc, cmd & 0xff, val))<0)
904 return put_user(val, p);
908 switch (cmd & 0xff) {
910 case SOUND_MIXER_RECSRC:
912 return put_user(val, p);
915 case SOUND_MIXER_DEVMASK:
916 val=devc->supported_devices;
917 return put_user(val, p);
920 case SOUND_MIXER_STEREODEVS:
921 val=devc->supported_devices & ~(SOUND_MASK_SPEAKER | SOUND_MASK_IMIX);
922 return put_user(val, p);
925 case SOUND_MIXER_RECMASK:
926 val=devc->supported_rec_devices;
927 return put_user(val, p);
930 case SOUND_MIXER_CAPS:
931 val=SOUND_CAP_EXCL_INPUT;
932 return put_user(val, p);
936 if ((val=ad1816_mixer_get (devc, cmd & 0xff))<0)
939 return put_user(val, p);
947 /* ------------------------------------------------------------------- */
949 /* Mixer structure */
951 static struct mixer_operations ad1816_mixer_operations = {
952 .owner = THIS_MODULE,
954 .name = "AD1816 Mixer",
955 .ioctl = ad1816_mixer_ioctl
959 /* ------------------------------------------------------------------- */
961 /* stuff for card recognition, init and unloading PNP ...*/
964 /* check if AD1816 present at specified hw_config and register device with OS
965 * return 1 if initialization was successful, 0 otherwise
967 static int __init ad1816_init_card (struct address_info *hw_config,
970 ad1816_info *devc = NULL;
974 printk(KERN_INFO "ad1816: initializing card: io=0x%x, irq=%d, dma=%d, "
975 "dma2=%d, clockfreq=%d, options=%d isadmabug=%d "
983 isa_dma_bridge_buggy,
986 /* ad1816_info structure remaining ? */
987 if (nr_ad1816_devs >= MAX_AUDIO_DEV) {
988 printk(KERN_WARNING "ad1816: no more ad1816_info structures "
993 devc = &dev_info[nr_ad1816_devs];
994 devc->base = hw_config->io_base;
995 devc->irq = hw_config->irq;
996 devc->dma_playback=hw_config->dma;
997 devc->dma_capture=hw_config->dma2;
1000 spin_lock_init(&devc->lock);
1002 if (!request_region(devc->base, 16, "AD1816 Sound")) {
1003 printk(KERN_WARNING "ad1816: I/O port 0x%03x not free\n",
1008 printk(KERN_INFO "ad1816: Examining AD1816 at address 0x%03x.\n",
1012 /* tests for ad1816 */
1013 /* base+0: bit 1 must be set but not 255 */
1014 tmp=inb(devc->base);
1015 if ( (tmp&0x80)==0 || tmp==255 ) {
1016 printk (KERN_INFO "ad1816: Chip is not an AD1816 or chip "
1017 "is not active (Test 0)\n");
1018 goto out_release_region;
1021 /* writes to ireg 8 are copied to ireg 9 */
1022 ad_write(devc,8,12345);
1023 if (ad_read(devc,9)!=12345) {
1024 printk(KERN_INFO "ad1816: Chip is not an AD1816 (Test 1)\n");
1025 goto out_release_region;
1028 /* writes to ireg 8 are copied to ireg 9 */
1029 ad_write(devc,8,54321);
1030 if (ad_read(devc,9)!=54321) {
1031 printk(KERN_INFO "ad1816: Chip is not an AD1816 (Test 2)\n");
1032 goto out_release_region;
1035 /* writes to ireg 10 are copied to ireg 11 */
1036 ad_write(devc,10,54321);
1037 if (ad_read(devc,11)!=54321) {
1038 printk (KERN_INFO "ad1816: Chip is not an AD1816 (Test 3)\n");
1039 goto out_release_region;
1042 /* writes to ireg 10 are copied to ireg 11 */
1043 ad_write(devc,10,12345);
1044 if (ad_read(devc,11)!=12345) {
1045 printk (KERN_INFO "ad1816: Chip is not an AD1816 (Test 4)\n");
1046 goto out_release_region;
1049 /* bit in base +1 cannot be set to 1 */
1050 tmp=inb(devc->base+1);
1051 outb(0xff,devc->base+1);
1052 if (inb(devc->base+1)!=tmp) {
1053 printk(KERN_INFO "ad1816: Chip is not an AD1816 (Test 5)\n");
1054 goto out_release_region;
1057 printk(KERN_INFO "ad1816: AD1816 (version %d) successfully detected!\n",
1060 /* disable all interrupts */
1063 /* Clear pending interrupts */
1064 outb (0, devc->base+1);
1067 if (devc->irq < 0 || devc->irq > 15)
1068 goto out_release_region;
1069 if (request_irq(devc->irq, ad1816_interrupt,0,
1070 "SoundPort", devc) < 0) {
1071 printk(KERN_WARNING "ad1816: IRQ in use\n");
1072 goto out_release_region;
1076 if (sound_alloc_dma (devc->dma_playback, "Sound System")) {
1077 printk(KERN_WARNING "ad1816: Can't allocate DMA%d\n",
1078 devc->dma_playback);
1082 if ( devc->dma_capture >= 0 &&
1083 devc->dma_capture != devc->dma_playback) {
1084 if (sound_alloc_dma(devc->dma_capture,
1085 "Sound System (capture)")) {
1086 printk(KERN_WARNING "ad1816: Can't allocate DMA%d\n",
1090 devc->audio_mode=DMA_AUTOMODE|DMA_DUPLEX;
1092 printk(KERN_WARNING "ad1816: Only one DMA channel "
1093 "available/configured. No duplex operation possible\n");
1094 devc->audio_mode=DMA_AUTOMODE;
1097 conf_printf2 ("AD1816 audio driver",
1098 devc->base, devc->irq, devc->dma_playback,
1101 /* register device */
1102 if ((oss_devno = sound_install_audiodrv (AUDIO_DRIVER_VERSION,
1103 "AD1816 audio driver",
1104 &ad1816_audio_driver,
1105 sizeof (struct audio_driver),
1110 devc->dma_capture)) < 0) {
1111 printk(KERN_WARNING "ad1816: Can't install sound driver\n");
1112 goto out_free_dma_2;
1116 ad_write(devc,32,0x80f0); /* sound system mode */
1118 ad_write(devc,33,0); /* disable all audiosources for dsp */
1120 ad_write(devc,33,0x03f8); /* enable all audiosources for dsp */
1122 ad_write(devc,4,0x8080); /* default values for volumes (muted)*/
1123 ad_write(devc,5,0x8080);
1124 ad_write(devc,6,0x8080);
1125 ad_write(devc,7,0x8080);
1126 ad_write(devc,15,0x8888);
1127 ad_write(devc,16,0x8888);
1128 ad_write(devc,17,0x8888);
1129 ad_write(devc,18,0x8888);
1130 ad_write(devc,19,0xc888); /* +20db mic active */
1131 ad_write(devc,14,0x0000); /* Master volume unmuted */
1132 ad_write(devc,39,0x009f); /* 3D effect on 0% phone out muted */
1133 ad_write(devc,44,0x0080); /* everything on power, 3d enabled for d/a */
1134 outb(0x10,devc->base+8); /* set dma mode */
1135 outb(0x10,devc->base+9);
1137 /* enable capture + playback interrupt */
1138 ad_write(devc,1,0xc000);
1140 /* set mixer defaults */
1141 ad1816_mixer_reset (devc);
1143 /* register mixer */
1144 if ((audio_devs[oss_devno]->mixer_dev=sound_install_mixer(
1145 MIXER_DRIVER_VERSION,
1146 "AD1816 audio driver",
1147 &ad1816_mixer_operations,
1148 sizeof (struct mixer_operations),
1150 printk(KERN_WARNING "Can't install mixer\n");
1152 /* make ad1816_info active */
1154 printk(KERN_INFO "ad1816: card successfully installed!\n");
1156 /* error handling */
1158 if (devc->dma_capture >= 0 && devc->dma_capture != devc->dma_playback)
1159 sound_free_dma(devc->dma_capture);
1161 sound_free_dma(devc->dma_playback);
1163 free_irq(devc->irq, devc);
1165 release_region(devc->base, 16);
1170 static void __exit unload_card(ad1816_info *devc)
1175 printk("ad1816: Unloading card at address 0x%03x\n",devc->base);
1178 mixer = audio_devs[dev]->mixer_dev;
1182 sound_unload_mixerdev(mixer);
1184 /* unreg audiodev */
1185 sound_unload_audiodev(dev);
1187 /* free dma channels */
1188 if (devc->dma_capture>=0 &&
1189 devc->dma_capture != devc->dma_playback) {
1190 sound_free_dma(devc->dma_capture);
1192 sound_free_dma (devc->dma_playback);
1194 free_irq(devc->irq, devc);
1196 release_region (devc->base, 16);
1199 pnp_disable_dev(devc->pnpdev);
1200 pnp_device_detach(devc->pnpdev);
1205 printk(KERN_WARNING "ad1816: no device/card specified\n");
1208 static int __initdata io = -1;
1209 static int __initdata irq = -1;
1210 static int __initdata dma = -1;
1211 static int __initdata dma2 = -1;
1214 /* use isapnp for configuration */
1215 static int isapnp = 1;
1216 static int isapnpjump;
1217 module_param(isapnp, bool, 0);
1218 module_param(isapnpjump, int, 0);
1221 module_param(io, int, 0);
1222 module_param(irq, int, 0);
1223 module_param(dma, int, 0);
1224 module_param(dma2, int, 0);
1225 module_param(ad1816_clockfreq, int, 0);
1226 module_param(options, int, 0);
1230 unsigned short card_vendor, card_device;
1231 unsigned short vendor;
1232 unsigned short function;
1233 struct ad1816_data *data;
1234 } isapnp_ad1816_list[] __initdata = {
1235 { ISAPNP_ANY_ID, ISAPNP_ANY_ID,
1236 ISAPNP_VENDOR('A','D','S'), ISAPNP_FUNCTION(0x7150),
1238 { ISAPNP_ANY_ID, ISAPNP_ANY_ID,
1239 ISAPNP_VENDOR('A','D','S'), ISAPNP_FUNCTION(0x7180),
1244 MODULE_DEVICE_TABLE(isapnp, isapnp_ad1816_list);
1247 static void __init ad1816_config_pnp_card(struct pnp_card *card,
1248 unsigned short vendor,
1249 unsigned short function)
1251 struct address_info cfg;
1252 struct pnp_dev *card_dev = pnp_find_dev(card, vendor, function, NULL);
1253 if (!card_dev) return;
1254 if (pnp_device_attach(card_dev) < 0) {
1255 printk(KERN_WARNING "ad1816: Failed to attach PnP device\n");
1258 if (pnp_activate_dev(card_dev) < 0) {
1259 printk(KERN_WARNING "ad1816: Failed to activate PnP device\n");
1260 pnp_device_detach(card_dev);
1263 cfg.io_base = pnp_port_start(card_dev, 2);
1264 cfg.irq = pnp_irq(card_dev, 0);
1265 cfg.dma = pnp_irq(card_dev, 0);
1266 cfg.dma2 = pnp_irq(card_dev, 1);
1267 if (!ad1816_init_card(&cfg, card_dev)) {
1268 pnp_disable_dev(card_dev);
1269 pnp_device_detach(card_dev);
1273 static void __init ad1816_config_pnp_cards(void)
1278 /* Count entries in isapnp_ad1816_list */
1279 for (nr_pnp_cfg = 0; isapnp_ad1816_list[nr_pnp_cfg].card_vendor != 0;
1281 /* Check and adjust isapnpjump */
1282 if( isapnpjump < 0 || isapnpjump >= nr_pnp_cfg) {
1284 "ad1816: Valid range for isapnpjump is 0-%d. "
1285 "Adjusted to 0.\n", nr_pnp_cfg-1);
1288 for (i = isapnpjump; isapnp_ad1816_list[i].card_vendor != 0; i++) {
1289 struct pnp_card *card = NULL;
1290 /* iterate over all pnp cards */
1291 while ((card = pnp_find_card(isapnp_ad1816_list[i].card_vendor,
1292 isapnp_ad1816_list[i].card_device, card)))
1293 ad1816_config_pnp_card(card,
1294 isapnp_ad1816_list[i].vendor,
1295 isapnp_ad1816_list[i].function);
1300 /* module initialization */
1301 static int __init init_ad1816(void)
1303 printk(KERN_INFO "ad1816: AD1816 sounddriver "
1304 "Copyright (C) 1998-2003 by Thorsten Knabe and "
1307 /* set ad1816_clockfreq if set during compilation */
1308 ad1816_clockfreq=AD1816_CLOCK;
1310 if (ad1816_clockfreq<5000 || ad1816_clockfreq>100000) {
1311 ad1816_clockfreq=33000;
1315 /* configure PnP cards */
1316 if(isapnp) ad1816_config_pnp_cards();
1318 /* configure card by module params */
1319 if (io != -1 && irq != -1 && dma != -1) {
1320 struct address_info cfg;
1325 ad1816_init_card(&cfg, NULL);
1327 if (nr_ad1816_devs <= 0)
1332 /* module cleanup */
1333 static void __exit cleanup_ad1816 (void)
1336 ad1816_info *devc = NULL;
1338 /* remove any soundcard */
1339 for (i = 0; i < nr_ad1816_devs; i++) {
1340 devc = &dev_info[i];
1344 printk(KERN_INFO "ad1816: driver unloaded!\n");
1347 module_init(init_ad1816);
1348 module_exit(cleanup_ad1816);
1351 /* kernel command line parameter evaluation */
1352 static int __init setup_ad1816(char *str)
1354 /* io, irq, dma, dma2 */
1357 str = get_options(str, ARRAY_SIZE(ints), ints);
1366 __setup("ad1816=", setup_ad1816);
1368 MODULE_LICENSE("GPL");