1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
|
/* $NetBSD: vidcaudio.c,v 1.3 1996/03/17 01:24:37 thorpej Exp $ */
/*
* Copyright (c) 1995 Melvin Tang-Richardson
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the RiscBSD team.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Yikes just had a look at this and realised that it does not conform
* to Kernel Normal Form at all. I have fixed the first few functions
* but there are a lot more still to do - mark
*/
/*
* vidcaudio driver for RiscBSD by Melvin Tang-Richardson (c) 1995
*
* Interfaces with the NetBSD generic audio driver to provide SUN
* /dev/audio (partial) compatibility.
*
* Do not include me in conf.c. My interface is done by the generic
* audio driver. Put me in config file and files.arm32. Do not put
* the audio.c generic driver in them. I do the autoconfig for it.
*
* The following files need to be altered
*
* [files.arm32]
* device vidcaudio at mainbus :audio
* file arch/arm32/mainbus/vidcaudio.c vidcaudio needs-flag
* major { audio=36 }
*
* [conf.c]
* #include "audio.h"
* cdev_decl(audio)
*
* cdev_audio_init(NAUDIO,audio) /* 36: generic audio I/O */
*
* [GENERIC]
* vidcaudio0 at mainbus? base 0x00000000
*
*/
#include <sys/param.h> /* proc.h */
#include <sys/types.h> /* dunno */
#include <sys/conf.h> /* autoconfig functions */
#include <sys/device.h> /* device calls */
#include <sys/proc.h> /* device calls */
#include <sys/audioio.h>
#include <sys/errno.h>
#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <dev/audio_if.h>
#include <machine/irqhandler.h>
#include <machine/iomd.h>
#include <machine/vidc.h>
#include <machine/katelib.h> /* ReadByte etc. */
#include <arm32/mainbus/mainbus.h>
#include "waveform.h"
#include "vidcaudio.h"
#undef DEBUG
struct audio_general {
int in_sr;
int out_sr;
vm_offset_t silence;
irqhandler_t ih;
void (*intr) ();
void *arg;
vm_offset_t next_cur;
vm_offset_t next_end;
void (*next_intr) ();
void *next_arg;
int buffer;
int in_progress;
int open;
} ag;
struct vidcaudio_softc {
struct device device;
int iobase;
int open;
u_int encoding;
int inport;
int outport;
};
int vidcaudio_probe __P((struct device *parent, struct device *match, void *aux));
void vidcaudio_attach __P((struct device *parent, struct device *self, void *aux));
int vidcaudio_open __P((dev_t dev, int flags));
void vidcaudio_close __P((void *addr));
int vidcaudio_intr __P((void *arg));
int vidcaudio_dma_program __P((vm_offset_t cur, vm_offset_t end, void (*intr)(), void *arg));
void vidcaudio_dummy_routine __P((void *arg));
int vidcaudio_stereo __P((int channel, int position));
int vidcaudio_rate __P((int rate));
void vidcaudio_shutdown __P((void));
int vidcaudio_hw_attach __P((struct vidcaudio_softc *sc));
struct cfattach vidcaudio_ca = {
sizeof(struct vidcaudio_softc), vidcaudio_probe, vidcaudio_attach
};
struct cfdriver vidcaudio_cd = {
NULL, "vidcaudio", DV_DULL
};
void
vidcaudio_beep_generate()
{
vidcaudio_dma_program ( ag.silence, ag.silence+sizeof(beep_waveform)-16,
vidcaudio_dummy_routine, NULL );
}
int
vidcaudio_probe(parent, match, aux)
struct device *parent;
struct device *match;
void *aux;
{
int id;
id = ReadByte(IOMD_ID0) | ReadByte(IOMD_ID1) << 8;
/* So far I only know about this IOMD */
switch (id) {
case RPC600_IOMD_ID:
return(1);
break;
default:
printf("vidcaudio: Unknown IOMD id=%04x", id);
break;
}
return (0);
}
void
vidcaudio_attach(parent, self, aux)
struct device *parent;
struct device *self;
void *aux;
{
struct mainbus_attach_args *mb = aux;
struct vidcaudio_softc *sc = (void *)self;
sc->iobase = mb->mb_iobase;
sc->open = 0;
sc->encoding = 0;
sc->inport = 0;
sc->outport = 0;
ag.in_sr = 24*1024;
ag.out_sr = 24*1024;
ag.in_progress = 0;
ag.next_cur = 0;
ag.next_end = 0;
ag.next_intr = NULL;
ag.next_arg = NULL;
vidcaudio_rate(32);
/* Program the silence buffer and reset the DMA channel */
ag.silence = kmem_alloc(kernel_map, NBPG);
if (ag.silence == NULL)
panic("vidcaudio: Cannot allocate memory\n");
bzero((char *)ag.silence, NBPG);
bcopy((char *)beep_waveform, (char *)ag.silence, sizeof(beep_waveform));
ag.buffer = 0;
/* Install the irq handler for the DMA interrupt */
ag.ih.ih_func = vidcaudio_intr;
ag.ih.ih_arg = NULL;
ag.ih.ih_level = IPL_NONE;
ag.intr = NULL;
ag.nextintr = NULL;
disable_irq(IRQ_DMASCH0);
if (irq_claim(IRQ_DMASCH0, &(ag.ih)))
panic("vidcaudio: couldn't claim IRQ_DMASCH0");
disable_irq(IRQ_DMASCH0);
vidcaudio_dma_program(ag.silence, ag.silence+NBPG-16,
vidcaudio_dummy_routine, NULL);
vidcaudio_hw_attach(sc);
#ifdef DEBUG
printf(" UNDER DEVELOPMENT (nuts)\n");
#endif
}
int
vidcaudio_open(dev, flags)
dev_t dev;
int flags;
{
struct vidcaudio_softc *sc;
int unit = AUDIOUNIT (dev);
int s;
#ifdef DEBUG
printf("DEBUG: vidcaudio_open called\n");
#endif
if (unit >= vidcaudio_cd.cd_ndevs)
return ENODEV;
sc = vidcaudio_cd.cd_devs[unit];
if (!sc)
return ENXIO;
s = splhigh();
if (sc->open != 0) {
(void)splx(s);
return EBUSY;
}
sc->open=1;
ag.open=1;
(void)splx(s);
return 0;
}
void
vidcaudio_close(addr)
void *addr;
{
struct vidcaudio_softc *sc = addr;
vidcaudio_shutdown ();
#ifdef DEBUG
printf("DEBUG: vidcaudio_close called\n");
#endif
sc->open = 0;
ag.open = 0;
}
/* ************************************************************************* *
| Interface to the generic audio driver |
* ************************************************************************* */
int vidcaudio_set_in_sr __P((void *, u_long));
u_long vidcaudio_get_in_sr __P((void *));
int vidcaudio_set_out_sr __P((void *, u_long));
u_long vidcaudio_get_out_sr __P((void *));
int vidcaudio_query_encoding __P((void *, struct audio_encoding *));
int vidcaudio_set_encoding __P((void *, u_int));
int vidcaudio_get_encoding __P((void *));
int vidcaudio_set_precision __P((void *, u_int));
int vidcaudio_getprecision __P((void *));
int vidcaudio_set_channels __P((void *, int));
int vidcaudio_get_channels __P((void *));
int vidcaudio_round_blocksize __P((void *, int));
int vidcaudio_set_out_port __P((void *, int));
int vidcaudio_get_out_port __P((void *));
int vidcaudio_set_in_port __P((void *, int));
int vidcaudio_get_in_port __P((void *));
int vidcaudio_commit_settings __P((void *));
u_int vidcaudio_get_silence __P((int));
void vidcaudio_sw_encode __P((int, u_char *, int));
void vidcaudio_sw_decode __P((int, u_char *, int));
int vidcaudio_start_output __P((void *, void *, int, void (*)(), void *));
int vidcaudio_start_input __P((void *, void *, int, void (*)(), void *));
int vidcaudio_halt_output __P((void *));
int vidcaudio_halt_input __P((void *));
int vidcaudio_cont_output __P((void *));
int vidcaudio_cont_input __P((void *));
int vidcaudio_speaker_ctl __P((void *, int));
int vidcaudio_getdev __P((void *, struct audio_device *));
int vidcaudio_setfd __P((void *, int));
int vidcaudio_set_port __P((void *, mixer_ctrl_t *));
int vidcaudio_get_port __P((void *, mixer_ctrl_t *));
int vidcaudio_query_devinfo __P((void *, mixer_devinfo_t *));
struct audio_device vidcaudio_device = {
"VidcAudio 8-bit",
"x",
"vidcaudio"
};
int
vidcaudio_set_in_sr(addr, sr)
void *addr;
u_long sr;
{
ag.in_sr = sr;
return 0;
}
u_long
vidcaudio_get_in_sr(addr)
void *addr;
{
return ag.in_sr;
}
int
vidcaudio_set_out_sr(addr, sr)
void *addr;
u_long sr;
{
ag.out_sr = sr;
return 0;
}
u_long
vidcaudio_get_out_sr(addr)
void *addr;
{
return(ag.out_sr);
}
int vidcaudio_query_encoding ( void *addr, struct audio_encoding *fp )
{
switch ( fp->index )
{
case 0:
strcpy (fp->name, "vidc" );
fp->format_id = AUDIO_ENCODING_ULAW;
break;
default:
return (EINVAL);
}
return 0;
}
int vidcaudio_set_encoding ( void *addr, u_int enc )
{
struct vidcaudio_softc *sc = addr;
switch (enc)
{
case AUDIO_ENCODING_ULAW:
#ifdef DEBUG
printf ( "DEBUG: Set ulaw encoding\n" );
#endif
sc->encoding = enc;
break;
default:
return (EINVAL);
}
return 0;
}
int vidcaudio_get_encoding ( void *addr )
{
struct vidcaudio_softc *sc = addr;
return sc->encoding;
}
int vidcaudio_set_precision ( void *addr, u_int prec )
{
if (prec != 8)
return EINVAL;
return 0;
}
int vidcaudio_get_precision ( void *addr )
{
return (8);
}
int vidcaudio_set_channels ( void *addr, int chans )
{
if ( chans!=1 )
return EINVAL;
return 0;
}
int vidcaudio_get_channels ( void *addr )
{
return 1;
}
int vidcaudio_round_blocksize ( void *addr, int blk )
{
if (blk>NBPG) blk=NBPG;
return blk;
}
int vidcaudio_set_out_port ( void *addr, int port )
{
struct vidcaudio_softc *sc = addr;
sc->outport = port;
return 0;
}
int vidcaudio_get_out_port ( void *addr )
{
struct vidcaudio_softc *sc = addr;
return sc->outport;
}
int vidcaudio_set_in_port ( void *addr, int port )
{
struct vidcaudio_softc *sc = addr;
sc->inport = port;
return 0;
}
int vidcaudio_get_in_port ( void *addr )
{
struct vidcaudio_softc *sc = addr;
return sc->inport;
}
int vidcaudio_commit_settings ( void *addr )
{
#ifdef DEBUG
printf ( "DEBUG: committ_settings\n" );
#endif
return 0;
}
u_int vidcaudio_get_silence ( int enc )
{
switch (enc)
{
case AUDIO_ENCODING_ULAW:
return 0x7f;
default:
return 0;
}
return 0;
}
void vidcaudio_sw_encode ( int e, u_char *p, int cc )
{
#ifdef DEBUG
printf ( "DEBUG: sw_encode\n" );
#endif
return;
}
void vidcaudio_sw_decode ( int e, u_char *p, int cc )
{
#ifdef DEBUG
printf ( "DEBUG: sw_decode\n" );
#endif
}
#define ROUND(s) ( ((int)s) & (~(NBPG-1)) )
int vidcaudio_start_output ( void *addr, void *p, int cc,
void (*intr)(), void *arg )
{
/* I can only DMA inside 1 page */
#ifdef DEBUG
printf ( "vidcaudio_start_output (%d) %08x %08x\n", cc, intr, arg );
#endif
if ( ROUND(p) != ROUND(p+cc) )
{
/* If it's over a page I can fix it up by copying it into my buffer */
#ifdef DEBUG
printf ( "vidcaudio: DMA over page boundary requested. Fixing up\n" );
#endif
bcopy ( (char *)ag.silence, p, cc>NBPG ? NBPG : cc );
p=(void *)ag.silence;
/* I can't DMA any more than that, but it is possible to fix it up */
/* by handling multiple buffers and only interrupting the audio */
/* driver after sending out all the stuff it gave me. That it more */
/* than I can be bothered to do right now and it probablly wont */
/* happen so I'll just truncate the buffer and tell the user */
if ( cc>NBPG )
{
printf ( "vidcaudio: DMA buffer truncated. I could fix this up\n" );
cc=NBPG;
}
}
vidcaudio_dma_program ( (vm_offset_t)p, (vm_offset_t)(p+cc), intr, arg );
return 0;
}
int vidcaudio_start_input ( void *addr, void *p, int cc,
void (*intr)(), void *arg )
{
return EIO;
}
int vidcaudio_halt_output ( void *addr )
{
#ifdef DEBUG
printf ( "DEBUG: vidcaudio_halt_output\n" );
#endif
return EIO;
}
int vidcaudio_halt_input ( void *addr )
{
#ifdef DEBUG
printf ( "DEBUG: vidcaudio_halt_output\n" );
#endif
return EIO;
}
int vidcaudio_cont_output ( void *addr )
{
#ifdef DEBUG
printf ( "DEBUG: vidcaudio_halt_output\n" );
#endif
return EIO;
}
int vidcaudio_cont_input ( void *addr )
{
#ifdef DEBUG
printf ( "DEBUG: vidcaudio_halt_output\n" );
#endif
return EIO;
}
int vidcaudio_speaker_ctl ( void *addr, int newstate )
{
#ifdef DEBUG
printf ( "DEBUG: vidcaudio_speaker_ctl\n" );
#endif
return 0;
}
int vidcaudio_getdev ( void *addr, struct audio_device *retp )
{
*retp = vidcaudio_device;
return 0;
}
int vidcaudio_setfd ( void *addr, int flag )
{
return ENOTTY;
}
int vidcaudio_set_port ( void *addr, mixer_ctrl_t *cp )
{
return EINVAL;
}
int vidcaudio_get_port ( void *addr, mixer_ctrl_t *cp )
{
return EINVAL;
}
int vidcaudio_query_devinfo ( void *addr, mixer_devinfo_t *dip )
{
return 0;
}
struct audio_hw_if vidcaudio_hw_if = {
vidcaudio_open,
vidcaudio_close,
NULL,
vidcaudio_set_in_sr,
vidcaudio_get_in_sr,
vidcaudio_set_out_sr,
vidcaudio_get_out_sr,
vidcaudio_query_encoding,
vidcaudio_set_encoding,
vidcaudio_get_encoding,
vidcaudio_set_precision,
vidcaudio_get_precision,
vidcaudio_set_channels,
vidcaudio_get_channels,
vidcaudio_round_blocksize,
vidcaudio_set_out_port,
vidcaudio_get_out_port,
vidcaudio_set_in_port,
vidcaudio_get_in_port,
vidcaudio_commit_settings,
vidcaudio_get_silence,
vidcaudio_sw_encode,
vidcaudio_sw_decode,
vidcaudio_start_output,
vidcaudio_start_input,
vidcaudio_halt_output,
vidcaudio_halt_input,
vidcaudio_cont_output,
vidcaudio_cont_input,
vidcaudio_speaker_ctl,
vidcaudio_getdev,
vidcaudio_setfd,
vidcaudio_set_port,
vidcaudio_get_port,
vidcaudio_query_devinfo,
0, /* not full duplex */
0
};
void vidcaudio_dummy_routine ( void *arg )
{
#ifdef DEBUG
printf ( "vidcaudio_dummy_routine\n" );
#endif
}
int vidcaudio_hw_attach ( struct vidcaudio_softc *sc )
{
return ( audio_hardware_attach ( &vidcaudio_hw_if, sc ) );
}
int vidcaudio_rate ( int rate )
{
WriteWord ( VIDC_BASE, VIDC_SFR | rate );
return 0;
}
int vidcaudio_stereo ( int channel, int position )
{
if ( channel<0 ) return EINVAL;
if ( channel>7 ) return EINVAL;
channel = channel<<24 | VIDC_SIR0;
WriteWord ( VIDC_BASE, channel|position );
return 0;
}
#define PHYS(x) (pmap_extract( kernel_pmap, ((x)&PG_FRAME) ))
/*
* Program the next buffer to be used
* This function must be re-entrant, maximum re-entrancy of 2
*/
#define FLAGS (0)
int vidcaudio_dma_program ( vm_offset_t cur, vm_offset_t end,
void (*intr)(), void *arg )
{
/* If there isn't a transfer in progress then start a new one */
if ( ag.in_progress==0 )
{
ag.buffer = 0;
WriteWord ( IOMD_SD0CR, 0x90 ); /* Reset State Machine */
WriteWord ( IOMD_SD0CR, 0x30 ); /* Reset State Machine */
WriteWord ( IOMD_SD0CURB, PHYS(cur) );
WriteWord ( IOMD_SD0ENDB, PHYS(end-16)|FLAGS );
WriteWord ( IOMD_SD0CURA, PHYS(cur) );
WriteWord ( IOMD_SD0ENDA, PHYS(end-16)|FLAGS );
ag.in_progress = 1;
ag.next_cur = ag.next_end = 0;
ag.next_intr = ag.next_arg = 0;
ag.intr = intr;
ag.arg = arg;
/* The driver 'clicks' between buffer swaps, leading me to think */
/* that the fifo is much small than on other sound cards. So */
/* so I'm going to have to do some tricks here */
(*ag.intr)(ag.arg); /* Schedule the next buffer */
ag.intr = vidcaudio_dummy_routine; /* Already done this */
ag.arg = NULL;
#ifdef PRINT
printf ( "vidcaudio: start output\n" );
#endif
#ifdef DEBUG
printf ( "SE" );
#endif
enable_irq ( IRQ_DMASCH0 );
}
else
{
/* Otherwise schedule the next one */
if ( ag.next_cur!=0 )
{
/* If there's one scheduled then complain */
printf ( "vidcaudio: Buffer already Q'ed\n" );
return EIO;
}
else
{
/* We're OK to schedule it now */
ag.buffer = (++ag.buffer) & 1;
ag.next_cur = PHYS(cur);
ag.next_end = PHYS(end-16);
ag.next_intr = intr;
ag.next_arg = arg;
#ifdef DEBUG
printf ( "s" );
#endif
}
}
return 0;
}
void vidcaudio_shutdown ( void )
{
/* Shut down the channel */
ag.intr = NULL;
ag.in_progress = 0;
#ifdef PRINT
printf ( "vidcaudio: stop output\n" );
#endif
WriteWord ( IOMD_SD0CURB, ag.silence );
WriteWord ( IOMD_SD0ENDB, (ag.silence + NBPG - 16) | (1<<30) );
disable_irq ( IRQ_DMASCH0 );
}
int vidcaudio_intr ( void *arg )
{
int status = ReadByte(IOMD_SD0ST);
void (*nintr)();
void *narg;
void (*xintr)();
void *xarg;
int xcur, xend;
WriteWord ( IOMD_DMARQ, 0x10 );
#ifdef PRINT
printf ( "I" );
#endif
if ( ag.open==0 )
{
vidcaudio_shutdown ();
return 0;
}
/* Have I got the generic audio device attached */
#ifdef DEBUG
printf ( "[B%01x]", status );
#endif
nintr=ag.intr;
narg=ag.arg;
ag.intr = NULL;
xintr=ag.next_intr;
xarg=ag.next_arg;
xcur=ag.next_cur;
xend=ag.next_end;
ag.next_cur = 0;
ag.intr = xintr;
ag.arg = xarg;
if ( nintr )
{
#ifdef DEBUG
printf ( "i" );
#endif
(*nintr)(narg);
}
if ( xcur==0 )
{
vidcaudio_shutdown ();
}
else
{
#define OVERRUN (0x04)
#define INTERRUPT (0x02)
#define BANK_A (0x00)
#define BANK_B (0x01)
switch ( status&0x7 )
{
case (INTERRUPT|BANK_A):
#ifdef PRINT
printf( "B" );
#endif
WriteWord ( IOMD_SD0CURB, xcur );
WriteWord ( IOMD_SD0ENDB, xend|FLAGS );
break;
case (INTERRUPT|BANK_B):
#ifdef PRINT
printf( "A" );
#endif
WriteWord ( IOMD_SD0CURA, xcur );
WriteWord ( IOMD_SD0ENDA, xend|FLAGS );
break;
case (OVERRUN|INTERRUPT|BANK_A):
#ifdef PRINT
printf( "A" );
#endif
WriteWord ( IOMD_SD0CURA, xcur );
WriteWord ( IOMD_SD0ENDA, xend|FLAGS );
break;
case (OVERRUN|INTERRUPT|BANK_B):
#ifdef PRINT
printf( "B" );
#endif
WriteWord ( IOMD_SD0CURB, xcur );
WriteWord ( IOMD_SD0ENDB, xend|FLAGS );
break;
}
/*
ag.next_cur = 0;
ag.intr = xintr;
ag.arg = xarg;
*/
}
#ifdef PRINT
printf ( "i" );
#endif
if ( ag.next_cur==0 )
{
(*ag.intr)(ag.arg); /* Schedule the next buffer */
ag.intr = vidcaudio_dummy_routine; /* Already done this */
ag.arg = NULL;
}
return 0;
}
|