4 * Copyright (c) 2006 Openedhand Ltd.
5 * Written by Andrzej Zaborowski <balrog@zabor.org>
7 * This file is licensed under GNU GPL.
10 #include "qemu/osdep.h"
11 #include "hw/i2c/i2c.h"
12 #include "migration/vmstate.h"
13 #include "qemu/module.h"
14 #include "hw/audio/wm8750.h"
15 #include "audio/audio.h"
20 #define CODEC "wm8750"
29 #define WM8750(obj) OBJECT_CHECK(WM8750State, (obj), TYPE_WM8750)
31 typedef struct WM8750State
{
37 SWVoiceIn
*adc_voice
[IN_PORT_N
];
38 SWVoiceOut
*dac_voice
[OUT_PORT_N
];
40 void (*data_req
)(void *, int, int);
42 uint8_t data_in
[4096];
43 uint8_t data_out
[4096];
48 uint8_t outvol
[7], outmute
[2];
50 uint8_t invol
[4], inmute
[2];
52 uint8_t diff
[2], pol
, ds
, monomix
[2], alc
, mute
;
53 uint8_t path
[4], mpath
[2], power
, format
;
56 int adc_hz
, dac_hz
, ext_adc_hz
, ext_dac_hz
, master
;
59 /* pow(10.0, -i / 20.0) * 255, i = 0..42 */
60 static const uint8_t wm8750_vol_db_table
[] = {
61 255, 227, 203, 181, 161, 143, 128, 114, 102, 90, 81, 72, 64, 57, 51, 45,
62 40, 36, 32, 29, 26, 23, 20, 18, 16, 14, 13, 11, 10, 9, 8, 7, 6, 6, 5, 5,
66 #define WM8750_OUTVOL_TRANSFORM(x) wm8750_vol_db_table[(0x7f - x) / 3]
67 #define WM8750_INVOL_TRANSFORM(x) (x << 2)
69 static inline void wm8750_in_load(WM8750State
*s
)
71 if (s
->idx_in
+ s
->req_in
<= sizeof(s
->data_in
))
73 s
->idx_in
= MAX(0, (int) sizeof(s
->data_in
) - s
->req_in
);
74 AUD_read(*s
->in
[0], s
->data_in
+ s
->idx_in
,
75 sizeof(s
->data_in
) - s
->idx_in
);
78 static inline void wm8750_out_flush(WM8750State
*s
)
81 while (sent
< s
->idx_out
)
82 sent
+= AUD_write(*s
->out
[0], s
->data_out
+ sent
, s
->idx_out
- sent
)
87 static void wm8750_audio_in_cb(void *opaque
, int avail_b
)
89 WM8750State
*s
= (WM8750State
*) opaque
;
91 s
->data_req(s
->opaque
, s
->req_out
>> 2, avail_b
>> 2);
94 static void wm8750_audio_out_cb(void *opaque
, int free_b
)
96 WM8750State
*s
= (WM8750State
*) opaque
;
98 if (s
->idx_out
>= free_b
) {
103 s
->req_out
= free_b
- s
->idx_out
;
105 s
->data_req(s
->opaque
, s
->req_out
>> 2, s
->req_in
>> 2);
108 static const WMRate wm_rate_table
[] = {
109 { 256, 48000, 256, 48000 }, /* SR: 00000 */
110 { 384, 48000, 384, 48000 }, /* SR: 00001 */
111 { 256, 48000, 1536, 8000 }, /* SR: 00010 */
112 { 384, 48000, 2304, 8000 }, /* SR: 00011 */
113 { 1536, 8000, 256, 48000 }, /* SR: 00100 */
114 { 2304, 8000, 384, 48000 }, /* SR: 00101 */
115 { 1536, 8000, 1536, 8000 }, /* SR: 00110 */
116 { 2304, 8000, 2304, 8000 }, /* SR: 00111 */
117 { 1024, 12000, 1024, 12000 }, /* SR: 01000 */
118 { 1526, 12000, 1536, 12000 }, /* SR: 01001 */
119 { 768, 16000, 768, 16000 }, /* SR: 01010 */
120 { 1152, 16000, 1152, 16000 }, /* SR: 01011 */
121 { 384, 32000, 384, 32000 }, /* SR: 01100 */
122 { 576, 32000, 576, 32000 }, /* SR: 01101 */
123 { 128, 96000, 128, 96000 }, /* SR: 01110 */
124 { 192, 96000, 192, 96000 }, /* SR: 01111 */
125 { 256, 44100, 256, 44100 }, /* SR: 10000 */
126 { 384, 44100, 384, 44100 }, /* SR: 10001 */
127 { 256, 44100, 1408, 8018 }, /* SR: 10010 */
128 { 384, 44100, 2112, 8018 }, /* SR: 10011 */
129 { 1408, 8018, 256, 44100 }, /* SR: 10100 */
130 { 2112, 8018, 384, 44100 }, /* SR: 10101 */
131 { 1408, 8018, 1408, 8018 }, /* SR: 10110 */
132 { 2112, 8018, 2112, 8018 }, /* SR: 10111 */
133 { 1024, 11025, 1024, 11025 }, /* SR: 11000 */
134 { 1536, 11025, 1536, 11025 }, /* SR: 11001 */
135 { 512, 22050, 512, 22050 }, /* SR: 11010 */
136 { 768, 22050, 768, 22050 }, /* SR: 11011 */
137 { 512, 24000, 512, 24000 }, /* SR: 11100 */
138 { 768, 24000, 768, 24000 }, /* SR: 11101 */
139 { 128, 88200, 128, 88200 }, /* SR: 11110 */
140 { 192, 88200, 192, 88200 }, /* SR: 11111 */
143 static void wm8750_vol_update(WM8750State
*s
)
145 /* FIXME: multiply all volumes by s->invol[2], s->invol[3] */
147 AUD_set_volume_in(s
->adc_voice
[0], s
->mute
,
148 s
->inmute
[0] ? 0 : WM8750_INVOL_TRANSFORM(s
->invol
[0]),
149 s
->inmute
[1] ? 0 : WM8750_INVOL_TRANSFORM(s
->invol
[1]));
150 AUD_set_volume_in(s
->adc_voice
[1], s
->mute
,
151 s
->inmute
[0] ? 0 : WM8750_INVOL_TRANSFORM(s
->invol
[0]),
152 s
->inmute
[1] ? 0 : WM8750_INVOL_TRANSFORM(s
->invol
[1]));
153 AUD_set_volume_in(s
->adc_voice
[2], s
->mute
,
154 s
->inmute
[0] ? 0 : WM8750_INVOL_TRANSFORM(s
->invol
[0]),
155 s
->inmute
[1] ? 0 : WM8750_INVOL_TRANSFORM(s
->invol
[1]));
157 /* FIXME: multiply all volumes by s->outvol[0], s->outvol[1] */
159 /* Speaker: LOUT2VOL ROUT2VOL */
160 AUD_set_volume_out(s
->dac_voice
[0], s
->mute
,
161 s
->outmute
[0] ? 0 : WM8750_OUTVOL_TRANSFORM(s
->outvol
[4]),
162 s
->outmute
[1] ? 0 : WM8750_OUTVOL_TRANSFORM(s
->outvol
[5]));
164 /* Headphone: LOUT1VOL ROUT1VOL */
165 AUD_set_volume_out(s
->dac_voice
[1], s
->mute
,
166 s
->outmute
[0] ? 0 : WM8750_OUTVOL_TRANSFORM(s
->outvol
[2]),
167 s
->outmute
[1] ? 0 : WM8750_OUTVOL_TRANSFORM(s
->outvol
[3]));
169 /* MONOOUT: MONOVOL MONOVOL */
170 AUD_set_volume_out(s
->dac_voice
[2], s
->mute
,
171 s
->outmute
[0] ? 0 : WM8750_OUTVOL_TRANSFORM(s
->outvol
[6]),
172 s
->outmute
[1] ? 0 : WM8750_OUTVOL_TRANSFORM(s
->outvol
[6]));
175 static void wm8750_set_format(WM8750State
*s
)
178 struct audsettings in_fmt
;
179 struct audsettings out_fmt
;
183 if (s
->in
[0] && *s
->in
[0])
184 AUD_set_active_in(*s
->in
[0], 0);
185 if (s
->out
[0] && *s
->out
[0])
186 AUD_set_active_out(*s
->out
[0], 0);
188 for (i
= 0; i
< IN_PORT_N
; i
++)
189 if (s
->adc_voice
[i
]) {
190 AUD_close_in(&s
->card
, s
->adc_voice
[i
]);
191 s
->adc_voice
[i
] = NULL
;
193 for (i
= 0; i
< OUT_PORT_N
; i
++)
194 if (s
->dac_voice
[i
]) {
195 AUD_close_out(&s
->card
, s
->dac_voice
[i
]);
196 s
->dac_voice
[i
] = NULL
;
203 in_fmt
.endianness
= 0;
204 in_fmt
.nchannels
= 2;
205 in_fmt
.freq
= s
->adc_hz
;
206 in_fmt
.fmt
= AUDIO_FORMAT_S16
;
208 s
->adc_voice
[0] = AUD_open_in(&s
->card
, s
->adc_voice
[0],
209 CODEC
".input1", s
, wm8750_audio_in_cb
, &in_fmt
);
210 s
->adc_voice
[1] = AUD_open_in(&s
->card
, s
->adc_voice
[1],
211 CODEC
".input2", s
, wm8750_audio_in_cb
, &in_fmt
);
212 s
->adc_voice
[2] = AUD_open_in(&s
->card
, s
->adc_voice
[2],
213 CODEC
".input3", s
, wm8750_audio_in_cb
, &in_fmt
);
216 out_fmt
.endianness
= 0;
217 out_fmt
.nchannels
= 2;
218 out_fmt
.freq
= s
->dac_hz
;
219 out_fmt
.fmt
= AUDIO_FORMAT_S16
;
221 s
->dac_voice
[0] = AUD_open_out(&s
->card
, s
->dac_voice
[0],
222 CODEC
".speaker", s
, wm8750_audio_out_cb
, &out_fmt
);
223 s
->dac_voice
[1] = AUD_open_out(&s
->card
, s
->dac_voice
[1],
224 CODEC
".headphone", s
, wm8750_audio_out_cb
, &out_fmt
);
225 /* MONOMIX is also in stereo for simplicity */
226 s
->dac_voice
[2] = AUD_open_out(&s
->card
, s
->dac_voice
[2],
227 CODEC
".monomix", s
, wm8750_audio_out_cb
, &out_fmt
);
228 /* no sense emulating OUT3 which is a mix of other outputs */
230 wm8750_vol_update(s
);
232 /* We should connect the left and right channels to their
233 * respective inputs/outputs but we have completely no need
234 * for mixing or combining paths to different ports, so we
235 * connect both channels to where the left channel is routed. */
236 if (s
->in
[0] && *s
->in
[0])
237 AUD_set_active_in(*s
->in
[0], 1);
238 if (s
->out
[0] && *s
->out
[0])
239 AUD_set_active_out(*s
->out
[0], 1);
242 static void wm8750_clk_update(WM8750State
*s
, int ext
)
244 if (s
->master
|| !s
->ext_dac_hz
)
245 s
->dac_hz
= s
->rate
->dac_hz
;
247 s
->dac_hz
= s
->ext_dac_hz
;
249 if (s
->master
|| !s
->ext_adc_hz
)
250 s
->adc_hz
= s
->rate
->adc_hz
;
252 s
->adc_hz
= s
->ext_adc_hz
;
254 if (s
->master
|| (!s
->ext_dac_hz
&& !s
->ext_adc_hz
)) {
256 wm8750_set_format(s
);
259 wm8750_set_format(s
);
263 static void wm8750_reset(I2CSlave
*i2c
)
265 WM8750State
*s
= WM8750(i2c
);
267 s
->rate
= &wm_rate_table
[0];
269 wm8750_clk_update(s
, 1);
274 s
->in
[0] = &s
->adc_voice
[0];
279 s
->out
[0] = &s
->dac_voice
[0];
299 s
->idx_in
= sizeof(s
->data_in
);
303 wm8750_vol_update(s
);
307 static int wm8750_event(I2CSlave
*i2c
, enum i2c_event event
)
309 WM8750State
*s
= WM8750(i2c
);
318 printf("%s: message too short (%i bytes)\n",
319 __func__
, s
->i2c_len
);
329 #define WM8750_LINVOL 0x00
330 #define WM8750_RINVOL 0x01
331 #define WM8750_LOUT1V 0x02
332 #define WM8750_ROUT1V 0x03
333 #define WM8750_ADCDAC 0x05
334 #define WM8750_IFACE 0x07
335 #define WM8750_SRATE 0x08
336 #define WM8750_LDAC 0x0a
337 #define WM8750_RDAC 0x0b
338 #define WM8750_BASS 0x0c
339 #define WM8750_TREBLE 0x0d
340 #define WM8750_RESET 0x0f
341 #define WM8750_3D 0x10
342 #define WM8750_ALC1 0x11
343 #define WM8750_ALC2 0x12
344 #define WM8750_ALC3 0x13
345 #define WM8750_NGATE 0x14
346 #define WM8750_LADC 0x15
347 #define WM8750_RADC 0x16
348 #define WM8750_ADCTL1 0x17
349 #define WM8750_ADCTL2 0x18
350 #define WM8750_PWR1 0x19
351 #define WM8750_PWR2 0x1a
352 #define WM8750_ADCTL3 0x1b
353 #define WM8750_ADCIN 0x1f
354 #define WM8750_LADCIN 0x20
355 #define WM8750_RADCIN 0x21
356 #define WM8750_LOUTM1 0x22
357 #define WM8750_LOUTM2 0x23
358 #define WM8750_ROUTM1 0x24
359 #define WM8750_ROUTM2 0x25
360 #define WM8750_MOUTM1 0x26
361 #define WM8750_MOUTM2 0x27
362 #define WM8750_LOUT2V 0x28
363 #define WM8750_ROUT2V 0x29
364 #define WM8750_MOUTV 0x2a
366 static int wm8750_tx(I2CSlave
*i2c
, uint8_t data
)
368 WM8750State
*s
= WM8750(i2c
);
372 if (s
->i2c_len
>= 2) {
374 printf("%s: long message (%i bytes)\n", __func__
, s
->i2c_len
);
378 s
->i2c_data
[s
->i2c_len
++] = data
;
382 cmd
= s
->i2c_data
[0] >> 1;
383 value
= ((s
->i2c_data
[0] << 8) | s
->i2c_data
[1]) & 0x1ff;
386 case WM8750_LADCIN
: /* ADC Signal Path Control (Left) */
387 s
->diff
[0] = (((value
>> 6) & 3) == 3); /* LINSEL */
389 s
->in
[0] = &s
->adc_voice
[0 + s
->ds
* 1];
391 s
->in
[0] = &s
->adc_voice
[((value
>> 6) & 3) * 1 + 0];
394 case WM8750_RADCIN
: /* ADC Signal Path Control (Right) */
395 s
->diff
[1] = (((value
>> 6) & 3) == 3); /* RINSEL */
397 s
->in
[1] = &s
->adc_voice
[0 + s
->ds
* 1];
399 s
->in
[1] = &s
->adc_voice
[((value
>> 6) & 3) * 1 + 0];
402 case WM8750_ADCIN
: /* ADC Input Mode */
403 s
->ds
= (value
>> 8) & 1; /* DS */
405 s
->in
[0] = &s
->adc_voice
[0 + s
->ds
* 1];
407 s
->in
[1] = &s
->adc_voice
[0 + s
->ds
* 1];
408 s
->monomix
[0] = (value
>> 6) & 3; /* MONOMIX */
411 case WM8750_ADCTL1
: /* Additional Control (1) */
412 s
->monomix
[1] = (value
>> 1) & 1; /* DMONOMIX */
415 case WM8750_PWR1
: /* Power Management (1) */
416 s
->enable
= ((value
>> 6) & 7) == 3; /* VMIDSEL, VREF */
417 wm8750_set_format(s
);
420 case WM8750_LINVOL
: /* Left Channel PGA */
421 s
->invol
[0] = value
& 0x3f; /* LINVOL */
422 s
->inmute
[0] = (value
>> 7) & 1; /* LINMUTE */
423 wm8750_vol_update(s
);
426 case WM8750_RINVOL
: /* Right Channel PGA */
427 s
->invol
[1] = value
& 0x3f; /* RINVOL */
428 s
->inmute
[1] = (value
>> 7) & 1; /* RINMUTE */
429 wm8750_vol_update(s
);
432 case WM8750_ADCDAC
: /* ADC and DAC Control */
433 s
->pol
= (value
>> 5) & 3; /* ADCPOL */
434 s
->mute
= (value
>> 3) & 1; /* DACMU */
435 wm8750_vol_update(s
);
438 case WM8750_ADCTL3
: /* Additional Control (3) */
441 case WM8750_LADC
: /* Left ADC Digital Volume */
442 s
->invol
[2] = value
& 0xff; /* LADCVOL */
443 wm8750_vol_update(s
);
446 case WM8750_RADC
: /* Right ADC Digital Volume */
447 s
->invol
[3] = value
& 0xff; /* RADCVOL */
448 wm8750_vol_update(s
);
451 case WM8750_ALC1
: /* ALC Control (1) */
452 s
->alc
= (value
>> 7) & 3; /* ALCSEL */
455 case WM8750_NGATE
: /* Noise Gate Control */
456 case WM8750_3D
: /* 3D enhance */
459 case WM8750_LDAC
: /* Left Channel Digital Volume */
460 s
->outvol
[0] = value
& 0xff; /* LDACVOL */
461 wm8750_vol_update(s
);
464 case WM8750_RDAC
: /* Right Channel Digital Volume */
465 s
->outvol
[1] = value
& 0xff; /* RDACVOL */
466 wm8750_vol_update(s
);
469 case WM8750_BASS
: /* Bass Control */
472 case WM8750_LOUTM1
: /* Left Mixer Control (1) */
473 s
->path
[0] = (value
>> 8) & 1; /* LD2LO */
474 /* TODO: mute/unmute respective paths */
475 wm8750_vol_update(s
);
478 case WM8750_LOUTM2
: /* Left Mixer Control (2) */
479 s
->path
[1] = (value
>> 8) & 1; /* RD2LO */
480 /* TODO: mute/unmute respective paths */
481 wm8750_vol_update(s
);
484 case WM8750_ROUTM1
: /* Right Mixer Control (1) */
485 s
->path
[2] = (value
>> 8) & 1; /* LD2RO */
486 /* TODO: mute/unmute respective paths */
487 wm8750_vol_update(s
);
490 case WM8750_ROUTM2
: /* Right Mixer Control (2) */
491 s
->path
[3] = (value
>> 8) & 1; /* RD2RO */
492 /* TODO: mute/unmute respective paths */
493 wm8750_vol_update(s
);
496 case WM8750_MOUTM1
: /* Mono Mixer Control (1) */
497 s
->mpath
[0] = (value
>> 8) & 1; /* LD2MO */
498 /* TODO: mute/unmute respective paths */
499 wm8750_vol_update(s
);
502 case WM8750_MOUTM2
: /* Mono Mixer Control (2) */
503 s
->mpath
[1] = (value
>> 8) & 1; /* RD2MO */
504 /* TODO: mute/unmute respective paths */
505 wm8750_vol_update(s
);
508 case WM8750_LOUT1V
: /* LOUT1 Volume */
509 s
->outvol
[2] = value
& 0x7f; /* LOUT1VOL */
510 wm8750_vol_update(s
);
513 case WM8750_LOUT2V
: /* LOUT2 Volume */
514 s
->outvol
[4] = value
& 0x7f; /* LOUT2VOL */
515 wm8750_vol_update(s
);
518 case WM8750_ROUT1V
: /* ROUT1 Volume */
519 s
->outvol
[3] = value
& 0x7f; /* ROUT1VOL */
520 wm8750_vol_update(s
);
523 case WM8750_ROUT2V
: /* ROUT2 Volume */
524 s
->outvol
[5] = value
& 0x7f; /* ROUT2VOL */
525 wm8750_vol_update(s
);
528 case WM8750_MOUTV
: /* MONOOUT Volume */
529 s
->outvol
[6] = value
& 0x7f; /* MONOOUTVOL */
530 wm8750_vol_update(s
);
533 case WM8750_ADCTL2
: /* Additional Control (2) */
536 case WM8750_PWR2
: /* Power Management (2) */
537 s
->power
= value
& 0x7e;
538 /* TODO: mute/unmute respective paths */
539 wm8750_vol_update(s
);
542 case WM8750_IFACE
: /* Digital Audio Interface Format */
544 s
->master
= (value
>> 6) & 1; /* MS */
545 wm8750_clk_update(s
, s
->master
);
548 case WM8750_SRATE
: /* Clocking and Sample Rate Control */
549 s
->rate
= &wm_rate_table
[(value
>> 1) & 0x1f];
550 wm8750_clk_update(s
, 0);
553 case WM8750_RESET
: /* Reset */
554 wm8750_reset(I2C_SLAVE(s
));
559 printf("%s: unknown register %02x\n", __func__
, cmd
);
566 static uint8_t wm8750_rx(I2CSlave
*i2c
)
571 static int wm8750_pre_save(void *opaque
)
573 WM8750State
*s
= opaque
;
575 s
->rate_vmstate
= s
->rate
- wm_rate_table
;
580 static int wm8750_post_load(void *opaque
, int version_id
)
582 WM8750State
*s
= opaque
;
584 s
->rate
= &wm_rate_table
[s
->rate_vmstate
& 0x1f];
588 static const VMStateDescription vmstate_wm8750
= {
591 .minimum_version_id
= 0,
592 .pre_save
= wm8750_pre_save
,
593 .post_load
= wm8750_post_load
,
594 .fields
= (VMStateField
[]) {
595 VMSTATE_UINT8_ARRAY(i2c_data
, WM8750State
, 2),
596 VMSTATE_INT32(i2c_len
, WM8750State
),
597 VMSTATE_INT32(enable
, WM8750State
),
598 VMSTATE_INT32(idx_in
, WM8750State
),
599 VMSTATE_INT32(req_in
, WM8750State
),
600 VMSTATE_INT32(idx_out
, WM8750State
),
601 VMSTATE_INT32(req_out
, WM8750State
),
602 VMSTATE_UINT8_ARRAY(outvol
, WM8750State
, 7),
603 VMSTATE_UINT8_ARRAY(outmute
, WM8750State
, 2),
604 VMSTATE_UINT8_ARRAY(invol
, WM8750State
, 4),
605 VMSTATE_UINT8_ARRAY(inmute
, WM8750State
, 2),
606 VMSTATE_UINT8_ARRAY(diff
, WM8750State
, 2),
607 VMSTATE_UINT8(pol
, WM8750State
),
608 VMSTATE_UINT8(ds
, WM8750State
),
609 VMSTATE_UINT8_ARRAY(monomix
, WM8750State
, 2),
610 VMSTATE_UINT8(alc
, WM8750State
),
611 VMSTATE_UINT8(mute
, WM8750State
),
612 VMSTATE_UINT8_ARRAY(path
, WM8750State
, 4),
613 VMSTATE_UINT8_ARRAY(mpath
, WM8750State
, 2),
614 VMSTATE_UINT8(format
, WM8750State
),
615 VMSTATE_UINT8(power
, WM8750State
),
616 VMSTATE_UINT8(rate_vmstate
, WM8750State
),
617 VMSTATE_I2C_SLAVE(parent_obj
, WM8750State
),
618 VMSTATE_END_OF_LIST()
622 static void wm8750_realize(DeviceState
*dev
, Error
**errp
)
624 WM8750State
*s
= WM8750(dev
);
626 AUD_register_card(CODEC
, &s
->card
);
627 wm8750_reset(I2C_SLAVE(s
));
631 static void wm8750_fini(I2CSlave
*i2c
)
633 WM8750State
*s
= WM8750(i2c
);
635 wm8750_reset(I2C_SLAVE(s
));
636 AUD_remove_card(&s
->card
);
641 void wm8750_data_req_set(DeviceState
*dev
, data_req_cb
*data_req
, void *opaque
)
643 WM8750State
*s
= WM8750(dev
);
645 s
->data_req
= data_req
;
649 void wm8750_dac_dat(void *opaque
, uint32_t sample
)
651 WM8750State
*s
= (WM8750State
*) opaque
;
653 *(uint32_t *) &s
->data_out
[s
->idx_out
] = sample
;
656 if (s
->idx_out
>= sizeof(s
->data_out
) || s
->req_out
<= 0)
660 void *wm8750_dac_buffer(void *opaque
, int samples
)
662 WM8750State
*s
= (WM8750State
*) opaque
;
663 /* XXX: Should check if there are <i>samples</i> free samples available */
664 void *ret
= s
->data_out
+ s
->idx_out
;
666 s
->idx_out
+= samples
<< 2;
667 s
->req_out
-= samples
<< 2;
671 void wm8750_dac_commit(void *opaque
)
673 WM8750State
*s
= (WM8750State
*) opaque
;
678 uint32_t wm8750_adc_dat(void *opaque
)
680 WM8750State
*s
= (WM8750State
*) opaque
;
683 if (s
->idx_in
>= sizeof(s
->data_in
)) {
685 if (s
->idx_in
>= sizeof(s
->data_in
)) {
686 return 0x80008000; /* silence in AUDIO_FORMAT_S16 sample format */
690 data
= (uint32_t *) &s
->data_in
[s
->idx_in
];
696 void wm8750_set_bclk_in(void *opaque
, int new_hz
)
698 WM8750State
*s
= (WM8750State
*) opaque
;
700 s
->ext_adc_hz
= new_hz
;
701 s
->ext_dac_hz
= new_hz
;
702 wm8750_clk_update(s
, 1);
705 static Property wm8750_properties
[] = {
706 DEFINE_AUDIO_PROPERTIES(WM8750State
, card
),
707 DEFINE_PROP_END_OF_LIST(),
710 static void wm8750_class_init(ObjectClass
*klass
, void *data
)
712 DeviceClass
*dc
= DEVICE_CLASS(klass
);
713 I2CSlaveClass
*sc
= I2C_SLAVE_CLASS(klass
);
715 dc
->realize
= wm8750_realize
;
716 sc
->event
= wm8750_event
;
717 sc
->recv
= wm8750_rx
;
718 sc
->send
= wm8750_tx
;
719 dc
->vmsd
= &vmstate_wm8750
;
720 device_class_set_props(dc
, wm8750_properties
);
723 static const TypeInfo wm8750_info
= {
725 .parent
= TYPE_I2C_SLAVE
,
726 .instance_size
= sizeof(WM8750State
),
727 .class_init
= wm8750_class_init
,
730 static void wm8750_register_types(void)
732 type_register_static(&wm8750_info
);
735 type_init(wm8750_register_types
)