4 * Audio routines for Sound Blaster compatible cards.
7 * Copyright (C) by Hannu Savolainen 1993-1997
9 * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
10 * Version 2 (June 1991). See the "COPYING" file distributed with this software
14 * Alan Cox : Formatting and clean ups
17 * Mostly working. Weird uart bug causing irq storms
19 * Daniel J. Rodriksson: Changes to make sb16 work full duplex.
20 * Maybe other 16 bit cards in this code could behave
22 * Chris Rankin: Use spinlocks instead of CLI/STI
25 #include <linux/spinlock.h>
27 #include "sound_config.h"
34 int sb_audio_open(int dev, int mode)
36 sb_devc *devc = audio_devs[dev]->devc;
41 printk(KERN_ERR "Sound Blaster: incomplete initialization.\n");
44 if (devc->caps & SB_NO_RECORDING && mode & OPEN_READ)
46 if (mode == OPEN_READ)
49 spin_lock_irqsave(&devc->lock, flags);
52 spin_unlock_irqrestore(&devc->lock, flags);
55 if (devc->dma16 != -1 && devc->dma16 != devc->dma8 && !devc->duplex)
57 if (sound_open_dma(devc->dma16, "Sound Blaster 16 bit"))
59 spin_unlock_irqrestore(&devc->lock, flags);
64 spin_unlock_irqrestore(&devc->lock, flags);
66 devc->irq_mode = IMODE_NONE;
67 devc->irq_mode_16 = IMODE_NONE;
68 devc->fullduplex = devc->duplex &&
69 ((mode & OPEN_READ) && (mode & OPEN_WRITE));
72 /* At first glance this check isn't enough, some ESS chips might not
73 * have a RECLEV. However if they don't common_mixer_set will refuse
74 * cause devc->iomap has no register mapping for RECLEV
76 if (devc->model == MDL_ESS) ess_mixer_reload (devc, SOUND_MIXER_RECLEV);
78 /* The ALS007 seems to require that the DSP be removed from the output */
79 /* in order for recording to be activated properly. This is done by */
80 /* setting the appropriate bits of the output control register 4ch to */
81 /* zero. This code assumes that the output control registers are not */
82 /* used anywhere else and therefore the DSP bits are *always* ON for */
83 /* output and OFF for sampling. */
85 if (devc->submodel == SUBMDL_ALS007)
88 sb_setmixer(devc,ALS007_OUTPUT_CTRL2,
89 sb_getmixer(devc,ALS007_OUTPUT_CTRL2) & 0xf9);
91 sb_setmixer(devc,ALS007_OUTPUT_CTRL2,
92 sb_getmixer(devc,ALS007_OUTPUT_CTRL2) | 0x06);
97 void sb_audio_close(int dev)
99 sb_devc *devc = audio_devs[dev]->devc;
101 /* fix things if mmap turned off fullduplex */
104 && (devc->opened & OPEN_READ) && (devc->opened & OPEN_WRITE))
106 struct dma_buffparms *dmap_temp;
107 dmap_temp = audio_devs[dev]->dmap_out;
108 audio_devs[dev]->dmap_out = audio_devs[dev]->dmap_in;
109 audio_devs[dev]->dmap_in = dmap_temp;
111 audio_devs[dev]->dmap_out->dma = devc->dma8;
112 audio_devs[dev]->dmap_in->dma = ( devc->duplex ) ?
113 devc->dma16 : devc->dma8;
115 if (devc->dma16 != -1 && devc->dma16 != devc->dma8 && !devc->duplex)
116 sound_close_dma(devc->dma16);
118 /* For ALS007, turn DSP output back on if closing the device for read */
120 if ((devc->submodel == SUBMDL_ALS007) && (devc->opened & OPEN_READ))
122 sb_setmixer(devc,ALS007_OUTPUT_CTRL2,
123 sb_getmixer(devc,ALS007_OUTPUT_CTRL2) | 0x06);
128 static void sb_set_output_parms(int dev, unsigned long buf, int nr_bytes,
131 sb_devc *devc = audio_devs[dev]->devc;
133 if (!devc->fullduplex || devc->bits == AFMT_S16_LE)
136 devc->trg_bytes = nr_bytes;
137 devc->trg_intrflag = intrflag;
138 devc->irq_mode = IMODE_OUTPUT;
142 devc->trg_buf_16 = buf;
143 devc->trg_bytes_16 = nr_bytes;
144 devc->trg_intrflag_16 = intrflag;
145 devc->irq_mode_16 = IMODE_OUTPUT;
149 static void sb_set_input_parms(int dev, unsigned long buf, int count, int intrflag)
151 sb_devc *devc = audio_devs[dev]->devc;
153 if (!devc->fullduplex || devc->bits != AFMT_S16_LE)
156 devc->trg_bytes = count;
157 devc->trg_intrflag = intrflag;
158 devc->irq_mode = IMODE_INPUT;
162 devc->trg_buf_16 = buf;
163 devc->trg_bytes_16 = count;
164 devc->trg_intrflag_16 = intrflag;
165 devc->irq_mode_16 = IMODE_INPUT;
170 * SB1.x compatible routines
173 static void sb1_audio_output_block(int dev, unsigned long buf, int nr_bytes, int intrflag)
176 int count = nr_bytes;
177 sb_devc *devc = audio_devs[dev]->devc;
179 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); */
181 if (audio_devs[dev]->dmap_out->dma > 3)
185 devc->irq_mode = IMODE_OUTPUT;
187 spin_lock_irqsave(&devc->lock, flags);
188 if (sb_dsp_command(devc, 0x14)) /* 8 bit DAC using DMA */
190 sb_dsp_command(devc, (unsigned char) (count & 0xff));
191 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
194 printk(KERN_WARNING "Sound Blaster: unable to start DAC.\n");
195 spin_unlock_irqrestore(&devc->lock, flags);
196 devc->intr_active = 1;
199 static void sb1_audio_start_input(int dev, unsigned long buf, int nr_bytes, int intrflag)
202 int count = nr_bytes;
203 sb_devc *devc = audio_devs[dev]->devc;
206 * Start a DMA input to the buffer pointed by dmaqtail
209 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); */
211 if (audio_devs[dev]->dmap_out->dma > 3)
215 devc->irq_mode = IMODE_INPUT;
217 spin_lock_irqsave(&devc->lock, flags);
218 if (sb_dsp_command(devc, 0x24)) /* 8 bit ADC using DMA */
220 sb_dsp_command(devc, (unsigned char) (count & 0xff));
221 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
224 printk(KERN_ERR "Sound Blaster: unable to start ADC.\n");
225 spin_unlock_irqrestore(&devc->lock, flags);
227 devc->intr_active = 1;
230 static void sb1_audio_trigger(int dev, int bits)
232 sb_devc *devc = audio_devs[dev]->devc;
234 bits &= devc->irq_mode;
237 sb_dsp_command(devc, 0xd0); /* Halt DMA */
240 switch (devc->irq_mode)
243 sb1_audio_start_input(dev, devc->trg_buf, devc->trg_bytes,
248 sb1_audio_output_block(dev, devc->trg_buf, devc->trg_bytes,
253 devc->trigger_bits = bits;
256 static int sb1_audio_prepare_for_input(int dev, int bsize, int bcount)
258 sb_devc *devc = audio_devs[dev]->devc;
261 spin_lock_irqsave(&devc->lock, flags);
262 if (sb_dsp_command(devc, 0x40))
263 sb_dsp_command(devc, devc->tconst);
264 sb_dsp_command(devc, DSP_CMD_SPKOFF);
265 spin_unlock_irqrestore(&devc->lock, flags);
267 devc->trigger_bits = 0;
271 static int sb1_audio_prepare_for_output(int dev, int bsize, int bcount)
273 sb_devc *devc = audio_devs[dev]->devc;
276 spin_lock_irqsave(&devc->lock, flags);
277 if (sb_dsp_command(devc, 0x40))
278 sb_dsp_command(devc, devc->tconst);
279 sb_dsp_command(devc, DSP_CMD_SPKON);
280 spin_unlock_irqrestore(&devc->lock, flags);
281 devc->trigger_bits = 0;
285 static int sb1_audio_set_speed(int dev, int speed)
287 int max_speed = 23000;
288 sb_devc *devc = audio_devs[dev]->devc;
291 if (devc->opened & OPEN_READ)
299 if (speed > max_speed)
302 devc->tconst = (256 - ((1000000 + speed / 2) / speed)) & 0xff;
303 tmp = 256 - devc->tconst;
304 speed = (1000000 + tmp / 2) / tmp;
311 static short sb1_audio_set_channels(int dev, short channels)
313 sb_devc *devc = audio_devs[dev]->devc;
314 return devc->channels = 1;
317 static unsigned int sb1_audio_set_bits(int dev, unsigned int bits)
319 sb_devc *devc = audio_devs[dev]->devc;
320 return devc->bits = 8;
323 static void sb1_audio_halt_xfer(int dev)
326 sb_devc *devc = audio_devs[dev]->devc;
328 spin_lock_irqsave(&devc->lock, flags);
330 spin_unlock_irqrestore(&devc->lock, flags);
334 * SB 2.0 and SB 2.01 compatible routines
337 static void sb20_audio_output_block(int dev, unsigned long buf, int nr_bytes,
341 int count = nr_bytes;
342 sb_devc *devc = audio_devs[dev]->devc;
345 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); */
347 if (audio_devs[dev]->dmap_out->dma > 3)
351 devc->irq_mode = IMODE_OUTPUT;
353 spin_lock_irqsave(&devc->lock, flags);
354 if (sb_dsp_command(devc, 0x48)) /* DSP Block size */
356 sb_dsp_command(devc, (unsigned char) (count & 0xff));
357 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
359 if (devc->speed * devc->channels <= 23000)
360 cmd = 0x1c; /* 8 bit PCM output */
362 cmd = 0x90; /* 8 bit high speed PCM output (SB2.01/Pro) */
364 if (!sb_dsp_command(devc, cmd))
365 printk(KERN_ERR "Sound Blaster: unable to start DAC.\n");
368 printk(KERN_ERR "Sound Blaster: unable to start DAC.\n");
369 spin_unlock_irqrestore(&devc->lock, flags);
370 devc->intr_active = 1;
373 static void sb20_audio_start_input(int dev, unsigned long buf, int nr_bytes, int intrflag)
376 int count = nr_bytes;
377 sb_devc *devc = audio_devs[dev]->devc;
381 * Start a DMA input to the buffer pointed by dmaqtail
384 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); */
386 if (audio_devs[dev]->dmap_out->dma > 3)
390 devc->irq_mode = IMODE_INPUT;
392 spin_lock_irqsave(&devc->lock, flags);
393 if (sb_dsp_command(devc, 0x48)) /* DSP Block size */
395 sb_dsp_command(devc, (unsigned char) (count & 0xff));
396 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
398 if (devc->speed * devc->channels <= (devc->major == 3 ? 23000 : 13000))
399 cmd = 0x2c; /* 8 bit PCM input */
401 cmd = 0x98; /* 8 bit high speed PCM input (SB2.01/Pro) */
403 if (!sb_dsp_command(devc, cmd))
404 printk(KERN_ERR "Sound Blaster: unable to start ADC.\n");
407 printk(KERN_ERR "Sound Blaster: unable to start ADC.\n");
408 spin_unlock_irqrestore(&devc->lock, flags);
409 devc->intr_active = 1;
412 static void sb20_audio_trigger(int dev, int bits)
414 sb_devc *devc = audio_devs[dev]->devc;
415 bits &= devc->irq_mode;
418 sb_dsp_command(devc, 0xd0); /* Halt DMA */
421 switch (devc->irq_mode)
424 sb20_audio_start_input(dev, devc->trg_buf, devc->trg_bytes,
429 sb20_audio_output_block(dev, devc->trg_buf, devc->trg_bytes,
434 devc->trigger_bits = bits;
438 * SB2.01 specific speed setup
441 static int sb201_audio_set_speed(int dev, int speed)
443 sb_devc *devc = audio_devs[dev]->devc;
445 int s = speed * devc->channels;
453 if (devc->opened & OPEN_READ && speed > 15000)
455 devc->tconst = (256 - ((1000000 + s / 2) / s)) & 0xff;
456 tmp = 256 - devc->tconst;
457 speed = ((1000000 + tmp / 2) / tmp) / devc->channels;
465 * SB Pro specific routines
468 static int sbpro_audio_prepare_for_input(int dev, int bsize, int bcount)
469 { /* For SB Pro and Jazz16 */
470 sb_devc *devc = audio_devs[dev]->devc;
472 unsigned char bits = 0;
474 if (devc->dma16 >= 0 && devc->dma16 != devc->dma8)
475 audio_devs[dev]->dmap_out->dma = audio_devs[dev]->dmap_in->dma =
476 devc->bits == 16 ? devc->dma16 : devc->dma8;
478 if (devc->model == MDL_JAZZ || devc->model == MDL_SMW)
479 if (devc->bits == AFMT_S16_LE)
480 bits = 0x04; /* 16 bit mode */
482 spin_lock_irqsave(&devc->lock, flags);
483 if (sb_dsp_command(devc, 0x40))
484 sb_dsp_command(devc, devc->tconst);
485 sb_dsp_command(devc, DSP_CMD_SPKOFF);
486 if (devc->channels == 1)
487 sb_dsp_command(devc, 0xa0 | bits); /* Mono input */
489 sb_dsp_command(devc, 0xa8 | bits); /* Stereo input */
490 spin_unlock_irqrestore(&devc->lock, flags);
492 devc->trigger_bits = 0;
496 static int sbpro_audio_prepare_for_output(int dev, int bsize, int bcount)
497 { /* For SB Pro and Jazz16 */
498 sb_devc *devc = audio_devs[dev]->devc;
501 unsigned char bits = 0;
503 if (devc->dma16 >= 0 && devc->dma16 != devc->dma8)
504 audio_devs[dev]->dmap_out->dma = audio_devs[dev]->dmap_in->dma = devc->bits == 16 ? devc->dma16 : devc->dma8;
505 if (devc->model == MDL_SBPRO)
506 sb_mixer_set_stereo(devc, devc->channels == 2);
508 spin_lock_irqsave(&devc->lock, flags);
509 if (sb_dsp_command(devc, 0x40))
510 sb_dsp_command(devc, devc->tconst);
511 sb_dsp_command(devc, DSP_CMD_SPKON);
513 if (devc->model == MDL_JAZZ || devc->model == MDL_SMW)
515 if (devc->bits == AFMT_S16_LE)
516 bits = 0x04; /* 16 bit mode */
518 if (devc->channels == 1)
519 sb_dsp_command(devc, 0xa0 | bits); /* Mono output */
521 sb_dsp_command(devc, 0xa8 | bits); /* Stereo output */
522 spin_unlock_irqrestore(&devc->lock, flags);
526 spin_unlock_irqrestore(&devc->lock, flags);
527 tmp = sb_getmixer(devc, 0x0e);
528 if (devc->channels == 1)
532 sb_setmixer(devc, 0x0e, tmp);
534 devc->trigger_bits = 0;
538 static int sbpro_audio_set_speed(int dev, int speed)
540 sb_devc *devc = audio_devs[dev]->devc;
548 if (devc->channels > 1 && speed > 22050)
550 sb201_audio_set_speed(dev, speed);
555 static short sbpro_audio_set_channels(int dev, short channels)
557 sb_devc *devc = audio_devs[dev]->devc;
559 if (channels == 1 || channels == 2)
561 if (channels != devc->channels)
563 devc->channels = channels;
564 if (devc->model == MDL_SBPRO && devc->channels == 2)
565 sbpro_audio_set_speed(dev, devc->speed);
568 return devc->channels;
571 static int jazz16_audio_set_speed(int dev, int speed)
573 sb_devc *devc = audio_devs[dev]->devc;
585 s = speed * devc->channels;
587 devc->tconst = (256 - ((1000000 + s / 2) / s)) & 0xff;
589 tmp = 256 - devc->tconst;
590 speed = ((1000000 + tmp / 2) / tmp) / devc->channels;
598 * SB16 specific routines
601 static int sb16_audio_set_speed(int dev, int speed)
603 sb_devc *devc = audio_devs[dev]->devc;
604 int max_speed = devc->submodel == SUBMDL_ALS100 ? 48000 : 44100;
611 if (speed > max_speed)
619 static unsigned int sb16_audio_set_bits(int dev, unsigned int bits)
621 sb_devc *devc = audio_devs[dev]->devc;
625 if (bits == AFMT_U8 || bits == AFMT_S16_LE)
628 devc->bits = AFMT_U8;
634 static int sb16_audio_prepare_for_input(int dev, int bsize, int bcount)
636 sb_devc *devc = audio_devs[dev]->devc;
638 if (!devc->fullduplex)
640 audio_devs[dev]->dmap_out->dma =
641 audio_devs[dev]->dmap_in->dma =
642 devc->bits == AFMT_S16_LE ?
643 devc->dma16 : devc->dma8;
645 else if (devc->bits == AFMT_S16_LE)
647 audio_devs[dev]->dmap_out->dma = devc->dma8;
648 audio_devs[dev]->dmap_in->dma = devc->dma16;
652 audio_devs[dev]->dmap_out->dma = devc->dma16;
653 audio_devs[dev]->dmap_in->dma = devc->dma8;
656 devc->trigger_bits = 0;
660 static int sb16_audio_prepare_for_output(int dev, int bsize, int bcount)
662 sb_devc *devc = audio_devs[dev]->devc;
664 if (!devc->fullduplex)
666 audio_devs[dev]->dmap_out->dma =
667 audio_devs[dev]->dmap_in->dma =
668 devc->bits == AFMT_S16_LE ?
669 devc->dma16 : devc->dma8;
671 else if (devc->bits == AFMT_S16_LE)
673 audio_devs[dev]->dmap_out->dma = devc->dma8;
674 audio_devs[dev]->dmap_in->dma = devc->dma16;
678 audio_devs[dev]->dmap_out->dma = devc->dma16;
679 audio_devs[dev]->dmap_in->dma = devc->dma8;
682 devc->trigger_bits = 0;
686 static void sb16_audio_output_block(int dev, unsigned long buf, int count,
689 unsigned long flags, cnt;
690 sb_devc *devc = audio_devs[dev]->devc;
693 if (!devc->fullduplex || devc->bits == AFMT_S16_LE)
695 devc->irq_mode = IMODE_OUTPUT;
696 devc->intr_active = 1;
700 devc->irq_mode_16 = IMODE_OUTPUT;
701 devc->intr_active_16 = 1;
705 spin_lock_irqsave(&devc->lock, flags);
707 if (devc->fullduplex)
708 devc->bits = (devc->bits == AFMT_S16_LE) ?
709 AFMT_U8 : AFMT_S16_LE;
710 spin_unlock_irqrestore(&devc->lock, flags);
713 if (devc->bits == AFMT_S16_LE)
717 spin_lock_irqsave(&devc->lock, flags);
719 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); */
721 sb_dsp_command(devc, 0x41);
722 sb_dsp_command(devc, (unsigned char) ((devc->speed >> 8) & 0xff));
723 sb_dsp_command(devc, (unsigned char) (devc->speed & 0xff));
725 sb_dsp_command(devc, (devc->bits == AFMT_S16_LE ? 0xb6 : 0xc6));
726 sb_dsp_command(devc, ((devc->channels == 2 ? 0x20 : 0) +
727 (devc->bits == AFMT_S16_LE ? 0x10 : 0)));
728 sb_dsp_command(devc, (unsigned char) (cnt & 0xff));
729 sb_dsp_command(devc, (unsigned char) (cnt >> 8));
731 /* restore real value after all programming */
733 spin_unlock_irqrestore(&devc->lock, flags);
738 * This fails on the Cyrix MediaGX. If you don't have the DMA enabled
739 * before the first sample arrives it locks up. However even if you
740 * do enable the DMA in time you just get DMA timeouts and missing
741 * interrupts and stuff, so for now I've not bothered fixing this either.
744 static void sb16_audio_start_input(int dev, unsigned long buf, int count, int intrflag)
746 unsigned long flags, cnt;
747 sb_devc *devc = audio_devs[dev]->devc;
749 if (!devc->fullduplex || devc->bits != AFMT_S16_LE)
751 devc->irq_mode = IMODE_INPUT;
752 devc->intr_active = 1;
756 devc->irq_mode_16 = IMODE_INPUT;
757 devc->intr_active_16 = 1;
761 if (devc->bits == AFMT_S16_LE)
765 spin_lock_irqsave(&devc->lock, flags);
767 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); */
769 sb_dsp_command(devc, 0x42);
770 sb_dsp_command(devc, (unsigned char) ((devc->speed >> 8) & 0xff));
771 sb_dsp_command(devc, (unsigned char) (devc->speed & 0xff));
773 sb_dsp_command(devc, (devc->bits == AFMT_S16_LE ? 0xbe : 0xce));
774 sb_dsp_command(devc, ((devc->channels == 2 ? 0x20 : 0) +
775 (devc->bits == AFMT_S16_LE ? 0x10 : 0)));
776 sb_dsp_command(devc, (unsigned char) (cnt & 0xff));
777 sb_dsp_command(devc, (unsigned char) (cnt >> 8));
779 spin_unlock_irqrestore(&devc->lock, flags);
782 static void sb16_audio_trigger(int dev, int bits)
784 sb_devc *devc = audio_devs[dev]->devc;
786 int bits_16 = bits & devc->irq_mode_16;
787 bits &= devc->irq_mode;
789 if (!bits && !bits_16)
790 sb_dsp_command(devc, 0xd0); /* Halt DMA */
795 switch (devc->irq_mode)
798 sb16_audio_start_input(dev,
805 sb16_audio_output_block(dev,
814 switch (devc->irq_mode_16)
817 sb16_audio_start_input(dev,
820 devc->trg_intrflag_16);
824 sb16_audio_output_block(dev,
827 devc->trg_intrflag_16);
833 devc->trigger_bits = bits | bits_16;
836 static unsigned char lbuf8[2048];
837 static signed short *lbuf16 = (signed short *)lbuf8;
838 #define LBUFCOPYSIZE 1024
840 sb16_copy_from_user(int dev,
841 char *localbuf, int localoffs,
842 const char __user *userbuf, int useroffs,
843 int max_in, int max_out,
844 int *used, int *returned,
847 sb_devc *devc = audio_devs[dev]->devc;
848 int i, c, p, locallen;
852 /* if not duplex no conversion */
853 if (!devc->fullduplex)
855 if (copy_from_user(localbuf + localoffs,
856 userbuf + useroffs, len))
861 else if (devc->bits == AFMT_S16_LE)
864 /* max_in >> 1, max number of samples in ( 16 bits ) */
865 /* max_out, max number of samples out ( 8 bits ) */
866 /* len, number of samples that will be taken ( 16 bits )*/
867 /* c, count of samples remaining in buffer ( 16 bits )*/
868 /* p, count of samples already processed ( 16 bits )*/
869 len = ( (max_in >> 1) > max_out) ? max_out : (max_in >> 1);
872 buf8 = (unsigned char *)(localbuf + localoffs);
875 locallen = (c >= LBUFCOPYSIZE ? LBUFCOPYSIZE : c);
876 /* << 1 in order to get 16 bit samples */
877 if (copy_from_user(lbuf16,
878 userbuf + useroffs + (p << 1),
881 for (i = 0; i < locallen; i++)
883 buf8[p+i] = ~((lbuf16[i] >> 8) & 0xff) ^ 0x80;
885 c -= locallen; p += locallen;
887 /* used = ( samples * 16 bits size ) */
888 *used = max_in > ( max_out << 1) ? (max_out << 1) : max_in;
889 /* returned = ( samples * 8 bits size ) */
895 /* max_in, max number of samples in ( 8 bits ) */
896 /* max_out >> 1, max number of samples out ( 16 bits ) */
897 /* len, number of samples that will be taken ( 8 bits )*/
898 /* c, count of samples remaining in buffer ( 8 bits )*/
899 /* p, count of samples already processed ( 8 bits )*/
900 len = max_in > (max_out >> 1) ? (max_out >> 1) : max_in;
903 buf16 = (signed short *)(localbuf + localoffs);
906 locallen = (c >= LBUFCOPYSIZE ? LBUFCOPYSIZE : c);
907 if (copy_from_user(lbuf8,
908 userbuf+useroffs + p,
911 for (i = 0; i < locallen; i++)
913 buf16[p+i] = (~lbuf8[i] ^ 0x80) << 8;
915 c -= locallen; p += locallen;
917 /* used = ( samples * 8 bits size ) */
919 /* returned = ( samples * 16 bits size ) */
920 *returned = len << 1;
925 sb16_audio_mmap(int dev)
927 sb_devc *devc = audio_devs[dev]->devc;
928 devc->fullduplex = 0;
931 static struct audio_driver sb1_audio_driver = /* SB1.x */
933 .owner = THIS_MODULE,
934 .open = sb_audio_open,
935 .close = sb_audio_close,
936 .output_block = sb_set_output_parms,
937 .start_input = sb_set_input_parms,
938 .prepare_for_input = sb1_audio_prepare_for_input,
939 .prepare_for_output = sb1_audio_prepare_for_output,
940 .halt_io = sb1_audio_halt_xfer,
941 .trigger = sb1_audio_trigger,
942 .set_speed = sb1_audio_set_speed,
943 .set_bits = sb1_audio_set_bits,
944 .set_channels = sb1_audio_set_channels
947 static struct audio_driver sb20_audio_driver = /* SB2.0 */
949 .owner = THIS_MODULE,
950 .open = sb_audio_open,
951 .close = sb_audio_close,
952 .output_block = sb_set_output_parms,
953 .start_input = sb_set_input_parms,
954 .prepare_for_input = sb1_audio_prepare_for_input,
955 .prepare_for_output = sb1_audio_prepare_for_output,
956 .halt_io = sb1_audio_halt_xfer,
957 .trigger = sb20_audio_trigger,
958 .set_speed = sb1_audio_set_speed,
959 .set_bits = sb1_audio_set_bits,
960 .set_channels = sb1_audio_set_channels
963 static struct audio_driver sb201_audio_driver = /* SB2.01 */
965 .owner = THIS_MODULE,
966 .open = sb_audio_open,
967 .close = sb_audio_close,
968 .output_block = sb_set_output_parms,
969 .start_input = sb_set_input_parms,
970 .prepare_for_input = sb1_audio_prepare_for_input,
971 .prepare_for_output = sb1_audio_prepare_for_output,
972 .halt_io = sb1_audio_halt_xfer,
973 .trigger = sb20_audio_trigger,
974 .set_speed = sb201_audio_set_speed,
975 .set_bits = sb1_audio_set_bits,
976 .set_channels = sb1_audio_set_channels
979 static struct audio_driver sbpro_audio_driver = /* SB Pro */
981 .owner = THIS_MODULE,
982 .open = sb_audio_open,
983 .close = sb_audio_close,
984 .output_block = sb_set_output_parms,
985 .start_input = sb_set_input_parms,
986 .prepare_for_input = sbpro_audio_prepare_for_input,
987 .prepare_for_output = sbpro_audio_prepare_for_output,
988 .halt_io = sb1_audio_halt_xfer,
989 .trigger = sb20_audio_trigger,
990 .set_speed = sbpro_audio_set_speed,
991 .set_bits = sb1_audio_set_bits,
992 .set_channels = sbpro_audio_set_channels
995 static struct audio_driver jazz16_audio_driver = /* Jazz16 and SM Wave */
997 .owner = THIS_MODULE,
998 .open = sb_audio_open,
999 .close = sb_audio_close,
1000 .output_block = sb_set_output_parms,
1001 .start_input = sb_set_input_parms,
1002 .prepare_for_input = sbpro_audio_prepare_for_input,
1003 .prepare_for_output = sbpro_audio_prepare_for_output,
1004 .halt_io = sb1_audio_halt_xfer,
1005 .trigger = sb20_audio_trigger,
1006 .set_speed = jazz16_audio_set_speed,
1007 .set_bits = sb16_audio_set_bits,
1008 .set_channels = sbpro_audio_set_channels
1011 static struct audio_driver sb16_audio_driver = /* SB16 */
1013 .owner = THIS_MODULE,
1014 .open = sb_audio_open,
1015 .close = sb_audio_close,
1016 .output_block = sb_set_output_parms,
1017 .start_input = sb_set_input_parms,
1018 .prepare_for_input = sb16_audio_prepare_for_input,
1019 .prepare_for_output = sb16_audio_prepare_for_output,
1020 .halt_io = sb1_audio_halt_xfer,
1021 .copy_user = sb16_copy_from_user,
1022 .trigger = sb16_audio_trigger,
1023 .set_speed = sb16_audio_set_speed,
1024 .set_bits = sb16_audio_set_bits,
1025 .set_channels = sbpro_audio_set_channels,
1026 .mmap = sb16_audio_mmap
1029 void sb_audio_init(sb_devc * devc, char *name, struct module *owner)
1031 int audio_flags = 0;
1032 int format_mask = AFMT_U8;
1034 struct audio_driver *driver = &sb1_audio_driver;
1036 switch (devc->model)
1038 case MDL_SB1: /* SB1.0 or SB 1.5 */
1039 DDB(printk("Will use standard SB1.x driver\n"));
1040 audio_flags = DMA_HARDSTOP;
1044 DDB(printk("Will use SB2.0 driver\n"));
1045 audio_flags = DMA_AUTOMODE;
1046 driver = &sb20_audio_driver;
1050 DDB(printk("Will use SB2.01 (high speed) driver\n"));
1051 audio_flags = DMA_AUTOMODE;
1052 driver = &sb201_audio_driver;
1057 DDB(printk("Will use Jazz16 driver\n"));
1058 audio_flags = DMA_AUTOMODE;
1059 format_mask |= AFMT_S16_LE;
1060 driver = &jazz16_audio_driver;
1064 DDB(printk("Will use ESS ES688/1688 driver\n"));
1065 driver = ess_audio_init (devc, &audio_flags, &format_mask);
1069 DDB(printk("Will use SB16 driver\n"));
1070 audio_flags = DMA_AUTOMODE;
1071 format_mask |= AFMT_S16_LE;
1072 if (devc->dma8 != devc->dma16 && devc->dma16 != -1)
1074 audio_flags |= DMA_DUPLEX;
1077 driver = &sb16_audio_driver;
1081 DDB(printk("Will use SB Pro driver\n"));
1082 audio_flags = DMA_AUTOMODE;
1083 driver = &sbpro_audio_driver;
1087 driver->owner = owner;
1089 if ((devc->dev = sound_install_audiodrv(AUDIO_DRIVER_VERSION,
1090 name,driver, sizeof(struct audio_driver),
1091 audio_flags, format_mask, devc,
1093 devc->duplex ? devc->dma16 : devc->dma8)) < 0)
1095 printk(KERN_ERR "Sound Blaster: unable to install audio.\n");
1098 audio_devs[devc->dev]->mixer_dev = devc->my_mixerdev;
1099 audio_devs[devc->dev]->min_fragment = 5;