Loading...
1/*
2 * sound/oss/sb_audio.c
3 *
4 * Audio routines for Sound Blaster compatible cards.
5 *
6 *
7 * Copyright (C) by Hannu Savolainen 1993-1997
8 *
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
11 * for more info.
12 *
13 * Changes
14 * Alan Cox : Formatting and clean ups
15 *
16 * Status
17 * Mostly working. Weird uart bug causing irq storms
18 *
19 * Daniel J. Rodriksson: Changes to make sb16 work full duplex.
20 * Maybe other 16 bit cards in this code could behave
21 * the same.
22 * Chris Rankin: Use spinlocks instead of CLI/STI
23 */
24
25#include <linux/spinlock.h>
26
27#include "sound_config.h"
28
29#include "sb_mixer.h"
30#include "sb.h"
31
32#include "sb_ess.h"
33
34int sb_audio_open(int dev, int mode)
35{
36 sb_devc *devc = audio_devs[dev]->devc;
37 unsigned long flags;
38
39 if (devc == NULL)
40 {
41 printk(KERN_ERR "Sound Blaster: incomplete initialization.\n");
42 return -ENXIO;
43 }
44 if (devc->caps & SB_NO_RECORDING && mode & OPEN_READ)
45 {
46 if (mode == OPEN_READ)
47 return -EPERM;
48 }
49 spin_lock_irqsave(&devc->lock, flags);
50 if (devc->opened)
51 {
52 spin_unlock_irqrestore(&devc->lock, flags);
53 return -EBUSY;
54 }
55 if (devc->dma16 != -1 && devc->dma16 != devc->dma8 && !devc->duplex)
56 {
57 if (sound_open_dma(devc->dma16, "Sound Blaster 16 bit"))
58 {
59 spin_unlock_irqrestore(&devc->lock, flags);
60 return -EBUSY;
61 }
62 }
63 devc->opened = mode;
64 spin_unlock_irqrestore(&devc->lock, flags);
65
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));
70 sb_dsp_reset(devc);
71
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
75 */
76 if (devc->model == MDL_ESS) ess_mixer_reload (devc, SOUND_MIXER_RECLEV);
77
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. */
84
85 if (devc->submodel == SUBMDL_ALS007)
86 {
87 if (mode & OPEN_READ)
88 sb_setmixer(devc,ALS007_OUTPUT_CTRL2,
89 sb_getmixer(devc,ALS007_OUTPUT_CTRL2) & 0xf9);
90 else
91 sb_setmixer(devc,ALS007_OUTPUT_CTRL2,
92 sb_getmixer(devc,ALS007_OUTPUT_CTRL2) | 0x06);
93 }
94 return 0;
95}
96
97void sb_audio_close(int dev)
98{
99 sb_devc *devc = audio_devs[dev]->devc;
100
101 /* fix things if mmap turned off fullduplex */
102 if(devc->duplex
103 && !devc->fullduplex
104 && (devc->opened & OPEN_READ) && (devc->opened & OPEN_WRITE))
105 swap(audio_devs[dev]->dmap_out, audio_devs[dev]->dmap_in);
106
107 audio_devs[dev]->dmap_out->dma = devc->dma8;
108 audio_devs[dev]->dmap_in->dma = ( devc->duplex ) ?
109 devc->dma16 : devc->dma8;
110
111 if (devc->dma16 != -1 && devc->dma16 != devc->dma8 && !devc->duplex)
112 sound_close_dma(devc->dma16);
113
114 /* For ALS007, turn DSP output back on if closing the device for read */
115
116 if ((devc->submodel == SUBMDL_ALS007) && (devc->opened & OPEN_READ))
117 {
118 sb_setmixer(devc,ALS007_OUTPUT_CTRL2,
119 sb_getmixer(devc,ALS007_OUTPUT_CTRL2) | 0x06);
120 }
121 devc->opened = 0;
122}
123
124static void sb_set_output_parms(int dev, unsigned long buf, int nr_bytes,
125 int intrflag)
126{
127 sb_devc *devc = audio_devs[dev]->devc;
128
129 if (!devc->fullduplex || devc->bits == AFMT_S16_LE)
130 {
131 devc->trg_buf = buf;
132 devc->trg_bytes = nr_bytes;
133 devc->trg_intrflag = intrflag;
134 devc->irq_mode = IMODE_OUTPUT;
135 }
136 else
137 {
138 devc->trg_buf_16 = buf;
139 devc->trg_bytes_16 = nr_bytes;
140 devc->trg_intrflag_16 = intrflag;
141 devc->irq_mode_16 = IMODE_OUTPUT;
142 }
143}
144
145static void sb_set_input_parms(int dev, unsigned long buf, int count, int intrflag)
146{
147 sb_devc *devc = audio_devs[dev]->devc;
148
149 if (!devc->fullduplex || devc->bits != AFMT_S16_LE)
150 {
151 devc->trg_buf = buf;
152 devc->trg_bytes = count;
153 devc->trg_intrflag = intrflag;
154 devc->irq_mode = IMODE_INPUT;
155 }
156 else
157 {
158 devc->trg_buf_16 = buf;
159 devc->trg_bytes_16 = count;
160 devc->trg_intrflag_16 = intrflag;
161 devc->irq_mode_16 = IMODE_INPUT;
162 }
163}
164
165/*
166 * SB1.x compatible routines
167 */
168
169static void sb1_audio_output_block(int dev, unsigned long buf, int nr_bytes, int intrflag)
170{
171 unsigned long flags;
172 int count = nr_bytes;
173 sb_devc *devc = audio_devs[dev]->devc;
174
175 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); */
176
177 if (audio_devs[dev]->dmap_out->dma > 3)
178 count >>= 1;
179 count--;
180
181 devc->irq_mode = IMODE_OUTPUT;
182
183 spin_lock_irqsave(&devc->lock, flags);
184 if (sb_dsp_command(devc, 0x14)) /* 8 bit DAC using DMA */
185 {
186 sb_dsp_command(devc, (unsigned char) (count & 0xff));
187 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
188 }
189 else
190 printk(KERN_WARNING "Sound Blaster: unable to start DAC.\n");
191 spin_unlock_irqrestore(&devc->lock, flags);
192 devc->intr_active = 1;
193}
194
195static void sb1_audio_start_input(int dev, unsigned long buf, int nr_bytes, int intrflag)
196{
197 unsigned long flags;
198 int count = nr_bytes;
199 sb_devc *devc = audio_devs[dev]->devc;
200
201 /*
202 * Start a DMA input to the buffer pointed by dmaqtail
203 */
204
205 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); */
206
207 if (audio_devs[dev]->dmap_out->dma > 3)
208 count >>= 1;
209 count--;
210
211 devc->irq_mode = IMODE_INPUT;
212
213 spin_lock_irqsave(&devc->lock, flags);
214 if (sb_dsp_command(devc, 0x24)) /* 8 bit ADC using DMA */
215 {
216 sb_dsp_command(devc, (unsigned char) (count & 0xff));
217 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
218 }
219 else
220 printk(KERN_ERR "Sound Blaster: unable to start ADC.\n");
221 spin_unlock_irqrestore(&devc->lock, flags);
222
223 devc->intr_active = 1;
224}
225
226static void sb1_audio_trigger(int dev, int bits)
227{
228 sb_devc *devc = audio_devs[dev]->devc;
229
230 bits &= devc->irq_mode;
231
232 if (!bits)
233 sb_dsp_command(devc, 0xd0); /* Halt DMA */
234 else
235 {
236 switch (devc->irq_mode)
237 {
238 case IMODE_INPUT:
239 sb1_audio_start_input(dev, devc->trg_buf, devc->trg_bytes,
240 devc->trg_intrflag);
241 break;
242
243 case IMODE_OUTPUT:
244 sb1_audio_output_block(dev, devc->trg_buf, devc->trg_bytes,
245 devc->trg_intrflag);
246 break;
247 }
248 }
249 devc->trigger_bits = bits;
250}
251
252static int sb1_audio_prepare_for_input(int dev, int bsize, int bcount)
253{
254 sb_devc *devc = audio_devs[dev]->devc;
255 unsigned long flags;
256
257 spin_lock_irqsave(&devc->lock, flags);
258 if (sb_dsp_command(devc, 0x40))
259 sb_dsp_command(devc, devc->tconst);
260 sb_dsp_command(devc, DSP_CMD_SPKOFF);
261 spin_unlock_irqrestore(&devc->lock, flags);
262
263 devc->trigger_bits = 0;
264 return 0;
265}
266
267static int sb1_audio_prepare_for_output(int dev, int bsize, int bcount)
268{
269 sb_devc *devc = audio_devs[dev]->devc;
270 unsigned long flags;
271
272 spin_lock_irqsave(&devc->lock, flags);
273 if (sb_dsp_command(devc, 0x40))
274 sb_dsp_command(devc, devc->tconst);
275 sb_dsp_command(devc, DSP_CMD_SPKON);
276 spin_unlock_irqrestore(&devc->lock, flags);
277 devc->trigger_bits = 0;
278 return 0;
279}
280
281static int sb1_audio_set_speed(int dev, int speed)
282{
283 int max_speed = 23000;
284 sb_devc *devc = audio_devs[dev]->devc;
285 int tmp;
286
287 if (devc->opened & OPEN_READ)
288 max_speed = 13000;
289
290 if (speed > 0)
291 {
292 if (speed < 4000)
293 speed = 4000;
294
295 if (speed > max_speed)
296 speed = max_speed;
297
298 devc->tconst = (256 - ((1000000 + speed / 2) / speed)) & 0xff;
299 tmp = 256 - devc->tconst;
300 speed = (1000000 + tmp / 2) / tmp;
301
302 devc->speed = speed;
303 }
304 return devc->speed;
305}
306
307static short sb1_audio_set_channels(int dev, short channels)
308{
309 sb_devc *devc = audio_devs[dev]->devc;
310 return devc->channels = 1;
311}
312
313static unsigned int sb1_audio_set_bits(int dev, unsigned int bits)
314{
315 sb_devc *devc = audio_devs[dev]->devc;
316 return devc->bits = 8;
317}
318
319static void sb1_audio_halt_xfer(int dev)
320{
321 unsigned long flags;
322 sb_devc *devc = audio_devs[dev]->devc;
323
324 spin_lock_irqsave(&devc->lock, flags);
325 sb_dsp_reset(devc);
326 spin_unlock_irqrestore(&devc->lock, flags);
327}
328
329/*
330 * SB 2.0 and SB 2.01 compatible routines
331 */
332
333static void sb20_audio_output_block(int dev, unsigned long buf, int nr_bytes,
334 int intrflag)
335{
336 unsigned long flags;
337 int count = nr_bytes;
338 sb_devc *devc = audio_devs[dev]->devc;
339 unsigned char cmd;
340
341 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); */
342
343 if (audio_devs[dev]->dmap_out->dma > 3)
344 count >>= 1;
345 count--;
346
347 devc->irq_mode = IMODE_OUTPUT;
348
349 spin_lock_irqsave(&devc->lock, flags);
350 if (sb_dsp_command(devc, 0x48)) /* DSP Block size */
351 {
352 sb_dsp_command(devc, (unsigned char) (count & 0xff));
353 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
354
355 if (devc->speed * devc->channels <= 23000)
356 cmd = 0x1c; /* 8 bit PCM output */
357 else
358 cmd = 0x90; /* 8 bit high speed PCM output (SB2.01/Pro) */
359
360 if (!sb_dsp_command(devc, cmd))
361 printk(KERN_ERR "Sound Blaster: unable to start DAC.\n");
362 }
363 else
364 printk(KERN_ERR "Sound Blaster: unable to start DAC.\n");
365 spin_unlock_irqrestore(&devc->lock, flags);
366 devc->intr_active = 1;
367}
368
369static void sb20_audio_start_input(int dev, unsigned long buf, int nr_bytes, int intrflag)
370{
371 unsigned long flags;
372 int count = nr_bytes;
373 sb_devc *devc = audio_devs[dev]->devc;
374 unsigned char cmd;
375
376 /*
377 * Start a DMA input to the buffer pointed by dmaqtail
378 */
379
380 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); */
381
382 if (audio_devs[dev]->dmap_out->dma > 3)
383 count >>= 1;
384 count--;
385
386 devc->irq_mode = IMODE_INPUT;
387
388 spin_lock_irqsave(&devc->lock, flags);
389 if (sb_dsp_command(devc, 0x48)) /* DSP Block size */
390 {
391 sb_dsp_command(devc, (unsigned char) (count & 0xff));
392 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
393
394 if (devc->speed * devc->channels <= (devc->major == 3 ? 23000 : 13000))
395 cmd = 0x2c; /* 8 bit PCM input */
396 else
397 cmd = 0x98; /* 8 bit high speed PCM input (SB2.01/Pro) */
398
399 if (!sb_dsp_command(devc, cmd))
400 printk(KERN_ERR "Sound Blaster: unable to start ADC.\n");
401 }
402 else
403 printk(KERN_ERR "Sound Blaster: unable to start ADC.\n");
404 spin_unlock_irqrestore(&devc->lock, flags);
405 devc->intr_active = 1;
406}
407
408static void sb20_audio_trigger(int dev, int bits)
409{
410 sb_devc *devc = audio_devs[dev]->devc;
411 bits &= devc->irq_mode;
412
413 if (!bits)
414 sb_dsp_command(devc, 0xd0); /* Halt DMA */
415 else
416 {
417 switch (devc->irq_mode)
418 {
419 case IMODE_INPUT:
420 sb20_audio_start_input(dev, devc->trg_buf, devc->trg_bytes,
421 devc->trg_intrflag);
422 break;
423
424 case IMODE_OUTPUT:
425 sb20_audio_output_block(dev, devc->trg_buf, devc->trg_bytes,
426 devc->trg_intrflag);
427 break;
428 }
429 }
430 devc->trigger_bits = bits;
431}
432
433/*
434 * SB2.01 specific speed setup
435 */
436
437static int sb201_audio_set_speed(int dev, int speed)
438{
439 sb_devc *devc = audio_devs[dev]->devc;
440 int tmp;
441 int s;
442
443 if (speed > 0)
444 {
445 if (speed < 4000)
446 speed = 4000;
447 if (speed > 44100)
448 speed = 44100;
449 if (devc->opened & OPEN_READ && speed > 15000)
450 speed = 15000;
451 s = speed * devc->channels;
452 devc->tconst = (256 - ((1000000 + s / 2) / s)) & 0xff;
453 tmp = 256 - devc->tconst;
454 speed = ((1000000 + tmp / 2) / tmp) / devc->channels;
455
456 devc->speed = speed;
457 }
458 return devc->speed;
459}
460
461/*
462 * SB Pro specific routines
463 */
464
465static int sbpro_audio_prepare_for_input(int dev, int bsize, int bcount)
466{ /* For SB Pro and Jazz16 */
467 sb_devc *devc = audio_devs[dev]->devc;
468 unsigned long flags;
469 unsigned char bits = 0;
470
471 if (devc->dma16 >= 0 && devc->dma16 != devc->dma8)
472 audio_devs[dev]->dmap_out->dma = audio_devs[dev]->dmap_in->dma =
473 devc->bits == 16 ? devc->dma16 : devc->dma8;
474
475 if (devc->model == MDL_JAZZ || devc->model == MDL_SMW)
476 if (devc->bits == AFMT_S16_LE)
477 bits = 0x04; /* 16 bit mode */
478
479 spin_lock_irqsave(&devc->lock, flags);
480 if (sb_dsp_command(devc, 0x40))
481 sb_dsp_command(devc, devc->tconst);
482 sb_dsp_command(devc, DSP_CMD_SPKOFF);
483 if (devc->channels == 1)
484 sb_dsp_command(devc, 0xa0 | bits); /* Mono input */
485 else
486 sb_dsp_command(devc, 0xa8 | bits); /* Stereo input */
487 spin_unlock_irqrestore(&devc->lock, flags);
488
489 devc->trigger_bits = 0;
490 return 0;
491}
492
493static int sbpro_audio_prepare_for_output(int dev, int bsize, int bcount)
494{ /* For SB Pro and Jazz16 */
495 sb_devc *devc = audio_devs[dev]->devc;
496 unsigned long flags;
497 unsigned char tmp;
498 unsigned char bits = 0;
499
500 if (devc->dma16 >= 0 && devc->dma16 != devc->dma8)
501 audio_devs[dev]->dmap_out->dma = audio_devs[dev]->dmap_in->dma = devc->bits == 16 ? devc->dma16 : devc->dma8;
502 if (devc->model == MDL_SBPRO)
503 sb_mixer_set_stereo(devc, devc->channels == 2);
504
505 spin_lock_irqsave(&devc->lock, flags);
506 if (sb_dsp_command(devc, 0x40))
507 sb_dsp_command(devc, devc->tconst);
508 sb_dsp_command(devc, DSP_CMD_SPKON);
509
510 if (devc->model == MDL_JAZZ || devc->model == MDL_SMW)
511 {
512 if (devc->bits == AFMT_S16_LE)
513 bits = 0x04; /* 16 bit mode */
514
515 if (devc->channels == 1)
516 sb_dsp_command(devc, 0xa0 | bits); /* Mono output */
517 else
518 sb_dsp_command(devc, 0xa8 | bits); /* Stereo output */
519 spin_unlock_irqrestore(&devc->lock, flags);
520 }
521 else
522 {
523 spin_unlock_irqrestore(&devc->lock, flags);
524 tmp = sb_getmixer(devc, 0x0e);
525 if (devc->channels == 1)
526 tmp &= ~0x02;
527 else
528 tmp |= 0x02;
529 sb_setmixer(devc, 0x0e, tmp);
530 }
531 devc->trigger_bits = 0;
532 return 0;
533}
534
535static int sbpro_audio_set_speed(int dev, int speed)
536{
537 sb_devc *devc = audio_devs[dev]->devc;
538
539 if (speed > 0)
540 {
541 if (speed < 4000)
542 speed = 4000;
543 if (speed > 44100)
544 speed = 44100;
545 if (devc->channels > 1 && speed > 22050)
546 speed = 22050;
547 sb201_audio_set_speed(dev, speed);
548 }
549 return devc->speed;
550}
551
552static short sbpro_audio_set_channels(int dev, short channels)
553{
554 sb_devc *devc = audio_devs[dev]->devc;
555
556 if (channels == 1 || channels == 2)
557 {
558 if (channels != devc->channels)
559 {
560 devc->channels = channels;
561 if (devc->model == MDL_SBPRO && devc->channels == 2)
562 sbpro_audio_set_speed(dev, devc->speed);
563 }
564 }
565 return devc->channels;
566}
567
568static int jazz16_audio_set_speed(int dev, int speed)
569{
570 sb_devc *devc = audio_devs[dev]->devc;
571
572 if (speed > 0)
573 {
574 int tmp;
575 int s;
576
577 if (speed < 5000)
578 speed = 5000;
579 if (speed > 44100)
580 speed = 44100;
581
582 s = speed * devc->channels;
583
584 devc->tconst = (256 - ((1000000 + s / 2) / s)) & 0xff;
585
586 tmp = 256 - devc->tconst;
587 speed = ((1000000 + tmp / 2) / tmp) / devc->channels;
588
589 devc->speed = speed;
590 }
591 return devc->speed;
592}
593
594/*
595 * SB16 specific routines
596 */
597
598static int sb16_audio_set_speed(int dev, int speed)
599{
600 sb_devc *devc = audio_devs[dev]->devc;
601 int max_speed = devc->submodel == SUBMDL_ALS100 ? 48000 : 44100;
602
603 if (speed > 0)
604 {
605 if (speed < 5000)
606 speed = 5000;
607
608 if (speed > max_speed)
609 speed = max_speed;
610
611 devc->speed = speed;
612 }
613 return devc->speed;
614}
615
616static unsigned int sb16_audio_set_bits(int dev, unsigned int bits)
617{
618 sb_devc *devc = audio_devs[dev]->devc;
619
620 if (bits != 0)
621 {
622 if (bits == AFMT_U8 || bits == AFMT_S16_LE)
623 devc->bits = bits;
624 else
625 devc->bits = AFMT_U8;
626 }
627
628 return devc->bits;
629}
630
631static int sb16_audio_prepare_for_input(int dev, int bsize, int bcount)
632{
633 sb_devc *devc = audio_devs[dev]->devc;
634
635 if (!devc->fullduplex)
636 {
637 audio_devs[dev]->dmap_out->dma =
638 audio_devs[dev]->dmap_in->dma =
639 devc->bits == AFMT_S16_LE ?
640 devc->dma16 : devc->dma8;
641 }
642 else if (devc->bits == AFMT_S16_LE)
643 {
644 audio_devs[dev]->dmap_out->dma = devc->dma8;
645 audio_devs[dev]->dmap_in->dma = devc->dma16;
646 }
647 else
648 {
649 audio_devs[dev]->dmap_out->dma = devc->dma16;
650 audio_devs[dev]->dmap_in->dma = devc->dma8;
651 }
652
653 devc->trigger_bits = 0;
654 return 0;
655}
656
657static int sb16_audio_prepare_for_output(int dev, int bsize, int bcount)
658{
659 sb_devc *devc = audio_devs[dev]->devc;
660
661 if (!devc->fullduplex)
662 {
663 audio_devs[dev]->dmap_out->dma =
664 audio_devs[dev]->dmap_in->dma =
665 devc->bits == AFMT_S16_LE ?
666 devc->dma16 : devc->dma8;
667 }
668 else if (devc->bits == AFMT_S16_LE)
669 {
670 audio_devs[dev]->dmap_out->dma = devc->dma8;
671 audio_devs[dev]->dmap_in->dma = devc->dma16;
672 }
673 else
674 {
675 audio_devs[dev]->dmap_out->dma = devc->dma16;
676 audio_devs[dev]->dmap_in->dma = devc->dma8;
677 }
678
679 devc->trigger_bits = 0;
680 return 0;
681}
682
683static void sb16_audio_output_block(int dev, unsigned long buf, int count,
684 int intrflag)
685{
686 unsigned long flags, cnt;
687 sb_devc *devc = audio_devs[dev]->devc;
688 unsigned long bits;
689
690 if (!devc->fullduplex || devc->bits == AFMT_S16_LE)
691 {
692 devc->irq_mode = IMODE_OUTPUT;
693 devc->intr_active = 1;
694 }
695 else
696 {
697 devc->irq_mode_16 = IMODE_OUTPUT;
698 devc->intr_active_16 = 1;
699 }
700
701 /* save value */
702 spin_lock_irqsave(&devc->lock, flags);
703 bits = devc->bits;
704 if (devc->fullduplex)
705 devc->bits = (devc->bits == AFMT_S16_LE) ?
706 AFMT_U8 : AFMT_S16_LE;
707 spin_unlock_irqrestore(&devc->lock, flags);
708
709 cnt = count;
710 if (devc->bits == AFMT_S16_LE)
711 cnt >>= 1;
712 cnt--;
713
714 spin_lock_irqsave(&devc->lock, flags);
715
716 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); */
717
718 sb_dsp_command(devc, 0x41);
719 sb_dsp_command(devc, (unsigned char) ((devc->speed >> 8) & 0xff));
720 sb_dsp_command(devc, (unsigned char) (devc->speed & 0xff));
721
722 sb_dsp_command(devc, (devc->bits == AFMT_S16_LE ? 0xb6 : 0xc6));
723 sb_dsp_command(devc, ((devc->channels == 2 ? 0x20 : 0) +
724 (devc->bits == AFMT_S16_LE ? 0x10 : 0)));
725 sb_dsp_command(devc, (unsigned char) (cnt & 0xff));
726 sb_dsp_command(devc, (unsigned char) (cnt >> 8));
727
728 /* restore real value after all programming */
729 devc->bits = bits;
730 spin_unlock_irqrestore(&devc->lock, flags);
731}
732
733
734/*
735 * This fails on the Cyrix MediaGX. If you don't have the DMA enabled
736 * before the first sample arrives it locks up. However even if you
737 * do enable the DMA in time you just get DMA timeouts and missing
738 * interrupts and stuff, so for now I've not bothered fixing this either.
739 */
740
741static void sb16_audio_start_input(int dev, unsigned long buf, int count, int intrflag)
742{
743 unsigned long flags, cnt;
744 sb_devc *devc = audio_devs[dev]->devc;
745
746 if (!devc->fullduplex || devc->bits != AFMT_S16_LE)
747 {
748 devc->irq_mode = IMODE_INPUT;
749 devc->intr_active = 1;
750 }
751 else
752 {
753 devc->irq_mode_16 = IMODE_INPUT;
754 devc->intr_active_16 = 1;
755 }
756
757 cnt = count;
758 if (devc->bits == AFMT_S16_LE)
759 cnt >>= 1;
760 cnt--;
761
762 spin_lock_irqsave(&devc->lock, flags);
763
764 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); */
765
766 sb_dsp_command(devc, 0x42);
767 sb_dsp_command(devc, (unsigned char) ((devc->speed >> 8) & 0xff));
768 sb_dsp_command(devc, (unsigned char) (devc->speed & 0xff));
769
770 sb_dsp_command(devc, (devc->bits == AFMT_S16_LE ? 0xbe : 0xce));
771 sb_dsp_command(devc, ((devc->channels == 2 ? 0x20 : 0) +
772 (devc->bits == AFMT_S16_LE ? 0x10 : 0)));
773 sb_dsp_command(devc, (unsigned char) (cnt & 0xff));
774 sb_dsp_command(devc, (unsigned char) (cnt >> 8));
775
776 spin_unlock_irqrestore(&devc->lock, flags);
777}
778
779static void sb16_audio_trigger(int dev, int bits)
780{
781 sb_devc *devc = audio_devs[dev]->devc;
782
783 int bits_16 = bits & devc->irq_mode_16;
784 bits &= devc->irq_mode;
785
786 if (!bits && !bits_16)
787 sb_dsp_command(devc, 0xd0); /* Halt DMA */
788 else
789 {
790 if (bits)
791 {
792 switch (devc->irq_mode)
793 {
794 case IMODE_INPUT:
795 sb16_audio_start_input(dev,
796 devc->trg_buf,
797 devc->trg_bytes,
798 devc->trg_intrflag);
799 break;
800
801 case IMODE_OUTPUT:
802 sb16_audio_output_block(dev,
803 devc->trg_buf,
804 devc->trg_bytes,
805 devc->trg_intrflag);
806 break;
807 }
808 }
809 if (bits_16)
810 {
811 switch (devc->irq_mode_16)
812 {
813 case IMODE_INPUT:
814 sb16_audio_start_input(dev,
815 devc->trg_buf_16,
816 devc->trg_bytes_16,
817 devc->trg_intrflag_16);
818 break;
819
820 case IMODE_OUTPUT:
821 sb16_audio_output_block(dev,
822 devc->trg_buf_16,
823 devc->trg_bytes_16,
824 devc->trg_intrflag_16);
825 break;
826 }
827 }
828 }
829
830 devc->trigger_bits = bits | bits_16;
831}
832
833static unsigned char lbuf8[2048];
834static signed short *lbuf16 = (signed short *)lbuf8;
835#define LBUFCOPYSIZE 1024
836static void
837sb16_copy_from_user(int dev,
838 char *localbuf, int localoffs,
839 const char __user *userbuf, int useroffs,
840 int max_in, int max_out,
841 int *used, int *returned,
842 int len)
843{
844 sb_devc *devc = audio_devs[dev]->devc;
845 int i, c, p, locallen;
846 unsigned char *buf8;
847 signed short *buf16;
848
849 /* if not duplex no conversion */
850 if (!devc->fullduplex)
851 {
852 if (copy_from_user(localbuf + localoffs,
853 userbuf + useroffs, len))
854 return;
855 *used = len;
856 *returned = len;
857 }
858 else if (devc->bits == AFMT_S16_LE)
859 {
860 /* 16 -> 8 */
861 /* max_in >> 1, max number of samples in ( 16 bits ) */
862 /* max_out, max number of samples out ( 8 bits ) */
863 /* len, number of samples that will be taken ( 16 bits )*/
864 /* c, count of samples remaining in buffer ( 16 bits )*/
865 /* p, count of samples already processed ( 16 bits )*/
866 len = ( (max_in >> 1) > max_out) ? max_out : (max_in >> 1);
867 c = len;
868 p = 0;
869 buf8 = (unsigned char *)(localbuf + localoffs);
870 while (c)
871 {
872 locallen = (c >= LBUFCOPYSIZE ? LBUFCOPYSIZE : c);
873 /* << 1 in order to get 16 bit samples */
874 if (copy_from_user(lbuf16,
875 userbuf + useroffs + (p << 1),
876 locallen << 1))
877 return;
878 for (i = 0; i < locallen; i++)
879 {
880 buf8[p+i] = ~((lbuf16[i] >> 8) & 0xff) ^ 0x80;
881 }
882 c -= locallen; p += locallen;
883 }
884 /* used = ( samples * 16 bits size ) */
885 *used = max_in > ( max_out << 1) ? (max_out << 1) : max_in;
886 /* returned = ( samples * 8 bits size ) */
887 *returned = len;
888 }
889 else
890 {
891 /* 8 -> 16 */
892 /* max_in, max number of samples in ( 8 bits ) */
893 /* max_out >> 1, max number of samples out ( 16 bits ) */
894 /* len, number of samples that will be taken ( 8 bits )*/
895 /* c, count of samples remaining in buffer ( 8 bits )*/
896 /* p, count of samples already processed ( 8 bits )*/
897 len = max_in > (max_out >> 1) ? (max_out >> 1) : max_in;
898 c = len;
899 p = 0;
900 buf16 = (signed short *)(localbuf + localoffs);
901 while (c)
902 {
903 locallen = (c >= LBUFCOPYSIZE ? LBUFCOPYSIZE : c);
904 if (copy_from_user(lbuf8,
905 userbuf+useroffs + p,
906 locallen))
907 return;
908 for (i = 0; i < locallen; i++)
909 {
910 buf16[p+i] = (~lbuf8[i] ^ 0x80) << 8;
911 }
912 c -= locallen; p += locallen;
913 }
914 /* used = ( samples * 8 bits size ) */
915 *used = len;
916 /* returned = ( samples * 16 bits size ) */
917 *returned = len << 1;
918 }
919}
920
921static void
922sb16_audio_mmap(int dev)
923{
924 sb_devc *devc = audio_devs[dev]->devc;
925 devc->fullduplex = 0;
926}
927
928static struct audio_driver sb1_audio_driver = /* SB1.x */
929{
930 .owner = THIS_MODULE,
931 .open = sb_audio_open,
932 .close = sb_audio_close,
933 .output_block = sb_set_output_parms,
934 .start_input = sb_set_input_parms,
935 .prepare_for_input = sb1_audio_prepare_for_input,
936 .prepare_for_output = sb1_audio_prepare_for_output,
937 .halt_io = sb1_audio_halt_xfer,
938 .trigger = sb1_audio_trigger,
939 .set_speed = sb1_audio_set_speed,
940 .set_bits = sb1_audio_set_bits,
941 .set_channels = sb1_audio_set_channels
942};
943
944static struct audio_driver sb20_audio_driver = /* SB2.0 */
945{
946 .owner = THIS_MODULE,
947 .open = sb_audio_open,
948 .close = sb_audio_close,
949 .output_block = sb_set_output_parms,
950 .start_input = sb_set_input_parms,
951 .prepare_for_input = sb1_audio_prepare_for_input,
952 .prepare_for_output = sb1_audio_prepare_for_output,
953 .halt_io = sb1_audio_halt_xfer,
954 .trigger = sb20_audio_trigger,
955 .set_speed = sb1_audio_set_speed,
956 .set_bits = sb1_audio_set_bits,
957 .set_channels = sb1_audio_set_channels
958};
959
960static struct audio_driver sb201_audio_driver = /* SB2.01 */
961{
962 .owner = THIS_MODULE,
963 .open = sb_audio_open,
964 .close = sb_audio_close,
965 .output_block = sb_set_output_parms,
966 .start_input = sb_set_input_parms,
967 .prepare_for_input = sb1_audio_prepare_for_input,
968 .prepare_for_output = sb1_audio_prepare_for_output,
969 .halt_io = sb1_audio_halt_xfer,
970 .trigger = sb20_audio_trigger,
971 .set_speed = sb201_audio_set_speed,
972 .set_bits = sb1_audio_set_bits,
973 .set_channels = sb1_audio_set_channels
974};
975
976static struct audio_driver sbpro_audio_driver = /* SB Pro */
977{
978 .owner = THIS_MODULE,
979 .open = sb_audio_open,
980 .close = sb_audio_close,
981 .output_block = sb_set_output_parms,
982 .start_input = sb_set_input_parms,
983 .prepare_for_input = sbpro_audio_prepare_for_input,
984 .prepare_for_output = sbpro_audio_prepare_for_output,
985 .halt_io = sb1_audio_halt_xfer,
986 .trigger = sb20_audio_trigger,
987 .set_speed = sbpro_audio_set_speed,
988 .set_bits = sb1_audio_set_bits,
989 .set_channels = sbpro_audio_set_channels
990};
991
992static struct audio_driver jazz16_audio_driver = /* Jazz16 and SM Wave */
993{
994 .owner = THIS_MODULE,
995 .open = sb_audio_open,
996 .close = sb_audio_close,
997 .output_block = sb_set_output_parms,
998 .start_input = sb_set_input_parms,
999 .prepare_for_input = sbpro_audio_prepare_for_input,
1000 .prepare_for_output = sbpro_audio_prepare_for_output,
1001 .halt_io = sb1_audio_halt_xfer,
1002 .trigger = sb20_audio_trigger,
1003 .set_speed = jazz16_audio_set_speed,
1004 .set_bits = sb16_audio_set_bits,
1005 .set_channels = sbpro_audio_set_channels
1006};
1007
1008static struct audio_driver sb16_audio_driver = /* SB16 */
1009{
1010 .owner = THIS_MODULE,
1011 .open = sb_audio_open,
1012 .close = sb_audio_close,
1013 .output_block = sb_set_output_parms,
1014 .start_input = sb_set_input_parms,
1015 .prepare_for_input = sb16_audio_prepare_for_input,
1016 .prepare_for_output = sb16_audio_prepare_for_output,
1017 .halt_io = sb1_audio_halt_xfer,
1018 .copy_user = sb16_copy_from_user,
1019 .trigger = sb16_audio_trigger,
1020 .set_speed = sb16_audio_set_speed,
1021 .set_bits = sb16_audio_set_bits,
1022 .set_channels = sbpro_audio_set_channels,
1023 .mmap = sb16_audio_mmap
1024};
1025
1026void sb_audio_init(sb_devc * devc, char *name, struct module *owner)
1027{
1028 int audio_flags = 0;
1029 int format_mask = AFMT_U8;
1030
1031 struct audio_driver *driver = &sb1_audio_driver;
1032
1033 switch (devc->model)
1034 {
1035 case MDL_SB1: /* SB1.0 or SB 1.5 */
1036 DDB(printk("Will use standard SB1.x driver\n"));
1037 audio_flags = DMA_HARDSTOP;
1038 break;
1039
1040 case MDL_SB2:
1041 DDB(printk("Will use SB2.0 driver\n"));
1042 audio_flags = DMA_AUTOMODE;
1043 driver = &sb20_audio_driver;
1044 break;
1045
1046 case MDL_SB201:
1047 DDB(printk("Will use SB2.01 (high speed) driver\n"));
1048 audio_flags = DMA_AUTOMODE;
1049 driver = &sb201_audio_driver;
1050 break;
1051
1052 case MDL_JAZZ:
1053 case MDL_SMW:
1054 DDB(printk("Will use Jazz16 driver\n"));
1055 audio_flags = DMA_AUTOMODE;
1056 format_mask |= AFMT_S16_LE;
1057 driver = &jazz16_audio_driver;
1058 break;
1059
1060 case MDL_ESS:
1061 DDB(printk("Will use ESS ES688/1688 driver\n"));
1062 driver = ess_audio_init (devc, &audio_flags, &format_mask);
1063 break;
1064
1065 case MDL_SB16:
1066 DDB(printk("Will use SB16 driver\n"));
1067 audio_flags = DMA_AUTOMODE;
1068 format_mask |= AFMT_S16_LE;
1069 if (devc->dma8 != devc->dma16 && devc->dma16 != -1)
1070 {
1071 audio_flags |= DMA_DUPLEX;
1072 devc->duplex = 1;
1073 }
1074 driver = &sb16_audio_driver;
1075 break;
1076
1077 default:
1078 DDB(printk("Will use SB Pro driver\n"));
1079 audio_flags = DMA_AUTOMODE;
1080 driver = &sbpro_audio_driver;
1081 }
1082
1083 if (owner)
1084 driver->owner = owner;
1085
1086 if ((devc->dev = sound_install_audiodrv(AUDIO_DRIVER_VERSION,
1087 name,driver, sizeof(struct audio_driver),
1088 audio_flags, format_mask, devc,
1089 devc->dma8,
1090 devc->duplex ? devc->dma16 : devc->dma8)) < 0)
1091 {
1092 printk(KERN_ERR "Sound Blaster: unable to install audio.\n");
1093 return;
1094 }
1095 audio_devs[devc->dev]->mixer_dev = devc->my_mixerdev;
1096 audio_devs[devc->dev]->min_fragment = 5;
1097}
1/*
2 * sound/oss/sb_audio.c
3 *
4 * Audio routines for Sound Blaster compatible cards.
5 *
6 *
7 * Copyright (C) by Hannu Savolainen 1993-1997
8 *
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
11 * for more info.
12 *
13 * Changes
14 * Alan Cox : Formatting and clean ups
15 *
16 * Status
17 * Mostly working. Weird uart bug causing irq storms
18 *
19 * Daniel J. Rodriksson: Changes to make sb16 work full duplex.
20 * Maybe other 16 bit cards in this code could behave
21 * the same.
22 * Chris Rankin: Use spinlocks instead of CLI/STI
23 */
24
25#include <linux/spinlock.h>
26
27#include "sound_config.h"
28
29#include "sb_mixer.h"
30#include "sb.h"
31
32#include "sb_ess.h"
33
34int sb_audio_open(int dev, int mode)
35{
36 sb_devc *devc = audio_devs[dev]->devc;
37 unsigned long flags;
38
39 if (devc == NULL)
40 {
41 printk(KERN_ERR "Sound Blaster: incomplete initialization.\n");
42 return -ENXIO;
43 }
44 if (devc->caps & SB_NO_RECORDING && mode & OPEN_READ)
45 {
46 if (mode == OPEN_READ)
47 return -EPERM;
48 }
49 spin_lock_irqsave(&devc->lock, flags);
50 if (devc->opened)
51 {
52 spin_unlock_irqrestore(&devc->lock, flags);
53 return -EBUSY;
54 }
55 if (devc->dma16 != -1 && devc->dma16 != devc->dma8 && !devc->duplex)
56 {
57 if (sound_open_dma(devc->dma16, "Sound Blaster 16 bit"))
58 {
59 spin_unlock_irqrestore(&devc->lock, flags);
60 return -EBUSY;
61 }
62 }
63 devc->opened = mode;
64 spin_unlock_irqrestore(&devc->lock, flags);
65
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));
70 sb_dsp_reset(devc);
71
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
75 */
76 if (devc->model == MDL_ESS) ess_mixer_reload (devc, SOUND_MIXER_RECLEV);
77
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. */
84
85 if (devc->submodel == SUBMDL_ALS007)
86 {
87 if (mode & OPEN_READ)
88 sb_setmixer(devc,ALS007_OUTPUT_CTRL2,
89 sb_getmixer(devc,ALS007_OUTPUT_CTRL2) & 0xf9);
90 else
91 sb_setmixer(devc,ALS007_OUTPUT_CTRL2,
92 sb_getmixer(devc,ALS007_OUTPUT_CTRL2) | 0x06);
93 }
94 return 0;
95}
96
97void sb_audio_close(int dev)
98{
99 sb_devc *devc = audio_devs[dev]->devc;
100
101 /* fix things if mmap turned off fullduplex */
102 if(devc->duplex
103 && !devc->fullduplex
104 && (devc->opened & OPEN_READ) && (devc->opened & OPEN_WRITE))
105 {
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;
110 }
111 audio_devs[dev]->dmap_out->dma = devc->dma8;
112 audio_devs[dev]->dmap_in->dma = ( devc->duplex ) ?
113 devc->dma16 : devc->dma8;
114
115 if (devc->dma16 != -1 && devc->dma16 != devc->dma8 && !devc->duplex)
116 sound_close_dma(devc->dma16);
117
118 /* For ALS007, turn DSP output back on if closing the device for read */
119
120 if ((devc->submodel == SUBMDL_ALS007) && (devc->opened & OPEN_READ))
121 {
122 sb_setmixer(devc,ALS007_OUTPUT_CTRL2,
123 sb_getmixer(devc,ALS007_OUTPUT_CTRL2) | 0x06);
124 }
125 devc->opened = 0;
126}
127
128static void sb_set_output_parms(int dev, unsigned long buf, int nr_bytes,
129 int intrflag)
130{
131 sb_devc *devc = audio_devs[dev]->devc;
132
133 if (!devc->fullduplex || devc->bits == AFMT_S16_LE)
134 {
135 devc->trg_buf = buf;
136 devc->trg_bytes = nr_bytes;
137 devc->trg_intrflag = intrflag;
138 devc->irq_mode = IMODE_OUTPUT;
139 }
140 else
141 {
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;
146 }
147}
148
149static void sb_set_input_parms(int dev, unsigned long buf, int count, int intrflag)
150{
151 sb_devc *devc = audio_devs[dev]->devc;
152
153 if (!devc->fullduplex || devc->bits != AFMT_S16_LE)
154 {
155 devc->trg_buf = buf;
156 devc->trg_bytes = count;
157 devc->trg_intrflag = intrflag;
158 devc->irq_mode = IMODE_INPUT;
159 }
160 else
161 {
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;
166 }
167}
168
169/*
170 * SB1.x compatible routines
171 */
172
173static void sb1_audio_output_block(int dev, unsigned long buf, int nr_bytes, int intrflag)
174{
175 unsigned long flags;
176 int count = nr_bytes;
177 sb_devc *devc = audio_devs[dev]->devc;
178
179 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); */
180
181 if (audio_devs[dev]->dmap_out->dma > 3)
182 count >>= 1;
183 count--;
184
185 devc->irq_mode = IMODE_OUTPUT;
186
187 spin_lock_irqsave(&devc->lock, flags);
188 if (sb_dsp_command(devc, 0x14)) /* 8 bit DAC using DMA */
189 {
190 sb_dsp_command(devc, (unsigned char) (count & 0xff));
191 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
192 }
193 else
194 printk(KERN_WARNING "Sound Blaster: unable to start DAC.\n");
195 spin_unlock_irqrestore(&devc->lock, flags);
196 devc->intr_active = 1;
197}
198
199static void sb1_audio_start_input(int dev, unsigned long buf, int nr_bytes, int intrflag)
200{
201 unsigned long flags;
202 int count = nr_bytes;
203 sb_devc *devc = audio_devs[dev]->devc;
204
205 /*
206 * Start a DMA input to the buffer pointed by dmaqtail
207 */
208
209 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); */
210
211 if (audio_devs[dev]->dmap_out->dma > 3)
212 count >>= 1;
213 count--;
214
215 devc->irq_mode = IMODE_INPUT;
216
217 spin_lock_irqsave(&devc->lock, flags);
218 if (sb_dsp_command(devc, 0x24)) /* 8 bit ADC using DMA */
219 {
220 sb_dsp_command(devc, (unsigned char) (count & 0xff));
221 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
222 }
223 else
224 printk(KERN_ERR "Sound Blaster: unable to start ADC.\n");
225 spin_unlock_irqrestore(&devc->lock, flags);
226
227 devc->intr_active = 1;
228}
229
230static void sb1_audio_trigger(int dev, int bits)
231{
232 sb_devc *devc = audio_devs[dev]->devc;
233
234 bits &= devc->irq_mode;
235
236 if (!bits)
237 sb_dsp_command(devc, 0xd0); /* Halt DMA */
238 else
239 {
240 switch (devc->irq_mode)
241 {
242 case IMODE_INPUT:
243 sb1_audio_start_input(dev, devc->trg_buf, devc->trg_bytes,
244 devc->trg_intrflag);
245 break;
246
247 case IMODE_OUTPUT:
248 sb1_audio_output_block(dev, devc->trg_buf, devc->trg_bytes,
249 devc->trg_intrflag);
250 break;
251 }
252 }
253 devc->trigger_bits = bits;
254}
255
256static int sb1_audio_prepare_for_input(int dev, int bsize, int bcount)
257{
258 sb_devc *devc = audio_devs[dev]->devc;
259 unsigned long flags;
260
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);
266
267 devc->trigger_bits = 0;
268 return 0;
269}
270
271static int sb1_audio_prepare_for_output(int dev, int bsize, int bcount)
272{
273 sb_devc *devc = audio_devs[dev]->devc;
274 unsigned long flags;
275
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;
282 return 0;
283}
284
285static int sb1_audio_set_speed(int dev, int speed)
286{
287 int max_speed = 23000;
288 sb_devc *devc = audio_devs[dev]->devc;
289 int tmp;
290
291 if (devc->opened & OPEN_READ)
292 max_speed = 13000;
293
294 if (speed > 0)
295 {
296 if (speed < 4000)
297 speed = 4000;
298
299 if (speed > max_speed)
300 speed = max_speed;
301
302 devc->tconst = (256 - ((1000000 + speed / 2) / speed)) & 0xff;
303 tmp = 256 - devc->tconst;
304 speed = (1000000 + tmp / 2) / tmp;
305
306 devc->speed = speed;
307 }
308 return devc->speed;
309}
310
311static short sb1_audio_set_channels(int dev, short channels)
312{
313 sb_devc *devc = audio_devs[dev]->devc;
314 return devc->channels = 1;
315}
316
317static unsigned int sb1_audio_set_bits(int dev, unsigned int bits)
318{
319 sb_devc *devc = audio_devs[dev]->devc;
320 return devc->bits = 8;
321}
322
323static void sb1_audio_halt_xfer(int dev)
324{
325 unsigned long flags;
326 sb_devc *devc = audio_devs[dev]->devc;
327
328 spin_lock_irqsave(&devc->lock, flags);
329 sb_dsp_reset(devc);
330 spin_unlock_irqrestore(&devc->lock, flags);
331}
332
333/*
334 * SB 2.0 and SB 2.01 compatible routines
335 */
336
337static void sb20_audio_output_block(int dev, unsigned long buf, int nr_bytes,
338 int intrflag)
339{
340 unsigned long flags;
341 int count = nr_bytes;
342 sb_devc *devc = audio_devs[dev]->devc;
343 unsigned char cmd;
344
345 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); */
346
347 if (audio_devs[dev]->dmap_out->dma > 3)
348 count >>= 1;
349 count--;
350
351 devc->irq_mode = IMODE_OUTPUT;
352
353 spin_lock_irqsave(&devc->lock, flags);
354 if (sb_dsp_command(devc, 0x48)) /* DSP Block size */
355 {
356 sb_dsp_command(devc, (unsigned char) (count & 0xff));
357 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
358
359 if (devc->speed * devc->channels <= 23000)
360 cmd = 0x1c; /* 8 bit PCM output */
361 else
362 cmd = 0x90; /* 8 bit high speed PCM output (SB2.01/Pro) */
363
364 if (!sb_dsp_command(devc, cmd))
365 printk(KERN_ERR "Sound Blaster: unable to start DAC.\n");
366 }
367 else
368 printk(KERN_ERR "Sound Blaster: unable to start DAC.\n");
369 spin_unlock_irqrestore(&devc->lock, flags);
370 devc->intr_active = 1;
371}
372
373static void sb20_audio_start_input(int dev, unsigned long buf, int nr_bytes, int intrflag)
374{
375 unsigned long flags;
376 int count = nr_bytes;
377 sb_devc *devc = audio_devs[dev]->devc;
378 unsigned char cmd;
379
380 /*
381 * Start a DMA input to the buffer pointed by dmaqtail
382 */
383
384 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); */
385
386 if (audio_devs[dev]->dmap_out->dma > 3)
387 count >>= 1;
388 count--;
389
390 devc->irq_mode = IMODE_INPUT;
391
392 spin_lock_irqsave(&devc->lock, flags);
393 if (sb_dsp_command(devc, 0x48)) /* DSP Block size */
394 {
395 sb_dsp_command(devc, (unsigned char) (count & 0xff));
396 sb_dsp_command(devc, (unsigned char) ((count >> 8) & 0xff));
397
398 if (devc->speed * devc->channels <= (devc->major == 3 ? 23000 : 13000))
399 cmd = 0x2c; /* 8 bit PCM input */
400 else
401 cmd = 0x98; /* 8 bit high speed PCM input (SB2.01/Pro) */
402
403 if (!sb_dsp_command(devc, cmd))
404 printk(KERN_ERR "Sound Blaster: unable to start ADC.\n");
405 }
406 else
407 printk(KERN_ERR "Sound Blaster: unable to start ADC.\n");
408 spin_unlock_irqrestore(&devc->lock, flags);
409 devc->intr_active = 1;
410}
411
412static void sb20_audio_trigger(int dev, int bits)
413{
414 sb_devc *devc = audio_devs[dev]->devc;
415 bits &= devc->irq_mode;
416
417 if (!bits)
418 sb_dsp_command(devc, 0xd0); /* Halt DMA */
419 else
420 {
421 switch (devc->irq_mode)
422 {
423 case IMODE_INPUT:
424 sb20_audio_start_input(dev, devc->trg_buf, devc->trg_bytes,
425 devc->trg_intrflag);
426 break;
427
428 case IMODE_OUTPUT:
429 sb20_audio_output_block(dev, devc->trg_buf, devc->trg_bytes,
430 devc->trg_intrflag);
431 break;
432 }
433 }
434 devc->trigger_bits = bits;
435}
436
437/*
438 * SB2.01 specific speed setup
439 */
440
441static int sb201_audio_set_speed(int dev, int speed)
442{
443 sb_devc *devc = audio_devs[dev]->devc;
444 int tmp;
445 int s = speed * devc->channels;
446
447 if (speed > 0)
448 {
449 if (speed < 4000)
450 speed = 4000;
451 if (speed > 44100)
452 speed = 44100;
453 if (devc->opened & OPEN_READ && speed > 15000)
454 speed = 15000;
455 devc->tconst = (256 - ((1000000 + s / 2) / s)) & 0xff;
456 tmp = 256 - devc->tconst;
457 speed = ((1000000 + tmp / 2) / tmp) / devc->channels;
458
459 devc->speed = speed;
460 }
461 return devc->speed;
462}
463
464/*
465 * SB Pro specific routines
466 */
467
468static 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;
471 unsigned long flags;
472 unsigned char bits = 0;
473
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;
477
478 if (devc->model == MDL_JAZZ || devc->model == MDL_SMW)
479 if (devc->bits == AFMT_S16_LE)
480 bits = 0x04; /* 16 bit mode */
481
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 */
488 else
489 sb_dsp_command(devc, 0xa8 | bits); /* Stereo input */
490 spin_unlock_irqrestore(&devc->lock, flags);
491
492 devc->trigger_bits = 0;
493 return 0;
494}
495
496static 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;
499 unsigned long flags;
500 unsigned char tmp;
501 unsigned char bits = 0;
502
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);
507
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);
512
513 if (devc->model == MDL_JAZZ || devc->model == MDL_SMW)
514 {
515 if (devc->bits == AFMT_S16_LE)
516 bits = 0x04; /* 16 bit mode */
517
518 if (devc->channels == 1)
519 sb_dsp_command(devc, 0xa0 | bits); /* Mono output */
520 else
521 sb_dsp_command(devc, 0xa8 | bits); /* Stereo output */
522 spin_unlock_irqrestore(&devc->lock, flags);
523 }
524 else
525 {
526 spin_unlock_irqrestore(&devc->lock, flags);
527 tmp = sb_getmixer(devc, 0x0e);
528 if (devc->channels == 1)
529 tmp &= ~0x02;
530 else
531 tmp |= 0x02;
532 sb_setmixer(devc, 0x0e, tmp);
533 }
534 devc->trigger_bits = 0;
535 return 0;
536}
537
538static int sbpro_audio_set_speed(int dev, int speed)
539{
540 sb_devc *devc = audio_devs[dev]->devc;
541
542 if (speed > 0)
543 {
544 if (speed < 4000)
545 speed = 4000;
546 if (speed > 44100)
547 speed = 44100;
548 if (devc->channels > 1 && speed > 22050)
549 speed = 22050;
550 sb201_audio_set_speed(dev, speed);
551 }
552 return devc->speed;
553}
554
555static short sbpro_audio_set_channels(int dev, short channels)
556{
557 sb_devc *devc = audio_devs[dev]->devc;
558
559 if (channels == 1 || channels == 2)
560 {
561 if (channels != devc->channels)
562 {
563 devc->channels = channels;
564 if (devc->model == MDL_SBPRO && devc->channels == 2)
565 sbpro_audio_set_speed(dev, devc->speed);
566 }
567 }
568 return devc->channels;
569}
570
571static int jazz16_audio_set_speed(int dev, int speed)
572{
573 sb_devc *devc = audio_devs[dev]->devc;
574
575 if (speed > 0)
576 {
577 int tmp;
578 int s = speed * devc->channels;
579
580 if (speed < 5000)
581 speed = 5000;
582 if (speed > 44100)
583 speed = 44100;
584
585 devc->tconst = (256 - ((1000000 + s / 2) / s)) & 0xff;
586
587 tmp = 256 - devc->tconst;
588 speed = ((1000000 + tmp / 2) / tmp) / devc->channels;
589
590 devc->speed = speed;
591 }
592 return devc->speed;
593}
594
595/*
596 * SB16 specific routines
597 */
598
599static int sb16_audio_set_speed(int dev, int speed)
600{
601 sb_devc *devc = audio_devs[dev]->devc;
602 int max_speed = devc->submodel == SUBMDL_ALS100 ? 48000 : 44100;
603
604 if (speed > 0)
605 {
606 if (speed < 5000)
607 speed = 5000;
608
609 if (speed > max_speed)
610 speed = max_speed;
611
612 devc->speed = speed;
613 }
614 return devc->speed;
615}
616
617static unsigned int sb16_audio_set_bits(int dev, unsigned int bits)
618{
619 sb_devc *devc = audio_devs[dev]->devc;
620
621 if (bits != 0)
622 {
623 if (bits == AFMT_U8 || bits == AFMT_S16_LE)
624 devc->bits = bits;
625 else
626 devc->bits = AFMT_U8;
627 }
628
629 return devc->bits;
630}
631
632static int sb16_audio_prepare_for_input(int dev, int bsize, int bcount)
633{
634 sb_devc *devc = audio_devs[dev]->devc;
635
636 if (!devc->fullduplex)
637 {
638 audio_devs[dev]->dmap_out->dma =
639 audio_devs[dev]->dmap_in->dma =
640 devc->bits == AFMT_S16_LE ?
641 devc->dma16 : devc->dma8;
642 }
643 else if (devc->bits == AFMT_S16_LE)
644 {
645 audio_devs[dev]->dmap_out->dma = devc->dma8;
646 audio_devs[dev]->dmap_in->dma = devc->dma16;
647 }
648 else
649 {
650 audio_devs[dev]->dmap_out->dma = devc->dma16;
651 audio_devs[dev]->dmap_in->dma = devc->dma8;
652 }
653
654 devc->trigger_bits = 0;
655 return 0;
656}
657
658static int sb16_audio_prepare_for_output(int dev, int bsize, int bcount)
659{
660 sb_devc *devc = audio_devs[dev]->devc;
661
662 if (!devc->fullduplex)
663 {
664 audio_devs[dev]->dmap_out->dma =
665 audio_devs[dev]->dmap_in->dma =
666 devc->bits == AFMT_S16_LE ?
667 devc->dma16 : devc->dma8;
668 }
669 else if (devc->bits == AFMT_S16_LE)
670 {
671 audio_devs[dev]->dmap_out->dma = devc->dma8;
672 audio_devs[dev]->dmap_in->dma = devc->dma16;
673 }
674 else
675 {
676 audio_devs[dev]->dmap_out->dma = devc->dma16;
677 audio_devs[dev]->dmap_in->dma = devc->dma8;
678 }
679
680 devc->trigger_bits = 0;
681 return 0;
682}
683
684static void sb16_audio_output_block(int dev, unsigned long buf, int count,
685 int intrflag)
686{
687 unsigned long flags, cnt;
688 sb_devc *devc = audio_devs[dev]->devc;
689 unsigned long bits;
690
691 if (!devc->fullduplex || devc->bits == AFMT_S16_LE)
692 {
693 devc->irq_mode = IMODE_OUTPUT;
694 devc->intr_active = 1;
695 }
696 else
697 {
698 devc->irq_mode_16 = IMODE_OUTPUT;
699 devc->intr_active_16 = 1;
700 }
701
702 /* save value */
703 spin_lock_irqsave(&devc->lock, flags);
704 bits = devc->bits;
705 if (devc->fullduplex)
706 devc->bits = (devc->bits == AFMT_S16_LE) ?
707 AFMT_U8 : AFMT_S16_LE;
708 spin_unlock_irqrestore(&devc->lock, flags);
709
710 cnt = count;
711 if (devc->bits == AFMT_S16_LE)
712 cnt >>= 1;
713 cnt--;
714
715 spin_lock_irqsave(&devc->lock, flags);
716
717 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_WRITE); */
718
719 sb_dsp_command(devc, 0x41);
720 sb_dsp_command(devc, (unsigned char) ((devc->speed >> 8) & 0xff));
721 sb_dsp_command(devc, (unsigned char) (devc->speed & 0xff));
722
723 sb_dsp_command(devc, (devc->bits == AFMT_S16_LE ? 0xb6 : 0xc6));
724 sb_dsp_command(devc, ((devc->channels == 2 ? 0x20 : 0) +
725 (devc->bits == AFMT_S16_LE ? 0x10 : 0)));
726 sb_dsp_command(devc, (unsigned char) (cnt & 0xff));
727 sb_dsp_command(devc, (unsigned char) (cnt >> 8));
728
729 /* restore real value after all programming */
730 devc->bits = bits;
731 spin_unlock_irqrestore(&devc->lock, flags);
732}
733
734
735/*
736 * This fails on the Cyrix MediaGX. If you don't have the DMA enabled
737 * before the first sample arrives it locks up. However even if you
738 * do enable the DMA in time you just get DMA timeouts and missing
739 * interrupts and stuff, so for now I've not bothered fixing this either.
740 */
741
742static void sb16_audio_start_input(int dev, unsigned long buf, int count, int intrflag)
743{
744 unsigned long flags, cnt;
745 sb_devc *devc = audio_devs[dev]->devc;
746
747 if (!devc->fullduplex || devc->bits != AFMT_S16_LE)
748 {
749 devc->irq_mode = IMODE_INPUT;
750 devc->intr_active = 1;
751 }
752 else
753 {
754 devc->irq_mode_16 = IMODE_INPUT;
755 devc->intr_active_16 = 1;
756 }
757
758 cnt = count;
759 if (devc->bits == AFMT_S16_LE)
760 cnt >>= 1;
761 cnt--;
762
763 spin_lock_irqsave(&devc->lock, flags);
764
765 /* DMAbuf_start_dma (dev, buf, count, DMA_MODE_READ); */
766
767 sb_dsp_command(devc, 0x42);
768 sb_dsp_command(devc, (unsigned char) ((devc->speed >> 8) & 0xff));
769 sb_dsp_command(devc, (unsigned char) (devc->speed & 0xff));
770
771 sb_dsp_command(devc, (devc->bits == AFMT_S16_LE ? 0xbe : 0xce));
772 sb_dsp_command(devc, ((devc->channels == 2 ? 0x20 : 0) +
773 (devc->bits == AFMT_S16_LE ? 0x10 : 0)));
774 sb_dsp_command(devc, (unsigned char) (cnt & 0xff));
775 sb_dsp_command(devc, (unsigned char) (cnt >> 8));
776
777 spin_unlock_irqrestore(&devc->lock, flags);
778}
779
780static void sb16_audio_trigger(int dev, int bits)
781{
782 sb_devc *devc = audio_devs[dev]->devc;
783
784 int bits_16 = bits & devc->irq_mode_16;
785 bits &= devc->irq_mode;
786
787 if (!bits && !bits_16)
788 sb_dsp_command(devc, 0xd0); /* Halt DMA */
789 else
790 {
791 if (bits)
792 {
793 switch (devc->irq_mode)
794 {
795 case IMODE_INPUT:
796 sb16_audio_start_input(dev,
797 devc->trg_buf,
798 devc->trg_bytes,
799 devc->trg_intrflag);
800 break;
801
802 case IMODE_OUTPUT:
803 sb16_audio_output_block(dev,
804 devc->trg_buf,
805 devc->trg_bytes,
806 devc->trg_intrflag);
807 break;
808 }
809 }
810 if (bits_16)
811 {
812 switch (devc->irq_mode_16)
813 {
814 case IMODE_INPUT:
815 sb16_audio_start_input(dev,
816 devc->trg_buf_16,
817 devc->trg_bytes_16,
818 devc->trg_intrflag_16);
819 break;
820
821 case IMODE_OUTPUT:
822 sb16_audio_output_block(dev,
823 devc->trg_buf_16,
824 devc->trg_bytes_16,
825 devc->trg_intrflag_16);
826 break;
827 }
828 }
829 }
830
831 devc->trigger_bits = bits | bits_16;
832}
833
834static unsigned char lbuf8[2048];
835static signed short *lbuf16 = (signed short *)lbuf8;
836#define LBUFCOPYSIZE 1024
837static void
838sb16_copy_from_user(int dev,
839 char *localbuf, int localoffs,
840 const char __user *userbuf, int useroffs,
841 int max_in, int max_out,
842 int *used, int *returned,
843 int len)
844{
845 sb_devc *devc = audio_devs[dev]->devc;
846 int i, c, p, locallen;
847 unsigned char *buf8;
848 signed short *buf16;
849
850 /* if not duplex no conversion */
851 if (!devc->fullduplex)
852 {
853 if (copy_from_user(localbuf + localoffs,
854 userbuf + useroffs, len))
855 return;
856 *used = len;
857 *returned = len;
858 }
859 else if (devc->bits == AFMT_S16_LE)
860 {
861 /* 16 -> 8 */
862 /* max_in >> 1, max number of samples in ( 16 bits ) */
863 /* max_out, max number of samples out ( 8 bits ) */
864 /* len, number of samples that will be taken ( 16 bits )*/
865 /* c, count of samples remaining in buffer ( 16 bits )*/
866 /* p, count of samples already processed ( 16 bits )*/
867 len = ( (max_in >> 1) > max_out) ? max_out : (max_in >> 1);
868 c = len;
869 p = 0;
870 buf8 = (unsigned char *)(localbuf + localoffs);
871 while (c)
872 {
873 locallen = (c >= LBUFCOPYSIZE ? LBUFCOPYSIZE : c);
874 /* << 1 in order to get 16 bit samples */
875 if (copy_from_user(lbuf16,
876 userbuf + useroffs + (p << 1),
877 locallen << 1))
878 return;
879 for (i = 0; i < locallen; i++)
880 {
881 buf8[p+i] = ~((lbuf16[i] >> 8) & 0xff) ^ 0x80;
882 }
883 c -= locallen; p += locallen;
884 }
885 /* used = ( samples * 16 bits size ) */
886 *used = max_in > ( max_out << 1) ? (max_out << 1) : max_in;
887 /* returned = ( samples * 8 bits size ) */
888 *returned = len;
889 }
890 else
891 {
892 /* 8 -> 16 */
893 /* max_in, max number of samples in ( 8 bits ) */
894 /* max_out >> 1, max number of samples out ( 16 bits ) */
895 /* len, number of samples that will be taken ( 8 bits )*/
896 /* c, count of samples remaining in buffer ( 8 bits )*/
897 /* p, count of samples already processed ( 8 bits )*/
898 len = max_in > (max_out >> 1) ? (max_out >> 1) : max_in;
899 c = len;
900 p = 0;
901 buf16 = (signed short *)(localbuf + localoffs);
902 while (c)
903 {
904 locallen = (c >= LBUFCOPYSIZE ? LBUFCOPYSIZE : c);
905 if (copy_from_user(lbuf8,
906 userbuf+useroffs + p,
907 locallen))
908 return;
909 for (i = 0; i < locallen; i++)
910 {
911 buf16[p+i] = (~lbuf8[i] ^ 0x80) << 8;
912 }
913 c -= locallen; p += locallen;
914 }
915 /* used = ( samples * 8 bits size ) */
916 *used = len;
917 /* returned = ( samples * 16 bits size ) */
918 *returned = len << 1;
919 }
920}
921
922static void
923sb16_audio_mmap(int dev)
924{
925 sb_devc *devc = audio_devs[dev]->devc;
926 devc->fullduplex = 0;
927}
928
929static struct audio_driver sb1_audio_driver = /* SB1.x */
930{
931 .owner = THIS_MODULE,
932 .open = sb_audio_open,
933 .close = sb_audio_close,
934 .output_block = sb_set_output_parms,
935 .start_input = sb_set_input_parms,
936 .prepare_for_input = sb1_audio_prepare_for_input,
937 .prepare_for_output = sb1_audio_prepare_for_output,
938 .halt_io = sb1_audio_halt_xfer,
939 .trigger = sb1_audio_trigger,
940 .set_speed = sb1_audio_set_speed,
941 .set_bits = sb1_audio_set_bits,
942 .set_channels = sb1_audio_set_channels
943};
944
945static struct audio_driver sb20_audio_driver = /* SB2.0 */
946{
947 .owner = THIS_MODULE,
948 .open = sb_audio_open,
949 .close = sb_audio_close,
950 .output_block = sb_set_output_parms,
951 .start_input = sb_set_input_parms,
952 .prepare_for_input = sb1_audio_prepare_for_input,
953 .prepare_for_output = sb1_audio_prepare_for_output,
954 .halt_io = sb1_audio_halt_xfer,
955 .trigger = sb20_audio_trigger,
956 .set_speed = sb1_audio_set_speed,
957 .set_bits = sb1_audio_set_bits,
958 .set_channels = sb1_audio_set_channels
959};
960
961static struct audio_driver sb201_audio_driver = /* SB2.01 */
962{
963 .owner = THIS_MODULE,
964 .open = sb_audio_open,
965 .close = sb_audio_close,
966 .output_block = sb_set_output_parms,
967 .start_input = sb_set_input_parms,
968 .prepare_for_input = sb1_audio_prepare_for_input,
969 .prepare_for_output = sb1_audio_prepare_for_output,
970 .halt_io = sb1_audio_halt_xfer,
971 .trigger = sb20_audio_trigger,
972 .set_speed = sb201_audio_set_speed,
973 .set_bits = sb1_audio_set_bits,
974 .set_channels = sb1_audio_set_channels
975};
976
977static struct audio_driver sbpro_audio_driver = /* SB Pro */
978{
979 .owner = THIS_MODULE,
980 .open = sb_audio_open,
981 .close = sb_audio_close,
982 .output_block = sb_set_output_parms,
983 .start_input = sb_set_input_parms,
984 .prepare_for_input = sbpro_audio_prepare_for_input,
985 .prepare_for_output = sbpro_audio_prepare_for_output,
986 .halt_io = sb1_audio_halt_xfer,
987 .trigger = sb20_audio_trigger,
988 .set_speed = sbpro_audio_set_speed,
989 .set_bits = sb1_audio_set_bits,
990 .set_channels = sbpro_audio_set_channels
991};
992
993static struct audio_driver jazz16_audio_driver = /* Jazz16 and SM Wave */
994{
995 .owner = THIS_MODULE,
996 .open = sb_audio_open,
997 .close = sb_audio_close,
998 .output_block = sb_set_output_parms,
999 .start_input = sb_set_input_parms,
1000 .prepare_for_input = sbpro_audio_prepare_for_input,
1001 .prepare_for_output = sbpro_audio_prepare_for_output,
1002 .halt_io = sb1_audio_halt_xfer,
1003 .trigger = sb20_audio_trigger,
1004 .set_speed = jazz16_audio_set_speed,
1005 .set_bits = sb16_audio_set_bits,
1006 .set_channels = sbpro_audio_set_channels
1007};
1008
1009static struct audio_driver sb16_audio_driver = /* SB16 */
1010{
1011 .owner = THIS_MODULE,
1012 .open = sb_audio_open,
1013 .close = sb_audio_close,
1014 .output_block = sb_set_output_parms,
1015 .start_input = sb_set_input_parms,
1016 .prepare_for_input = sb16_audio_prepare_for_input,
1017 .prepare_for_output = sb16_audio_prepare_for_output,
1018 .halt_io = sb1_audio_halt_xfer,
1019 .copy_user = sb16_copy_from_user,
1020 .trigger = sb16_audio_trigger,
1021 .set_speed = sb16_audio_set_speed,
1022 .set_bits = sb16_audio_set_bits,
1023 .set_channels = sbpro_audio_set_channels,
1024 .mmap = sb16_audio_mmap
1025};
1026
1027void sb_audio_init(sb_devc * devc, char *name, struct module *owner)
1028{
1029 int audio_flags = 0;
1030 int format_mask = AFMT_U8;
1031
1032 struct audio_driver *driver = &sb1_audio_driver;
1033
1034 switch (devc->model)
1035 {
1036 case MDL_SB1: /* SB1.0 or SB 1.5 */
1037 DDB(printk("Will use standard SB1.x driver\n"));
1038 audio_flags = DMA_HARDSTOP;
1039 break;
1040
1041 case MDL_SB2:
1042 DDB(printk("Will use SB2.0 driver\n"));
1043 audio_flags = DMA_AUTOMODE;
1044 driver = &sb20_audio_driver;
1045 break;
1046
1047 case MDL_SB201:
1048 DDB(printk("Will use SB2.01 (high speed) driver\n"));
1049 audio_flags = DMA_AUTOMODE;
1050 driver = &sb201_audio_driver;
1051 break;
1052
1053 case MDL_JAZZ:
1054 case MDL_SMW:
1055 DDB(printk("Will use Jazz16 driver\n"));
1056 audio_flags = DMA_AUTOMODE;
1057 format_mask |= AFMT_S16_LE;
1058 driver = &jazz16_audio_driver;
1059 break;
1060
1061 case MDL_ESS:
1062 DDB(printk("Will use ESS ES688/1688 driver\n"));
1063 driver = ess_audio_init (devc, &audio_flags, &format_mask);
1064 break;
1065
1066 case MDL_SB16:
1067 DDB(printk("Will use SB16 driver\n"));
1068 audio_flags = DMA_AUTOMODE;
1069 format_mask |= AFMT_S16_LE;
1070 if (devc->dma8 != devc->dma16 && devc->dma16 != -1)
1071 {
1072 audio_flags |= DMA_DUPLEX;
1073 devc->duplex = 1;
1074 }
1075 driver = &sb16_audio_driver;
1076 break;
1077
1078 default:
1079 DDB(printk("Will use SB Pro driver\n"));
1080 audio_flags = DMA_AUTOMODE;
1081 driver = &sbpro_audio_driver;
1082 }
1083
1084 if (owner)
1085 driver->owner = owner;
1086
1087 if ((devc->dev = sound_install_audiodrv(AUDIO_DRIVER_VERSION,
1088 name,driver, sizeof(struct audio_driver),
1089 audio_flags, format_mask, devc,
1090 devc->dma8,
1091 devc->duplex ? devc->dma16 : devc->dma8)) < 0)
1092 {
1093 printk(KERN_ERR "Sound Blaster: unable to install audio.\n");
1094 return;
1095 }
1096 audio_devs[devc->dev]->mixer_dev = devc->my_mixerdev;
1097 audio_devs[devc->dev]->min_fragment = 5;
1098}