2 * cx18 ADEC audio functions
4 * Derived from cx25840-core.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 #include "cx18-cards.h"
24 int cx18_av_write(struct cx18
*cx
, u16 addr
, u8 value
)
26 u32 reg
= 0xc40000 + (addr
& ~3);
28 int shift
= (addr
& 3) * 8;
29 u32 x
= cx18_read_reg(cx
, reg
);
31 x
= (x
& ~(mask
<< shift
)) | ((u32
)value
<< shift
);
32 cx18_write_reg(cx
, x
, reg
);
36 int cx18_av_write_expect(struct cx18
*cx
, u16 addr
, u8 value
, u8 eval
, u8 mask
)
38 u32 reg
= 0xc40000 + (addr
& ~3);
39 int shift
= (addr
& 3) * 8;
40 u32 x
= cx18_read_reg(cx
, reg
);
42 x
= (x
& ~((u32
)0xff << shift
)) | ((u32
)value
<< shift
);
43 cx18_write_reg_expect(cx
, x
, reg
,
44 ((u32
)eval
<< shift
), ((u32
)mask
<< shift
));
48 int cx18_av_write4(struct cx18
*cx
, u16 addr
, u32 value
)
50 cx18_write_reg(cx
, value
, 0xc40000 + addr
);
55 cx18_av_write4_expect(struct cx18
*cx
, u16 addr
, u32 value
, u32 eval
, u32 mask
)
57 cx18_write_reg_expect(cx
, value
, 0xc40000 + addr
, eval
, mask
);
61 int cx18_av_write4_noretry(struct cx18
*cx
, u16 addr
, u32 value
)
63 cx18_write_reg_noretry(cx
, value
, 0xc40000 + addr
);
67 u8
cx18_av_read(struct cx18
*cx
, u16 addr
)
69 u32 x
= cx18_read_reg(cx
, 0xc40000 + (addr
& ~3));
70 int shift
= (addr
& 3) * 8;
72 return (x
>> shift
) & 0xff;
75 u32
cx18_av_read4(struct cx18
*cx
, u16 addr
)
77 return cx18_read_reg(cx
, 0xc40000 + addr
);
80 int cx18_av_and_or(struct cx18
*cx
, u16 addr
, unsigned and_mask
,
83 return cx18_av_write(cx
, addr
,
84 (cx18_av_read(cx
, addr
) & and_mask
) |
88 int cx18_av_and_or4(struct cx18
*cx
, u16 addr
, u32 and_mask
,
91 return cx18_av_write4(cx
, addr
,
92 (cx18_av_read4(cx
, addr
) & and_mask
) |
96 static void cx18_av_init(struct cx18
*cx
)
99 * The crystal freq used in calculations in this driver will be
101 * Aim to run the PLLs' VCOs near 400 MHz to minimze errors.
105 * VDCLK Integer = 0x0f, Post Divider = 0x04
106 * AIMCLK Integer = 0x0e, Post Divider = 0x16
108 cx18_av_write4(cx
, CXADEC_PLL_CTRL1
, 0x160e040f);
110 /* VDCLK Fraction = 0x2be2fe */
111 /* xtal * 0xf.15f17f0/4 = 108 MHz: 432 MHz before post divide */
112 cx18_av_write4(cx
, CXADEC_VID_PLL_FRAC
, 0x002be2fe);
114 /* AIMCLK Fraction = 0x05227ad */
115 /* xtal * 0xe.2913d68/0x16 = 48000 * 384: 406 MHz pre post-div*/
116 cx18_av_write4(cx
, CXADEC_AUX_PLL_FRAC
, 0x005227ad);
118 /* SA_MCLK_SEL=1, SA_MCLK_DIV=0x16 */
119 cx18_av_write(cx
, CXADEC_I2S_MCLK
, 0x56);
122 static void cx18_av_initialize(struct v4l2_subdev
*sd
)
124 struct cx18_av_state
*state
= to_cx18_av_state(sd
);
125 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
130 /* Stop 8051 code execution */
131 cx18_av_write4_expect(cx
, CXADEC_DL_CTL
, 0x03000000,
132 0x03000000, 0x13000000);
134 /* initallize the PLL by toggling sleep bit */
135 v
= cx18_av_read4(cx
, CXADEC_HOST_REG1
);
136 /* enable sleep mode - register appears to be read only... */
137 cx18_av_write4_expect(cx
, CXADEC_HOST_REG1
, v
| 1, v
, 0xfffe);
138 /* disable sleep mode */
139 cx18_av_write4_expect(cx
, CXADEC_HOST_REG1
, v
& 0xfffe,
142 /* initialize DLLs */
143 v
= cx18_av_read4(cx
, CXADEC_DLL1_DIAG_CTRL
) & 0xE1FFFEFF;
145 cx18_av_write4(cx
, CXADEC_DLL1_DIAG_CTRL
, v
);
147 cx18_av_write4(cx
, CXADEC_DLL1_DIAG_CTRL
, v
| 0x10000100);
149 v
= cx18_av_read4(cx
, CXADEC_DLL2_DIAG_CTRL
) & 0xE1FFFEFF;
151 cx18_av_write4(cx
, CXADEC_DLL2_DIAG_CTRL
, v
);
153 cx18_av_write4(cx
, CXADEC_DLL2_DIAG_CTRL
, v
| 0x06000100);
155 /* set analog bias currents. Set Vreg to 1.20V. */
156 cx18_av_write4(cx
, CXADEC_AFE_DIAG_CTRL1
, 0x000A1802);
158 v
= cx18_av_read4(cx
, CXADEC_AFE_DIAG_CTRL3
) | 1;
159 /* enable TUNE_FIL_RST */
160 cx18_av_write4_expect(cx
, CXADEC_AFE_DIAG_CTRL3
, v
, v
, 0x03009F0F);
161 /* disable TUNE_FIL_RST */
162 cx18_av_write4_expect(cx
, CXADEC_AFE_DIAG_CTRL3
,
163 v
& 0xFFFFFFFE, v
& 0xFFFFFFFE, 0x03009F0F);
165 /* enable 656 output */
166 cx18_av_and_or4(cx
, CXADEC_PIN_CTRL1
, ~0, 0x040C00);
168 /* video output drive strength */
169 cx18_av_and_or4(cx
, CXADEC_PIN_CTRL2
, ~0, 0x2);
172 cx18_av_write4(cx
, CXADEC_SOFT_RST_CTRL
, 0x8000);
173 cx18_av_write4(cx
, CXADEC_SOFT_RST_CTRL
, 0);
176 * Disable Video Auto-config of the Analog Front End and Video PLL.
178 * Since we only use BT.656 pixel mode, which works for both 525 and 625
179 * line systems, it's just easier for us to set registers
180 * 0x102 (CXADEC_CHIP_CTRL), 0x104-0x106 (CXADEC_AFE_CTRL),
181 * 0x108-0x109 (CXADEC_PLL_CTRL1), and 0x10c-0x10f (CXADEC_VID_PLL_FRAC)
182 * ourselves, than to run around cleaning up after the auto-config.
184 * (Note: my CX23418 chip doesn't seem to let the ACFG_DIS bit
185 * get set to 1, but OTOH, it doesn't seem to do AFE and VID PLL
186 * autoconfig either.)
188 * As a default, also turn off Dual mode for ADC2 and set ADC2 to CH3.
190 cx18_av_and_or4(cx
, CXADEC_CHIP_CTRL
, 0xFFFBFFFF, 0x00120000);
192 /* Setup the Video and and Aux/Audio PLLs */
195 /* set video to auto-detect */
196 /* Clear bits 11-12 to enable slow locking mode. Set autodetect mode */
197 /* set the comb notch = 1 */
198 cx18_av_and_or4(cx
, CXADEC_MODE_CTRL
, 0xFFF7E7F0, 0x02040800);
200 /* Enable wtw_en in CRUSH_CTRL (Set bit 22) */
201 /* Enable maj_sel in CRUSH_CTRL (Set bit 20) */
202 cx18_av_and_or4(cx
, CXADEC_CRUSH_CTRL
, ~0, 0x00500000);
204 /* Set VGA_TRACK_RANGE to 0x20 */
205 cx18_av_and_or4(cx
, CXADEC_DFE_CTRL2
, 0xFFFF00FF, 0x00002000);
209 * VIP-1.1, 10 bit mode, enable Raw, disable sliced,
210 * don't clamp raw samples when codes are in use, 1 byte user D-words,
211 * IDID0 has line #, RP code V bit transition on VBLANK, data during
214 cx18_av_write4(cx
, CXADEC_OUT_CTRL1
, 0x4013252e);
216 /* Set the video input.
217 The setting in MODE_CTRL gets lost when we do the above setup */
218 /* EncSetSignalStd(dwDevNum, pEnc->dwSigStd); */
219 /* EncSetVideoInput(dwDevNum, pEnc->VidIndSelection); */
222 * Analog Front End (AFE)
223 * Default to luma on ch1/ADC1, chroma on ch2/ADC2, SIF on ch3/ADC2
224 * bypass_ch[1-3] use filter
225 * droop_comp_ch[1-3] disable
226 * clamp_en_ch[1-3] disable
230 * clamp_sel_ch[2-3] midcode
231 * clamp_sel_ch1 video decoder
232 * vga_sel_ch3 audio decoder
233 * vga_sel_ch[1-2] video decoder
234 * half_bw_ch[1-3] disable
235 * +12db_ch[1-3] disable
237 cx18_av_and_or4(cx
, CXADEC_AFE_CTRL
, 0xFF000000, 0x00005D00);
239 /* if(dwEnable && dw3DCombAvailable) { */
240 /* CxDevWrReg(CXADEC_SRC_COMB_CFG, 0x7728021F); */
242 /* CxDevWrReg(CXADEC_SRC_COMB_CFG, 0x6628021F); */
244 cx18_av_write4(cx
, CXADEC_SRC_COMB_CFG
, 0x6628021F);
245 default_volume
= cx18_av_read(cx
, 0x8d4);
247 * Enforce the legacy volume scale mapping limits to avoid
248 * -ERANGE errors when initializing the volume control
250 if (default_volume
> 228) {
251 /* Bottom out at -96 dB, v4l2 vol range 0x2e00-0x2fff */
252 default_volume
= 228;
253 cx18_av_write(cx
, 0x8d4, 228);
254 } else if (default_volume
< 20) {
255 /* Top out at + 8 dB, v4l2 vol range 0xfe00-0xffff */
257 cx18_av_write(cx
, 0x8d4, 20);
259 default_volume
= (((228 - default_volume
) >> 1) + 23) << 9;
260 state
->volume
->cur
.val
= state
->volume
->default_value
= default_volume
;
261 v4l2_ctrl_handler_setup(&state
->hdl
);
264 static int cx18_av_reset(struct v4l2_subdev
*sd
, u32 val
)
266 cx18_av_initialize(sd
);
270 static int cx18_av_load_fw(struct v4l2_subdev
*sd
)
272 struct cx18_av_state
*state
= to_cx18_av_state(sd
);
274 if (!state
->is_initialized
) {
275 /* initialize on first use */
276 state
->is_initialized
= 1;
277 cx18_av_initialize(sd
);
282 void cx18_av_std_setup(struct cx18
*cx
)
284 struct cx18_av_state
*state
= &cx
->av_state
;
285 struct v4l2_subdev
*sd
= &state
->sd
;
286 v4l2_std_id std
= state
->std
;
289 * Video ADC crystal clock to pixel clock SRC decimation ratio
290 * 28.636360 MHz/13.5 Mpps * 256 = 0x21f.07b
292 const int src_decimation
= 0x21f;
294 int hblank
, hactive
, burst
, vblank
, vactive
, sc
;
296 int luma_lpf
, uv_lpf
, comb
;
297 u32 pll_int
, pll_frac
, pll_post
;
299 /* datasheet startup, step 8d */
300 if (std
& ~V4L2_STD_NTSC
)
301 cx18_av_write(cx
, 0x49f, 0x11);
303 cx18_av_write(cx
, 0x49f, 0x14);
306 * Note: At the end of a field, there are 3 sets of half line duration
307 * (double horizontal rate) pulses:
309 * 5 (625) or 6 (525) half-lines to blank for the vertical retrace
310 * 5 (625) or 6 (525) vertical sync pulses of half line duration
311 * 5 (625) or 6 (525) half-lines of equalization pulses
313 if (std
& V4L2_STD_625_50
) {
315 * The following relationships of half line counts should hold:
316 * 625 = vblank656 + vactive
317 * 10 = vblank656 - vblank = vsync pulses + equalization pulses
319 * vblank656: half lines after line 625/mid-313 of blanked video
320 * vblank: half lines, after line 5/317, of blanked video
321 * vactive: half lines of active video +
322 * 5 half lines after the end of active video
324 * As far as I can tell:
325 * vblank656 starts counting from the falling edge of the first
326 * vsync pulse (start of line 1 or mid-313)
327 * vblank starts counting from the after the 5 vsync pulses and
328 * 5 or 4 equalization pulses (start of line 6 or 318)
330 * For 625 line systems the driver will extract VBI information
331 * from lines 6-23 and lines 318-335 (but the slicer can only
332 * handle 17 lines, not the 18 in the vblank region).
333 * In addition, we need vblank656 and vblank to be one whole
334 * line longer, to cover line 24 and 336, so the SAV/EAV RP
335 * codes get generated such that the encoder can actually
336 * extract line 23 & 335 (WSS). We'll lose 1 line in each field
337 * at the top of the screen.
339 * It appears the 5 half lines that happen after active
340 * video must be included in vactive (579 instead of 574),
341 * otherwise the colors get badly displayed in various regions
342 * of the screen. I guess the chroma comb filter gets confused
343 * without them (at least when a PVR-350 is the PAL source).
345 vblank656
= 48; /* lines 1 - 24 & 313 - 336 */
346 vblank
= 38; /* lines 6 - 24 & 318 - 336 */
347 vactive
= 579; /* lines 24 - 313 & 337 - 626 */
350 * For a 13.5 Mpps clock and 15,625 Hz line rate, a line is
351 * is 864 pixels = 720 active + 144 blanking. ITU-R BT.601
352 * specifies 12 luma clock periods or ~ 0.9 * 13.5 Mpps after
353 * the end of active video to start a horizontal line, so that
354 * leaves 132 pixels of hblank to ignore.
360 * Burst gate delay (for 625 line systems)
361 * Hsync leading edge to color burst rise = 5.6 us
362 * Color burst width = 2.25 us
363 * Gate width = 4 pixel clocks
364 * (5.6 us + 2.25/2 us) * 13.5 Mpps + 4/2 clocks = 92.79 clocks
368 if (std
& V4L2_STD_PAL
) {
371 /* sc = 4433618.75 * src_decimation/28636360 * 2^13 */
373 } else if (std
== V4L2_STD_PAL_Nc
) {
376 /* sc = 3582056.25 * src_decimation/28636360 * 2^13 */
381 /* (fr + fb)/2 = (4406260 + 4250000)/2 = 4328130 */
382 /* sc = 4328130 * src_decimation/28636360 * 2^13 */
387 * The following relationships of half line counts should hold:
388 * 525 = prevsync + vblank656 + vactive
389 * 12 = vblank656 - vblank = vsync pulses + equalization pulses
391 * prevsync: 6 half-lines before the vsync pulses
392 * vblank656: half lines, after line 3/mid-266, of blanked video
393 * vblank: half lines, after line 9/272, of blanked video
394 * vactive: half lines of active video
396 * As far as I can tell:
397 * vblank656 starts counting from the falling edge of the first
398 * vsync pulse (start of line 4 or mid-266)
399 * vblank starts counting from the after the 6 vsync pulses and
400 * 6 or 5 equalization pulses (start of line 10 or 272)
402 * For 525 line systems the driver will extract VBI information
403 * from lines 10-21 and lines 273-284.
405 vblank656
= 38; /* lines 4 - 22 & 266 - 284 */
406 vblank
= 26; /* lines 10 - 22 & 272 - 284 */
407 vactive
= 481; /* lines 23 - 263 & 285 - 525 */
410 * For a 13.5 Mpps clock and 15,734.26 Hz line rate, a line is
411 * is 858 pixels = 720 active + 138 blanking. The Hsync leading
412 * edge should happen 1.2 us * 13.5 Mpps ~= 16 pixels after the
413 * end of active video, leaving 122 pixels of hblank to ignore
414 * before active video starts.
422 * Burst gate delay (for 525 line systems)
423 * Hsync leading edge to color burst rise = 5.3 us
424 * Color burst width = 2.5 us
425 * Gate width = 4 pixel clocks
426 * (5.3 us + 2.5/2 us) * 13.5 Mpps + 4/2 clocks = 90.425 clocks
428 if (std
== V4L2_STD_PAL_60
) {
432 /* sc = 4433618.75 * src_decimation/28636360 * 2^13 */
434 } else if (std
== V4L2_STD_PAL_M
) {
435 /* The 97 needs to be verified against PAL-M timings */
438 /* sc = 3575611.49 * src_decimation/28636360 * 2^13 */
443 /* sc = 3579545.45.. * src_decimation/28636360 * 2^13 */
448 /* DEBUG: Displays configured PLL frequency */
449 pll_int
= cx18_av_read(cx
, 0x108);
450 pll_frac
= cx18_av_read4(cx
, 0x10c) & 0x1ffffff;
451 pll_post
= cx18_av_read(cx
, 0x109);
452 CX18_DEBUG_INFO_DEV(sd
, "PLL regs = int: %u, frac: %u, post: %u\n",
453 pll_int
, pll_frac
, pll_post
);
459 pll
= (28636360L * ((((u64
)pll_int
) << 25) + pll_frac
)) >> 25;
461 CX18_DEBUG_INFO_DEV(sd
, "Video PLL = %d.%06d MHz\n",
462 pll
/ 1000000, pll
% 1000000);
463 CX18_DEBUG_INFO_DEV(sd
, "Pixel rate = %d.%06d Mpixel/sec\n",
464 pll
/ 8000000, (pll
/ 8) % 1000000);
466 CX18_DEBUG_INFO_DEV(sd
, "ADC XTAL/pixel clock decimation ratio = %d.%03d\n",
467 src_decimation
/ 256,
468 ((src_decimation
% 256) * 1000) / 256);
470 tmp
= 28636360 * (u64
) sc
;
471 do_div(tmp
, src_decimation
);
473 CX18_DEBUG_INFO_DEV(sd
,
474 "Chroma sub-carrier initial freq = %d.%06d MHz\n",
475 fsc
/ 1000000, fsc
% 1000000);
477 CX18_DEBUG_INFO_DEV(sd
,
478 "hblank %i, hactive %i, vblank %i, vactive %i, vblank656 %i, src_dec %i, burst 0x%02x, luma_lpf %i, uv_lpf %i, comb 0x%02x, sc 0x%06x\n",
479 hblank
, hactive
, vblank
, vactive
, vblank656
,
480 src_decimation
, burst
, luma_lpf
, uv_lpf
,
484 /* Sets horizontal blanking delay and active lines */
485 cx18_av_write(cx
, 0x470, hblank
);
486 cx18_av_write(cx
, 0x471,
487 (((hblank
>> 8) & 0x3) | (hactive
<< 4)) & 0xff);
488 cx18_av_write(cx
, 0x472, hactive
>> 4);
490 /* Sets burst gate delay */
491 cx18_av_write(cx
, 0x473, burst
);
493 /* Sets vertical blanking delay and active duration */
494 cx18_av_write(cx
, 0x474, vblank
);
495 cx18_av_write(cx
, 0x475,
496 (((vblank
>> 8) & 0x3) | (vactive
<< 4)) & 0xff);
497 cx18_av_write(cx
, 0x476, vactive
>> 4);
498 cx18_av_write(cx
, 0x477, vblank656
);
500 /* Sets src decimation rate */
501 cx18_av_write(cx
, 0x478, src_decimation
& 0xff);
502 cx18_av_write(cx
, 0x479, (src_decimation
>> 8) & 0xff);
504 /* Sets Luma and UV Low pass filters */
505 cx18_av_write(cx
, 0x47a, luma_lpf
<< 6 | ((uv_lpf
<< 4) & 0x30));
507 /* Enables comb filters */
508 cx18_av_write(cx
, 0x47b, comb
);
511 cx18_av_write(cx
, 0x47c, sc
);
512 cx18_av_write(cx
, 0x47d, (sc
>> 8) & 0xff);
513 cx18_av_write(cx
, 0x47e, (sc
>> 16) & 0xff);
515 if (std
& V4L2_STD_625_50
) {
516 state
->slicer_line_delay
= 1;
517 state
->slicer_line_offset
= (6 + state
->slicer_line_delay
- 2);
519 state
->slicer_line_delay
= 0;
520 state
->slicer_line_offset
= (10 + state
->slicer_line_delay
- 2);
522 cx18_av_write(cx
, 0x47f, state
->slicer_line_delay
);
525 static void input_change(struct cx18
*cx
)
527 struct cx18_av_state
*state
= &cx
->av_state
;
528 v4l2_std_id std
= state
->std
;
531 /* Follow step 8c and 8d of section 3.16 in the cx18_av datasheet */
532 cx18_av_write(cx
, 0x49f, (std
& V4L2_STD_NTSC
) ? 0x14 : 0x11);
533 cx18_av_and_or(cx
, 0x401, ~0x60, 0);
534 cx18_av_and_or(cx
, 0x401, ~0x60, 0x60);
536 if (std
& V4L2_STD_525_60
) {
537 if (std
== V4L2_STD_NTSC_M_JP
) {
538 /* Japan uses EIAJ audio standard */
539 cx18_av_write_expect(cx
, 0x808, 0xf7, 0xf7, 0xff);
540 cx18_av_write_expect(cx
, 0x80b, 0x02, 0x02, 0x3f);
541 } else if (std
== V4L2_STD_NTSC_M_KR
) {
542 /* South Korea uses A2 audio standard */
543 cx18_av_write_expect(cx
, 0x808, 0xf8, 0xf8, 0xff);
544 cx18_av_write_expect(cx
, 0x80b, 0x03, 0x03, 0x3f);
546 /* Others use the BTSC audio standard */
547 cx18_av_write_expect(cx
, 0x808, 0xf6, 0xf6, 0xff);
548 cx18_av_write_expect(cx
, 0x80b, 0x01, 0x01, 0x3f);
550 } else if (std
& V4L2_STD_PAL
) {
551 /* Follow tuner change procedure for PAL */
552 cx18_av_write_expect(cx
, 0x808, 0xff, 0xff, 0xff);
553 cx18_av_write_expect(cx
, 0x80b, 0x03, 0x03, 0x3f);
554 } else if (std
& V4L2_STD_SECAM
) {
555 /* Select autodetect for SECAM */
556 cx18_av_write_expect(cx
, 0x808, 0xff, 0xff, 0xff);
557 cx18_av_write_expect(cx
, 0x80b, 0x03, 0x03, 0x3f);
560 v
= cx18_av_read(cx
, 0x803);
562 /* restart audio decoder microcontroller */
564 cx18_av_write_expect(cx
, 0x803, v
, v
, 0x1f);
566 cx18_av_write_expect(cx
, 0x803, v
, v
, 0x1f);
570 static int cx18_av_s_frequency(struct v4l2_subdev
*sd
,
571 const struct v4l2_frequency
*freq
)
573 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
578 static int set_input(struct cx18
*cx
, enum cx18_av_video_input vid_input
,
579 enum cx18_av_audio_input aud_input
)
581 struct cx18_av_state
*state
= &cx
->av_state
;
582 struct v4l2_subdev
*sd
= &state
->sd
;
584 enum analog_signal_type
{
585 NONE
, CVBS
, Y
, C
, SIF
, Pb
, Pr
586 } ch
[3] = {NONE
, NONE
, NONE
};
594 CX18_DEBUG_INFO_DEV(sd
, "decoder set video input %d, audio input %d\n",
595 vid_input
, aud_input
);
597 if (vid_input
>= CX18_AV_COMPOSITE1
&&
598 vid_input
<= CX18_AV_COMPOSITE8
) {
599 afe_mux_cfg
= 0xf0 + (vid_input
- CX18_AV_COMPOSITE1
);
602 } else if (vid_input
>= CX18_AV_COMPONENT_LUMA1
) {
603 int luma
= vid_input
& 0xf000;
604 int r_chroma
= vid_input
& 0xf0000;
605 int b_chroma
= vid_input
& 0xf00000;
607 if ((vid_input
& ~0xfff000) ||
608 luma
< CX18_AV_COMPONENT_LUMA1
||
609 luma
> CX18_AV_COMPONENT_LUMA8
||
610 r_chroma
< CX18_AV_COMPONENT_R_CHROMA4
||
611 r_chroma
> CX18_AV_COMPONENT_R_CHROMA6
||
612 b_chroma
< CX18_AV_COMPONENT_B_CHROMA7
||
613 b_chroma
> CX18_AV_COMPONENT_B_CHROMA8
) {
614 CX18_ERR_DEV(sd
, "0x%06x is not a valid video input!\n",
618 afe_mux_cfg
= (luma
- CX18_AV_COMPONENT_LUMA1
) >> 12;
620 afe_mux_cfg
|= (r_chroma
- CX18_AV_COMPONENT_R_CHROMA4
) >> 12;
622 afe_mux_cfg
|= (b_chroma
- CX18_AV_COMPONENT_B_CHROMA7
) >> 14;
626 int luma
= vid_input
& 0xf0;
627 int chroma
= vid_input
& 0xf00;
629 if ((vid_input
& ~0xff0) ||
630 luma
< CX18_AV_SVIDEO_LUMA1
||
631 luma
> CX18_AV_SVIDEO_LUMA8
||
632 chroma
< CX18_AV_SVIDEO_CHROMA4
||
633 chroma
> CX18_AV_SVIDEO_CHROMA8
) {
634 CX18_ERR_DEV(sd
, "0x%06x is not a valid video input!\n",
638 afe_mux_cfg
= 0xf0 + ((luma
- CX18_AV_SVIDEO_LUMA1
) >> 4);
640 if (chroma
>= CX18_AV_SVIDEO_CHROMA7
) {
642 afe_mux_cfg
|= (chroma
- CX18_AV_SVIDEO_CHROMA7
) >> 2;
646 afe_mux_cfg
|= (chroma
- CX18_AV_SVIDEO_CHROMA4
) >> 4;
653 case CX18_AV_AUDIO_SERIAL1
:
654 case CX18_AV_AUDIO_SERIAL2
:
655 /* do nothing, use serial audio input */
658 afe_mux_cfg
&= ~0x30;
662 afe_mux_cfg
= (afe_mux_cfg
& ~0x30) | 0x10;
666 afe_mux_cfg
= (afe_mux_cfg
& ~0x30) | 0x20;
670 afe_mux_cfg
&= ~0xc0;
674 afe_mux_cfg
= (afe_mux_cfg
& ~0xc0) | 0x40;
679 CX18_ERR_DEV(sd
, "0x%04x is not a valid audio input!\n",
684 /* Set up analog front end multiplexers */
685 cx18_av_write_expect(cx
, 0x103, afe_mux_cfg
, afe_mux_cfg
, 0xf7);
686 /* Set INPUT_MODE to Composite, S-Video, or Component */
687 cx18_av_and_or(cx
, 0x401, ~0x6, input_mode
);
689 /* Set CH_SEL_ADC2 to 1 if input comes from CH3 */
690 adc2_cfg
= cx18_av_read(cx
, 0x102);
692 adc2_cfg
&= ~0x2; /* No sig on CH3, set ADC2 to CH2 for input */
694 adc2_cfg
|= 0x2; /* Signal on CH3, set ADC2 to CH3 for input */
696 /* Set DUAL_MODE_ADC2 to 1 if input comes from both CH2 and CH3 */
697 if (ch
[1] != NONE
&& ch
[2] != NONE
)
698 adc2_cfg
|= 0x4; /* Set dual mode */
700 adc2_cfg
&= ~0x4; /* Clear dual mode */
701 cx18_av_write_expect(cx
, 0x102, adc2_cfg
, adc2_cfg
, 0x17);
703 /* Configure the analog front end */
704 afe_cfg
= cx18_av_read4(cx
, CXADEC_AFE_CTRL
);
705 afe_cfg
&= 0xff000000;
706 afe_cfg
|= 0x00005000; /* CHROMA_IN, AUD_IN: ADC2; LUMA_IN: ADC1 */
707 if (ch
[1] != NONE
&& ch
[2] != NONE
)
708 afe_cfg
|= 0x00000030; /* half_bw_ch[2-3] since in dual mode */
710 for (i
= 0; i
< 3; i
++) {
714 /* CLAMP_SEL = Fixed to midcode clamp level */
715 afe_cfg
|= (0x00000200 << i
);
720 afe_cfg
|= 0x00002000; /* LUMA_IN_SEL: ADC2 */
725 /* CLAMP_SEL = Fixed to midcode clamp level */
726 afe_cfg
|= (0x00000200 << i
);
727 if (i
== 0 && ch
[i
] == C
)
728 afe_cfg
&= ~0x00001000; /* CHROMA_IN_SEL ADC1 */
732 * VGA_GAIN_SEL = Audio Decoder
733 * CLAMP_SEL = Fixed to midcode clamp level
735 afe_cfg
|= (0x00000240 << i
);
737 afe_cfg
&= ~0x00004000; /* AUD_IN_SEL ADC1 */
742 cx18_av_write4(cx
, CXADEC_AFE_CTRL
, afe_cfg
);
744 state
->vid_input
= vid_input
;
745 state
->aud_input
= aud_input
;
746 cx18_av_audio_set_path(cx
);
751 static int cx18_av_s_video_routing(struct v4l2_subdev
*sd
,
752 u32 input
, u32 output
, u32 config
)
754 struct cx18_av_state
*state
= to_cx18_av_state(sd
);
755 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
756 return set_input(cx
, input
, state
->aud_input
);
759 static int cx18_av_s_audio_routing(struct v4l2_subdev
*sd
,
760 u32 input
, u32 output
, u32 config
)
762 struct cx18_av_state
*state
= to_cx18_av_state(sd
);
763 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
764 return set_input(cx
, state
->vid_input
, input
);
767 static int cx18_av_g_tuner(struct v4l2_subdev
*sd
, struct v4l2_tuner
*vt
)
769 struct cx18_av_state
*state
= to_cx18_av_state(sd
);
770 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
778 vpres
= cx18_av_read(cx
, 0x40e) & 0x20;
779 vt
->signal
= vpres
? 0xffff : 0x0;
782 V4L2_TUNER_CAP_STEREO
| V4L2_TUNER_CAP_LANG1
|
783 V4L2_TUNER_CAP_LANG2
| V4L2_TUNER_CAP_SAP
;
785 mode
= cx18_av_read(cx
, 0x804);
787 /* get rxsubchans and audmode */
788 if ((mode
& 0xf) == 1)
789 val
|= V4L2_TUNER_SUB_STEREO
;
791 val
|= V4L2_TUNER_SUB_MONO
;
793 if (mode
== 2 || mode
== 4)
794 val
= V4L2_TUNER_SUB_LANG1
| V4L2_TUNER_SUB_LANG2
;
797 val
|= V4L2_TUNER_SUB_SAP
;
799 vt
->rxsubchans
= val
;
800 vt
->audmode
= state
->audmode
;
804 static int cx18_av_s_tuner(struct v4l2_subdev
*sd
, const struct v4l2_tuner
*vt
)
806 struct cx18_av_state
*state
= to_cx18_av_state(sd
);
807 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
813 v
= cx18_av_read(cx
, 0x809);
816 switch (vt
->audmode
) {
817 case V4L2_TUNER_MODE_MONO
:
820 bilingual -> lang1 */
822 case V4L2_TUNER_MODE_STEREO
:
823 case V4L2_TUNER_MODE_LANG1
:
826 bilingual -> lang1 */
829 case V4L2_TUNER_MODE_LANG1_LANG2
:
832 bilingual -> lang1/lang2 */
835 case V4L2_TUNER_MODE_LANG2
:
838 bilingual -> lang2 */
844 cx18_av_write_expect(cx
, 0x809, v
, v
, 0xff);
845 state
->audmode
= vt
->audmode
;
849 static int cx18_av_s_std(struct v4l2_subdev
*sd
, v4l2_std_id norm
)
851 struct cx18_av_state
*state
= to_cx18_av_state(sd
);
852 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
854 u8 fmt
= 0; /* zero is autodetect */
857 if (state
->radio
== 0 && state
->std
== norm
)
863 /* First tests should be against specific std */
864 if (state
->std
== V4L2_STD_NTSC_M_JP
) {
866 } else if (state
->std
== V4L2_STD_NTSC_443
) {
868 } else if (state
->std
== V4L2_STD_PAL_M
) {
871 } else if (state
->std
== V4L2_STD_PAL_N
) {
873 } else if (state
->std
== V4L2_STD_PAL_Nc
) {
875 } else if (state
->std
== V4L2_STD_PAL_60
) {
878 /* Then, test against generic ones */
879 if (state
->std
& V4L2_STD_NTSC
)
881 else if (state
->std
& V4L2_STD_PAL
)
883 else if (state
->std
& V4L2_STD_SECAM
)
887 CX18_DEBUG_INFO_DEV(sd
, "changing video std to fmt %i\n", fmt
);
889 /* Follow step 9 of section 3.16 in the cx18_av datasheet.
890 Without this PAL may display a vertical ghosting effect.
891 This happens for example with the Yuan MPC622. */
892 if (fmt
>= 4 && fmt
< 8) {
893 /* Set format to NTSC-M */
894 cx18_av_and_or(cx
, 0x400, ~0xf, 1);
896 cx18_av_and_or(cx
, 0x47b, ~6, 0);
898 cx18_av_and_or(cx
, 0x400, ~0x2f, fmt
| 0x20);
899 cx18_av_and_or(cx
, 0x403, ~0x3, pal_m
);
900 cx18_av_std_setup(cx
);
905 static int cx18_av_s_radio(struct v4l2_subdev
*sd
)
907 struct cx18_av_state
*state
= to_cx18_av_state(sd
);
912 static int cx18_av_s_ctrl(struct v4l2_ctrl
*ctrl
)
914 struct v4l2_subdev
*sd
= to_sd(ctrl
);
915 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
918 case V4L2_CID_BRIGHTNESS
:
919 cx18_av_write(cx
, 0x414, ctrl
->val
- 128);
922 case V4L2_CID_CONTRAST
:
923 cx18_av_write(cx
, 0x415, ctrl
->val
<< 1);
926 case V4L2_CID_SATURATION
:
927 cx18_av_write(cx
, 0x420, ctrl
->val
<< 1);
928 cx18_av_write(cx
, 0x421, ctrl
->val
<< 1);
932 cx18_av_write(cx
, 0x422, ctrl
->val
);
941 static int cx18_av_set_fmt(struct v4l2_subdev
*sd
,
942 struct v4l2_subdev_pad_config
*cfg
,
943 struct v4l2_subdev_format
*format
)
945 struct v4l2_mbus_framefmt
*fmt
= &format
->format
;
946 struct cx18_av_state
*state
= to_cx18_av_state(sd
);
947 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
948 int HSC
, VSC
, Vsrc
, Hsrc
, filter
, Vlines
;
949 int is_50Hz
= !(state
->std
& V4L2_STD_525_60
);
951 if (format
->pad
|| fmt
->code
!= MEDIA_BUS_FMT_FIXED
)
954 fmt
->field
= V4L2_FIELD_INTERLACED
;
955 fmt
->colorspace
= V4L2_COLORSPACE_SMPTE170M
;
957 Vsrc
= (cx18_av_read(cx
, 0x476) & 0x3f) << 4;
958 Vsrc
|= (cx18_av_read(cx
, 0x475) & 0xf0) >> 4;
960 Hsrc
= (cx18_av_read(cx
, 0x472) & 0x3f) << 4;
961 Hsrc
|= (cx18_av_read(cx
, 0x471) & 0xf0) >> 4;
964 * This adjustment reflects the excess of vactive, set in
965 * cx18_av_std_setup(), above standard values:
967 * 480 + 1 for 60 Hz systems
968 * 576 + 3 for 50 Hz systems
970 Vlines
= fmt
->height
+ (is_50Hz
? 3 : 1);
973 * Invalid height and width scaling requests are:
974 * 1. width less than 1/16 of the source width
975 * 2. width greater than the source width
976 * 3. height less than 1/8 of the source height
977 * 4. height greater than the source height
979 if ((fmt
->width
* 16 < Hsrc
) || (Hsrc
< fmt
->width
) ||
980 (Vlines
* 8 < Vsrc
) || (Vsrc
< Vlines
)) {
981 CX18_ERR_DEV(sd
, "%dx%d is not a valid size!\n",
982 fmt
->width
, fmt
->height
);
986 if (format
->which
== V4L2_SUBDEV_FORMAT_TRY
)
989 HSC
= (Hsrc
* (1 << 20)) / fmt
->width
- (1 << 20);
990 VSC
= (1 << 16) - (Vsrc
* (1 << 9) / Vlines
- (1 << 9));
993 if (fmt
->width
>= 385)
995 else if (fmt
->width
> 192)
997 else if (fmt
->width
> 96)
1002 CX18_DEBUG_INFO_DEV(sd
,
1003 "decoder set size %dx%d -> scale %ux%u\n",
1004 fmt
->width
, fmt
->height
, HSC
, VSC
);
1007 cx18_av_write(cx
, 0x418, HSC
& 0xff);
1008 cx18_av_write(cx
, 0x419, (HSC
>> 8) & 0xff);
1009 cx18_av_write(cx
, 0x41a, HSC
>> 16);
1011 cx18_av_write(cx
, 0x41c, VSC
& 0xff);
1012 cx18_av_write(cx
, 0x41d, VSC
>> 8);
1013 /* VS_INTRLACE=1 VFILT=filter */
1014 cx18_av_write(cx
, 0x41e, 0x8 | filter
);
1018 static int cx18_av_s_stream(struct v4l2_subdev
*sd
, int enable
)
1020 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
1022 CX18_DEBUG_INFO_DEV(sd
, "%s output\n", enable
? "enable" : "disable");
1024 cx18_av_write(cx
, 0x115, 0x8c);
1025 cx18_av_write(cx
, 0x116, 0x07);
1027 cx18_av_write(cx
, 0x115, 0x00);
1028 cx18_av_write(cx
, 0x116, 0x00);
1033 static void log_video_status(struct cx18
*cx
)
1035 static const char *const fmt_strs
[] = {
1037 "NTSC-M", "NTSC-J", "NTSC-4.43",
1038 "PAL-BDGHI", "PAL-M", "PAL-N", "PAL-Nc", "PAL-60",
1039 "0x9", "0xA", "0xB",
1044 struct cx18_av_state
*state
= &cx
->av_state
;
1045 struct v4l2_subdev
*sd
= &state
->sd
;
1046 u8 vidfmt_sel
= cx18_av_read(cx
, 0x400) & 0xf;
1047 u8 gen_stat1
= cx18_av_read(cx
, 0x40d);
1048 u8 gen_stat2
= cx18_av_read(cx
, 0x40e);
1049 int vid_input
= state
->vid_input
;
1051 CX18_INFO_DEV(sd
, "Video signal: %spresent\n",
1052 (gen_stat2
& 0x20) ? "" : "not ");
1053 CX18_INFO_DEV(sd
, "Detected format: %s\n",
1054 fmt_strs
[gen_stat1
& 0xf]);
1056 CX18_INFO_DEV(sd
, "Specified standard: %s\n",
1057 vidfmt_sel
? fmt_strs
[vidfmt_sel
]
1058 : "automatic detection");
1060 if (vid_input
>= CX18_AV_COMPOSITE1
&&
1061 vid_input
<= CX18_AV_COMPOSITE8
) {
1062 CX18_INFO_DEV(sd
, "Specified video input: Composite %d\n",
1063 vid_input
- CX18_AV_COMPOSITE1
+ 1);
1065 CX18_INFO_DEV(sd
, "Specified video input: S-Video (Luma In%d, Chroma In%d)\n",
1066 (vid_input
& 0xf0) >> 4,
1067 (vid_input
& 0xf00) >> 8);
1070 CX18_INFO_DEV(sd
, "Specified audioclock freq: %d Hz\n",
1071 state
->audclk_freq
);
1074 static void log_audio_status(struct cx18
*cx
)
1076 struct cx18_av_state
*state
= &cx
->av_state
;
1077 struct v4l2_subdev
*sd
= &state
->sd
;
1078 u8 download_ctl
= cx18_av_read(cx
, 0x803);
1079 u8 mod_det_stat0
= cx18_av_read(cx
, 0x804);
1080 u8 mod_det_stat1
= cx18_av_read(cx
, 0x805);
1081 u8 audio_config
= cx18_av_read(cx
, 0x808);
1082 u8 pref_mode
= cx18_av_read(cx
, 0x809);
1083 u8 afc0
= cx18_av_read(cx
, 0x80b);
1084 u8 mute_ctl
= cx18_av_read(cx
, 0x8d3);
1085 int aud_input
= state
->aud_input
;
1088 switch (mod_det_stat0
) {
1089 case 0x00: p
= "mono"; break;
1090 case 0x01: p
= "stereo"; break;
1091 case 0x02: p
= "dual"; break;
1092 case 0x04: p
= "tri"; break;
1093 case 0x10: p
= "mono with SAP"; break;
1094 case 0x11: p
= "stereo with SAP"; break;
1095 case 0x12: p
= "dual with SAP"; break;
1096 case 0x14: p
= "tri with SAP"; break;
1097 case 0xfe: p
= "forced mode"; break;
1098 default: p
= "not defined"; break;
1100 CX18_INFO_DEV(sd
, "Detected audio mode: %s\n", p
);
1102 switch (mod_det_stat1
) {
1103 case 0x00: p
= "not defined"; break;
1104 case 0x01: p
= "EIAJ"; break;
1105 case 0x02: p
= "A2-M"; break;
1106 case 0x03: p
= "A2-BG"; break;
1107 case 0x04: p
= "A2-DK1"; break;
1108 case 0x05: p
= "A2-DK2"; break;
1109 case 0x06: p
= "A2-DK3"; break;
1110 case 0x07: p
= "A1 (6.0 MHz FM Mono)"; break;
1111 case 0x08: p
= "AM-L"; break;
1112 case 0x09: p
= "NICAM-BG"; break;
1113 case 0x0a: p
= "NICAM-DK"; break;
1114 case 0x0b: p
= "NICAM-I"; break;
1115 case 0x0c: p
= "NICAM-L"; break;
1116 case 0x0d: p
= "BTSC/EIAJ/A2-M Mono (4.5 MHz FMMono)"; break;
1117 case 0x0e: p
= "IF FM Radio"; break;
1118 case 0x0f: p
= "BTSC"; break;
1119 case 0x10: p
= "detected chrominance"; break;
1120 case 0xfd: p
= "unknown audio standard"; break;
1121 case 0xfe: p
= "forced audio standard"; break;
1122 case 0xff: p
= "no detected audio standard"; break;
1123 default: p
= "not defined"; break;
1125 CX18_INFO_DEV(sd
, "Detected audio standard: %s\n", p
);
1126 CX18_INFO_DEV(sd
, "Audio muted: %s\n",
1127 (mute_ctl
& 0x2) ? "yes" : "no");
1128 CX18_INFO_DEV(sd
, "Audio microcontroller: %s\n",
1129 (download_ctl
& 0x10) ? "running" : "stopped");
1131 switch (audio_config
>> 4) {
1132 case 0x00: p
= "undefined"; break;
1133 case 0x01: p
= "BTSC"; break;
1134 case 0x02: p
= "EIAJ"; break;
1135 case 0x03: p
= "A2-M"; break;
1136 case 0x04: p
= "A2-BG"; break;
1137 case 0x05: p
= "A2-DK1"; break;
1138 case 0x06: p
= "A2-DK2"; break;
1139 case 0x07: p
= "A2-DK3"; break;
1140 case 0x08: p
= "A1 (6.0 MHz FM Mono)"; break;
1141 case 0x09: p
= "AM-L"; break;
1142 case 0x0a: p
= "NICAM-BG"; break;
1143 case 0x0b: p
= "NICAM-DK"; break;
1144 case 0x0c: p
= "NICAM-I"; break;
1145 case 0x0d: p
= "NICAM-L"; break;
1146 case 0x0e: p
= "FM radio"; break;
1147 case 0x0f: p
= "automatic detection"; break;
1148 default: p
= "undefined"; break;
1150 CX18_INFO_DEV(sd
, "Configured audio standard: %s\n", p
);
1152 if ((audio_config
>> 4) < 0xF) {
1153 switch (audio_config
& 0xF) {
1154 case 0x00: p
= "MONO1 (LANGUAGE A/Mono L+R channel for BTSC, EIAJ, A2)"; break;
1155 case 0x01: p
= "MONO2 (LANGUAGE B)"; break;
1156 case 0x02: p
= "MONO3 (STEREO forced MONO)"; break;
1157 case 0x03: p
= "MONO4 (NICAM ANALOG-Language C/Analog Fallback)"; break;
1158 case 0x04: p
= "STEREO"; break;
1159 case 0x05: p
= "DUAL1 (AC)"; break;
1160 case 0x06: p
= "DUAL2 (BC)"; break;
1161 case 0x07: p
= "DUAL3 (AB)"; break;
1162 default: p
= "undefined";
1164 CX18_INFO_DEV(sd
, "Configured audio mode: %s\n", p
);
1166 switch (audio_config
& 0xF) {
1167 case 0x00: p
= "BG"; break;
1168 case 0x01: p
= "DK1"; break;
1169 case 0x02: p
= "DK2"; break;
1170 case 0x03: p
= "DK3"; break;
1171 case 0x04: p
= "I"; break;
1172 case 0x05: p
= "L"; break;
1173 case 0x06: p
= "BTSC"; break;
1174 case 0x07: p
= "EIAJ"; break;
1175 case 0x08: p
= "A2-M"; break;
1176 case 0x09: p
= "FM Radio (4.5 MHz)"; break;
1177 case 0x0a: p
= "FM Radio (5.5 MHz)"; break;
1178 case 0x0b: p
= "S-Video"; break;
1179 case 0x0f: p
= "automatic standard and mode detection"; break;
1180 default: p
= "undefined"; break;
1182 CX18_INFO_DEV(sd
, "Configured audio system: %s\n", p
);
1186 CX18_INFO_DEV(sd
, "Specified audio input: Tuner (In%d)\n",
1189 CX18_INFO_DEV(sd
, "Specified audio input: External\n");
1191 switch (pref_mode
& 0xf) {
1192 case 0: p
= "mono/language A"; break;
1193 case 1: p
= "language B"; break;
1194 case 2: p
= "language C"; break;
1195 case 3: p
= "analog fallback"; break;
1196 case 4: p
= "stereo"; break;
1197 case 5: p
= "language AC"; break;
1198 case 6: p
= "language BC"; break;
1199 case 7: p
= "language AB"; break;
1200 default: p
= "undefined"; break;
1202 CX18_INFO_DEV(sd
, "Preferred audio mode: %s\n", p
);
1204 if ((audio_config
& 0xf) == 0xf) {
1205 switch ((afc0
>> 3) & 0x1) {
1206 case 0: p
= "system DK"; break;
1207 case 1: p
= "system L"; break;
1209 CX18_INFO_DEV(sd
, "Selected 65 MHz format: %s\n", p
);
1211 switch (afc0
& 0x7) {
1212 case 0: p
= "Chroma"; break;
1213 case 1: p
= "BTSC"; break;
1214 case 2: p
= "EIAJ"; break;
1215 case 3: p
= "A2-M"; break;
1216 case 4: p
= "autodetect"; break;
1217 default: p
= "undefined"; break;
1219 CX18_INFO_DEV(sd
, "Selected 45 MHz format: %s\n", p
);
1223 static int cx18_av_log_status(struct v4l2_subdev
*sd
)
1225 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
1226 log_video_status(cx
);
1227 log_audio_status(cx
);
1231 #ifdef CONFIG_VIDEO_ADV_DEBUG
1232 static int cx18_av_g_register(struct v4l2_subdev
*sd
,
1233 struct v4l2_dbg_register
*reg
)
1235 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
1237 if ((reg
->reg
& 0x3) != 0)
1240 reg
->val
= cx18_av_read4(cx
, reg
->reg
& 0x00000ffc);
1244 static int cx18_av_s_register(struct v4l2_subdev
*sd
,
1245 const struct v4l2_dbg_register
*reg
)
1247 struct cx18
*cx
= v4l2_get_subdevdata(sd
);
1249 if ((reg
->reg
& 0x3) != 0)
1251 cx18_av_write4(cx
, reg
->reg
& 0x00000ffc, reg
->val
);
1256 static const struct v4l2_ctrl_ops cx18_av_ctrl_ops
= {
1257 .s_ctrl
= cx18_av_s_ctrl
,
1260 static const struct v4l2_subdev_core_ops cx18_av_general_ops
= {
1261 .log_status
= cx18_av_log_status
,
1262 .load_fw
= cx18_av_load_fw
,
1263 .reset
= cx18_av_reset
,
1264 #ifdef CONFIG_VIDEO_ADV_DEBUG
1265 .g_register
= cx18_av_g_register
,
1266 .s_register
= cx18_av_s_register
,
1270 static const struct v4l2_subdev_tuner_ops cx18_av_tuner_ops
= {
1271 .s_radio
= cx18_av_s_radio
,
1272 .s_frequency
= cx18_av_s_frequency
,
1273 .g_tuner
= cx18_av_g_tuner
,
1274 .s_tuner
= cx18_av_s_tuner
,
1277 static const struct v4l2_subdev_audio_ops cx18_av_audio_ops
= {
1278 .s_clock_freq
= cx18_av_s_clock_freq
,
1279 .s_routing
= cx18_av_s_audio_routing
,
1282 static const struct v4l2_subdev_video_ops cx18_av_video_ops
= {
1283 .s_std
= cx18_av_s_std
,
1284 .s_routing
= cx18_av_s_video_routing
,
1285 .s_stream
= cx18_av_s_stream
,
1288 static const struct v4l2_subdev_vbi_ops cx18_av_vbi_ops
= {
1289 .decode_vbi_line
= cx18_av_decode_vbi_line
,
1290 .g_sliced_fmt
= cx18_av_g_sliced_fmt
,
1291 .s_sliced_fmt
= cx18_av_s_sliced_fmt
,
1292 .s_raw_fmt
= cx18_av_s_raw_fmt
,
1295 static const struct v4l2_subdev_pad_ops cx18_av_pad_ops
= {
1296 .set_fmt
= cx18_av_set_fmt
,
1299 static const struct v4l2_subdev_ops cx18_av_ops
= {
1300 .core
= &cx18_av_general_ops
,
1301 .tuner
= &cx18_av_tuner_ops
,
1302 .audio
= &cx18_av_audio_ops
,
1303 .video
= &cx18_av_video_ops
,
1304 .vbi
= &cx18_av_vbi_ops
,
1305 .pad
= &cx18_av_pad_ops
,
1308 int cx18_av_probe(struct cx18
*cx
)
1310 struct cx18_av_state
*state
= &cx
->av_state
;
1311 struct v4l2_subdev
*sd
;
1314 state
->rev
= cx18_av_read4(cx
, CXADEC_CHIP_CTRL
) & 0xffff;
1316 state
->vid_input
= CX18_AV_COMPOSITE7
;
1317 state
->aud_input
= CX18_AV_AUDIO8
;
1318 state
->audclk_freq
= 48000;
1319 state
->audmode
= V4L2_TUNER_MODE_LANG1
;
1320 state
->slicer_line_delay
= 0;
1321 state
->slicer_line_offset
= (10 + state
->slicer_line_delay
- 2);
1324 v4l2_subdev_init(sd
, &cx18_av_ops
);
1325 v4l2_set_subdevdata(sd
, cx
);
1326 snprintf(sd
->name
, sizeof(sd
->name
),
1327 "%s %03x", cx
->v4l2_dev
.name
, (state
->rev
>> 4));
1328 sd
->grp_id
= CX18_HW_418_AV
;
1329 v4l2_ctrl_handler_init(&state
->hdl
, 9);
1330 v4l2_ctrl_new_std(&state
->hdl
, &cx18_av_ctrl_ops
,
1331 V4L2_CID_BRIGHTNESS
, 0, 255, 1, 128);
1332 v4l2_ctrl_new_std(&state
->hdl
, &cx18_av_ctrl_ops
,
1333 V4L2_CID_CONTRAST
, 0, 127, 1, 64);
1334 v4l2_ctrl_new_std(&state
->hdl
, &cx18_av_ctrl_ops
,
1335 V4L2_CID_SATURATION
, 0, 127, 1, 64);
1336 v4l2_ctrl_new_std(&state
->hdl
, &cx18_av_ctrl_ops
,
1337 V4L2_CID_HUE
, -128, 127, 1, 0);
1339 state
->volume
= v4l2_ctrl_new_std(&state
->hdl
,
1340 &cx18_av_audio_ctrl_ops
, V4L2_CID_AUDIO_VOLUME
,
1341 0, 65535, 65535 / 100, 0);
1342 v4l2_ctrl_new_std(&state
->hdl
,
1343 &cx18_av_audio_ctrl_ops
, V4L2_CID_AUDIO_MUTE
,
1345 v4l2_ctrl_new_std(&state
->hdl
, &cx18_av_audio_ctrl_ops
,
1346 V4L2_CID_AUDIO_BALANCE
,
1347 0, 65535, 65535 / 100, 32768);
1348 v4l2_ctrl_new_std(&state
->hdl
, &cx18_av_audio_ctrl_ops
,
1349 V4L2_CID_AUDIO_BASS
,
1350 0, 65535, 65535 / 100, 32768);
1351 v4l2_ctrl_new_std(&state
->hdl
, &cx18_av_audio_ctrl_ops
,
1352 V4L2_CID_AUDIO_TREBLE
,
1353 0, 65535, 65535 / 100, 32768);
1354 sd
->ctrl_handler
= &state
->hdl
;
1355 if (state
->hdl
.error
) {
1356 int err
= state
->hdl
.error
;
1358 v4l2_ctrl_handler_free(&state
->hdl
);
1361 err
= v4l2_device_register_subdev(&cx
->v4l2_dev
, sd
);
1363 v4l2_ctrl_handler_free(&state
->hdl
);