1 /* cx25840 - Conexant CX25840 audio/video decoder driver
3 * Copyright (C) 2004 Ulf Eklund
5 * Based on the saa7115 driver and on the first verison of Chris Kennedy's
8 * Changes by Tyler Trafford <tatrafford@comcast.net>
9 * - cleanup/rewrite for V4L2 API (2005)
11 * VBI support by Hans Verkuil <hverkuil@xs4all.nl>.
13 * NTSC sliced VBI support by Christopher Neufeld <television@cneufeld.ca>
14 * with additional fixes by Hans Verkuil <hverkuil@xs4all.nl>.
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version 2
19 * of the License, or (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
32 #include <linux/kernel.h>
33 #include <linux/module.h>
34 #include <linux/slab.h>
35 #include <linux/videodev2.h>
36 #include <linux/i2c.h>
37 #include <linux/delay.h>
38 #include <media/v4l2-common.h>
39 #include <media/v4l2-chip-ident.h>
40 #include <media/cx25840.h>
42 #include "cx25840-core.h"
44 MODULE_DESCRIPTION("Conexant CX25840 audio/video decoder driver");
45 MODULE_AUTHOR("Ulf Eklund, Chris Kennedy, Hans Verkuil, Tyler Trafford");
46 MODULE_LICENSE("GPL");
48 static unsigned short normal_i2c[] = { 0x88 >> 1, I2C_CLIENT_END };
53 module_param_named(debug,cx25840_debug, int, 0644);
55 MODULE_PARM_DESC(debug, "Debugging messages [0=Off (default) 1=On]");
59 /* ----------------------------------------------------------------------- */
61 int cx25840_write(struct i2c_client *client, u16 addr, u8 value)
64 buffer[0] = addr >> 8;
65 buffer[1] = addr & 0xff;
67 return i2c_master_send(client, buffer, 3);
70 int cx25840_write4(struct i2c_client *client, u16 addr, u32 value)
73 buffer[0] = addr >> 8;
74 buffer[1] = addr & 0xff;
75 buffer[2] = value >> 24;
76 buffer[3] = (value >> 16) & 0xff;
77 buffer[4] = (value >> 8) & 0xff;
78 buffer[5] = value & 0xff;
79 return i2c_master_send(client, buffer, 6);
82 u8 cx25840_read(struct i2c_client * client, u16 addr)
85 buffer[0] = addr >> 8;
86 buffer[1] = addr & 0xff;
88 if (i2c_master_send(client, buffer, 2) < 2)
91 if (i2c_master_recv(client, buffer, 1) < 1)
97 u32 cx25840_read4(struct i2c_client * client, u16 addr)
100 buffer[0] = addr >> 8;
101 buffer[1] = addr & 0xff;
103 if (i2c_master_send(client, buffer, 2) < 2)
106 if (i2c_master_recv(client, buffer, 4) < 4)
109 return (buffer[3] << 24) | (buffer[2] << 16) |
110 (buffer[1] << 8) | buffer[0];
113 int cx25840_and_or(struct i2c_client *client, u16 addr, unsigned and_mask,
116 return cx25840_write(client, addr,
117 (cx25840_read(client, addr) & and_mask) |
121 /* ----------------------------------------------------------------------- */
123 static int set_input(struct i2c_client *client, enum cx25840_video_input vid_input,
124 enum cx25840_audio_input aud_input);
125 static void log_audio_status(struct i2c_client *client);
126 static void log_video_status(struct i2c_client *client);
128 /* ----------------------------------------------------------------------- */
130 static void init_dll1(struct i2c_client *client)
132 /* This is the Hauppauge sequence used to
133 * initialize the Delay Lock Loop 1 (ADC DLL). */
134 cx25840_write(client, 0x159, 0x23);
135 cx25840_write(client, 0x15a, 0x87);
136 cx25840_write(client, 0x15b, 0x06);
138 cx25840_write(client, 0x159, 0xe1);
140 cx25840_write(client, 0x15a, 0x86);
141 cx25840_write(client, 0x159, 0xe0);
142 cx25840_write(client, 0x159, 0xe1);
143 cx25840_write(client, 0x15b, 0x10);
146 static void init_dll2(struct i2c_client *client)
148 /* This is the Hauppauge sequence used to
149 * initialize the Delay Lock Loop 2 (ADC DLL). */
150 cx25840_write(client, 0x15d, 0xe3);
151 cx25840_write(client, 0x15e, 0x86);
152 cx25840_write(client, 0x15f, 0x06);
154 cx25840_write(client, 0x15d, 0xe1);
155 cx25840_write(client, 0x15d, 0xe0);
156 cx25840_write(client, 0x15d, 0xe1);
159 static void cx25836_initialize(struct i2c_client *client)
161 /* reset configuration is described on page 3-77 of the CX25836 datasheet */
163 cx25840_and_or(client, 0x000, ~0x01, 0x01);
164 cx25840_and_or(client, 0x000, ~0x01, 0x00);
166 cx25840_and_or(client, 0x15a, ~0x70, 0x00);
168 cx25840_and_or(client, 0x15b, ~0x1e, 0x06);
170 cx25840_and_or(client, 0x159, ~0x02, 0x02);
174 cx25840_and_or(client, 0x159, ~0x02, 0x00);
176 cx25840_and_or(client, 0x159, ~0xc0, 0xc0);
178 cx25840_and_or(client, 0x159, ~0x01, 0x00);
179 cx25840_and_or(client, 0x159, ~0x01, 0x01);
181 cx25840_and_or(client, 0x15b, ~0x1e, 0x10);
184 static void cx25840_work_handler(struct work_struct *work)
186 struct cx25840_state *state = container_of(work, struct cx25840_state, fw_work);
187 cx25840_loadfw(state->c);
188 wake_up(&state->fw_wait);
191 static void cx25840_initialize(struct i2c_client *client)
194 struct cx25840_state *state = i2c_get_clientdata(client);
195 struct workqueue_struct *q;
197 /* datasheet startup in numbered steps, refer to page 3-77 */
199 cx25840_and_or(client, 0x803, ~0x10, 0x00);
200 /* The default of this register should be 4, but I get 0 instead.
201 * Set this register to 4 manually. */
202 cx25840_write(client, 0x000, 0x04);
206 cx25840_write(client, 0x136, 0x0a);
208 cx25840_write(client, 0x13c, 0x01);
209 cx25840_write(client, 0x13c, 0x00);
211 /* Do the firmware load in a work handler to prevent.
212 Otherwise the kernel is blocked waiting for the
213 bit-banging i2c interface to finish uploading the
215 INIT_WORK(&state->fw_work, cx25840_work_handler);
216 init_waitqueue_head(&state->fw_wait);
217 q = create_singlethread_workqueue("cx25840_fw");
218 prepare_to_wait(&state->fw_wait, &wait, TASK_UNINTERRUPTIBLE);
219 queue_work(q, &state->fw_work);
221 finish_wait(&state->fw_wait, &wait);
222 destroy_workqueue(q);
225 cx25840_write(client, 0x115, 0x8c);
226 cx25840_write(client, 0x116, 0x07);
227 cx25840_write(client, 0x118, 0x02);
229 cx25840_write(client, 0x4a5, 0x80);
230 cx25840_write(client, 0x4a5, 0x00);
231 cx25840_write(client, 0x402, 0x00);
233 cx25840_and_or(client, 0x401, ~0x18, 0);
234 cx25840_and_or(client, 0x4a2, ~0x10, 0x10);
235 /* steps 8c and 8d are done in change_input() */
237 cx25840_write(client, 0x8d3, 0x1f);
238 cx25840_write(client, 0x8e3, 0x03);
240 cx25840_vbi_setup(client);
242 /* trial and error says these are needed to get audio */
243 cx25840_write(client, 0x914, 0xa0);
244 cx25840_write(client, 0x918, 0xa0);
245 cx25840_write(client, 0x919, 0x01);
247 /* stereo prefered */
248 cx25840_write(client, 0x809, 0x04);
250 cx25840_write(client, 0x8cf, 0x0f);
253 set_input(client, state->vid_input, state->aud_input);
255 /* start microcontroller */
256 cx25840_and_or(client, 0x803, ~0x10, 0x10);
259 /* ----------------------------------------------------------------------- */
261 static void input_change(struct i2c_client *client)
263 struct cx25840_state *state = i2c_get_clientdata(client);
264 v4l2_std_id std = cx25840_get_v4lstd(client);
266 /* Follow step 8c and 8d of section 3.16 in the cx25840 datasheet */
267 if (std & V4L2_STD_SECAM) {
268 cx25840_write(client, 0x402, 0);
271 cx25840_write(client, 0x402, 0x04);
272 cx25840_write(client, 0x49f, (std & V4L2_STD_NTSC) ? 0x14 : 0x11);
274 cx25840_and_or(client, 0x401, ~0x60, 0);
275 cx25840_and_or(client, 0x401, ~0x60, 0x60);
276 cx25840_and_or(client, 0x810, ~0x01, 1);
279 cx25840_write(client, 0x808, 0xf9);
280 cx25840_write(client, 0x80b, 0x00);
282 else if (std & V4L2_STD_525_60) {
283 /* Certain Hauppauge PVR150 models have a hardware bug
284 that causes audio to drop out. For these models the
285 audio standard must be set explicitly.
286 To be precise: it affects cards with tuner models
287 85, 99 and 112 (model numbers from tveeprom). */
288 int hw_fix = state->pvr150_workaround;
290 if (std == V4L2_STD_NTSC_M_JP) {
291 /* Japan uses EIAJ audio standard */
292 cx25840_write(client, 0x808, hw_fix ? 0x2f : 0xf7);
293 } else if (std == V4L2_STD_NTSC_M_KR) {
294 /* South Korea uses A2 audio standard */
295 cx25840_write(client, 0x808, hw_fix ? 0x3f : 0xf8);
297 /* Others use the BTSC audio standard */
298 cx25840_write(client, 0x808, hw_fix ? 0x1f : 0xf6);
300 cx25840_write(client, 0x80b, 0x00);
301 } else if (std & V4L2_STD_PAL) {
302 /* Follow tuner change procedure for PAL */
303 cx25840_write(client, 0x808, 0xff);
304 cx25840_write(client, 0x80b, 0x10);
305 } else if (std & V4L2_STD_SECAM) {
306 /* Select autodetect for SECAM */
307 cx25840_write(client, 0x808, 0xff);
308 cx25840_write(client, 0x80b, 0x10);
311 cx25840_and_or(client, 0x810, ~0x01, 0);
314 static int set_input(struct i2c_client *client, enum cx25840_video_input vid_input,
315 enum cx25840_audio_input aud_input)
317 struct cx25840_state *state = i2c_get_clientdata(client);
318 u8 is_composite = (vid_input >= CX25840_COMPOSITE1 &&
319 vid_input <= CX25840_COMPOSITE8);
322 v4l_dbg(1, cx25840_debug, client, "decoder set video input %d, audio input %d\n",
323 vid_input, aud_input);
326 reg = 0xf0 + (vid_input - CX25840_COMPOSITE1);
328 int luma = vid_input & 0xf0;
329 int chroma = vid_input & 0xf00;
331 if ((vid_input & ~0xff0) ||
332 luma < CX25840_SVIDEO_LUMA1 || luma > CX25840_SVIDEO_LUMA4 ||
333 chroma < CX25840_SVIDEO_CHROMA4 || chroma > CX25840_SVIDEO_CHROMA8) {
334 v4l_err(client, "0x%04x is not a valid video input!\n", vid_input);
337 reg = 0xf0 + ((luma - CX25840_SVIDEO_LUMA1) >> 4);
338 if (chroma >= CX25840_SVIDEO_CHROMA7) {
340 reg |= (chroma - CX25840_SVIDEO_CHROMA7) >> 2;
343 reg |= (chroma - CX25840_SVIDEO_CHROMA4) >> 4;
348 case CX25840_AUDIO_SERIAL:
349 /* do nothing, use serial audio input */
351 case CX25840_AUDIO4: reg &= ~0x30; break;
352 case CX25840_AUDIO5: reg &= ~0x30; reg |= 0x10; break;
353 case CX25840_AUDIO6: reg &= ~0x30; reg |= 0x20; break;
354 case CX25840_AUDIO7: reg &= ~0xc0; break;
355 case CX25840_AUDIO8: reg &= ~0xc0; reg |= 0x40; break;
358 v4l_err(client, "0x%04x is not a valid audio input!\n", aud_input);
362 cx25840_write(client, 0x103, reg);
363 /* Set INPUT_MODE to Composite (0) or S-Video (1) */
364 cx25840_and_or(client, 0x401, ~0x6, is_composite ? 0 : 0x02);
365 /* Set CH_SEL_ADC2 to 1 if input comes from CH3 */
366 cx25840_and_or(client, 0x102, ~0x2, (reg & 0x80) == 0 ? 2 : 0);
367 /* Set DUAL_MODE_ADC2 to 1 if input comes from both CH2 and CH3 */
368 if ((reg & 0xc0) != 0xc0 && (reg & 0x30) != 0x30)
369 cx25840_and_or(client, 0x102, ~0x4, 4);
371 cx25840_and_or(client, 0x102, ~0x4, 0);
373 state->vid_input = vid_input;
374 state->aud_input = aud_input;
375 if (!state->is_cx25836) {
376 cx25840_audio_set_path(client);
377 input_change(client);
382 /* ----------------------------------------------------------------------- */
384 static int set_v4lstd(struct i2c_client *client, v4l2_std_id std)
386 u8 fmt=0; /* zero is autodetect */
388 /* First tests should be against specific std */
389 if (std == V4L2_STD_NTSC_M_JP) {
391 } else if (std == V4L2_STD_NTSC_443) {
393 } else if (std == V4L2_STD_PAL_M) {
395 } else if (std == V4L2_STD_PAL_N) {
397 } else if (std == V4L2_STD_PAL_Nc) {
399 } else if (std == V4L2_STD_PAL_60) {
402 /* Then, test against generic ones */
403 if (std & V4L2_STD_NTSC) {
405 } else if (std & V4L2_STD_PAL) {
407 } else if (std & V4L2_STD_SECAM) {
412 v4l_dbg(1, cx25840_debug, client, "changing video std to fmt %i\n",fmt);
414 /* Follow step 9 of section 3.16 in the cx25840 datasheet.
415 Without this PAL may display a vertical ghosting effect.
416 This happens for example with the Yuan MPC622. */
417 if (fmt >= 4 && fmt < 8) {
418 /* Set format to NTSC-M */
419 cx25840_and_or(client, 0x400, ~0xf, 1);
421 cx25840_and_or(client, 0x47b, ~6, 0);
423 cx25840_and_or(client, 0x400, ~0xf, fmt);
424 cx25840_vbi_setup(client);
428 v4l2_std_id cx25840_get_v4lstd(struct i2c_client * client)
430 struct cx25840_state *state = i2c_get_clientdata(client);
431 /* check VID_FMT_SEL first */
432 u8 fmt = cx25840_read(client, 0x400) & 0xf;
435 /* check AFD_FMT_STAT if set to autodetect */
436 fmt = cx25840_read(client, 0x40d) & 0xf;
442 /* if the audio std is A2-M, then this is the South Korean
444 if (!state->is_cx25836 && cx25840_read(client, 0x805) == 2)
445 return V4L2_STD_NTSC_M_KR;
446 return V4L2_STD_NTSC_M;
448 case 0x2: return V4L2_STD_NTSC_M_JP;
449 case 0x3: return V4L2_STD_NTSC_443;
450 case 0x4: return V4L2_STD_PAL;
451 case 0x5: return V4L2_STD_PAL_M;
452 case 0x6: return V4L2_STD_PAL_N;
453 case 0x7: return V4L2_STD_PAL_Nc;
454 case 0x8: return V4L2_STD_PAL_60;
455 case 0xc: return V4L2_STD_SECAM;
456 default: return V4L2_STD_UNKNOWN;
460 /* ----------------------------------------------------------------------- */
462 static int set_v4lctrl(struct i2c_client *client, struct v4l2_control *ctrl)
464 struct cx25840_state *state = i2c_get_clientdata(client);
467 case CX25840_CID_ENABLE_PVR150_WORKAROUND:
468 state->pvr150_workaround = ctrl->value;
469 set_input(client, state->vid_input, state->aud_input);
472 case V4L2_CID_BRIGHTNESS:
473 if (ctrl->value < 0 || ctrl->value > 255) {
474 v4l_err(client, "invalid brightness setting %d\n",
479 cx25840_write(client, 0x414, ctrl->value - 128);
482 case V4L2_CID_CONTRAST:
483 if (ctrl->value < 0 || ctrl->value > 127) {
484 v4l_err(client, "invalid contrast setting %d\n",
489 cx25840_write(client, 0x415, ctrl->value << 1);
492 case V4L2_CID_SATURATION:
493 if (ctrl->value < 0 || ctrl->value > 127) {
494 v4l_err(client, "invalid saturation setting %d\n",
499 cx25840_write(client, 0x420, ctrl->value << 1);
500 cx25840_write(client, 0x421, ctrl->value << 1);
504 if (ctrl->value < -127 || ctrl->value > 127) {
505 v4l_err(client, "invalid hue setting %d\n", ctrl->value);
509 cx25840_write(client, 0x422, ctrl->value);
512 case V4L2_CID_AUDIO_VOLUME:
513 case V4L2_CID_AUDIO_BASS:
514 case V4L2_CID_AUDIO_TREBLE:
515 case V4L2_CID_AUDIO_BALANCE:
516 case V4L2_CID_AUDIO_MUTE:
517 if (state->is_cx25836)
519 return cx25840_audio(client, VIDIOC_S_CTRL, ctrl);
528 static int get_v4lctrl(struct i2c_client *client, struct v4l2_control *ctrl)
530 struct cx25840_state *state = i2c_get_clientdata(client);
533 case CX25840_CID_ENABLE_PVR150_WORKAROUND:
534 ctrl->value = state->pvr150_workaround;
536 case V4L2_CID_BRIGHTNESS:
537 ctrl->value = (s8)cx25840_read(client, 0x414) + 128;
539 case V4L2_CID_CONTRAST:
540 ctrl->value = cx25840_read(client, 0x415) >> 1;
542 case V4L2_CID_SATURATION:
543 ctrl->value = cx25840_read(client, 0x420) >> 1;
546 ctrl->value = (s8)cx25840_read(client, 0x422);
548 case V4L2_CID_AUDIO_VOLUME:
549 case V4L2_CID_AUDIO_BASS:
550 case V4L2_CID_AUDIO_TREBLE:
551 case V4L2_CID_AUDIO_BALANCE:
552 case V4L2_CID_AUDIO_MUTE:
553 if (state->is_cx25836)
555 return cx25840_audio(client, VIDIOC_G_CTRL, ctrl);
563 /* ----------------------------------------------------------------------- */
565 static int get_v4lfmt(struct i2c_client *client, struct v4l2_format *fmt)
568 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
569 return cx25840_vbi(client, VIDIOC_G_FMT, fmt);
577 static int set_v4lfmt(struct i2c_client *client, struct v4l2_format *fmt)
579 struct v4l2_pix_format *pix;
580 int HSC, VSC, Vsrc, Hsrc, filter, Vlines;
581 int is_50Hz = !(cx25840_get_v4lstd(client) & V4L2_STD_525_60);
584 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
585 pix = &(fmt->fmt.pix);
587 Vsrc = (cx25840_read(client, 0x476) & 0x3f) << 4;
588 Vsrc |= (cx25840_read(client, 0x475) & 0xf0) >> 4;
590 Hsrc = (cx25840_read(client, 0x472) & 0x3f) << 4;
591 Hsrc |= (cx25840_read(client, 0x471) & 0xf0) >> 4;
593 Vlines = pix->height + (is_50Hz ? 4 : 7);
595 if ((pix->width * 16 < Hsrc) || (Hsrc < pix->width) ||
596 (Vlines * 8 < Vsrc) || (Vsrc < Vlines)) {
597 v4l_err(client, "%dx%d is not a valid size!\n",
598 pix->width, pix->height);
602 HSC = (Hsrc * (1 << 20)) / pix->width - (1 << 20);
603 VSC = (1 << 16) - (Vsrc * (1 << 9) / Vlines - (1 << 9));
606 if (pix->width >= 385)
608 else if (pix->width > 192)
610 else if (pix->width > 96)
615 v4l_dbg(1, cx25840_debug, client, "decoder set size %dx%d -> scale %ux%u\n",
616 pix->width, pix->height, HSC, VSC);
619 cx25840_write(client, 0x418, HSC & 0xff);
620 cx25840_write(client, 0x419, (HSC >> 8) & 0xff);
621 cx25840_write(client, 0x41a, HSC >> 16);
623 cx25840_write(client, 0x41c, VSC & 0xff);
624 cx25840_write(client, 0x41d, VSC >> 8);
625 /* VS_INTRLACE=1 VFILT=filter */
626 cx25840_write(client, 0x41e, 0x8 | filter);
629 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
630 return cx25840_vbi(client, VIDIOC_S_FMT, fmt);
632 case V4L2_BUF_TYPE_VBI_CAPTURE:
633 return cx25840_vbi(client, VIDIOC_S_FMT, fmt);
642 /* ----------------------------------------------------------------------- */
644 static int cx25840_command(struct i2c_client *client, unsigned int cmd,
647 struct cx25840_state *state = i2c_get_clientdata(client);
648 struct v4l2_tuner *vt = arg;
649 struct v4l2_routing *route = arg;
651 /* ignore these commands */
653 case TUNER_SET_TYPE_ADDR:
657 if (!state->is_initialized) {
658 v4l_dbg(1, cx25840_debug, client, "cmd %08x triggered fw load\n", cmd);
659 /* initialize on first use */
660 state->is_initialized = 1;
661 if (state->is_cx25836)
662 cx25836_initialize(client);
664 cx25840_initialize(client);
668 #ifdef CONFIG_VIDEO_ADV_DEBUG
669 /* ioctls to allow direct access to the
670 * cx25840 registers for testing */
671 case VIDIOC_DBG_G_REGISTER:
672 case VIDIOC_DBG_S_REGISTER:
674 struct v4l2_register *reg = arg;
676 if (!v4l2_chip_match_i2c_client(client, reg->match_type, reg->match_chip))
678 if (!capable(CAP_SYS_ADMIN))
680 if (cmd == VIDIOC_DBG_G_REGISTER)
681 reg->val = cx25840_read(client, reg->reg & 0x0fff);
683 cx25840_write(client, reg->reg & 0x0fff, reg->val & 0xff);
688 case VIDIOC_INT_DECODE_VBI_LINE:
689 return cx25840_vbi(client, cmd, arg);
691 case VIDIOC_INT_AUDIO_CLOCK_FREQ:
692 return cx25840_audio(client, cmd, arg);
694 case VIDIOC_STREAMON:
695 v4l_dbg(1, cx25840_debug, client, "enable output\n");
696 cx25840_write(client, 0x115, state->is_cx25836 ? 0x0c : 0x8c);
697 cx25840_write(client, 0x116, state->is_cx25836 ? 0x04 : 0x07);
700 case VIDIOC_STREAMOFF:
701 v4l_dbg(1, cx25840_debug, client, "disable output\n");
702 cx25840_write(client, 0x115, 0x00);
703 cx25840_write(client, 0x116, 0x00);
706 case VIDIOC_LOG_STATUS:
707 log_video_status(client);
708 if (!state->is_cx25836)
709 log_audio_status(client);
713 return get_v4lctrl(client, (struct v4l2_control *)arg);
716 return set_v4lctrl(client, (struct v4l2_control *)arg);
718 case VIDIOC_QUERYCTRL:
720 struct v4l2_queryctrl *qc = arg;
723 case V4L2_CID_BRIGHTNESS:
724 case V4L2_CID_CONTRAST:
725 case V4L2_CID_SATURATION:
727 return v4l2_ctrl_query_fill_std(qc);
731 if (state->is_cx25836)
735 case V4L2_CID_AUDIO_VOLUME:
736 case V4L2_CID_AUDIO_MUTE:
737 case V4L2_CID_AUDIO_BALANCE:
738 case V4L2_CID_AUDIO_BASS:
739 case V4L2_CID_AUDIO_TREBLE:
740 return v4l2_ctrl_query_fill_std(qc);
748 *(v4l2_std_id *)arg = cx25840_get_v4lstd(client);
753 return set_v4lstd(client, *(v4l2_std_id *)arg);
759 case VIDIOC_INT_G_VIDEO_ROUTING:
760 route->input = state->vid_input;
764 case VIDIOC_INT_S_VIDEO_ROUTING:
765 return set_input(client, route->input, state->aud_input);
767 case VIDIOC_INT_G_AUDIO_ROUTING:
768 if (state->is_cx25836)
770 route->input = state->aud_input;
774 case VIDIOC_INT_S_AUDIO_ROUTING:
775 if (state->is_cx25836)
777 return set_input(client, state->vid_input, route->input);
779 case VIDIOC_S_FREQUENCY:
780 if (!state->is_cx25836) {
781 input_change(client);
787 u8 vpres = cx25840_read(client, 0x40e) & 0x20;
794 vt->signal = vpres ? 0xffff : 0x0;
795 if (state->is_cx25836)
799 V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_LANG1 |
800 V4L2_TUNER_CAP_LANG2 | V4L2_TUNER_CAP_SAP;
802 mode = cx25840_read(client, 0x804);
804 /* get rxsubchans and audmode */
805 if ((mode & 0xf) == 1)
806 val |= V4L2_TUNER_SUB_STEREO;
808 val |= V4L2_TUNER_SUB_MONO;
810 if (mode == 2 || mode == 4)
811 val = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
814 val |= V4L2_TUNER_SUB_SAP;
816 vt->rxsubchans = val;
817 vt->audmode = state->audmode;
822 if (state->radio || state->is_cx25836)
825 switch (vt->audmode) {
826 case V4L2_TUNER_MODE_MONO:
829 bilingual -> lang1 */
830 cx25840_and_or(client, 0x809, ~0xf, 0x00);
832 case V4L2_TUNER_MODE_STEREO:
833 case V4L2_TUNER_MODE_LANG1:
836 bilingual -> lang1 */
837 cx25840_and_or(client, 0x809, ~0xf, 0x04);
839 case V4L2_TUNER_MODE_LANG1_LANG2:
842 bilingual -> lang1/lang2 */
843 cx25840_and_or(client, 0x809, ~0xf, 0x07);
845 case V4L2_TUNER_MODE_LANG2:
848 bilingual -> lang2 */
849 cx25840_and_or(client, 0x809, ~0xf, 0x01);
854 state->audmode = vt->audmode;
858 return get_v4lfmt(client, (struct v4l2_format *)arg);
861 return set_v4lfmt(client, (struct v4l2_format *)arg);
863 case VIDIOC_INT_RESET:
864 if (state->is_cx25836)
865 cx25836_initialize(client);
867 cx25840_initialize(client);
870 case VIDIOC_G_CHIP_IDENT:
871 return v4l2_chip_ident_i2c_client(client, arg, state->id, state->rev);
880 /* ----------------------------------------------------------------------- */
882 static struct i2c_driver i2c_driver_cx25840;
884 static int cx25840_detect_client(struct i2c_adapter *adapter, int address,
887 struct i2c_client *client;
888 struct cx25840_state *state;
892 /* Check if the adapter supports the needed features
893 * Not until kernel version 2.6.11 did the bit-algo
894 * correctly report that it would do an I2C-level xfer */
895 if (!i2c_check_functionality(adapter, I2C_FUNC_I2C))
898 client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
902 client->addr = address;
903 client->adapter = adapter;
904 client->driver = &i2c_driver_cx25840;
905 snprintf(client->name, sizeof(client->name) - 1, "cx25840");
907 v4l_dbg(1, cx25840_debug, client, "detecting cx25840 client on address 0x%x\n", client->addr << 1);
909 device_id = cx25840_read(client, 0x101) << 8;
910 device_id |= cx25840_read(client, 0x100);
912 /* The high byte of the device ID should be
913 * 0x83 for the cx2583x and 0x84 for the cx2584x */
914 if ((device_id & 0xff00) == 0x8300) {
915 id = V4L2_IDENT_CX25836 + ((device_id >> 4) & 0xf) - 6;
917 else if ((device_id & 0xff00) == 0x8400) {
918 id = V4L2_IDENT_CX25840 + ((device_id >> 4) & 0xf);
921 v4l_dbg(1, cx25840_debug, client, "cx25840 not found\n");
926 state = kzalloc(sizeof(struct cx25840_state), GFP_KERNEL);
932 /* Note: revision '(device_id & 0x0f) == 2' was never built. The
933 marking skips from 0x1 == 22 to 0x3 == 23. */
934 v4l_info(client, "cx25%3x-2%x found @ 0x%x (%s)\n",
935 (device_id & 0xfff0) >> 4,
936 (device_id & 0x0f) < 3 ? (device_id & 0x0f) + 1 : (device_id & 0x0f),
937 client->addr << 1, client->adapter->name);
939 i2c_set_clientdata(client, state);
941 state->is_cx25836 = ((device_id & 0xff00) == 0x8300);
942 state->vid_input = CX25840_COMPOSITE7;
943 state->aud_input = CX25840_AUDIO8;
944 state->audclk_freq = 48000;
945 state->pvr150_workaround = 0;
946 state->audmode = V4L2_TUNER_MODE_LANG1;
947 state->unmute_volume = -1;
948 state->vbi_line_offset = 8;
950 state->rev = device_id;
952 i2c_attach_client(client);
957 static int cx25840_attach_adapter(struct i2c_adapter *adapter)
959 if (adapter->class & I2C_CLASS_TV_ANALOG)
960 return i2c_probe(adapter, &addr_data, &cx25840_detect_client);
964 static int cx25840_detach_client(struct i2c_client *client)
966 struct cx25840_state *state = i2c_get_clientdata(client);
969 err = i2c_detach_client(client);
980 /* ----------------------------------------------------------------------- */
982 static struct i2c_driver i2c_driver_cx25840 = {
986 .id = I2C_DRIVERID_CX25840,
987 .attach_adapter = cx25840_attach_adapter,
988 .detach_client = cx25840_detach_client,
989 .command = cx25840_command,
993 static int __init m__init(void)
995 return i2c_add_driver(&i2c_driver_cx25840);
998 static void __exit m__exit(void)
1000 i2c_del_driver(&i2c_driver_cx25840);
1003 module_init(m__init);
1004 module_exit(m__exit);
1006 /* ----------------------------------------------------------------------- */
1008 static void log_video_status(struct i2c_client *client)
1010 static const char *const fmt_strs[] = {
1012 "NTSC-M", "NTSC-J", "NTSC-4.43",
1013 "PAL-BDGHI", "PAL-M", "PAL-N", "PAL-Nc", "PAL-60",
1014 "0x9", "0xA", "0xB",
1019 struct cx25840_state *state = i2c_get_clientdata(client);
1020 u8 vidfmt_sel = cx25840_read(client, 0x400) & 0xf;
1021 u8 gen_stat1 = cx25840_read(client, 0x40d);
1022 u8 gen_stat2 = cx25840_read(client, 0x40e);
1023 int vid_input = state->vid_input;
1025 v4l_info(client, "Video signal: %spresent\n",
1026 (gen_stat2 & 0x20) ? "" : "not ");
1027 v4l_info(client, "Detected format: %s\n",
1028 fmt_strs[gen_stat1 & 0xf]);
1030 v4l_info(client, "Specified standard: %s\n",
1031 vidfmt_sel ? fmt_strs[vidfmt_sel] : "automatic detection");
1033 if (vid_input >= CX25840_COMPOSITE1 &&
1034 vid_input <= CX25840_COMPOSITE8) {
1035 v4l_info(client, "Specified video input: Composite %d\n",
1036 vid_input - CX25840_COMPOSITE1 + 1);
1038 v4l_info(client, "Specified video input: S-Video (Luma In%d, Chroma In%d)\n",
1039 (vid_input & 0xf0) >> 4, (vid_input & 0xf00) >> 8);
1042 v4l_info(client, "Specified audioclock freq: %d Hz\n", state->audclk_freq);
1045 /* ----------------------------------------------------------------------- */
1047 static void log_audio_status(struct i2c_client *client)
1049 struct cx25840_state *state = i2c_get_clientdata(client);
1050 u8 download_ctl = cx25840_read(client, 0x803);
1051 u8 mod_det_stat0 = cx25840_read(client, 0x804);
1052 u8 mod_det_stat1 = cx25840_read(client, 0x805);
1053 u8 audio_config = cx25840_read(client, 0x808);
1054 u8 pref_mode = cx25840_read(client, 0x809);
1055 u8 afc0 = cx25840_read(client, 0x80b);
1056 u8 mute_ctl = cx25840_read(client, 0x8d3);
1057 int aud_input = state->aud_input;
1060 switch (mod_det_stat0) {
1061 case 0x00: p = "mono"; break;
1062 case 0x01: p = "stereo"; break;
1063 case 0x02: p = "dual"; break;
1064 case 0x04: p = "tri"; break;
1065 case 0x10: p = "mono with SAP"; break;
1066 case 0x11: p = "stereo with SAP"; break;
1067 case 0x12: p = "dual with SAP"; break;
1068 case 0x14: p = "tri with SAP"; break;
1069 case 0xfe: p = "forced mode"; break;
1070 default: p = "not defined";
1072 v4l_info(client, "Detected audio mode: %s\n", p);
1074 switch (mod_det_stat1) {
1075 case 0x00: p = "not defined"; break;
1076 case 0x01: p = "EIAJ"; break;
1077 case 0x02: p = "A2-M"; break;
1078 case 0x03: p = "A2-BG"; break;
1079 case 0x04: p = "A2-DK1"; break;
1080 case 0x05: p = "A2-DK2"; break;
1081 case 0x06: p = "A2-DK3"; break;
1082 case 0x07: p = "A1 (6.0 MHz FM Mono)"; break;
1083 case 0x08: p = "AM-L"; break;
1084 case 0x09: p = "NICAM-BG"; break;
1085 case 0x0a: p = "NICAM-DK"; break;
1086 case 0x0b: p = "NICAM-I"; break;
1087 case 0x0c: p = "NICAM-L"; break;
1088 case 0x0d: p = "BTSC/EIAJ/A2-M Mono (4.5 MHz FMMono)"; break;
1089 case 0x0e: p = "IF FM Radio"; break;
1090 case 0x0f: p = "BTSC"; break;
1091 case 0x10: p = "high-deviation FM"; break;
1092 case 0x11: p = "very high-deviation FM"; break;
1093 case 0xfd: p = "unknown audio standard"; break;
1094 case 0xfe: p = "forced audio standard"; break;
1095 case 0xff: p = "no detected audio standard"; break;
1096 default: p = "not defined";
1098 v4l_info(client, "Detected audio standard: %s\n", p);
1099 v4l_info(client, "Audio muted: %s\n",
1100 (state->unmute_volume >= 0) ? "yes" : "no");
1101 v4l_info(client, "Audio microcontroller: %s\n",
1102 (download_ctl & 0x10) ?
1103 ((mute_ctl & 0x2) ? "detecting" : "running") : "stopped");
1105 switch (audio_config >> 4) {
1106 case 0x00: p = "undefined"; break;
1107 case 0x01: p = "BTSC"; break;
1108 case 0x02: p = "EIAJ"; break;
1109 case 0x03: p = "A2-M"; break;
1110 case 0x04: p = "A2-BG"; break;
1111 case 0x05: p = "A2-DK1"; break;
1112 case 0x06: p = "A2-DK2"; break;
1113 case 0x07: p = "A2-DK3"; break;
1114 case 0x08: p = "A1 (6.0 MHz FM Mono)"; break;
1115 case 0x09: p = "AM-L"; break;
1116 case 0x0a: p = "NICAM-BG"; break;
1117 case 0x0b: p = "NICAM-DK"; break;
1118 case 0x0c: p = "NICAM-I"; break;
1119 case 0x0d: p = "NICAM-L"; break;
1120 case 0x0e: p = "FM radio"; break;
1121 case 0x0f: p = "automatic detection"; break;
1122 default: p = "undefined";
1124 v4l_info(client, "Configured audio standard: %s\n", p);
1126 if ((audio_config >> 4) < 0xF) {
1127 switch (audio_config & 0xF) {
1128 case 0x00: p = "MONO1 (LANGUAGE A/Mono L+R channel for BTSC, EIAJ, A2)"; break;
1129 case 0x01: p = "MONO2 (LANGUAGE B)"; break;
1130 case 0x02: p = "MONO3 (STEREO forced MONO)"; break;
1131 case 0x03: p = "MONO4 (NICAM ANALOG-Language C/Analog Fallback)"; break;
1132 case 0x04: p = "STEREO"; break;
1133 case 0x05: p = "DUAL1 (AB)"; break;
1134 case 0x06: p = "DUAL2 (AC) (FM)"; break;
1135 case 0x07: p = "DUAL3 (BC) (FM)"; break;
1136 case 0x08: p = "DUAL4 (AC) (AM)"; break;
1137 case 0x09: p = "DUAL5 (BC) (AM)"; break;
1138 case 0x0a: p = "SAP"; break;
1139 default: p = "undefined";
1141 v4l_info(client, "Configured audio mode: %s\n", p);
1143 switch (audio_config & 0xF) {
1144 case 0x00: p = "BG"; break;
1145 case 0x01: p = "DK1"; break;
1146 case 0x02: p = "DK2"; break;
1147 case 0x03: p = "DK3"; break;
1148 case 0x04: p = "I"; break;
1149 case 0x05: p = "L"; break;
1150 case 0x06: p = "BTSC"; break;
1151 case 0x07: p = "EIAJ"; break;
1152 case 0x08: p = "A2-M"; break;
1153 case 0x09: p = "FM Radio"; break;
1154 case 0x0f: p = "automatic standard and mode detection"; break;
1155 default: p = "undefined";
1157 v4l_info(client, "Configured audio system: %s\n", p);
1161 v4l_info(client, "Specified audio input: Tuner (In%d)\n", aud_input);
1163 v4l_info(client, "Specified audio input: External\n");
1166 switch (pref_mode & 0xf) {
1167 case 0: p = "mono/language A"; break;
1168 case 1: p = "language B"; break;
1169 case 2: p = "language C"; break;
1170 case 3: p = "analog fallback"; break;
1171 case 4: p = "stereo"; break;
1172 case 5: p = "language AC"; break;
1173 case 6: p = "language BC"; break;
1174 case 7: p = "language AB"; break;
1175 default: p = "undefined";
1177 v4l_info(client, "Preferred audio mode: %s\n", p);
1179 if ((audio_config & 0xf) == 0xf) {
1180 switch ((afc0 >> 3) & 0x3) {
1181 case 0: p = "system DK"; break;
1182 case 1: p = "system L"; break;
1183 case 2: p = "autodetect"; break;
1184 default: p = "undefined";
1186 v4l_info(client, "Selected 65 MHz format: %s\n", p);
1188 switch (afc0 & 0x7) {
1189 case 0: p = "chroma"; break;
1190 case 1: p = "BTSC"; break;
1191 case 2: p = "EIAJ"; break;
1192 case 3: p = "A2-M"; break;
1193 case 4: p = "autodetect"; break;
1194 default: p = "undefined";
1196 v4l_info(client, "Selected 45 MHz format: %s\n", p);