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
|
/* $OpenBSD: ac97.c,v 1.7 2000/06/27 20:49:30 art Exp $ */
/*
* Copyright (c) 1999 Constantine Sapuntzakis
*
* Author: Constantine Sapuntzakis <csapuntz@stanford.edu>
*
* 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 CONSTANTINE SAPUNTZAKIS 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.
*/
/* Partially inspired by FreeBSD's sys/dev/pcm/ac97.c. It came with
the following copyright */
/*
* Copyright (c) 1999 Cameron Grant <gandalf@vilnya.demon.co.uk>
* All rights reserved.
*
* 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$
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <sys/audioio.h>
#include <dev/audio_if.h>
#include <dev/ic/ac97.h>
static struct audio_mixer_enum ac97_on_off = { 2,
{ { { AudioNoff } , 0 },
{ { AudioNon } , 1 } }};
static struct audio_mixer_enum ac97_mic_select = { 2,
{ { { AudioNmicrophone "0" },
0 },
{ { AudioNmicrophone "1" },
1 } }};
static struct audio_mixer_enum ac97_mono_select = { 2,
{ { { AudioNmixerout },
0 },
{ { AudioNmicrophone },
1 } }};
static struct audio_mixer_enum ac97_source = { 8,
{ { { AudioNmicrophone } , 0 },
{ { AudioNcd }, 1 },
{ { "video" }, 2 },
{ { AudioNaux }, 3 },
{ { AudioNline }, 4 },
{ { AudioNmixerout }, 5 },
{ { AudioNmixerout AudioNmono }, 6 },
{ { "phone" }, 7 }}};
static struct audio_mixer_value ac97_volume_stereo = { { AudioNvolume },
2 };
static struct audio_mixer_value ac97_volume_mono = { { AudioNvolume },
1 };
#define WRAP(a) &a, sizeof(a)
struct ac97_source_info {
char *class;
char *device;
char *qualifier;
int type;
void *info;
int info_size;
u_int8_t reg;
u_int8_t bits:3;
u_int8_t ofs:4;
u_int8_t mute:1;
u_int8_t polarity:1; /* Does 0 == MAX or MIN */
int prev;
int next;
int mixer_class;
} source_info[] = {
{ AudioCinputs , NULL, NULL, AUDIO_MIXER_CLASS,
},
{ AudioCoutputs, NULL, NULL, AUDIO_MIXER_CLASS,
},
{ AudioCrecord , NULL, NULL, AUDIO_MIXER_CLASS,
},
/* Stereo master volume*/
{ AudioCoutputs, AudioNmaster, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_stereo),
AC97_REG_MASTER_VOLUME, 5, 0, 1,
},
/* Mono volume */
{ AudioCoutputs, AudioNmono, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_mono),
AC97_REG_MASTER_VOLUME_MONO, 6, 0, 1,
},
{ AudioCoutputs, AudioNmono,AudioNsource, AUDIO_MIXER_ENUM,
WRAP(ac97_mono_select),
AC97_REG_GP, 1, 9, 0,
},
/* Headphone volume */
{ AudioCoutputs, AudioNheadphone, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_stereo),
AC97_REG_HEADPHONE_VOLUME, 6, 0, 1,
},
/* Tone */
{ AudioCoutputs, "tone", NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_stereo),
AC97_REG_MASTER_TONE, 4, 0, 0,
},
/* PC Beep Volume */
{ AudioCinputs, AudioNspeaker, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_mono),
AC97_REG_PCBEEP_VOLUME, 4, 1, 1,
},
/* Phone */
{ AudioCinputs, "phone", NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_mono),
AC97_REG_PHONE_VOLUME, 5, 0, 1,
},
/* Mic Volume */
{ AudioCinputs, AudioNmicrophone, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_mono),
AC97_REG_MIC_VOLUME, 5, 0, 1,
},
{ AudioCinputs, AudioNmicrophone, AudioNpreamp, AUDIO_MIXER_ENUM,
WRAP(ac97_on_off),
AC97_REG_MIC_VOLUME, 1, 6, 0,
},
{ AudioCinputs, AudioNmicrophone, AudioNsource, AUDIO_MIXER_ENUM,
WRAP(ac97_mic_select),
AC97_REG_GP, 1, 8, 0,
},
/* Line in Volume */
{ AudioCinputs, AudioNline, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_stereo),
AC97_REG_LINEIN_VOLUME, 5, 0, 1,
},
/* CD Volume */
{ AudioCinputs, AudioNcd, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_stereo),
AC97_REG_CD_VOLUME, 5, 0, 1,
},
/* Video Volume */
{ AudioCinputs, "video", NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_stereo),
AC97_REG_VIDEO_VOLUME, 5, 0, 1,
},
/* AUX volume */
{ AudioCinputs, AudioNaux, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_stereo),
AC97_REG_AUX_VOLUME, 5, 0, 1,
},
/* PCM out volume */
{ AudioCinputs, AudioNdac, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_stereo),
AC97_REG_PCMOUT_VOLUME, 5, 0, 1,
},
/* Record Source - some logic for this is hard coded - see below */
{ AudioCrecord, AudioNsource, NULL, AUDIO_MIXER_ENUM,
WRAP(ac97_source),
AC97_REG_RECORD_SELECT, 3, 0, 0,
},
/* Record Gain */
{ AudioCrecord, AudioNvolume, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_stereo),
AC97_REG_RECORD_GAIN, 4, 0, 1,
},
/* Record Gain mic */
{ AudioCrecord, AudioNmicrophone, NULL, AUDIO_MIXER_VALUE,
WRAP(ac97_volume_mono),
AC97_REG_RECORD_GAIN_MIC, 4, 0, 1, 1,
},
/* */
{ AudioCoutputs, AudioNloudness, NULL, AUDIO_MIXER_ENUM,
WRAP(ac97_on_off),
AC97_REG_GP, 1, 12, 0,
},
{ AudioCoutputs, AudioNspatial, NULL, AUDIO_MIXER_ENUM,
WRAP(ac97_on_off),
AC97_REG_GP, 1, 13, 0,
},
{ AudioCoutputs, AudioNspatial, "center", AUDIO_MIXER_VALUE,
WRAP(ac97_volume_mono),
AC97_REG_3D_CONTROL, 4, 8, 0, 1,
},
{ AudioCoutputs, AudioNspatial, "depth", AUDIO_MIXER_VALUE,
WRAP(ac97_volume_mono),
AC97_REG_3D_CONTROL, 4, 0, 0, 1,
},
/* Missing features: Simulated Stereo, POP, Loopback mode */
} ;
#define SOURCE_INFO_SIZE (sizeof(source_info)/sizeof(source_info[0]))
/*
* Check out http://developer.intel.com/pc-supp/platform/ac97/ for
* information on AC-97
*/
struct ac97_softc {
struct ac97_codec_if codecIf;
struct ac97_host_if *hostIf;
struct ac97_source_info source_info[2 * SOURCE_INFO_SIZE];
int num_source_info;
};
int ac97_mixer_get_port __P((struct ac97_codec_if *self, mixer_ctrl_t *cp));
int ac97_mixer_set_port __P((struct ac97_codec_if *self, mixer_ctrl_t *));
int ac97_query_devinfo __P((struct ac97_codec_if *self, mixer_devinfo_t *));
int ac97_get_portnum_by_name __P((struct ac97_codec_if *, char *, char *,
char *));
struct ac97_codec_if_vtbl ac97civ = {
ac97_mixer_get_port,
ac97_mixer_set_port,
ac97_query_devinfo,
ac97_get_portnum_by_name
};
static struct ac97_codecid {
u_int32_t id;
char *name;
} ac97codecid[] = {
{ 0x41445340, "Analog Devices AD1881" },
{ 0x414B4D00, "Asahi Kasei AK4540" },
{ 0x414B4D02, "Asahi Kasei AK4543" },
{ 0x43525900, "Cirrus Logic CS4297" },
{ 0x43525903, "Cirrus Logic CS4297" },
{ 0x43525913, "Cirrus Logic CS4297A" },
{ 0x43525923, "Cirrus Logic CS4298" },
{ 0x4352592b, "Cirrus Logic CS4294" },
{ 0x43525931, "Cirrus Logic CS4299" },
{ 0x43525933, "Cirrus Logic CS4298A?" },
{ 0x4e534331, "National Semiconductor LM4549" },
{ 0x53494c22, "Silicon Laboratory Si3036" },
{ 0x53494c23, "Silicon Laboratory Si3038" },
{ 0x54524108, "TriTech TR28028" },
{ 0x574d4c00, "Wolfson WM9704" },
{ 0x574d4c03, "Wolfson WM9707" },
{ 0x83847600, "SigmaTel STAC9700" },
{ 0x83847604, "SigmaTel STAC9701/3/4/5" },
{ 0x83847605, "SigmaTel STAC9704" },
{ 0x83847608, "SigmaTel STAC9708" },
{ 0x83847609, "SigmaTel STAC9721/23" },
{ 0x83847644, "SigmaTel STAC9744/45" },
{ 0x83847684, "SigmaTel STAC9783/84?" },
{ 0, NULL }
};
static char *ac97enhancement[] = {
"No 3D Stereo",
"Analog Devices Phat Stereo",
"Creative"
"National Semi 3D",
"Yamaha Ymersion",
"BBE 3D",
"Crystal Semi 3D"
"Qsound QXpander",
"Spatializer 3D",
"SRS 3D",
"Platform Tech 3D",
"AKM 3D",
"Aureal",
"AZTECH 3D",
"Binaura 3D",
"ESS Technology",
"Harman International VMAx",
"Nvidea 3D",
"Philips Incredible Sound",
"Texas Instruments' 3D",
"VLSI Technology 3D",
"TriTech 3D",
"Realtek 3D",
"Samsung 3D",
"Wolfson Microelectronics 3D",
"Delta Integration 3D",
"SigmaTel 3D",
"Unknown 3D",
"Rockwell 3D",
"Unknown 3D",
"Unknown 3D",
"Unknown 3D",
};
static char *ac97feature[] = {
"mic channel",
"reserved",
"tone",
"simulated stereo",
"headphone",
"bass boost",
"18 bit DAC",
"20 bit DAC",
"18 bit ADC",
"20 bit ADC"
};
int ac97_str_equal __P((char *, char *));
void ac97_setup_source_info __P((struct ac97_softc *));
#define AC97_DEBUG 10
#ifdef AUDIO_DEBUG
#define DPRINTF(x) if (ac97debug) printf x
#define DPRINTFN(n,x) if (ac97debug>(n)) printf x
#ifdef AC97_DEBUG
int ac97debug = AC97_DEBUG;
#else
int ac97debug = 0;
#endif
#else
#define DPRINTF(x)
#define DPRINTFN(n,x)
#endif
int
ac97_str_equal(a, b)
char *a, *b;
{
return ((a == b) || (a && b && (!strcmp(a, b))));
}
void
ac97_setup_source_info(as)
struct ac97_softc *as;
{
int idx, ouridx;
struct ac97_source_info *si, *si2;
for (idx = 0, ouridx = 0; idx < SOURCE_INFO_SIZE; idx++) {
si = &as->source_info[ouridx];
bcopy(&source_info[idx], si, sizeof(*si));
switch (si->type) {
case AUDIO_MIXER_CLASS:
si->mixer_class = ouridx;
ouridx++;
break;
case AUDIO_MIXER_VALUE:
/* Todo - Test to see if it works */
ouridx++;
/* Add an entry for mute, if necessary */
if (si->mute) {
si = &as->source_info[ouridx];
bcopy(&source_info[idx], si, sizeof(*si));
si->qualifier = AudioNmute;
si->type = AUDIO_MIXER_ENUM;
si->info = &ac97_on_off;
si->info_size = sizeof(ac97_on_off);
si->bits = 1;
si->ofs = 15;
si->mute = 0;
si->polarity = 0;
ouridx++;
}
break;
case AUDIO_MIXER_ENUM:
/* Todo - Test to see if it works */
ouridx++;
break;
default:
printf ("ac97: shouldn't get here\n");
break;
}
}
as->num_source_info = ouridx;
for (idx = 0; idx < as->num_source_info; idx++) {
int idx2, previdx;
si = &as->source_info[idx];
/* Find mixer class */
for (idx2 = 0; idx2 < as->num_source_info; idx2++) {
si2 = &as->source_info[idx2];
if (si2->type == AUDIO_MIXER_CLASS &&
ac97_str_equal(si->class,
si2->class)) {
si->mixer_class = idx2;
}
}
/* Setup prev and next pointers */
if (si->prev != 0)
continue;
if (si->qualifier)
continue;
si->prev = AUDIO_MIXER_LAST;
previdx = idx;
for (idx2 = 0; idx2 < as->num_source_info; idx2++) {
if (idx2 == idx)
continue;
si2 = &as->source_info[idx2];
if (!si2->prev &&
ac97_str_equal(si->class, si2->class) &&
ac97_str_equal(si->device, si2->device)) {
as->source_info[previdx].next = idx2;
as->source_info[idx2].prev = previdx;
previdx = idx2;
}
}
as->source_info[previdx].next = AUDIO_MIXER_LAST;
}
}
int
ac97_attach(hostIf)
struct ac97_host_if *hostIf;
{
struct ac97_softc *as;
int error, i, j;
u_int16_t id1, id2, caps;
u_int32_t id;
mixer_ctrl_t ctl;
as = malloc(sizeof(struct ac97_softc), M_DEVBUF, M_WAITOK);
if (!as) return (ENOMEM);
as->codecIf.vtbl = &ac97civ;
as->hostIf = hostIf;
if ((error = hostIf->attach(hostIf->arg, &as->codecIf))) {
free (as, M_DEVBUF);
return (error);
}
hostIf->reset(hostIf->arg);
DELAY(1000);
hostIf->write(hostIf->arg, AC97_REG_POWER, 0);
hostIf->write(hostIf->arg, AC97_REG_RESET, 0);
DELAY(10000);
if ((error = hostIf->read(hostIf->arg, AC97_REG_VENDOR_ID1, &id1)))
return (error);
if ((error = hostIf->read(hostIf->arg, AC97_REG_VENDOR_ID2, &id2)))
return (error);
if ((error = hostIf->read(hostIf->arg, AC97_REG_RESET, &caps)))
return (error);
id = (id1 << 16) | id2;
printf("ac97: codec id 0x%8x", id);
for (i = 0; ac97codecid[i].id; i++) {
if (ac97codecid[i].id == id)
printf(" (%s)", ac97codecid[i].name);
}
printf("\nac97: codec features ");
for (i = j = 0; i < 10; i++) {
if (caps & (1 << i)) {
printf("%s%s", j? ", " : "", ac97feature[i]);
j++;
}
}
printf("%s%s\n", j? ", " : "", ac97enhancement[(caps >> 10) & 0x1f]);
ac97_setup_source_info(as);
/* Just enable the DAC and master volumes by default */
bzero(&ctl, sizeof(ctl));
ctl.type = AUDIO_MIXER_ENUM;
ctl.un.ord = 0; /* off */
ctl.dev = ac97_get_portnum_by_name(&as->codecIf, AudioCoutputs,
AudioNmaster, AudioNmute);
ac97_mixer_set_port(&as->codecIf, &ctl);
ctl.dev = ac97_get_portnum_by_name(&as->codecIf, AudioCinputs,
AudioNdac, AudioNmute);
ac97_mixer_set_port(&as->codecIf, &ctl);
ctl.dev = ac97_get_portnum_by_name(&as->codecIf, AudioCrecord,
AudioNvolume, AudioNmute);
ac97_mixer_set_port(&as->codecIf, &ctl);
ctl.dev = ac97_get_portnum_by_name(&as->codecIf, AudioCrecord,
AudioNsource, NULL);
ctl.type = AUDIO_MIXER_ENUM;
ctl.un.ord = 0;
ac97_mixer_set_port(&as->codecIf, &ctl);
return (0);
}
int
ac97_query_devinfo(codec_if, dip)
struct ac97_codec_if *codec_if;
mixer_devinfo_t *dip;
{
struct ac97_softc *as = (struct ac97_softc *)codec_if;
if (dip->index < as->num_source_info) {
struct ac97_source_info *si = &as->source_info[dip->index];
char *name;
dip->type = si->type;
dip->mixer_class = si->mixer_class;
dip->prev = si->prev;
dip->next = si->next;
if (si->qualifier)
name = si->qualifier;
else if (si->device)
name = si->device;
else if (si->class)
name = si->class;
if (name)
strcpy(dip->label.name, name);
bcopy(si->info, &dip->un, si->info_size);
return (0);
}
return (ENXIO);
}
int
ac97_mixer_set_port(codec_if, cp)
struct ac97_codec_if *codec_if;
mixer_ctrl_t *cp;
{
struct ac97_softc *as = (struct ac97_softc *)codec_if;
struct ac97_source_info *si = &as->source_info[cp->dev];
u_int16_t mask;
u_int16_t val, newval;
int error;
if (cp->dev < 0 || cp->dev >= as->num_source_info)
return (EINVAL);
if (cp->type != si->type)
return (EINVAL);
error = as->hostIf->read(as->hostIf->arg, si->reg, &val);
if (error)
return (error);
DPRINTFN(5, ("read(%x) = %x\n", si->reg, val));
mask = (1 << si->bits) - 1;
switch (cp->type) {
case AUDIO_MIXER_ENUM:
if (cp->un.ord > mask || cp->un.ord < 0)
return (EINVAL);
newval = (cp->un.ord << si->ofs);
if (si->reg == AC97_REG_RECORD_SELECT) {
newval |= (newval << (8 + si->ofs));
mask |= (mask << 8);
}
break;
case AUDIO_MIXER_VALUE:
{
struct audio_mixer_value *value = si->info;
u_int16_t l, r;
if ((cp->un.value.num_channels <= 0) ||
(cp->un.value.num_channels > value->num_channels))
return (EINVAL);
if (cp->un.value.num_channels == 1) {
l = r = cp->un.value.level[AUDIO_MIXER_LEVEL_MONO];
} else {
l = cp->un.value.level[AUDIO_MIXER_LEVEL_LEFT];
r = cp->un.value.level[AUDIO_MIXER_LEVEL_RIGHT];
}
if (!si->polarity) {
l = 255 - l;
r = 255 - r;
}
l = l >> (8 - si->bits);
r = r >> (8 - si->bits);
newval = ((l & mask) << si->ofs);
if (value->num_channels == 2) {
newval |= ((r & mask) << (si->ofs + 8));
mask |= (mask << 8);
}
break;
}
default:
return (EINVAL);
}
mask = mask << si->ofs;
error = as->hostIf->write(as->hostIf->arg, si->reg, (val & ~mask) | newval);
if (error)
return (error);
return (0);
}
int
ac97_get_portnum_by_name(codec_if, class, device, qualifier)
struct ac97_codec_if *codec_if;
char *class, *device, *qualifier;
{
struct ac97_softc *as = (struct ac97_softc *)codec_if;
int idx;
for (idx = 0; idx < as->num_source_info; idx++) {
struct ac97_source_info *si = &as->source_info[idx];
if (ac97_str_equal(class, si->class) &&
ac97_str_equal(device, si->device) &&
ac97_str_equal(qualifier, si->qualifier))
return (idx);
}
return (-1);
}
int
ac97_mixer_get_port(codec_if, cp)
struct ac97_codec_if *codec_if;
mixer_ctrl_t *cp;
{
struct ac97_softc *as = (struct ac97_softc *)codec_if;
struct ac97_source_info *si = &as->source_info[cp->dev];
u_int16_t mask;
u_int16_t val;
int error;
if (cp->dev < 0 || cp->dev >= as->num_source_info)
return (EINVAL);
if (cp->type != si->type)
return (EINVAL);
error = as->hostIf->read(as->hostIf->arg, si->reg, &val);
if (error)
return (error);
DPRINTFN(5, ("read(%x) = %x\n", si->reg, val));
mask = (1 << si->bits) - 1;
switch (cp->type) {
case AUDIO_MIXER_ENUM:
cp->un.ord = (val >> si->ofs) & mask;
DPRINTFN(4, ("AUDIO_MIXER_ENUM: %x %d %x %d\n", val, si->ofs, mask, cp->un.ord));
break;
case AUDIO_MIXER_VALUE:
{
struct audio_mixer_value *value = si->info;
u_int16_t l, r;
if ((cp->un.value.num_channels <= 0) ||
(cp->un.value.num_channels > value->num_channels))
return (EINVAL);
if (value->num_channels == 1) {
l = r = (val >> si->ofs) & mask;
} else {
l = (val >> si->ofs) & mask;
r = (val >> (si->ofs + 8)) & mask;
}
l = (l << (8 - si->bits));
r = (r << (8 - si->bits));
if (!si->polarity) {
l = 255 - l;
r = 255 - r;
}
/* The EAP driver averages l and r for stereo
channels that are requested in MONO mode. Does this
make sense? */
if (cp->un.value.num_channels == 1) {
cp->un.value.level[AUDIO_MIXER_LEVEL_MONO] = l;
} else if (cp->un.value.num_channels == 2) {
cp->un.value.level[AUDIO_MIXER_LEVEL_LEFT] = l;
cp->un.value.level[AUDIO_MIXER_LEVEL_RIGHT] = r;
}
break;
}
default:
return (EINVAL);
}
return (0);
}
|