2 * cx18 ADEC audio functions
4 * Derived from cx25840-audio.c
6 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
7 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.net>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #include "cx18-driver.h"
22 static int set_audclk_freq(struct cx18
*cx
, u32 freq
)
24 struct cx18_av_state
*state
= &cx
->av_state
;
26 if (freq
!= 32000 && freq
!= 44100 && freq
!= 48000)
30 * The PLL parameters are based on the external crystal frequency that
33 * NTSC Color subcarrier freq * 8 =
34 * 4.5 MHz/286 * 455/2 * 8 = 28.63636363... MHz
36 * The accidents of history and rationale that explain from where this
37 * combination of magic numbers originate can be found in:
39 * [1] Abrahams, I. C., "Choice of Chrominance Subcarrier Frequency in
40 * the NTSC Standards", Proceedings of the I-R-E, January 1954, pp 79-80
42 * [2] Abrahams, I. C., "The 'Frequency Interleaving' Principle in the
43 * NTSC Standards", Proceedings of the I-R-E, January 1954, pp 81-83
45 * As Mike Bradley has rightly pointed out, it's not the exact crystal
46 * frequency that matters, only that all parts of the driver and
47 * firmware are using the same value (close to the ideal value).
49 * Since I have a strong suspicion that, if the firmware ever assumes a
50 * crystal value at all, it will assume 28.636360 MHz, the crystal
51 * freq used in calculations in this driver will be:
53 * xtal_freq = 28.636360 MHz
55 * an error of less than 0.13 ppm which is way, way better than any off
56 * the shelf crystal will have for accuracy anyway.
58 * Below I aim to run the PLLs' VCOs near 400 MHz to minimze error.
60 * Many thanks to Jeff Campbell and Mike Bradley for their extensive
61 * investigation, experimentation, testing, and suggested solutions of
62 * of audio/video sync problems with SVideo and CVBS captures.
65 if (state
->aud_input
> CX18_AV_AUDIO_SERIAL2
) {
69 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04
70 * AUX_PLL Integer = 0x0d, AUX PLL Post Divider = 0x20
72 cx18_av_write4(cx
, 0x108, 0x200d040f);
74 /* VID_PLL Fraction = 0x2be2fe */
75 /* xtal * 0xf.15f17f0/4 = 108 MHz: 432 MHz pre-postdiv*/
76 cx18_av_write4(cx
, 0x10c, 0x002be2fe);
78 /* AUX_PLL Fraction = 0x176740c */
79 /* xtal * 0xd.bb3a060/0x20 = 32000 * 384: 393 MHz p-pd*/
80 cx18_av_write4(cx
, 0x110, 0x0176740c);
83 /* 0x1.f77f = (4 * xtal/8*2/455) / 32000 */
84 cx18_av_write4(cx
, 0x900, 0x0801f77f);
85 cx18_av_write4(cx
, 0x904, 0x0801f77f);
86 cx18_av_write4(cx
, 0x90c, 0x0801f77f);
88 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x20 */
89 cx18_av_write(cx
, 0x127, 0x60);
91 /* AUD_COUNT = 0x2fff = 8 samples * 4 * 384 - 1 */
92 cx18_av_write4(cx
, 0x12c, 0x11202fff);
96 * VID_COUNT = 0x0d2ef8 = 107999.000 * 8 =
97 * ((8 samples/32,000) * (13,500,000 * 8) * 4 - 1) * 8
99 cx18_av_write4(cx
, 0x128, 0xa00d2ef8);
104 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04
105 * AUX_PLL Integer = 0x0e, AUX PLL Post Divider = 0x18
107 cx18_av_write4(cx
, 0x108, 0x180e040f);
109 /* VID_PLL Fraction = 0x2be2fe */
110 /* xtal * 0xf.15f17f0/4 = 108 MHz: 432 MHz pre-postdiv*/
111 cx18_av_write4(cx
, 0x10c, 0x002be2fe);
113 /* AUX_PLL Fraction = 0x062a1f2 */
114 /* xtal * 0xe.3150f90/0x18 = 44100 * 384: 406 MHz p-pd*/
115 cx18_av_write4(cx
, 0x110, 0x0062a1f2);
118 /* 0x1.6d59 = (4 * xtal/8*2/455) / 44100 */
119 cx18_av_write4(cx
, 0x900, 0x08016d59);
120 cx18_av_write4(cx
, 0x904, 0x08016d59);
121 cx18_av_write4(cx
, 0x90c, 0x08016d59);
123 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x18 */
124 cx18_av_write(cx
, 0x127, 0x58);
126 /* AUD_COUNT = 0x92ff = 49 samples * 2 * 384 - 1 */
127 cx18_av_write4(cx
, 0x12c, 0x112092ff);
131 * VID_COUNT = 0x1d4bf8 = 239999.000 * 8 =
132 * ((49 samples/44,100) * (13,500,000 * 8) * 2 - 1) * 8
134 cx18_av_write4(cx
, 0x128, 0xa01d4bf8);
139 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04
140 * AUX_PLL Integer = 0x0e, AUX PLL Post Divider = 0x16
142 cx18_av_write4(cx
, 0x108, 0x160e040f);
144 /* VID_PLL Fraction = 0x2be2fe */
145 /* xtal * 0xf.15f17f0/4 = 108 MHz: 432 MHz pre-postdiv*/
146 cx18_av_write4(cx
, 0x10c, 0x002be2fe);
148 /* AUX_PLL Fraction = 0x05227ad */
149 /* xtal * 0xe.2913d68/0x16 = 48000 * 384: 406 MHz p-pd*/
150 cx18_av_write4(cx
, 0x110, 0x005227ad);
153 /* 0x1.4faa = (4 * xtal/8*2/455) / 48000 */
154 cx18_av_write4(cx
, 0x900, 0x08014faa);
155 cx18_av_write4(cx
, 0x904, 0x08014faa);
156 cx18_av_write4(cx
, 0x90c, 0x08014faa);
158 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x16 */
159 cx18_av_write(cx
, 0x127, 0x56);
161 /* AUD_COUNT = 0x5fff = 4 samples * 16 * 384 - 1 */
162 cx18_av_write4(cx
, 0x12c, 0x11205fff);
166 * VID_COUNT = 0x1193f8 = 143999.000 * 8 =
167 * ((4 samples/48,000) * (13,500,000 * 8) * 16 - 1) * 8
169 cx18_av_write4(cx
, 0x128, 0xa01193f8);
176 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04
177 * AUX_PLL Integer = 0x0d, AUX PLL Post Divider = 0x30
179 cx18_av_write4(cx
, 0x108, 0x300d040f);
181 /* VID_PLL Fraction = 0x2be2fe */
182 /* xtal * 0xf.15f17f0/4 = 108 MHz: 432 MHz pre-postdiv*/
183 cx18_av_write4(cx
, 0x10c, 0x002be2fe);
185 /* AUX_PLL Fraction = 0x176740c */
186 /* xtal * 0xd.bb3a060/0x30 = 32000 * 256: 393 MHz p-pd*/
187 cx18_av_write4(cx
, 0x110, 0x0176740c);
190 /* 0x1.0000 = 32000/32000 */
191 cx18_av_write4(cx
, 0x8f8, 0x08010000);
194 /* 0x2.0000 = 2 * (32000/32000) */
195 cx18_av_write4(cx
, 0x900, 0x08020000);
196 cx18_av_write4(cx
, 0x904, 0x08020000);
197 cx18_av_write4(cx
, 0x90c, 0x08020000);
199 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x30 */
200 cx18_av_write(cx
, 0x127, 0x70);
202 /* AUD_COUNT = 0x1fff = 8 samples * 4 * 256 - 1 */
203 cx18_av_write4(cx
, 0x12c, 0x11201fff);
207 * VID_COUNT = 0x0d2ef8 = 107999.000 * 8 =
208 * ((8 samples/32,000) * (13,500,000 * 8) * 4 - 1) * 8
210 cx18_av_write4(cx
, 0x128, 0xa00d2ef8);
215 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04
216 * AUX_PLL Integer = 0x0e, AUX PLL Post Divider = 0x24
218 cx18_av_write4(cx
, 0x108, 0x240e040f);
220 /* VID_PLL Fraction = 0x2be2fe */
221 /* xtal * 0xf.15f17f0/4 = 108 MHz: 432 MHz pre-postdiv*/
222 cx18_av_write4(cx
, 0x10c, 0x002be2fe);
224 /* AUX_PLL Fraction = 0x062a1f2 */
225 /* xtal * 0xe.3150f90/0x24 = 44100 * 256: 406 MHz p-pd*/
226 cx18_av_write4(cx
, 0x110, 0x0062a1f2);
229 /* 0x1.60cd = 44100/32000 */
230 cx18_av_write4(cx
, 0x8f8, 0x080160cd);
233 /* 0x1.7385 = 2 * (32000/44100) */
234 cx18_av_write4(cx
, 0x900, 0x08017385);
235 cx18_av_write4(cx
, 0x904, 0x08017385);
236 cx18_av_write4(cx
, 0x90c, 0x08017385);
238 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x24 */
239 cx18_av_write(cx
, 0x127, 0x64);
241 /* AUD_COUNT = 0x61ff = 49 samples * 2 * 256 - 1 */
242 cx18_av_write4(cx
, 0x12c, 0x112061ff);
246 * VID_COUNT = 0x1d4bf8 = 239999.000 * 8 =
247 * ((49 samples/44,100) * (13,500,000 * 8) * 2 - 1) * 8
249 cx18_av_write4(cx
, 0x128, 0xa01d4bf8);
254 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04
255 * AUX_PLL Integer = 0x0d, AUX PLL Post Divider = 0x20
257 cx18_av_write4(cx
, 0x108, 0x200d040f);
259 /* VID_PLL Fraction = 0x2be2fe */
260 /* xtal * 0xf.15f17f0/4 = 108 MHz: 432 MHz pre-postdiv*/
261 cx18_av_write4(cx
, 0x10c, 0x002be2fe);
263 /* AUX_PLL Fraction = 0x176740c */
264 /* xtal * 0xd.bb3a060/0x20 = 48000 * 256: 393 MHz p-pd*/
265 cx18_av_write4(cx
, 0x110, 0x0176740c);
268 /* 0x1.8000 = 48000/32000 */
269 cx18_av_write4(cx
, 0x8f8, 0x08018000);
272 /* 0x1.5555 = 2 * (32000/48000) */
273 cx18_av_write4(cx
, 0x900, 0x08015555);
274 cx18_av_write4(cx
, 0x904, 0x08015555);
275 cx18_av_write4(cx
, 0x90c, 0x08015555);
277 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x20 */
278 cx18_av_write(cx
, 0x127, 0x60);
280 /* AUD_COUNT = 0x3fff = 4 samples * 16 * 256 - 1 */
281 cx18_av_write4(cx
, 0x12c, 0x11203fff);
285 * VID_COUNT = 0x1193f8 = 143999.000 * 8 =
286 * ((4 samples/48,000) * (13,500,000 * 8) * 16 - 1) * 8
288 cx18_av_write4(cx
, 0x128, 0xa01193f8);
293 state
->audclk_freq
= freq
;
298 void cx18_av_audio_set_path(struct cx18
*cx
)
300 struct cx18_av_state
*state
= &cx
->av_state
;
303 /* stop microcontroller */
304 v
= cx18_av_read(cx
, 0x803) & ~0x10;
305 cx18_av_write_expect(cx
, 0x803, v
, v
, 0x1f);
307 /* assert soft reset */
308 v
= cx18_av_read(cx
, 0x810) | 0x01;
309 cx18_av_write_expect(cx
, 0x810, v
, v
, 0x0f);
311 /* Mute everything to prevent the PFFT! */
312 cx18_av_write(cx
, 0x8d3, 0x1f);
314 if (state
->aud_input
<= CX18_AV_AUDIO_SERIAL2
) {
315 /* Set Path1 to Serial Audio Input */
316 cx18_av_write4(cx
, 0x8d0, 0x01011012);
318 /* The microcontroller should not be started for the
319 * non-tuner inputs: autodetection is specific for
322 /* Set Path1 to Analog Demod Main Channel */
323 cx18_av_write4(cx
, 0x8d0, 0x1f063870);
326 set_audclk_freq(cx
, state
->audclk_freq
);
328 /* deassert soft reset */
329 v
= cx18_av_read(cx
, 0x810) & ~0x01;
330 cx18_av_write_expect(cx
, 0x810, v
, v
, 0x0f);
332 if (state
->aud_input
> CX18_AV_AUDIO_SERIAL2
) {
333 /* When the microcontroller detects the
334 * audio format, it will unmute the lines */
335 v
= cx18_av_read(cx
, 0x803) | 0x10;
336 cx18_av_write_expect(cx
, 0x803, v
, v
, 0x1f);
340 static void set_volume(struct cx18
*cx
, int volume
)
342 /* First convert the volume to msp3400 values (0-127) */
343 int vol
= volume
>> 9;
344 /* now scale it up to cx18_av values
345 * -114dB to -96dB maps to 0
346 * this should be 19, but in my testing that was 4dB too loud */
353 cx18_av_write(cx
, 0x8d4, 228 - (vol
* 2));
356 static void set_bass(struct cx18
*cx
, int bass
)
358 /* PATH1_EQ_BASS_VOL */
359 cx18_av_and_or(cx
, 0x8d9, ~0x3f, 48 - (bass
* 48 / 0xffff));
362 static void set_treble(struct cx18
*cx
, int treble
)
364 /* PATH1_EQ_TREBLE_VOL */
365 cx18_av_and_or(cx
, 0x8db, ~0x3f, 48 - (treble
* 48 / 0xffff));
368 static void set_balance(struct cx18
*cx
, int balance
)
370 int bal
= balance
>> 8;
373 cx18_av_and_or(cx
, 0x8d5, 0x7f, 0x80);
374 /* PATH1_BAL_LEVEL */
375 cx18_av_and_or(cx
, 0x8d5, ~0x7f, bal
& 0x7f);
378 cx18_av_and_or(cx
, 0x8d5, 0x7f, 0x00);
379 /* PATH1_BAL_LEVEL */
380 cx18_av_and_or(cx
, 0x8d5, ~0x7f, 0x80 - bal
);
384 static void set_mute(struct cx18
*cx
, int mute
)
386 struct cx18_av_state
*state
= &cx
->av_state
;
389 if (state
->aud_input
> CX18_AV_AUDIO_SERIAL2
) {
390 /* Must turn off microcontroller in order to mute sound.
391 * Not sure if this is the best method, but it does work.
392 * If the microcontroller is running, then it will undo any
393 * changes to the mute register. */
394 v
= cx18_av_read(cx
, 0x803);
396 /* disable microcontroller */
398 cx18_av_write_expect(cx
, 0x803, v
, v
, 0x1f);
399 cx18_av_write(cx
, 0x8d3, 0x1f);
401 /* enable microcontroller */
403 cx18_av_write_expect(cx
, 0x803, v
, v
, 0x1f);
407 cx18_av_and_or(cx
, 0x8d3, ~0x2, mute
? 0x02 : 0x00);
411 int cx18_av_s_clock_freq(struct v4l2_subdev
*sd
, u32 freq
)
413 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
414 struct cx18_av_state
*state
= &cx
->av_state
;
418 if (state
->aud_input
> CX18_AV_AUDIO_SERIAL2
) {
419 v
= cx18_av_read(cx
, 0x803) & ~0x10;
420 cx18_av_write_expect(cx
, 0x803, v
, v
, 0x1f);
421 cx18_av_write(cx
, 0x8d3, 0x1f);
423 v
= cx18_av_read(cx
, 0x810) | 0x1;
424 cx18_av_write_expect(cx
, 0x810, v
, v
, 0x0f);
426 retval
= set_audclk_freq(cx
, freq
);
428 v
= cx18_av_read(cx
, 0x810) & ~0x1;
429 cx18_av_write_expect(cx
, 0x810, v
, v
, 0x0f);
430 if (state
->aud_input
> CX18_AV_AUDIO_SERIAL2
) {
431 v
= cx18_av_read(cx
, 0x803) | 0x10;
432 cx18_av_write_expect(cx
, 0x803, v
, v
, 0x1f);
437 static int cx18_av_audio_s_ctrl(struct v4l2_ctrl
*ctrl
)
439 struct v4l2_subdev
*sd
= to_sd(ctrl
);
440 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
443 case V4L2_CID_AUDIO_VOLUME
:
444 set_volume(cx
, ctrl
->val
);
446 case V4L2_CID_AUDIO_BASS
:
447 set_bass(cx
, ctrl
->val
);
449 case V4L2_CID_AUDIO_TREBLE
:
450 set_treble(cx
, ctrl
->val
);
452 case V4L2_CID_AUDIO_BALANCE
:
453 set_balance(cx
, ctrl
->val
);
455 case V4L2_CID_AUDIO_MUTE
:
456 set_mute(cx
, ctrl
->val
);
464 const struct v4l2_ctrl_ops cx18_av_audio_ctrl_ops
= {
465 .s_ctrl
= cx18_av_audio_s_ctrl
,