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
|
/* $OpenBSD: zaurus_audio.c,v 1.3 2005/04/21 13:43:48 pascoe Exp $ */
/*
* Copyright (c) 2005 Christopher Pascoe <pascoe@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* TODO:
* - zaudio(4)
* - powerhooks (currently only works until first suspend)
* - headphone jack support
* - record support
* - mixer support (codec has independent o/p volume, l/r mix, equalizer)
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/audioio.h>
#include <machine/intr.h>
#include <machine/bus.h>
#include <arm/xscale/pxa2x0reg.h>
#include <arm/xscale/pxa2x0var.h>
#include <arm/xscale/pxa2x0_i2c.h>
#include <arm/xscale/pxa2x0_i2s.h>
#include <arm/xscale/pxa2x0_dmac.h>
#include <zaurus/dev/zaurus_scoopvar.h>
#include <dev/i2c/wm8750reg.h>
#include <dev/audio_if.h>
#include <dev/mulaw.h>
#include <dev/auconv.h>
#define WM8750_ADDRESS 0x1B
#define SPKR_VOLUME 112
#define wm8750_write(sc, reg, val) pxa2x0_i2c_write_2(&sc->sc_i2c, \
WM8750_ADDRESS, (((reg) << 9) | ((val) & 0x1ff)))
int zaudio_match(struct device *, void *, void *);
void zaudio_attach(struct device *, struct device *, void *);
int zaudio_detach(struct device *, int);
void zaudio_power(int, void *);
struct zaudio_softc {
struct device sc_dev;
/* i2s device softc */
/* NB: pxa2x0_i2s requires this to be the second struct member */
struct pxa2x0_i2s_softc sc_i2s;
/* i2c device softc */
struct pxa2x0_i2c_softc sc_i2c;
void *sc_powerhook;
int sc_playing;
};
struct cfattach zaudio_ca = {
sizeof(struct zaudio_softc), zaudio_match, zaudio_attach,
zaudio_detach
};
struct cfdriver zaudio_cd = {
NULL, "zaudio", DV_DULL
};
struct audio_device wm8750_device = {
"WM8750",
"1.0",
"wm"
};
void zaudio_init(struct zaudio_softc *);
void zaudio_standby(struct zaudio_softc *);
void zaudio_play_setup(struct zaudio_softc *);
int zaudio_open(void *, int);
void zaudio_close(void *);
int zaudio_query_encoding(void *, struct audio_encoding *);
int zaudio_set_params(void *, int, int, struct audio_params *,
struct audio_params *);
int zaudio_halt_output(void *);
int zaudio_halt_input(void *);
int zaudio_getdev(void *, struct audio_device *);
int zaudio_set_port(void *, struct mixer_ctrl *);
int zaudio_get_port(void *, struct mixer_ctrl *);
int zaudio_query_devinfo(void *, struct mixer_devinfo *);
int zaudio_get_props(void *);
int zaudio_start_output(void *, void *, int, void (*)(void *), void *);
int zaudio_start_input(void *, void *, int, void (*)(void *), void *);
struct audio_hw_if wm8750_hw_if = {
zaudio_open,
zaudio_close,
NULL /* zaudio_drain */,
zaudio_query_encoding,
zaudio_set_params,
pxa2x0_i2s_round_blocksize,
NULL /* zaudio_commit_settings */,
NULL /* zaudio_init_output */,
NULL /* zaudio_init_input */,
zaudio_start_output,
zaudio_start_input,
zaudio_halt_output,
zaudio_halt_input,
NULL /* zaudio_speaker_ctl */,
zaudio_getdev,
NULL /* zaudio_setfd */,
zaudio_set_port,
zaudio_get_port,
zaudio_query_devinfo,
pxa2x0_i2s_allocm,
pxa2x0_i2s_freem,
pxa2x0_i2s_round_buffersize,
pxa2x0_i2s_mappage,
zaudio_get_props,
NULL /* zaudio_trigger_output */,
NULL /* zaudio_trigger_input */
};
static const unsigned short playback_registers[][2] = {
/* Unmute DAC */
{ ADCDACCTL_REG, 0x000 },
/* 16 bit audio words */
{ AUDINT_REG, AUDINT_SET_FORMAT(2) },
/* Enable thermal protection, power */
{ ADCTL1_REG, ADCTL1_TSDEN | ADCTL1_SET_VSEL(3) },
/* Enable speaker driver, DAC oversampling */
{ ADCTL2_REG, ADCTL2_ROUT2INV | ADCTL2_DACOSR },
/* Set DAC voltage references */
{ PWRMGMT1_REG, PWRMGMT1_SET_VMIDSEL(1) | PWRMGMT1_VREF },
/* Power DACs and outputs */
{ PWRMGMT2_REG, PWRMGMT2_DACL | PWRMGMT2_DACR | PWRMGMT2_LOUT1 |
PWRMGMT2_ROUT1 | PWRMGMT2_LOUT2 | PWRMGMT2_ROUT2 },
/* Set left/right channel mix mixer */
{ LOUTMIX1_REG, LOUTMIX1_LD2LO | LOUTMIX1_SET_LI2LOVOL(5) },
{ ROUTMIX2_REG, ROUTMIX2_RD2RO | ROUTMIX2_SET_RI2ROVOL(5) },
/* Set speaker volume */
{ LOUT2VOL_REG, LOUT2VOL_LO2VU | LOUT2VOL_SET_LOUT2VOL(SPKR_VOLUME) },
{ ROUT2VOL_REG, ROUT2VOL_RO2VU | ROUT2VOL_SET_ROUT2VOL(0) },
/* End of list */
{ 0xffff, 0xffff }
};
int
zaudio_match(struct device *parent, void *match, void *aux)
{
return (1);
}
void
zaudio_attach(struct device *parent, struct device *self, void *aux)
{
struct zaudio_softc *sc = (struct zaudio_softc *)self;
struct pxaip_attach_args *pxa = aux;
sc->sc_powerhook = powerhook_establish(zaudio_power, sc);
if (sc->sc_powerhook == NULL) {
printf(": unable to establish powerhook\n");
return;
}
sc->sc_i2s.sc_iot = pxa->pxa_iot;
sc->sc_i2s.sc_dmat = pxa->pxa_dmat;
sc->sc_i2s.sc_size = PXA2X0_I2S_SIZE;
if (pxa2x0_i2s_attach_sub(&sc->sc_i2s)) {
printf(": unable to attach I2S\n");
goto fail_i2s;
}
sc->sc_i2c.sc_iot = pxa->pxa_iot;
sc->sc_i2c.sc_size = PXA2X0_I2C_SIZE;
if (pxa2x0_i2c_attach_sub(&sc->sc_i2c)) {
printf(": unable to attach I2C\n");
goto fail_i2c;
}
/* Check for an I2C response from the wm8750 */
pxa2x0_i2s_open(&sc->sc_i2s); /* supply the codec with a clock */
pxa2x0_i2c_open(&sc->sc_i2c);
if (wm8750_write(sc, RESET_REG, 0)) {
printf(": codec failed to respond\n");
goto fail_probe;
}
delay(100);
zaudio_init(sc);
pxa2x0_i2c_close(&sc->sc_i2c);
pxa2x0_i2s_close(&sc->sc_i2s);
printf(": I2C, I2S, WM8750 Audio\n");
audio_attach_mi(&wm8750_hw_if, sc, &sc->sc_dev);
return;
fail_probe:
pxa2x0_i2c_close(&sc->sc_i2c);
pxa2x0_i2s_close(&sc->sc_i2s);
pxa2x0_i2c_detach_sub(&sc->sc_i2c);
fail_i2c:
pxa2x0_i2s_detach_sub(&sc->sc_i2s);
fail_i2s:
powerhook_disestablish(sc->sc_powerhook);
}
int
zaudio_detach(struct device *self, int flags)
{
struct zaudio_softc *sc = (struct zaudio_softc *)self;
if (sc->sc_powerhook != NULL) {
powerhook_disestablish(sc->sc_powerhook);
sc->sc_powerhook = NULL;
}
pxa2x0_i2c_detach_sub(&sc->sc_i2c);
pxa2x0_i2s_detach_sub(&sc->sc_i2s);
return (0);
}
void
zaudio_power(int why, void *arg)
{
/* XXX */
return;
}
void
zaudio_init(struct zaudio_softc *sc)
{
/* Reset the codec */
wm8750_write(sc, RESET_REG, 0);
delay(100);
/* Switch to standby power only */
wm8750_write(sc, PWRMGMT1_REG, PWRMGMT1_SET_VMIDSEL(2));
wm8750_write(sc, PWRMGMT2_REG, 0);
/* Configure digital interface for I2S */
wm8750_write(sc, AUDINT_REG, AUDINT_SET_FORMAT(2));
}
void
zaudio_standby(struct zaudio_softc *sc)
{
pxa2x0_i2c_open(&sc->sc_i2c);
/* Switch codec to standby power only */
wm8750_write(sc, PWRMGMT1_REG, PWRMGMT1_SET_VMIDSEL(2));
wm8750_write(sc, PWRMGMT2_REG, 0);
pxa2x0_i2c_close(&sc->sc_i2c);
}
void
zaudio_play_setup(struct zaudio_softc *sc)
{
int i = 0;
pxa2x0_i2c_open(&sc->sc_i2c);
/* Program the codec with playback settings */
while (playback_registers[i][0] != 0xffff) {
wm8750_write(sc, playback_registers[i][0],
playback_registers[i][1]);
i++;
}
pxa2x0_i2c_close(&sc->sc_i2c);
}
int
zaudio_open(void *hdl, int flags)
{
struct zaudio_softc *sc = hdl;
/* Power on the I2S bus and codec */
pxa2x0_i2s_open(&sc->sc_i2s);
scoop_audio_set(1);
return 0;
}
void
zaudio_close(void *hdl)
{
struct zaudio_softc *sc = hdl;
/* Power off the I2S bus and codec */
pxa2x0_i2s_close(&sc->sc_i2s);
scoop_audio_set(0);
}
int
zaudio_query_encoding(void *hdl, struct audio_encoding *aep)
{
switch (aep->index) {
case 0:
strlcpy(aep->name, AudioEulinear, sizeof(aep->name));
aep->encoding = AUDIO_ENCODING_ULINEAR;
aep->precision = 8;
aep->flags = 0;
return (0);
case 1:
strlcpy(aep->name, AudioEmulaw, sizeof(aep->name));
aep->encoding = AUDIO_ENCODING_ULAW;
aep->precision = 8;
aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
return (0);
case 2:
strlcpy(aep->name, AudioEalaw, sizeof(aep->name));
aep->encoding = AUDIO_ENCODING_ALAW;
aep->precision = 8;
aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
return (0);
case 3:
strlcpy(aep->name, AudioEslinear, sizeof(aep->name));
aep->encoding = AUDIO_ENCODING_SLINEAR;
aep->precision = 8;
aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
return (0);
case 4:
strlcpy(aep->name, AudioEslinear_le, sizeof(aep->name));
aep->encoding = AUDIO_ENCODING_SLINEAR_LE;
aep->precision = 16;
aep->flags = 0;
return (0);
case 5:
strlcpy(aep->name, AudioEulinear_le, sizeof(aep->name));
aep->encoding = AUDIO_ENCODING_ULINEAR_LE;
aep->precision = 16;
aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
return (0);
case 6:
strlcpy(aep->name, AudioEslinear_be, sizeof(aep->name));
aep->encoding = AUDIO_ENCODING_SLINEAR_BE;
aep->precision = 16;
aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
return (0);
case 7:
strlcpy(aep->name, AudioEulinear_be, sizeof(aep->name));
aep->encoding = AUDIO_ENCODING_ULINEAR_BE;
aep->precision = 16;
aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
return (0);
default:
return (EINVAL);
}
}
int
zaudio_set_params(void *hdl, int setmode, int usemode,
struct audio_params *play, struct audio_params *rec)
{
struct zaudio_softc *sc = hdl;
if (setmode & AUMODE_PLAY) {
play->factor = 1;
play->sw_code = NULL;
switch(play->encoding) {
case AUDIO_ENCODING_ULAW:
switch (play->channels) {
case 1:
play->factor = 4;
play->sw_code = mulaw_to_slinear16_mts;
break;
case 2:
play->factor = 2;
play->sw_code = mulaw_to_slinear16;
break;
default:
return (EINVAL);
}
break;
case AUDIO_ENCODING_SLINEAR_LE:
switch (play->precision) {
case 8:
switch (play->channels) {
case 1:
play->factor = 4;
play->sw_code = linear8_to_linear16_mts;
break;
case 2:
play->factor = 2;
play->sw_code = linear8_to_linear16;
break;
default:
return (EINVAL);
}
break;
case 16:
switch (play->channels) {
case 1:
play->factor = 2;
play->sw_code = noswap_bytes_mts;
break;
case 2:
break;
default:
return (EINVAL);
}
break;
default:
return (EINVAL);
}
break;
case AUDIO_ENCODING_ULINEAR_LE:
switch (play->precision) {
case 8:
switch (play->channels) {
case 1:
play->factor = 4;
play->sw_code =
ulinear8_to_linear16_mts;
break;
case 2:
play->factor = 2;
play->sw_code = ulinear8_to_linear16;
break;
default:
return (EINVAL);
}
break;
case 16:
switch (play->channels) {
case 1:
play->factor = 2;
play->sw_code = change_sign16_mts;
break;
case 2:
play->sw_code = change_sign16;
break;
default:
return (EINVAL);
}
break;
default:
return (EINVAL);
}
break;
case AUDIO_ENCODING_ALAW:
switch (play->channels) {
case 1:
play->factor = 4;
play->sw_code = alaw_to_slinear16_mts;
case 2:
play->factor = 2;
play->sw_code = alaw_to_slinear16;
default:
return (EINVAL);
}
break;
case AUDIO_ENCODING_SLINEAR_BE:
switch (play->precision) {
case 8:
switch (play->channels) {
case 1:
play->factor = 4;
play->sw_code =
linear8_to_linear16_mts;
break;
case 2:
play->factor = 2;
play->sw_code = linear8_to_linear16;
break;
default:
return (EINVAL);
}
break;
case 16:
switch (play->channels) {
case 1:
play->factor = 2;
play->sw_code = swap_bytes_mts;
break;
case 2:
play->sw_code = swap_bytes;
break;
default:
return (EINVAL);
}
break;
default:
return (EINVAL);
}
break;
case AUDIO_ENCODING_ULINEAR_BE:
switch (play->precision) {
case 8:
switch (play->channels) {
case 1:
play->factor = 4;
play->sw_code =
ulinear8_to_linear16_mts;
break;
case 2:
play->factor = 2;
play->sw_code = ulinear8_to_linear16;
break;
default:
return (EINVAL);
}
break;
case 16:
switch (play->channels) {
case 1:
play->factor = 2;
play->sw_code =
change_sign16_swap_bytes_mts;
break;
case 2:
play->sw_code =
change_sign16_swap_bytes;
break;
default:
return (EINVAL);
}
break;
default:
return (EINVAL);
}
break;
default:
return (EINVAL);
}
pxa2x0_i2s_setspeed(&sc->sc_i2s, &play->sample_rate);
}
#if RECORD_XXX_NOT_YET
if (setmode & AUMODE_RECORD) {
rec->factor = 1;
rec->sw_code = NULL;
switch(rec->encoding) {
case AUDIO_ENCODING_ULAW:
rec->sw_code = ulinear8_to_mulaw;
break;
case AUDIO_ENCODING_SLINEAR_LE:
if (rec->precision == 8)
rec->sw_code = change_sign8;
break;
case AUDIO_ENCODING_ULINEAR_LE:
if (rec->precision == 16)
rec->sw_code = change_sign16;
break;
case AUDIO_ENCODING_ALAW:
rec->sw_code = ulinear8_to_alaw;
break;
case AUDIO_ENCODING_SLINEAR_BE:
if (rec->precision == 16)
rec->sw_code = swap_bytes;
else
rec->sw_code = change_sign8;
break;
case AUDIO_ENCODING_ULINEAR_BE:
if (rec->precision == 16)
rec->sw_code = swap_bytes_change_sign16;
break;
default:
return (EINVAL);
}
pxa2x0_i2s_setspeed(sc, &rec->sample_rate);
}
#endif
return (0);
}
int
zaudio_halt_output(void *hdl)
{
struct zaudio_softc *sc = hdl;
/* XXX forcibly stop output DMA? */
zaudio_standby(sc);
sc->sc_playing = 0;
return 0;
}
int
zaudio_halt_input(void *hdl)
{
/* struct zaudio_softc *sc = hdl; */
return 0;
}
int
zaudio_getdev(void *hdl, struct audio_device *ret)
{
/* struct zaudio_softc *sc = hdl; */
*ret = wm8750_device;
return 0;
}
int
zaudio_set_port(void *hdl, struct mixer_ctrl *mc)
{
/* struct zaudio_softc *sc = hdl; */
return 0;
}
int
zaudio_get_port(void *hdl, struct mixer_ctrl *mc)
{
/* struct zaudio_softc *sc = hdl; */
return 0;
}
int
zaudio_query_devinfo(void *hdl, struct mixer_devinfo *di)
{
/* struct zaudio_softc *sc = hdl; */
di->prev = di->next = AUDIO_MIXER_LAST;
return ENXIO;
}
int
zaudio_get_props(void *hdl)
{
return AUDIO_PROP_MMAP | AUDIO_PROP_INDEPENDENT | AUDIO_PROP_FULLDUPLEX;
}
int
zaudio_start_output(void *hdl, void *block, int bsize, void (*intr)(void *),
void *intrarg)
{
struct zaudio_softc *sc = hdl;
int err;
/* Power up codec if we are not already playing. */
if (!sc->sc_playing) {
sc->sc_playing = 1;
zaudio_play_setup(sc);
}
/* Start DMA via I2S */
err = pxa2x0_i2s_start_output(&sc->sc_i2s, block, bsize, intr, intrarg);
if (err) {
zaudio_standby(sc);
sc->sc_playing = 0;
}
return err;
}
int
zaudio_start_input(void *hdl, void *block, int bsize, void (*intr)(void *),
void *intrarg)
{
return ENXIO;
}
|