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 <media/v4l2-common.h>
38 #include <media/cx25840.h>
40 #include "cx25840-core.h"
42 MODULE_DESCRIPTION("Conexant CX25840 audio/video decoder driver");
43 MODULE_AUTHOR("Ulf Eklund, Chris Kennedy, Hans Verkuil, Tyler Trafford");
44 MODULE_LICENSE("GPL");
46 static unsigned short normal_i2c[] = { 0x88 >> 1, I2C_CLIENT_END };
51 module_param_named(debug,cx25840_debug, int, 0644);
53 MODULE_PARM_DESC(debug, "Debugging messages [0=Off (default) 1=On]");
57 /* ----------------------------------------------------------------------- */
59 int cx25840_write(struct i2c_client *client, u16 addr, u8 value)
62 buffer[0] = addr >> 8;
63 buffer[1] = addr & 0xff;
65 return i2c_master_send(client, buffer, 3);
68 int cx25840_write4(struct i2c_client *client, u16 addr, u32 value)
71 buffer[0] = addr >> 8;
72 buffer[1] = addr & 0xff;
73 buffer[2] = value >> 24;
74 buffer[3] = (value >> 16) & 0xff;
75 buffer[4] = (value >> 8) & 0xff;
76 buffer[5] = value & 0xff;
77 return i2c_master_send(client, buffer, 6);
80 u8 cx25840_read(struct i2c_client * client, u16 addr)
83 buffer[0] = addr >> 8;
84 buffer[1] = addr & 0xff;
86 if (i2c_master_send(client, buffer, 2) < 2)
89 if (i2c_master_recv(client, buffer, 1) < 1)
95 u32 cx25840_read4(struct i2c_client * client, u16 addr)
98 buffer[0] = addr >> 8;
99 buffer[1] = addr & 0xff;
101 if (i2c_master_send(client, buffer, 2) < 2)
104 if (i2c_master_recv(client, buffer, 4) < 4)
107 return (buffer[3] << 24) | (buffer[2] << 16) |
108 (buffer[1] << 8) | buffer[0];
111 int cx25840_and_or(struct i2c_client *client, u16 addr, unsigned and_mask,
114 return cx25840_write(client, addr,
115 (cx25840_read(client, addr) & and_mask) |
119 /* ----------------------------------------------------------------------- */
121 static int set_input(struct i2c_client *client, enum cx25840_video_input vid_input,
122 enum cx25840_audio_input aud_input);
123 static void log_audio_status(struct i2c_client *client);
124 static void log_video_status(struct i2c_client *client);
126 /* ----------------------------------------------------------------------- */
128 static void init_dll1(struct i2c_client *client)
130 /* This is the Hauppauge sequence used to
131 * initialize the Delay Lock Loop 1 (ADC DLL). */
132 cx25840_write(client, 0x159, 0x23);
133 cx25840_write(client, 0x15a, 0x87);
134 cx25840_write(client, 0x15b, 0x06);
135 cx25840_write(client, 0x159, 0xe1);
136 cx25840_write(client, 0x15a, 0x86);
137 cx25840_write(client, 0x159, 0xe0);
138 cx25840_write(client, 0x159, 0xe1);
139 cx25840_write(client, 0x15b, 0x10);
142 static void init_dll2(struct i2c_client *client)
144 /* This is the Hauppauge sequence used to
145 * initialize the Delay Lock Loop 2 (ADC DLL). */
146 cx25840_write(client, 0x15d, 0xe3);
147 cx25840_write(client, 0x15e, 0x86);
148 cx25840_write(client, 0x15f, 0x06);
149 cx25840_write(client, 0x15d, 0xe1);
150 cx25840_write(client, 0x15d, 0xe0);
151 cx25840_write(client, 0x15d, 0xe1);
154 static void cx25836_initialize(struct i2c_client *client)
156 /* reset configuration is described on page 3-77 of the CX25836 datasheet */
158 cx25840_and_or(client, 0x000, ~0x01, 0x01);
159 cx25840_and_or(client, 0x000, ~0x01, 0x00);
161 cx25840_and_or(client, 0x15a, ~0x70, 0x00);
163 cx25840_and_or(client, 0x15b, ~0x1e, 0x06);
165 cx25840_and_or(client, 0x159, ~0x02, 0x02);
167 /* There should be a 10-us delay here, but since the
168 i2c bus already has a 10-us delay we don't need to do
171 cx25840_and_or(client, 0x159, ~0x02, 0x00);
173 cx25840_and_or(client, 0x159, ~0xc0, 0xc0);
175 cx25840_and_or(client, 0x159, ~0x01, 0x00);
176 cx25840_and_or(client, 0x159, ~0x01, 0x01);
178 cx25840_and_or(client, 0x15b, ~0x1e, 0x10);
181 static void cx25840_initialize(struct i2c_client *client, int loadfw)
183 struct cx25840_state *state = i2c_get_clientdata(client);
185 /* datasheet startup in numbered steps, refer to page 3-77 */
187 cx25840_and_or(client, 0x803, ~0x10, 0x00);
188 /* The default of this register should be 4, but I get 0 instead.
189 * Set this register to 4 manually. */
190 cx25840_write(client, 0x000, 0x04);
194 cx25840_write(client, 0x136, 0x0a);
196 cx25840_write(client, 0x13c, 0x01);
197 cx25840_write(client, 0x13c, 0x00);
200 cx25840_loadfw(client);
202 cx25840_write(client, 0x115, 0x8c);
203 cx25840_write(client, 0x116, 0x07);
204 cx25840_write(client, 0x118, 0x02);
206 cx25840_write(client, 0x4a5, 0x80);
207 cx25840_write(client, 0x4a5, 0x00);
208 cx25840_write(client, 0x402, 0x00);
210 cx25840_and_or(client, 0x401, ~0x18, 0);
211 cx25840_and_or(client, 0x4a2, ~0x10, 0x10);
212 /* steps 8c and 8d are done in change_input() */
214 cx25840_write(client, 0x8d3, 0x1f);
215 cx25840_write(client, 0x8e3, 0x03);
217 cx25840_vbi_setup(client);
219 /* trial and error says these are needed to get audio */
220 cx25840_write(client, 0x914, 0xa0);
221 cx25840_write(client, 0x918, 0xa0);
222 cx25840_write(client, 0x919, 0x01);
224 /* stereo prefered */
225 cx25840_write(client, 0x809, 0x04);
227 cx25840_write(client, 0x8cf, 0x0f);
230 set_input(client, state->vid_input, state->aud_input);
232 /* start microcontroller */
233 cx25840_and_or(client, 0x803, ~0x10, 0x10);
236 /* ----------------------------------------------------------------------- */
238 static void input_change(struct i2c_client *client)
240 struct cx25840_state *state = i2c_get_clientdata(client);
241 v4l2_std_id std = cx25840_get_v4lstd(client);
243 /* Follow step 8c and 8d of section 3.16 in the cx25840 datasheet */
244 if (std & V4L2_STD_SECAM) {
245 cx25840_write(client, 0x402, 0);
248 cx25840_write(client, 0x402, 0x04);
249 cx25840_write(client, 0x49f, (std & V4L2_STD_NTSC) ? 0x14 : 0x11);
251 cx25840_and_or(client, 0x401, ~0x60, 0);
252 cx25840_and_or(client, 0x401, ~0x60, 0x60);
254 if (std & V4L2_STD_525_60) {
255 /* Certain Hauppauge PVR150 models have a hardware bug
256 that causes audio to drop out. For these models the
257 audio standard must be set explicitly.
258 To be precise: it affects cards with tuner models
259 85, 99 and 112 (model numbers from tveeprom). */
260 int hw_fix = state->pvr150_workaround;
262 if (std == V4L2_STD_NTSC_M_JP) {
263 /* Japan uses EIAJ audio standard */
264 cx25840_write(client, 0x808, hw_fix ? 0x2f : 0xf7);
265 } else if (std == V4L2_STD_NTSC_M_KR) {
266 /* South Korea uses A2 audio standard */
267 cx25840_write(client, 0x808, hw_fix ? 0x3f : 0xf8);
269 /* Others use the BTSC audio standard */
270 cx25840_write(client, 0x808, hw_fix ? 0x1f : 0xf6);
272 cx25840_write(client, 0x80b, 0x00);
273 } else if (std & V4L2_STD_PAL) {
274 /* Follow tuner change procedure for PAL */
275 cx25840_write(client, 0x808, 0xff);
276 cx25840_write(client, 0x80b, 0x10);
277 } else if (std & V4L2_STD_SECAM) {
278 /* Select autodetect for SECAM */
279 cx25840_write(client, 0x808, 0xff);
280 cx25840_write(client, 0x80b, 0x10);
283 if (cx25840_read(client, 0x803) & 0x10) {
284 /* restart audio decoder microcontroller */
285 cx25840_and_or(client, 0x803, ~0x10, 0x00);
286 cx25840_and_or(client, 0x803, ~0x10, 0x10);
290 static int set_input(struct i2c_client *client, enum cx25840_video_input vid_input,
291 enum cx25840_audio_input aud_input)
293 struct cx25840_state *state = i2c_get_clientdata(client);
294 u8 is_composite = (vid_input >= CX25840_COMPOSITE1 &&
295 vid_input <= CX25840_COMPOSITE8);
298 v4l_dbg(1, cx25840_debug, client, "decoder set video input %d, audio input %d\n",
299 vid_input, aud_input);
302 reg = 0xf0 + (vid_input - CX25840_COMPOSITE1);
304 int luma = vid_input & 0xf0;
305 int chroma = vid_input & 0xf00;
307 if ((vid_input & ~0xff0) ||
308 luma < CX25840_SVIDEO_LUMA1 || luma > CX25840_SVIDEO_LUMA4 ||
309 chroma < CX25840_SVIDEO_CHROMA4 || chroma > CX25840_SVIDEO_CHROMA8) {
310 v4l_err(client, "0x%04x is not a valid video input!\n", vid_input);
313 reg = 0xf0 + ((luma - CX25840_SVIDEO_LUMA1) >> 4);
314 if (chroma >= CX25840_SVIDEO_CHROMA7) {
316 reg |= (chroma - CX25840_SVIDEO_CHROMA7) >> 2;
319 reg |= (chroma - CX25840_SVIDEO_CHROMA4) >> 4;
324 case CX25840_AUDIO_SERIAL:
325 /* do nothing, use serial audio input */
327 case CX25840_AUDIO4: reg &= ~0x30; break;
328 case CX25840_AUDIO5: reg &= ~0x30; reg |= 0x10; break;
329 case CX25840_AUDIO6: reg &= ~0x30; reg |= 0x20; break;
330 case CX25840_AUDIO7: reg &= ~0xc0; break;
331 case CX25840_AUDIO8: reg &= ~0xc0; reg |= 0x40; break;
334 v4l_err(client, "0x%04x is not a valid audio input!\n", aud_input);
338 cx25840_write(client, 0x103, reg);
339 /* Set INPUT_MODE to Composite (0) or S-Video (1) */
340 cx25840_and_or(client, 0x401, ~0x6, is_composite ? 0 : 0x02);
341 /* Set CH_SEL_ADC2 to 1 if input comes from CH3 */
342 cx25840_and_or(client, 0x102, ~0x2, (reg & 0x80) == 0 ? 2 : 0);
343 /* Set DUAL_MODE_ADC2 to 1 if input comes from both CH2 and CH3 */
344 if ((reg & 0xc0) != 0xc0 && (reg & 0x30) != 0x30)
345 cx25840_and_or(client, 0x102, ~0x4, 4);
347 cx25840_and_or(client, 0x102, ~0x4, 0);
349 state->vid_input = vid_input;
350 state->aud_input = aud_input;
351 if (!state->is_cx25836) {
352 cx25840_audio_set_path(client);
353 input_change(client);
358 /* ----------------------------------------------------------------------- */
360 static int set_v4lstd(struct i2c_client *client, v4l2_std_id std)
362 u8 fmt=0; /* zero is autodetect */
364 /* First tests should be against specific std */
365 if (std == V4L2_STD_NTSC_M_JP) {
367 } else if (std == V4L2_STD_NTSC_443) {
369 } else if (std == V4L2_STD_PAL_M) {
371 } else if (std == V4L2_STD_PAL_N) {
373 } else if (std == V4L2_STD_PAL_Nc) {
375 } else if (std == V4L2_STD_PAL_60) {
378 /* Then, test against generic ones */
379 if (std & V4L2_STD_NTSC) {
381 } else if (std & V4L2_STD_PAL) {
383 } else if (std & V4L2_STD_SECAM) {
388 v4l_dbg(1, cx25840_debug, client, "changing video std to fmt %i\n",fmt);
390 /* Follow step 9 of section 3.16 in the cx25840 datasheet.
391 Without this PAL may display a vertical ghosting effect.
392 This happens for example with the Yuan MPC622. */
393 if (fmt >= 4 && fmt < 8) {
394 /* Set format to NTSC-M */
395 cx25840_and_or(client, 0x400, ~0xf, 1);
397 cx25840_and_or(client, 0x47b, ~6, 0);
399 cx25840_and_or(client, 0x400, ~0xf, fmt);
400 cx25840_vbi_setup(client);
404 v4l2_std_id cx25840_get_v4lstd(struct i2c_client * client)
406 struct cx25840_state *state = i2c_get_clientdata(client);
407 /* check VID_FMT_SEL first */
408 u8 fmt = cx25840_read(client, 0x400) & 0xf;
411 /* check AFD_FMT_STAT if set to autodetect */
412 fmt = cx25840_read(client, 0x40d) & 0xf;
418 /* if the audio std is A2-M, then this is the South Korean
420 if (!state->is_cx25836 && cx25840_read(client, 0x805) == 2)
421 return V4L2_STD_NTSC_M_KR;
422 return V4L2_STD_NTSC_M;
424 case 0x2: return V4L2_STD_NTSC_M_JP;
425 case 0x3: return V4L2_STD_NTSC_443;
426 case 0x4: return V4L2_STD_PAL;
427 case 0x5: return V4L2_STD_PAL_M;
428 case 0x6: return V4L2_STD_PAL_N;
429 case 0x7: return V4L2_STD_PAL_Nc;
430 case 0x8: return V4L2_STD_PAL_60;
431 case 0xc: return V4L2_STD_SECAM;
432 default: return V4L2_STD_UNKNOWN;
436 /* ----------------------------------------------------------------------- */
438 static int set_v4lctrl(struct i2c_client *client, struct v4l2_control *ctrl)
440 struct cx25840_state *state = i2c_get_clientdata(client);
443 case CX25840_CID_ENABLE_PVR150_WORKAROUND:
444 state->pvr150_workaround = ctrl->value;
445 set_input(client, state->vid_input, state->aud_input);
448 case V4L2_CID_BRIGHTNESS:
449 if (ctrl->value < 0 || ctrl->value > 255) {
450 v4l_err(client, "invalid brightness setting %d\n",
455 cx25840_write(client, 0x414, ctrl->value - 128);
458 case V4L2_CID_CONTRAST:
459 if (ctrl->value < 0 || ctrl->value > 127) {
460 v4l_err(client, "invalid contrast setting %d\n",
465 cx25840_write(client, 0x415, ctrl->value << 1);
468 case V4L2_CID_SATURATION:
469 if (ctrl->value < 0 || ctrl->value > 127) {
470 v4l_err(client, "invalid saturation setting %d\n",
475 cx25840_write(client, 0x420, ctrl->value << 1);
476 cx25840_write(client, 0x421, ctrl->value << 1);
480 if (ctrl->value < -127 || ctrl->value > 127) {
481 v4l_err(client, "invalid hue setting %d\n", ctrl->value);
485 cx25840_write(client, 0x422, ctrl->value);
488 case V4L2_CID_AUDIO_VOLUME:
489 case V4L2_CID_AUDIO_BASS:
490 case V4L2_CID_AUDIO_TREBLE:
491 case V4L2_CID_AUDIO_BALANCE:
492 case V4L2_CID_AUDIO_MUTE:
493 if (state->is_cx25836)
495 return cx25840_audio(client, VIDIOC_S_CTRL, ctrl);
504 static int get_v4lctrl(struct i2c_client *client, struct v4l2_control *ctrl)
506 struct cx25840_state *state = i2c_get_clientdata(client);
509 case CX25840_CID_ENABLE_PVR150_WORKAROUND:
510 ctrl->value = state->pvr150_workaround;
512 case V4L2_CID_BRIGHTNESS:
513 ctrl->value = (s8)cx25840_read(client, 0x414) + 128;
515 case V4L2_CID_CONTRAST:
516 ctrl->value = cx25840_read(client, 0x415) >> 1;
518 case V4L2_CID_SATURATION:
519 ctrl->value = cx25840_read(client, 0x420) >> 1;
522 ctrl->value = (s8)cx25840_read(client, 0x422);
524 case V4L2_CID_AUDIO_VOLUME:
525 case V4L2_CID_AUDIO_BASS:
526 case V4L2_CID_AUDIO_TREBLE:
527 case V4L2_CID_AUDIO_BALANCE:
528 case V4L2_CID_AUDIO_MUTE:
529 if (state->is_cx25836)
531 return cx25840_audio(client, VIDIOC_G_CTRL, ctrl);
539 /* ----------------------------------------------------------------------- */
541 static int get_v4lfmt(struct i2c_client *client, struct v4l2_format *fmt)
544 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
545 return cx25840_vbi(client, VIDIOC_G_FMT, fmt);
553 static int set_v4lfmt(struct i2c_client *client, struct v4l2_format *fmt)
555 struct v4l2_pix_format *pix;
556 int HSC, VSC, Vsrc, Hsrc, filter, Vlines;
557 int is_pal = !(cx25840_get_v4lstd(client) & V4L2_STD_NTSC);
560 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
561 pix = &(fmt->fmt.pix);
563 Vsrc = (cx25840_read(client, 0x476) & 0x3f) << 4;
564 Vsrc |= (cx25840_read(client, 0x475) & 0xf0) >> 4;
566 Hsrc = (cx25840_read(client, 0x472) & 0x3f) << 4;
567 Hsrc |= (cx25840_read(client, 0x471) & 0xf0) >> 4;
569 Vlines = pix->height + (is_pal ? 4 : 7);
571 if ((pix->width * 16 < Hsrc) || (Hsrc < pix->width) ||
572 (Vlines * 8 < Vsrc) || (Vsrc < Vlines)) {
573 v4l_err(client, "%dx%d is not a valid size!\n",
574 pix->width, pix->height);
578 HSC = (Hsrc * (1 << 20)) / pix->width - (1 << 20);
579 VSC = (1 << 16) - (Vsrc * (1 << 9) / Vlines - (1 << 9));
582 if (pix->width >= 385)
584 else if (pix->width > 192)
586 else if (pix->width > 96)
591 v4l_dbg(1, cx25840_debug, client, "decoder set size %dx%d -> scale %ux%u\n",
592 pix->width, pix->height, HSC, VSC);
595 cx25840_write(client, 0x418, HSC & 0xff);
596 cx25840_write(client, 0x419, (HSC >> 8) & 0xff);
597 cx25840_write(client, 0x41a, HSC >> 16);
599 cx25840_write(client, 0x41c, VSC & 0xff);
600 cx25840_write(client, 0x41d, VSC >> 8);
601 /* VS_INTRLACE=1 VFILT=filter */
602 cx25840_write(client, 0x41e, 0x8 | filter);
605 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
606 return cx25840_vbi(client, VIDIOC_S_FMT, fmt);
608 case V4L2_BUF_TYPE_VBI_CAPTURE:
609 return cx25840_vbi(client, VIDIOC_S_FMT, fmt);
618 /* ----------------------------------------------------------------------- */
620 static int cx25840_command(struct i2c_client *client, unsigned int cmd,
623 struct cx25840_state *state = i2c_get_clientdata(client);
624 struct v4l2_tuner *vt = arg;
625 struct v4l2_routing *route = arg;
628 #ifdef CONFIG_VIDEO_ADV_DEBUG
629 /* ioctls to allow direct access to the
630 * cx25840 registers for testing */
631 case VIDIOC_INT_G_REGISTER:
633 struct v4l2_register *reg = arg;
635 if (reg->i2c_id != I2C_DRIVERID_CX25840)
637 reg->val = cx25840_read(client, reg->reg & 0x0fff);
641 case VIDIOC_INT_S_REGISTER:
643 struct v4l2_register *reg = arg;
645 if (reg->i2c_id != I2C_DRIVERID_CX25840)
647 if (!capable(CAP_SYS_ADMIN))
649 cx25840_write(client, reg->reg & 0x0fff, reg->val & 0xff);
654 case VIDIOC_INT_DECODE_VBI_LINE:
655 return cx25840_vbi(client, cmd, arg);
657 case VIDIOC_INT_AUDIO_CLOCK_FREQ:
658 return cx25840_audio(client, cmd, arg);
660 case VIDIOC_STREAMON:
661 v4l_dbg(1, cx25840_debug, client, "enable output\n");
662 cx25840_write(client, 0x115, state->is_cx25836 ? 0x0c : 0x8c);
663 cx25840_write(client, 0x116, state->is_cx25836 ? 0x04 : 0x07);
666 case VIDIOC_STREAMOFF:
667 v4l_dbg(1, cx25840_debug, client, "disable output\n");
668 cx25840_write(client, 0x115, 0x00);
669 cx25840_write(client, 0x116, 0x00);
672 case VIDIOC_LOG_STATUS:
673 log_video_status(client);
674 if (!state->is_cx25836)
675 log_audio_status(client);
679 return get_v4lctrl(client, (struct v4l2_control *)arg);
682 return set_v4lctrl(client, (struct v4l2_control *)arg);
684 case VIDIOC_QUERYCTRL:
686 struct v4l2_queryctrl *qc = arg;
689 case V4L2_CID_BRIGHTNESS:
690 case V4L2_CID_CONTRAST:
691 case V4L2_CID_SATURATION:
693 return v4l2_ctrl_query_fill_std(qc);
697 if (state->is_cx25836)
701 case V4L2_CID_AUDIO_VOLUME:
702 case V4L2_CID_AUDIO_MUTE:
703 case V4L2_CID_AUDIO_BALANCE:
704 case V4L2_CID_AUDIO_BASS:
705 case V4L2_CID_AUDIO_TREBLE:
706 return v4l2_ctrl_query_fill_std(qc);
714 *(v4l2_std_id *)arg = cx25840_get_v4lstd(client);
719 return set_v4lstd(client, *(v4l2_std_id *)arg);
725 case VIDIOC_INT_G_VIDEO_ROUTING:
726 route->input = state->vid_input;
730 case VIDIOC_INT_S_VIDEO_ROUTING:
731 return set_input(client, route->input, state->aud_input);
733 case VIDIOC_INT_G_AUDIO_ROUTING:
734 if (state->is_cx25836)
736 route->input = state->aud_input;
740 case VIDIOC_INT_S_AUDIO_ROUTING:
741 if (state->is_cx25836)
743 return set_input(client, state->vid_input, route->input);
745 case VIDIOC_S_FREQUENCY:
746 if (!state->is_cx25836) {
747 input_change(client);
753 u8 vpres = cx25840_read(client, 0x40e) & 0x20;
760 vt->signal = vpres ? 0xffff : 0x0;
761 if (state->is_cx25836)
765 V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_LANG1 |
766 V4L2_TUNER_CAP_LANG2 | V4L2_TUNER_CAP_SAP;
768 mode = cx25840_read(client, 0x804);
770 /* get rxsubchans and audmode */
771 if ((mode & 0xf) == 1)
772 val |= V4L2_TUNER_SUB_STEREO;
774 val |= V4L2_TUNER_SUB_MONO;
776 if (mode == 2 || mode == 4)
777 val = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
780 val |= V4L2_TUNER_SUB_SAP;
782 vt->rxsubchans = val;
783 vt->audmode = state->audmode;
788 if (state->radio || state->is_cx25836)
791 switch (vt->audmode) {
792 case V4L2_TUNER_MODE_MONO:
795 bilingual -> lang1 */
796 cx25840_and_or(client, 0x809, ~0xf, 0x00);
798 case V4L2_TUNER_MODE_STEREO:
799 case V4L2_TUNER_MODE_LANG1:
802 bilingual -> lang1 */
803 cx25840_and_or(client, 0x809, ~0xf, 0x04);
805 case V4L2_TUNER_MODE_LANG1_LANG2:
808 bilingual -> lang1/lang2 */
809 cx25840_and_or(client, 0x809, ~0xf, 0x07);
811 case V4L2_TUNER_MODE_LANG2:
814 bilingual -> lang2 */
815 cx25840_and_or(client, 0x809, ~0xf, 0x01);
820 state->audmode = vt->audmode;
824 return get_v4lfmt(client, (struct v4l2_format *)arg);
827 return set_v4lfmt(client, (struct v4l2_format *)arg);
829 case VIDIOC_INT_RESET:
830 if (state->is_cx25836)
831 cx25836_initialize(client);
833 cx25840_initialize(client, 0);
836 case VIDIOC_INT_G_CHIP_IDENT:
837 *(enum v4l2_chip_ident *)arg = state->id;
847 /* ----------------------------------------------------------------------- */
849 static struct i2c_driver i2c_driver_cx25840;
851 static int cx25840_detect_client(struct i2c_adapter *adapter, int address,
854 struct i2c_client *client;
855 struct cx25840_state *state;
856 enum v4l2_chip_ident id;
859 /* Check if the adapter supports the needed features
860 * Not until kernel version 2.6.11 did the bit-algo
861 * correctly report that it would do an I2C-level xfer */
862 if (!i2c_check_functionality(adapter, I2C_FUNC_I2C))
865 state = kzalloc(sizeof(struct cx25840_state), GFP_KERNEL);
870 client->addr = address;
871 client->adapter = adapter;
872 client->driver = &i2c_driver_cx25840;
873 snprintf(client->name, sizeof(client->name) - 1, "cx25840");
875 v4l_dbg(1, cx25840_debug, client, "detecting cx25840 client on address 0x%x\n", address << 1);
877 device_id = cx25840_read(client, 0x101) << 8;
878 device_id |= cx25840_read(client, 0x100);
880 /* The high byte of the device ID should be
881 * 0x83 for the cx2583x and 0x84 for the cx2584x */
882 if ((device_id & 0xff00) == 0x8300) {
883 id = V4L2_IDENT_CX25836 + ((device_id >> 4) & 0xf) - 6;
884 state->is_cx25836 = 1;
886 else if ((device_id & 0xff00) == 0x8400) {
887 id = V4L2_IDENT_CX25840 + ((device_id >> 4) & 0xf);
888 state->is_cx25836 = 0;
891 v4l_dbg(1, cx25840_debug, client, "cx25840 not found\n");
896 v4l_info(client, "cx25%3x-2%x found @ 0x%x (%s)\n",
897 (device_id & 0xfff0) >> 4,
898 (device_id & 0x0f) < 3 ? (device_id & 0x0f) + 1 : 3,
899 address << 1, adapter->name);
901 i2c_set_clientdata(client, state);
902 state->vid_input = CX25840_COMPOSITE7;
903 state->aud_input = CX25840_AUDIO8;
904 state->audclk_freq = 48000;
905 state->pvr150_workaround = 0;
906 state->audmode = V4L2_TUNER_MODE_LANG1;
907 state->vbi_line_offset = 8;
910 if (state->is_cx25836)
911 cx25836_initialize(client);
913 cx25840_initialize(client, 1);
915 i2c_attach_client(client);
920 static int cx25840_attach_adapter(struct i2c_adapter *adapter)
922 if (adapter->class & I2C_CLASS_TV_ANALOG)
923 return i2c_probe(adapter, &addr_data, &cx25840_detect_client);
927 static int cx25840_detach_client(struct i2c_client *client)
929 struct cx25840_state *state = i2c_get_clientdata(client);
932 err = i2c_detach_client(client);
942 /* ----------------------------------------------------------------------- */
944 static struct i2c_driver i2c_driver_cx25840 = {
948 .id = I2C_DRIVERID_CX25840,
949 .attach_adapter = cx25840_attach_adapter,
950 .detach_client = cx25840_detach_client,
951 .command = cx25840_command,
955 static int __init m__init(void)
957 return i2c_add_driver(&i2c_driver_cx25840);
960 static void __exit m__exit(void)
962 i2c_del_driver(&i2c_driver_cx25840);
965 module_init(m__init);
966 module_exit(m__exit);
968 /* ----------------------------------------------------------------------- */
970 static void log_video_status(struct i2c_client *client)
972 static const char *const fmt_strs[] = {
974 "NTSC-M", "NTSC-J", "NTSC-4.43",
975 "PAL-BDGHI", "PAL-M", "PAL-N", "PAL-Nc", "PAL-60",
981 struct cx25840_state *state = i2c_get_clientdata(client);
982 u8 vidfmt_sel = cx25840_read(client, 0x400) & 0xf;
983 u8 gen_stat1 = cx25840_read(client, 0x40d);
984 u8 gen_stat2 = cx25840_read(client, 0x40e);
985 int vid_input = state->vid_input;
987 v4l_info(client, "Video signal: %spresent\n",
988 (gen_stat2 & 0x20) ? "" : "not ");
989 v4l_info(client, "Detected format: %s\n",
990 fmt_strs[gen_stat1 & 0xf]);
992 v4l_info(client, "Specified standard: %s\n",
993 vidfmt_sel ? fmt_strs[vidfmt_sel] : "automatic detection");
995 if (vid_input >= CX25840_COMPOSITE1 &&
996 vid_input <= CX25840_COMPOSITE8) {
997 v4l_info(client, "Specified video input: Composite %d\n",
998 vid_input - CX25840_COMPOSITE1 + 1);
1000 v4l_info(client, "Specified video input: S-Video (Luma In%d, Chroma In%d)\n",
1001 (vid_input & 0xf0) >> 4, (vid_input & 0xf00) >> 8);
1004 v4l_info(client, "Specified audioclock freq: %d Hz\n", state->audclk_freq);
1007 /* ----------------------------------------------------------------------- */
1009 static void log_audio_status(struct i2c_client *client)
1011 struct cx25840_state *state = i2c_get_clientdata(client);
1012 u8 download_ctl = cx25840_read(client, 0x803);
1013 u8 mod_det_stat0 = cx25840_read(client, 0x804);
1014 u8 mod_det_stat1 = cx25840_read(client, 0x805);
1015 u8 audio_config = cx25840_read(client, 0x808);
1016 u8 pref_mode = cx25840_read(client, 0x809);
1017 u8 afc0 = cx25840_read(client, 0x80b);
1018 u8 mute_ctl = cx25840_read(client, 0x8d3);
1019 int aud_input = state->aud_input;
1022 switch (mod_det_stat0) {
1023 case 0x00: p = "mono"; break;
1024 case 0x01: p = "stereo"; break;
1025 case 0x02: p = "dual"; break;
1026 case 0x04: p = "tri"; break;
1027 case 0x10: p = "mono with SAP"; break;
1028 case 0x11: p = "stereo with SAP"; break;
1029 case 0x12: p = "dual with SAP"; break;
1030 case 0x14: p = "tri with SAP"; break;
1031 case 0xfe: p = "forced mode"; break;
1032 default: p = "not defined";
1034 v4l_info(client, "Detected audio mode: %s\n", p);
1036 switch (mod_det_stat1) {
1037 case 0x00: p = "not defined"; break;
1038 case 0x01: p = "EIAJ"; break;
1039 case 0x02: p = "A2-M"; break;
1040 case 0x03: p = "A2-BG"; break;
1041 case 0x04: p = "A2-DK1"; break;
1042 case 0x05: p = "A2-DK2"; break;
1043 case 0x06: p = "A2-DK3"; break;
1044 case 0x07: p = "A1 (6.0 MHz FM Mono)"; break;
1045 case 0x08: p = "AM-L"; break;
1046 case 0x09: p = "NICAM-BG"; break;
1047 case 0x0a: p = "NICAM-DK"; break;
1048 case 0x0b: p = "NICAM-I"; break;
1049 case 0x0c: p = "NICAM-L"; break;
1050 case 0x0d: p = "BTSC/EIAJ/A2-M Mono (4.5 MHz FMMono)"; break;
1051 case 0x0e: p = "IF FM Radio"; break;
1052 case 0x0f: p = "BTSC"; break;
1053 case 0x10: p = "high-deviation FM"; break;
1054 case 0x11: p = "very high-deviation FM"; break;
1055 case 0xfd: p = "unknown audio standard"; break;
1056 case 0xfe: p = "forced audio standard"; break;
1057 case 0xff: p = "no detected audio standard"; break;
1058 default: p = "not defined";
1060 v4l_info(client, "Detected audio standard: %s\n", p);
1061 v4l_info(client, "Audio muted: %s\n",
1062 (mute_ctl & 0x2) ? "yes" : "no");
1063 v4l_info(client, "Audio microcontroller: %s\n",
1064 (download_ctl & 0x10) ? "running" : "stopped");
1066 switch (audio_config >> 4) {
1067 case 0x00: p = "undefined"; break;
1068 case 0x01: p = "BTSC"; break;
1069 case 0x02: p = "EIAJ"; break;
1070 case 0x03: p = "A2-M"; break;
1071 case 0x04: p = "A2-BG"; break;
1072 case 0x05: p = "A2-DK1"; break;
1073 case 0x06: p = "A2-DK2"; break;
1074 case 0x07: p = "A2-DK3"; break;
1075 case 0x08: p = "A1 (6.0 MHz FM Mono)"; break;
1076 case 0x09: p = "AM-L"; break;
1077 case 0x0a: p = "NICAM-BG"; break;
1078 case 0x0b: p = "NICAM-DK"; break;
1079 case 0x0c: p = "NICAM-I"; break;
1080 case 0x0d: p = "NICAM-L"; break;
1081 case 0x0e: p = "FM radio"; break;
1082 case 0x0f: p = "automatic detection"; break;
1083 default: p = "undefined";
1085 v4l_info(client, "Configured audio standard: %s\n", p);
1087 if ((audio_config >> 4) < 0xF) {
1088 switch (audio_config & 0xF) {
1089 case 0x00: p = "MONO1 (LANGUAGE A/Mono L+R channel for BTSC, EIAJ, A2)"; break;
1090 case 0x01: p = "MONO2 (LANGUAGE B)"; break;
1091 case 0x02: p = "MONO3 (STEREO forced MONO)"; break;
1092 case 0x03: p = "MONO4 (NICAM ANALOG-Language C/Analog Fallback)"; break;
1093 case 0x04: p = "STEREO"; break;
1094 case 0x05: p = "DUAL1 (AB)"; break;
1095 case 0x06: p = "DUAL2 (AC) (FM)"; break;
1096 case 0x07: p = "DUAL3 (BC) (FM)"; break;
1097 case 0x08: p = "DUAL4 (AC) (AM)"; break;
1098 case 0x09: p = "DUAL5 (BC) (AM)"; break;
1099 case 0x0a: p = "SAP"; break;
1100 default: p = "undefined";
1102 v4l_info(client, "Configured audio mode: %s\n", p);
1104 switch (audio_config & 0xF) {
1105 case 0x00: p = "BG"; break;
1106 case 0x01: p = "DK1"; break;
1107 case 0x02: p = "DK2"; break;
1108 case 0x03: p = "DK3"; break;
1109 case 0x04: p = "I"; break;
1110 case 0x05: p = "L"; break;
1111 case 0x06: p = "BTSC"; break;
1112 case 0x07: p = "EIAJ"; break;
1113 case 0x08: p = "A2-M"; break;
1114 case 0x09: p = "FM Radio"; break;
1115 case 0x0f: p = "automatic standard and mode detection"; break;
1116 default: p = "undefined";
1118 v4l_info(client, "Configured audio system: %s\n", p);
1122 v4l_info(client, "Specified audio input: Tuner (In%d)\n", aud_input);
1124 v4l_info(client, "Specified audio input: External\n");
1127 switch (pref_mode & 0xf) {
1128 case 0: p = "mono/language A"; break;
1129 case 1: p = "language B"; break;
1130 case 2: p = "language C"; break;
1131 case 3: p = "analog fallback"; break;
1132 case 4: p = "stereo"; break;
1133 case 5: p = "language AC"; break;
1134 case 6: p = "language BC"; break;
1135 case 7: p = "language AB"; break;
1136 default: p = "undefined";
1138 v4l_info(client, "Preferred audio mode: %s\n", p);
1140 if ((audio_config & 0xf) == 0xf) {
1141 switch ((afc0 >> 3) & 0x3) {
1142 case 0: p = "system DK"; break;
1143 case 1: p = "system L"; break;
1144 case 2: p = "autodetect"; break;
1145 default: p = "undefined";
1147 v4l_info(client, "Selected 65 MHz format: %s\n", p);
1149 switch (afc0 & 0x7) {
1150 case 0: p = "chroma"; break;
1151 case 1: p = "BTSC"; break;
1152 case 2: p = "EIAJ"; break;
1153 case 3: p = "A2-M"; break;
1154 case 4: p = "autodetect"; break;
1155 default: p = "undefined";
1157 v4l_info(client, "Selected 45 MHz format: %s\n", p);