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
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
|
/* $OpenBSD: neo.c,v 1.26 2010/09/07 16:21:45 deraadt Exp $ */
/*
* Copyright (c) 1999 Cameron Grant <gandalf@vilnya.demon.co.uk>
* All rights reserved.
*
* Derived from the public domain Linux driver
*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
*
* $FreeBSD: src/sys/dev/sound/pci/neomagic.c,v 1.8 2000/03/20 15:30:50 cg Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <dev/pci/pcidevs.h>
#include <dev/pci/pcivar.h>
#include <sys/audioio.h>
#include <dev/audio_if.h>
#include <dev/mulaw.h>
#include <dev/auconv.h>
#include <dev/ic/ac97.h>
#include <dev/pci/neoreg.h>
/* -------------------------------------------------------------------- */
/*
* As of 04/13/00, public documentation on the Neomagic 256 is not available.
* These comments were gleaned by looking at the driver carefully.
*
* The Neomagic 256 AV/ZX chips provide both video and audio capabilities
* on one chip. About 2-6 megabytes of memory are associated with
* the chip. Most of this goes to video frame buffers, but some is used for
* audio buffering.
*
* Unlike most PCI audio chips, the Neomagic chip does not rely on DMA.
* Instead, the chip allows you to carve two ring buffers out of its
* memory. How you carve this and how much you can carve seems to be
* voodoo. The algorithm is in nm_init.
*
* Most Neomagic audio chips use the AC-97 codec interface. However, there
* seem to be a select few chips 256AV chips that do not support AC-97.
* This driver does not support them but there are rumors that it
* might work with wss isa drivers. This might require some playing around
* with your BIOS.
*
* The Neomagic 256 AV/ZX have 2 PCI I/O region descriptors. Both of
* them describe a memory region. The frame buffer is the first region
* and the register set is the second region.
*
* The register manipulation logic is taken from the Linux driver,
* which is in the public domain.
*
* The Neomagic is even nice enough to map the AC-97 codec registers into
* the register space to allow direct manipulation. Watch out, accessing
* AC-97 registers on the Neomagic requires great delicateness, otherwise
* the thing will hang the PCI bus, rendering your system frozen.
*
* For one, it seems the Neomagic status register that reports AC-97
* readiness should NOT be polled more often than once each 1ms.
*
* Also, writes to the AC-97 register space may take over 40us to
* complete.
*
* Unlike many sound engines, the Neomagic does not support (as fas as
* we know :) ) the notion of interrupting every n bytes transferred,
* unlike many DMA engines. Instead, it allows you to specify one
* location in each ring buffer (called the watermark). When the chip
* passes that location while playing, it signals an interrupt.
*
* The ring buffer size is currently 16k. That is about 100ms of audio
* at 44.1khz/stero/16 bit. However, to keep the buffer full, interrupts
* are generated more often than that, so 20-40 interrupts per second
* should not be unexpected. Increasing BUFFSIZE should help minimize
* the glitches due to drivers that spend too much time looping at high
* privelege levels as well as the impact of badly written audio
* interface clients.
*
* TO-DO list:
* neo_malloc/neo_free are still seriously broken.
*
* Figure out interaction with video stuff (look at Xfree86 driver?)
*
* Power management (neoactivate)
*
* Fix detection of Neo devices that don't work this driver (see neo_attach)
*
* Figure out how to shrink that huge table neo-coeff.h
*/
#define NM_BUFFSIZE 16384
#define NM256AV_PCI_ID 0x800510c8
#define NM256ZX_PCI_ID 0x800610c8
/* device private data */
struct neo_softc {
struct device dev;
bus_space_tag_t bufiot;
bus_space_handle_t bufioh;
bus_space_tag_t regiot;
bus_space_handle_t regioh;
u_int32_t type;
void *ih;
void (*pintr)(void *); /* dma completion intr handler */
void *parg; /* arg for intr() */
void (*rintr)(void *); /* dma completion intr handler */
void *rarg; /* arg for intr() */
u_int32_t ac97_base, ac97_status, ac97_busy;
u_int32_t buftop, pbuf, rbuf, cbuf, acbuf;
u_int32_t playint, recint, misc1int, misc2int;
u_int32_t irsz, badintr;
u_int32_t pbufsize;
u_int32_t rbufsize;
u_int32_t pblksize;
u_int32_t rblksize;
u_int32_t pwmark;
u_int32_t rwmark;
struct ac97_codec_if *codec_if;
struct ac97_host_if host_if;
};
static struct neo_firmware *nf;
/* -------------------------------------------------------------------- */
/*
* prototypes
*/
static int nm_waitcd(struct neo_softc *sc);
static int nm_loadcoeff(struct neo_softc *sc, int dir, int num);
static int nm_init(struct neo_softc *);
int nmchan_getptr(struct neo_softc *, int);
/* talk to the card */
static u_int32_t nm_rd(struct neo_softc *, int, int);
static void nm_wr(struct neo_softc *, int, u_int32_t, int);
static u_int32_t nm_rdbuf(struct neo_softc *, int, int);
static void nm_wrbuf(struct neo_softc *, int, u_int32_t, int);
int neo_match(struct device *, void *, void *);
void neo_attach(struct device *, struct device *, void *);
int neo_activate(struct device *, int);
int neo_intr(void *);
int neo_open(void *, int);
void neo_close(void *);
int neo_query_encoding(void *, struct audio_encoding *);
int neo_set_params(void *, int, int, struct audio_params *, struct audio_params *);
void neo_get_default_params(void *, int, struct audio_params *);
int neo_round_blocksize(void *, int);
int neo_trigger_output(void *, void *, void *, int, void (*)(void *),
void *, struct audio_params *);
int neo_trigger_input(void *, void *, void *, int, void (*)(void *),
void *, struct audio_params *);
int neo_halt_output(void *);
int neo_halt_input(void *);
int neo_getdev(void *, struct audio_device *);
int neo_mixer_set_port(void *, mixer_ctrl_t *);
int neo_mixer_get_port(void *, mixer_ctrl_t *);
int neo_attach_codec(void *sc, struct ac97_codec_if *);
int neo_read_codec(void *sc, u_int8_t a, u_int16_t *d);
int neo_write_codec(void *sc, u_int8_t a, u_int16_t d);
void neo_reset_codec(void *sc);
enum ac97_host_flags neo_flags_codec(void *sc);
int neo_query_devinfo(void *, mixer_devinfo_t *);
void *neo_malloc(void *, int, size_t, int, int);
void neo_free(void *, void *, int);
size_t neo_round_buffersize(void *, int, size_t);
int neo_get_props(void *);
void neo_set_mixer(struct neo_softc *sc, int a, int d);
struct cfdriver neo_cd = {
NULL, "neo", DV_DULL
};
struct cfattach neo_ca = {
sizeof(struct neo_softc), neo_match, neo_attach, NULL,
neo_activate
};
struct audio_device neo_device = {
"NeoMagic 256",
"",
"neo"
};
#if 0
static u_int32_t badcards[] = {
0x0007103c,
0x008f1028,
};
#endif
#define NUM_BADCARDS (sizeof(badcards) / sizeof(u_int32_t))
/* The actual rates supported by the card. */
static int samplerates[9] = {
8000,
11025,
16000,
22050,
24000,
32000,
44100,
48000,
99999999
};
/* -------------------------------------------------------------------- */
struct audio_hw_if neo_hw_if = {
neo_open,
neo_close,
NULL,
neo_query_encoding,
neo_set_params,
#if 1
neo_round_blocksize,
#else
NULL,
#endif
NULL,
NULL,
NULL,
NULL,
NULL,
neo_halt_output,
neo_halt_input,
NULL,
neo_getdev,
NULL,
neo_mixer_set_port,
neo_mixer_get_port,
neo_query_devinfo,
neo_malloc,
neo_free,
neo_round_buffersize,
0, /* neo_mappage, */
neo_get_props,
neo_trigger_output,
neo_trigger_input,
neo_get_default_params
};
/* -------------------------------------------------------------------- */
/* Hardware */
static u_int32_t
nm_rd(struct neo_softc *sc, int regno, int size)
{
bus_space_tag_t st = sc->regiot;
bus_space_handle_t sh = sc->regioh;
switch (size) {
case 1:
return bus_space_read_1(st, sh, regno);
case 2:
return bus_space_read_2(st, sh, regno);
case 4:
return bus_space_read_4(st, sh, regno);
default:
return (0xffffffff);
}
}
static void
nm_wr(struct neo_softc *sc, int regno, u_int32_t data, int size)
{
bus_space_tag_t st = sc->regiot;
bus_space_handle_t sh = sc->regioh;
switch (size) {
case 1:
bus_space_write_1(st, sh, regno, data);
break;
case 2:
bus_space_write_2(st, sh, regno, data);
break;
case 4:
bus_space_write_4(st, sh, regno, data);
break;
}
}
static u_int32_t
nm_rdbuf(struct neo_softc *sc, int regno, int size)
{
bus_space_tag_t st = sc->bufiot;
bus_space_handle_t sh = sc->bufioh;
switch (size) {
case 1:
return bus_space_read_1(st, sh, regno);
case 2:
return bus_space_read_2(st, sh, regno);
case 4:
return bus_space_read_4(st, sh, regno);
default:
return (0xffffffff);
}
}
static void
nm_wrbuf(struct neo_softc *sc, int regno, u_int32_t data, int size)
{
bus_space_tag_t st = sc->bufiot;
bus_space_handle_t sh = sc->bufioh;
switch (size) {
case 1:
bus_space_write_1(st, sh, regno, data);
break;
case 2:
bus_space_write_2(st, sh, regno, data);
break;
case 4:
bus_space_write_4(st, sh, regno, data);
break;
}
}
/* ac97 codec */
static int
nm_waitcd(struct neo_softc *sc)
{
int cnt = 10;
int fail = 1;
while (cnt-- > 0) {
if (nm_rd(sc, sc->ac97_status, 2) & sc->ac97_busy)
DELAY(100);
else {
fail = 0;
break;
}
}
return (fail);
}
static void
nm_ackint(struct neo_softc *sc, u_int32_t num)
{
if (sc->type == NM256AV_PCI_ID)
nm_wr(sc, NM_INT_REG, num << 1, 2);
else if (sc->type == NM256ZX_PCI_ID)
nm_wr(sc, NM_INT_REG, num, 4);
}
static int
nm_loadcoeff(struct neo_softc *sc, int dir, int num)
{
int ofs, sz, i;
u_int32_t addr;
if (nf == NULL) {
size_t buflen;
u_char *buf;
int error;
error = loadfirmware("neo-coefficients", &buf, &buflen);
if (error)
return (error);
nf = (struct neo_firmware *)buf;
}
addr = (dir == AUMODE_PLAY)? 0x01c : 0x21c;
if (dir == AUMODE_RECORD)
num += 8;
sz = nf->coefficientSizes[num];
ofs = 0;
while (num-- > 0)
ofs+= nf->coefficientSizes[num];
for (i = 0; i < sz; i++)
nm_wrbuf(sc, sc->cbuf + i, nf->coefficients[ofs + i], 1);
nm_wr(sc, addr, sc->cbuf, 4);
if (dir == AUMODE_PLAY)
sz--;
nm_wr(sc, addr + 4, sc->cbuf + sz, 4);
return (0);
}
int
nmchan_getptr(sc, mode)
struct neo_softc *sc;
int mode;
{
if (mode == AUMODE_PLAY)
return (nm_rd(sc, NM_PBUFFER_CURRP, 4) - sc->pbuf);
else
return (nm_rd(sc, NM_RBUFFER_CURRP, 4) - sc->rbuf);
}
/* The interrupt handler */
int
neo_intr(void *p)
{
struct neo_softc *sc = (struct neo_softc *)p;
int status, x;
int rv = 0;
status = nm_rd(sc, NM_INT_REG, sc->irsz);
if (status & sc->playint) {
status &= ~sc->playint;
sc->pwmark += sc->pblksize;
sc->pwmark %= sc->pbufsize;
nm_wr(sc, NM_PBUFFER_WMARK, sc->pbuf + sc->pwmark, 4);
nm_ackint(sc, sc->playint);
if (sc->pintr)
(*sc->pintr)(sc->parg);
rv = 1;
}
if (status & sc->recint) {
status &= ~sc->recint;
sc->rwmark += sc->rblksize;
sc->rwmark %= sc->rbufsize;
nm_ackint(sc, sc->recint);
if (sc->rintr)
(*sc->rintr)(sc->rarg);
rv = 1;
}
if (status & sc->misc1int) {
status &= ~sc->misc1int;
nm_ackint(sc, sc->misc1int);
x = nm_rd(sc, 0x400, 1);
nm_wr(sc, 0x400, x | 2, 1);
printf("%s: misc int 1\n", sc->dev.dv_xname);
rv = 1;
}
if (status & sc->misc2int) {
status &= ~sc->misc2int;
nm_ackint(sc, sc->misc2int);
x = nm_rd(sc, 0x400, 1);
nm_wr(sc, 0x400, x & ~2, 1);
printf("%s: misc int 2\n", sc->dev.dv_xname);
rv = 1;
}
if (status) {
status &= ~sc->misc2int;
nm_ackint(sc, sc->misc2int);
printf("%s: unknown int\n", sc->dev.dv_xname);
rv = 1;
}
return (rv);
}
/* -------------------------------------------------------------------- */
/*
* Probe and attach the card
*/
static int
nm_init(struct neo_softc *sc)
{
u_int32_t ofs, i;
if (sc->type == NM256AV_PCI_ID) {
sc->ac97_base = NM_MIXER_OFFSET;
sc->ac97_status = NM_MIXER_STATUS_OFFSET;
sc->ac97_busy = NM_MIXER_READY_MASK;
sc->buftop = 2560 * 1024;
sc->irsz = 2;
sc->playint = NM_PLAYBACK_INT;
sc->recint = NM_RECORD_INT;
sc->misc1int = NM_MISC_INT_1;
sc->misc2int = NM_MISC_INT_2;
} else if (sc->type == NM256ZX_PCI_ID) {
sc->ac97_base = NM_MIXER_OFFSET;
sc->ac97_status = NM2_MIXER_STATUS_OFFSET;
sc->ac97_busy = NM2_MIXER_READY_MASK;
sc->buftop = (nm_rd(sc, 0xa0b, 2)? 6144 : 4096) * 1024;
sc->irsz = 4;
sc->playint = NM2_PLAYBACK_INT;
sc->recint = NM2_RECORD_INT;
sc->misc1int = NM2_MISC_INT_1;
sc->misc2int = NM2_MISC_INT_2;
} else return -1;
sc->badintr = 0;
ofs = sc->buftop - 0x0400;
sc->buftop -= 0x1400;
if ((nm_rdbuf(sc, ofs, 4) & NM_SIG_MASK) == NM_SIGNATURE) {
i = nm_rdbuf(sc, ofs + 4, 4);
if (i != 0 && i != 0xffffffff)
sc->buftop = i;
}
sc->cbuf = sc->buftop - NM_MAX_COEFFICIENT;
sc->rbuf = sc->cbuf - NM_BUFFSIZE;
sc->pbuf = sc->rbuf - NM_BUFFSIZE;
sc->acbuf = sc->pbuf - (NM_TOTAL_COEFF_COUNT * 4);
nm_wr(sc, 0, 0x11, 1);
nm_wr(sc, NM_RECORD_ENABLE_REG, 0, 1);
nm_wr(sc, 0x214, 0, 2);
return 0;
}
void
neo_attach(parent, self, aux)
struct device *parent;
struct device *self;
void *aux;
{
struct neo_softc *sc = (struct neo_softc *)self;
struct pci_attach_args *pa = (struct pci_attach_args *)aux;
pci_chipset_tag_t pc = pa->pa_pc;
char const *intrstr;
pci_intr_handle_t ih;
int error;
sc->type = pa->pa_id;
/* Map I/O register */
if (pci_mapreg_map(pa, PCI_MAPS, PCI_MAPREG_TYPE_MEM, 0,
&sc->bufiot, &sc->bufioh, NULL, NULL, 0)) {
printf("\n%s: can't map i/o space\n", sc->dev.dv_xname);
return;
}
if (pci_mapreg_map(pa, PCI_MAPS + 4, PCI_MAPREG_TYPE_MEM, 0,
&sc->regiot, &sc->regioh, NULL, NULL, 0)) {
printf("\n%s: can't map i/o space\n", sc->dev.dv_xname);
return;
}
/* Map and establish the interrupt. */
if (pci_intr_map(pa, &ih)) {
printf("\n%s: couldn't map interrupt\n", sc->dev.dv_xname);
return;
}
intrstr = pci_intr_string(pc, ih);
sc->ih = pci_intr_establish(pc, ih, IPL_AUDIO, neo_intr, sc,
sc->dev.dv_xname);
if (sc->ih == NULL) {
printf("\n%s: couldn't establish interrupt",
sc->dev.dv_xname);
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");
return;
}
printf(": %s\n", intrstr);
if ((error = nm_init(sc)) != 0)
return;
sc->host_if.arg = sc;
sc->host_if.attach = neo_attach_codec;
sc->host_if.read = neo_read_codec;
sc->host_if.write = neo_write_codec;
sc->host_if.reset = neo_reset_codec;
sc->host_if.flags = neo_flags_codec;
if ((error = ac97_attach(&sc->host_if)) != 0)
return;
audio_attach_mi(&neo_hw_if, sc, &sc->dev);
return;
}
int
neo_activate(struct device *self, int act)
{
struct neo_softc *sc = (struct neo_softc *)self;
switch (act) {
case DVACT_SUSPEND:
break;
case DVACT_RESUME:
nm_init(sc);
(sc->codec_if->vtbl->restore_ports)(sc->codec_if);
break;
}
return 0;
}
int
neo_match(parent, match, aux)
struct device *parent;
void *match;
void *aux;
{
struct pci_attach_args *pa = (struct pci_attach_args *) aux;
#if 0
u_int32_t subdev, badcard;
#endif
if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_NEOMAGIC)
return (0);
#if 0
subdev = (pci_get_subdevice(dev) << 16) | pci_get_subvendor(dev);
#endif
switch (PCI_PRODUCT(pa->pa_id)) {
case PCI_PRODUCT_NEOMAGIC_NM256AV:
#if 0
i = 0;
while ((i < NUM_BADCARDS) && (badcards[i] != subdev))
i++;
if (i == NUM_BADCARDS)
s = "NeoMagic 256AV";
DEB(else)
DEB(device_printf(dev, "this is a non-ac97 NM256AV, not attaching\n"));
return (1);
#endif
case PCI_PRODUCT_NEOMAGIC_NM256ZX:
return (1);
}
return (0);
}
int
neo_read_codec(sc_, a, d)
void *sc_;
u_int8_t a;
u_int16_t *d;
{
struct neo_softc *sc = sc_;
if (!nm_waitcd(sc)) {
*d = nm_rd(sc, sc->ac97_base + a, 2);
DELAY(1000);
return 0;
}
return (ENXIO);
}
int
neo_write_codec(sc_, a, d)
void *sc_;
u_int8_t a;
u_int16_t d;
{
struct neo_softc *sc = sc_;
int cnt = 3;
if (!nm_waitcd(sc)) {
while (cnt-- > 0) {
nm_wr(sc, sc->ac97_base + a, d, 2);
if (!nm_waitcd(sc)) {
DELAY(1000);
return (0);
}
}
}
return (ENXIO);
}
int
neo_attach_codec(sc_, codec_if)
void *sc_;
struct ac97_codec_if *codec_if;
{
struct neo_softc *sc = sc_;
sc->codec_if = codec_if;
return (0);
}
void
neo_reset_codec(sc)
void *sc;
{
nm_wr(sc, 0x6c0, 0x01, 1);
nm_wr(sc, 0x6cc, 0x87, 1);
nm_wr(sc, 0x6cc, 0x80, 1);
nm_wr(sc, 0x6cc, 0x00, 1);
return;
}
enum ac97_host_flags
neo_flags_codec(sc)
void *sc;
{
return (AC97_HOST_DONT_READANY);
}
int
neo_open(addr, flags)
void *addr;
int flags;
{
return (0);
}
/*
* Close function is called at splaudio().
*/
void
neo_close(addr)
void *addr;
{
struct neo_softc *sc = addr;
neo_halt_output(sc);
neo_halt_input(sc);
sc->pintr = 0;
sc->rintr = 0;
}
int
neo_query_encoding(addr, fp)
void *addr;
struct audio_encoding *fp;
{
switch (fp->index) {
case 0:
strlcpy(fp->name, AudioEulinear, sizeof fp->name);
fp->encoding = AUDIO_ENCODING_ULINEAR;
fp->precision = 8;
fp->flags = 0;
break;
case 1:
strlcpy(fp->name, AudioEmulaw, sizeof fp->name);
fp->encoding = AUDIO_ENCODING_ULAW;
fp->precision = 8;
fp->flags = AUDIO_ENCODINGFLAG_EMULATED;
break;
case 2:
strlcpy(fp->name, AudioEalaw, sizeof fp->name);
fp->encoding = AUDIO_ENCODING_ALAW;
fp->precision = 8;
fp->flags = AUDIO_ENCODINGFLAG_EMULATED;
break;
case 3:
strlcpy(fp->name, AudioEslinear, sizeof fp->name);
fp->encoding = AUDIO_ENCODING_SLINEAR;
fp->precision = 8;
fp->flags = AUDIO_ENCODINGFLAG_EMULATED;
break;
case 4:
strlcpy(fp->name, AudioEslinear_le, sizeof fp->name);
fp->encoding = AUDIO_ENCODING_SLINEAR_LE;
fp->precision = 16;
fp->flags = 0;
break;
case 5:
strlcpy(fp->name, AudioEulinear_le, sizeof fp->name);
fp->encoding = AUDIO_ENCODING_ULINEAR_LE;
fp->precision = 16;
fp->flags = AUDIO_ENCODINGFLAG_EMULATED;
break;
case 6:
strlcpy(fp->name, AudioEslinear_be, sizeof fp->name);
fp->encoding = AUDIO_ENCODING_SLINEAR_BE;
fp->precision = 16;
fp->flags = AUDIO_ENCODINGFLAG_EMULATED;
break;
case 7:
strlcpy(fp->name, AudioEulinear_be, sizeof fp->name);
fp->encoding = AUDIO_ENCODING_ULINEAR_BE;
fp->precision = 16;
fp->flags = AUDIO_ENCODINGFLAG_EMULATED;
break;
default:
return (EINVAL);
}
fp->bps = AUDIO_BPS(fp->precision);
fp->msb = 1;
return (0);
}
void
neo_get_default_params(void *addr, int mode, struct audio_params *params)
{
ac97_get_default_params(params);
}
/* Todo: don't commit settings to card until we've verified all parameters */
int
neo_set_params(addr, setmode, usemode, play, rec)
void *addr;
int setmode, usemode;
struct audio_params *play, *rec;
{
struct neo_softc *sc = addr;
u_int32_t base;
u_int8_t x;
int mode;
struct audio_params *p;
for (mode = AUMODE_RECORD; mode != -1;
mode = mode == AUMODE_RECORD ? AUMODE_PLAY : -1) {
if ((setmode & mode) == 0)
continue;
p = mode == AUMODE_PLAY ? play : rec;
if (p == NULL) continue;
for (x = 0; x < 8; x++)
if (p->sample_rate < (samplerates[x] + samplerates[x + 1]) / 2)
break;
p->sample_rate = samplerates[x];
nm_loadcoeff(sc, mode, x);
x <<= 4;
x &= NM_RATE_MASK;
if (p->precision == 16) x |= NM_RATE_BITS_16;
if (p->channels == 2) x |= NM_RATE_STEREO;
base = (mode == AUMODE_PLAY) ?
NM_PLAYBACK_REG_OFFSET : NM_RECORD_REG_OFFSET;
nm_wr(sc, base + NM_RATE_REG_OFFSET, x, 1);
p->factor = 1;
p->sw_code = 0;
switch (p->encoding) {
case AUDIO_ENCODING_SLINEAR_BE:
if (p->precision == 16)
p->sw_code = swap_bytes;
else
p->sw_code = change_sign8;
break;
case AUDIO_ENCODING_SLINEAR_LE:
if (p->precision != 16)
p->sw_code = change_sign8;
break;
case AUDIO_ENCODING_ULINEAR_BE:
if (p->precision == 16) {
if (mode == AUMODE_PLAY)
p->sw_code = swap_bytes_change_sign16_le;
else
p->sw_code = change_sign16_swap_bytes_le;
}
break;
case AUDIO_ENCODING_ULINEAR_LE:
if (p->precision == 16)
p->sw_code = change_sign16_le;
break;
case AUDIO_ENCODING_ULAW:
if (mode == AUMODE_PLAY) {
p->factor = 2;
p->sw_code = mulaw_to_slinear16_le;
} else
p->sw_code = ulinear8_to_mulaw;
break;
case AUDIO_ENCODING_ALAW:
if (mode == AUMODE_PLAY) {
p->factor = 2;
p->sw_code = alaw_to_slinear16_le;
} else
p->sw_code = ulinear8_to_alaw;
break;
default:
return (EINVAL);
}
p->bps = AUDIO_BPS(p->precision);
p->msb = 1;
}
return (0);
}
int
neo_round_blocksize(addr, blk)
void *addr;
int blk;
{
return (NM_BUFFSIZE / 2);
}
int
neo_trigger_output(addr, start, end, blksize, intr, arg, param)
void *addr;
void *start, *end;
int blksize;
void (*intr)(void *);
void *arg;
struct audio_params *param;
{
struct neo_softc *sc = addr;
int ssz;
sc->pintr = intr;
sc->parg = arg;
ssz = (param->precision * param->factor == 16)? 2 : 1;
if (param->channels == 2)
ssz <<= 1;
sc->pbufsize = ((char *)end - (char *)start);
sc->pblksize = blksize;
sc->pwmark = blksize;
nm_wr(sc, NM_PBUFFER_START, sc->pbuf, 4);
nm_wr(sc, NM_PBUFFER_END, sc->pbuf + sc->pbufsize - ssz, 4);
nm_wr(sc, NM_PBUFFER_CURRP, sc->pbuf, 4);
nm_wr(sc, NM_PBUFFER_WMARK, sc->pbuf + sc->pwmark, 4);
nm_wr(sc, NM_PLAYBACK_ENABLE_REG, NM_PLAYBACK_FREERUN |
NM_PLAYBACK_ENABLE_FLAG, 1);
nm_wr(sc, NM_AUDIO_MUTE_REG, 0, 2);
return (0);
}
int
neo_trigger_input(addr, start, end, blksize, intr, arg, param)
void *addr;
void *start, *end;
int blksize;
void (*intr)(void *);
void *arg;
struct audio_params *param;
{
struct neo_softc *sc = addr;
int ssz;
sc->rintr = intr;
sc->rarg = arg;
ssz = (param->precision * param->factor == 16)? 2 : 1;
if (param->channels == 2)
ssz <<= 1;
sc->rbufsize = ((char *)end - (char *)start);
sc->rblksize = blksize;
sc->rwmark = blksize;
nm_wr(sc, NM_RBUFFER_START, sc->rbuf, 4);
nm_wr(sc, NM_RBUFFER_END, sc->rbuf + sc->rbufsize, 4);
nm_wr(sc, NM_RBUFFER_CURRP, sc->rbuf, 4);
nm_wr(sc, NM_RBUFFER_WMARK, sc->rbuf + sc->rwmark, 4);
nm_wr(sc, NM_RECORD_ENABLE_REG, NM_RECORD_FREERUN |
NM_RECORD_ENABLE_FLAG, 1);
return (0);
}
int
neo_halt_output(addr)
void *addr;
{
struct neo_softc *sc = (struct neo_softc *)addr;
nm_wr(sc, NM_PLAYBACK_ENABLE_REG, 0, 1);
nm_wr(sc, NM_AUDIO_MUTE_REG, NM_AUDIO_MUTE_BOTH, 2);
sc->pintr = 0;
return (0);
}
int
neo_halt_input(addr)
void *addr;
{
struct neo_softc *sc = (struct neo_softc *)addr;
nm_wr(sc, NM_RECORD_ENABLE_REG, 0, 1);
sc->rintr = 0;
return (0);
}
int
neo_getdev(addr, retp)
void *addr;
struct audio_device *retp;
{
*retp = neo_device;
return (0);
}
int
neo_mixer_set_port(addr, cp)
void *addr;
mixer_ctrl_t *cp;
{
struct neo_softc *sc = addr;
return ((sc->codec_if->vtbl->mixer_set_port)(sc->codec_if, cp));
}
int
neo_mixer_get_port(addr, cp)
void *addr;
mixer_ctrl_t *cp;
{
struct neo_softc *sc = addr;
return ((sc->codec_if->vtbl->mixer_get_port)(sc->codec_if, cp));
}
int
neo_query_devinfo(addr, dip)
void *addr;
mixer_devinfo_t *dip;
{
struct neo_softc *sc = addr;
return ((sc->codec_if->vtbl->query_devinfo)(sc->codec_if, dip));
}
void *
neo_malloc(addr, direction, size, pool, flags)
void *addr;
int direction;
size_t size;
int pool, flags;
{
struct neo_softc *sc = addr;
void *rv = 0;
switch (direction) {
case AUMODE_PLAY:
rv = (char *)sc->bufioh + sc->pbuf;
break;
case AUMODE_RECORD:
rv = (char *)sc->bufioh + sc->rbuf;
break;
default:
break;
}
return (rv);
}
void
neo_free(addr, ptr, pool)
void *addr;
void *ptr;
int pool;
{
return;
}
size_t
neo_round_buffersize(addr, direction, size)
void *addr;
int direction;
size_t size;
{
return (NM_BUFFSIZE);
}
int
neo_get_props(addr)
void *addr;
{
return (AUDIO_PROP_INDEPENDENT | AUDIO_PROP_FULLDUPLEX);
}
|