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 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/slab.h>
32 #include <linux/videodev2.h>
33 #include <linux/i2c.h>
34 #include <media/v4l2-common.h>
35 #include <media/cx25840.h>
37 #include "cx25840-core.h"
39 MODULE_DESCRIPTION("Conexant CX25840 audio/video decoder driver");
40 MODULE_AUTHOR("Ulf Eklund, Chris Kennedy, Hans Verkuil, Tyler Trafford");
41 MODULE_LICENSE("GPL");
43 static unsigned short normal_i2c
[] = { 0x88 >> 1, I2C_CLIENT_END
};
46 static int cx25840_debug
;
48 module_param_named(debug
,cx25840_debug
, int, 0644);
50 MODULE_PARM_DESC(debug
, "Debugging messages [0=Off (default) 1=On]");
54 /* ----------------------------------------------------------------------- */
56 int cx25840_write(struct i2c_client
*client
, u16 addr
, u8 value
)
59 buffer
[0] = addr
>> 8;
60 buffer
[1] = addr
& 0xff;
62 return i2c_master_send(client
, buffer
, 3);
65 int cx25840_write4(struct i2c_client
*client
, u16 addr
, u32 value
)
68 buffer
[0] = addr
>> 8;
69 buffer
[1] = addr
& 0xff;
70 buffer
[2] = value
>> 24;
71 buffer
[3] = (value
>> 16) & 0xff;
72 buffer
[4] = (value
>> 8) & 0xff;
73 buffer
[5] = value
& 0xff;
74 return i2c_master_send(client
, buffer
, 6);
77 u8
cx25840_read(struct i2c_client
* client
, u16 addr
)
80 buffer
[0] = addr
>> 8;
81 buffer
[1] = addr
& 0xff;
83 if (i2c_master_send(client
, buffer
, 2) < 2)
86 if (i2c_master_recv(client
, buffer
, 1) < 1)
92 u32
cx25840_read4(struct i2c_client
* client
, u16 addr
)
95 buffer
[0] = addr
>> 8;
96 buffer
[1] = addr
& 0xff;
98 if (i2c_master_send(client
, buffer
, 2) < 2)
101 if (i2c_master_recv(client
, buffer
, 4) < 4)
104 return (buffer
[0] << 24) | (buffer
[1] << 16) |
105 (buffer
[2] << 8) | buffer
[3];
108 int cx25840_and_or(struct i2c_client
*client
, u16 addr
, u8 and_mask
,
111 return cx25840_write(client
, addr
,
112 (cx25840_read(client
, addr
) & and_mask
) |
116 /* ----------------------------------------------------------------------- */
118 static int set_input(struct i2c_client
*client
, enum cx25840_video_input vid_input
,
119 enum cx25840_audio_input aud_input
);
120 static void log_status(struct i2c_client
*client
);
122 /* ----------------------------------------------------------------------- */
124 static void init_dll1(struct i2c_client
*client
)
126 /* This is the Hauppauge sequence used to
127 * initialize the Delay Lock Loop 1 (ADC DLL). */
128 cx25840_write(client
, 0x159, 0x23);
129 cx25840_write(client
, 0x15a, 0x87);
130 cx25840_write(client
, 0x15b, 0x06);
131 cx25840_write(client
, 0x159, 0xe1);
132 cx25840_write(client
, 0x15a, 0x86);
133 cx25840_write(client
, 0x159, 0xe0);
134 cx25840_write(client
, 0x159, 0xe1);
135 cx25840_write(client
, 0x15b, 0x10);
138 static void init_dll2(struct i2c_client
*client
)
140 /* This is the Hauppauge sequence used to
141 * initialize the Delay Lock Loop 2 (ADC DLL). */
142 cx25840_write(client
, 0x15d, 0xe3);
143 cx25840_write(client
, 0x15e, 0x86);
144 cx25840_write(client
, 0x15f, 0x06);
145 cx25840_write(client
, 0x15d, 0xe1);
146 cx25840_write(client
, 0x15d, 0xe0);
147 cx25840_write(client
, 0x15d, 0xe1);
150 static void cx25840_initialize(struct i2c_client
*client
, int loadfw
)
152 struct cx25840_state
*state
= i2c_get_clientdata(client
);
154 /* datasheet startup in numbered steps, refer to page 3-77 */
156 cx25840_and_or(client
, 0x803, ~0x10, 0x00);
157 /* The default of this register should be 4, but I get 0 instead.
158 * Set this register to 4 manually. */
159 cx25840_write(client
, 0x000, 0x04);
163 cx25840_write(client
, 0x136, 0x0a);
165 cx25840_write(client
, 0x13c, 0x01);
166 cx25840_write(client
, 0x13c, 0x00);
169 cx25840_loadfw(client
);
171 cx25840_write(client
, 0x115, 0x8c);
172 cx25840_write(client
, 0x116, 0x07);
173 cx25840_write(client
, 0x118, 0x02);
175 cx25840_write(client
, 0x4a5, 0x80);
176 cx25840_write(client
, 0x4a5, 0x00);
177 cx25840_write(client
, 0x402, 0x00);
179 cx25840_and_or(client
, 0x401, ~0x18, 0);
180 cx25840_and_or(client
, 0x4a2, ~0x10, 0x10);
181 /* steps 8c and 8d are done in change_input() */
183 cx25840_write(client
, 0x8d3, 0x1f);
184 cx25840_write(client
, 0x8e3, 0x03);
186 cx25840_vbi_setup(client
);
188 /* trial and error says these are needed to get audio */
189 cx25840_write(client
, 0x914, 0xa0);
190 cx25840_write(client
, 0x918, 0xa0);
191 cx25840_write(client
, 0x919, 0x01);
193 /* stereo prefered */
194 cx25840_write(client
, 0x809, 0x04);
196 cx25840_write(client
, 0x8cf, 0x0f);
199 set_input(client
, state
->vid_input
, state
->aud_input
);
201 /* start microcontroller */
202 cx25840_and_or(client
, 0x803, ~0x10, 0x10);
205 /* ----------------------------------------------------------------------- */
207 static void input_change(struct i2c_client
*client
)
209 struct cx25840_state
*state
= i2c_get_clientdata(client
);
210 v4l2_std_id std
= cx25840_get_v4lstd(client
);
212 /* Follow step 8c and 8d of section 3.16 in the cx25840 datasheet */
213 if (std
& V4L2_STD_SECAM
) {
214 cx25840_write(client
, 0x402, 0);
217 cx25840_write(client
, 0x402, 0x04);
218 cx25840_write(client
, 0x49f, (std
& V4L2_STD_NTSC
) ? 0x14 : 0x11);
220 cx25840_and_or(client
, 0x401, ~0x60, 0);
221 cx25840_and_or(client
, 0x401, ~0x60, 0x60);
223 /* Note: perhaps V4L2_STD_PAL_M should be handled as V4L2_STD_NTSC
224 instead of V4L2_STD_PAL. Someone needs to test this. */
225 if (std
& V4L2_STD_PAL
) {
226 /* Follow tuner change procedure for PAL */
227 cx25840_write(client
, 0x808, 0xff);
228 cx25840_write(client
, 0x80b, 0x10);
229 } else if (std
& V4L2_STD_SECAM
) {
230 /* Select autodetect for SECAM */
231 cx25840_write(client
, 0x808, 0xff);
232 cx25840_write(client
, 0x80b, 0x10);
233 } else if (std
& V4L2_STD_NTSC
) {
234 /* Certain Hauppauge PVR150 models have a hardware bug
235 that causes audio to drop out. For these models the
236 audio standard must be set explicitly.
237 To be precise: it affects cards with tuner models
238 85, 99 and 112 (model numbers from tveeprom). */
239 int hw_fix
= state
->pvr150_workaround
;
241 if (std
== V4L2_STD_NTSC_M_JP
) {
242 /* Japan uses EIAJ audio standard */
243 cx25840_write(client
, 0x808, hw_fix
? 0x2f : 0xf7);
244 } else if (std
== V4L2_STD_NTSC_M_KR
) {
245 /* South Korea uses A2 audio standard */
246 cx25840_write(client
, 0x808, hw_fix
? 0x3f : 0xf8);
248 /* Others use the BTSC audio standard */
249 cx25840_write(client
, 0x808, hw_fix
? 0x1f : 0xf6);
251 cx25840_write(client
, 0x80b, 0x00);
254 if (cx25840_read(client
, 0x803) & 0x10) {
255 /* restart audio decoder microcontroller */
256 cx25840_and_or(client
, 0x803, ~0x10, 0x00);
257 cx25840_and_or(client
, 0x803, ~0x10, 0x10);
261 static int set_input(struct i2c_client
*client
, enum cx25840_video_input vid_input
,
262 enum cx25840_audio_input aud_input
)
264 struct cx25840_state
*state
= i2c_get_clientdata(client
);
265 u8 is_composite
= (vid_input
>= CX25840_COMPOSITE1
&&
266 vid_input
<= CX25840_COMPOSITE8
);
269 v4l_dbg(1, cx25840_debug
, client
, "decoder set video input %d, audio input %d\n",
270 vid_input
, aud_input
);
273 reg
= 0xf0 + (vid_input
- CX25840_COMPOSITE1
);
275 int luma
= vid_input
& 0xf0;
276 int chroma
= vid_input
& 0xf00;
278 if ((vid_input
& ~0xff0) ||
279 luma
< CX25840_SVIDEO_LUMA1
|| luma
> CX25840_SVIDEO_LUMA4
||
280 chroma
< CX25840_SVIDEO_CHROMA4
|| chroma
> CX25840_SVIDEO_CHROMA8
) {
281 v4l_err(client
, "0x%04x is not a valid video input!\n", vid_input
);
284 reg
= 0xf0 + ((luma
- CX25840_SVIDEO_LUMA1
) >> 4);
285 if (chroma
>= CX25840_SVIDEO_CHROMA7
) {
287 reg
|= (chroma
- CX25840_SVIDEO_CHROMA7
) >> 2;
290 reg
|= (chroma
- CX25840_SVIDEO_CHROMA4
) >> 4;
295 case CX25840_AUDIO_SERIAL
:
296 /* do nothing, use serial audio input */
298 case CX25840_AUDIO4
: reg
&= ~0x30; break;
299 case CX25840_AUDIO5
: reg
&= ~0x30; reg
|= 0x10; break;
300 case CX25840_AUDIO6
: reg
&= ~0x30; reg
|= 0x20; break;
301 case CX25840_AUDIO7
: reg
&= ~0xc0; break;
302 case CX25840_AUDIO8
: reg
&= ~0xc0; reg
|= 0x40; break;
305 v4l_err(client
, "0x%04x is not a valid audio input!\n", aud_input
);
309 cx25840_write(client
, 0x103, reg
);
310 /* Set INPUT_MODE to Composite (0) or S-Video (1) */
311 cx25840_and_or(client
, 0x401, ~0x6, is_composite
? 0 : 0x02);
312 /* Set CH_SEL_ADC2 to 1 if input comes from CH3 */
313 cx25840_and_or(client
, 0x102, ~0x2, (reg
& 0x80) == 0 ? 2 : 0);
314 /* Set DUAL_MODE_ADC2 to 1 if input comes from both CH2 and CH3 */
315 if ((reg
& 0xc0) != 0xc0 && (reg
& 0x30) != 0x30)
316 cx25840_and_or(client
, 0x102, ~0x4, 4);
318 cx25840_and_or(client
, 0x102, ~0x4, 0);
320 state
->vid_input
= vid_input
;
321 state
->aud_input
= aud_input
;
322 cx25840_audio_set_path(client
);
323 input_change(client
);
327 /* ----------------------------------------------------------------------- */
329 static int set_v4lstd(struct i2c_client
*client
, v4l2_std_id std
)
331 u8 fmt
=0; /* zero is autodetect */
333 /* First tests should be against specific std */
334 if (std
== V4L2_STD_NTSC_M_JP
) {
336 } else if (std
== V4L2_STD_NTSC_443
) {
338 } else if (std
== V4L2_STD_PAL_M
) {
340 } else if (std
== V4L2_STD_PAL_N
) {
342 } else if (std
== V4L2_STD_PAL_Nc
) {
344 } else if (std
== V4L2_STD_PAL_60
) {
347 /* Then, test against generic ones */
348 if (std
& V4L2_STD_NTSC
) {
350 } else if (std
& V4L2_STD_PAL
) {
352 } else if (std
& V4L2_STD_SECAM
) {
357 /* Follow step 9 of section 3.16 in the cx25840 datasheet.
358 Without this PAL may display a vertical ghosting effect.
359 This happens for example with the Yuan MPC622. */
360 if (fmt
>= 4 && fmt
< 8) {
361 /* Set format to NTSC-M */
362 cx25840_and_or(client
, 0x400, ~0xf, 1);
364 cx25840_and_or(client
, 0x47b, ~6, 0);
366 cx25840_and_or(client
, 0x400, ~0xf, fmt
);
367 cx25840_vbi_setup(client
);
371 v4l2_std_id
cx25840_get_v4lstd(struct i2c_client
* client
)
373 /* check VID_FMT_SEL first */
374 u8 fmt
= cx25840_read(client
, 0x400) & 0xf;
377 /* check AFD_FMT_STAT if set to autodetect */
378 fmt
= cx25840_read(client
, 0x40d) & 0xf;
384 /* if the audio std is A2-M, then this is the South Korean
386 if (cx25840_read(client
, 0x805) == 2)
387 return V4L2_STD_NTSC_M_KR
;
388 return V4L2_STD_NTSC_M
;
390 case 0x2: return V4L2_STD_NTSC_M_JP
;
391 case 0x3: return V4L2_STD_NTSC_443
;
392 case 0x4: return V4L2_STD_PAL
;
393 case 0x5: return V4L2_STD_PAL_M
;
394 case 0x6: return V4L2_STD_PAL_N
;
395 case 0x7: return V4L2_STD_PAL_Nc
;
396 case 0x8: return V4L2_STD_PAL_60
;
397 case 0xc: return V4L2_STD_SECAM
;
398 default: return V4L2_STD_UNKNOWN
;
402 /* ----------------------------------------------------------------------- */
404 static int set_v4lctrl(struct i2c_client
*client
, struct v4l2_control
*ctrl
)
406 struct cx25840_state
*state
= i2c_get_clientdata(client
);
409 case CX25840_CID_ENABLE_PVR150_WORKAROUND
:
410 state
->pvr150_workaround
= ctrl
->value
;
411 set_input(client
, state
->vid_input
, state
->aud_input
);
414 case V4L2_CID_BRIGHTNESS
:
415 if (ctrl
->value
< 0 || ctrl
->value
> 255) {
416 v4l_err(client
, "invalid brightness setting %d\n",
421 cx25840_write(client
, 0x414, ctrl
->value
- 128);
424 case V4L2_CID_CONTRAST
:
425 if (ctrl
->value
< 0 || ctrl
->value
> 127) {
426 v4l_err(client
, "invalid contrast setting %d\n",
431 cx25840_write(client
, 0x415, ctrl
->value
<< 1);
434 case V4L2_CID_SATURATION
:
435 if (ctrl
->value
< 0 || ctrl
->value
> 127) {
436 v4l_err(client
, "invalid saturation setting %d\n",
441 cx25840_write(client
, 0x420, ctrl
->value
<< 1);
442 cx25840_write(client
, 0x421, ctrl
->value
<< 1);
446 if (ctrl
->value
< -127 || ctrl
->value
> 127) {
447 v4l_err(client
, "invalid hue setting %d\n", ctrl
->value
);
451 cx25840_write(client
, 0x422, ctrl
->value
);
454 case V4L2_CID_AUDIO_VOLUME
:
455 case V4L2_CID_AUDIO_BASS
:
456 case V4L2_CID_AUDIO_TREBLE
:
457 case V4L2_CID_AUDIO_BALANCE
:
458 case V4L2_CID_AUDIO_MUTE
:
459 return cx25840_audio(client
, VIDIOC_S_CTRL
, ctrl
);
468 static int get_v4lctrl(struct i2c_client
*client
, struct v4l2_control
*ctrl
)
470 struct cx25840_state
*state
= i2c_get_clientdata(client
);
473 case CX25840_CID_ENABLE_PVR150_WORKAROUND
:
474 ctrl
->value
= state
->pvr150_workaround
;
476 case V4L2_CID_BRIGHTNESS
:
477 ctrl
->value
= (s8
)cx25840_read(client
, 0x414) + 128;
479 case V4L2_CID_CONTRAST
:
480 ctrl
->value
= cx25840_read(client
, 0x415) >> 1;
482 case V4L2_CID_SATURATION
:
483 ctrl
->value
= cx25840_read(client
, 0x420) >> 1;
486 ctrl
->value
= (s8
)cx25840_read(client
, 0x422);
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 return cx25840_audio(client
, VIDIOC_G_CTRL
, ctrl
);
501 /* ----------------------------------------------------------------------- */
503 static int get_v4lfmt(struct i2c_client
*client
, struct v4l2_format
*fmt
)
506 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
:
507 return cx25840_vbi(client
, VIDIOC_G_FMT
, fmt
);
515 static int set_v4lfmt(struct i2c_client
*client
, struct v4l2_format
*fmt
)
517 struct v4l2_pix_format
*pix
;
518 int HSC
, VSC
, Vsrc
, Hsrc
, filter
, Vlines
;
519 int is_pal
= !(cx25840_get_v4lstd(client
) & V4L2_STD_NTSC
);
522 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
523 pix
= &(fmt
->fmt
.pix
);
525 Vsrc
= (cx25840_read(client
, 0x476) & 0x3f) << 4;
526 Vsrc
|= (cx25840_read(client
, 0x475) & 0xf0) >> 4;
528 Hsrc
= (cx25840_read(client
, 0x472) & 0x3f) << 4;
529 Hsrc
|= (cx25840_read(client
, 0x471) & 0xf0) >> 4;
531 Vlines
= pix
->height
+ (is_pal
? 4 : 7);
533 if ((pix
->width
* 16 < Hsrc
) || (Hsrc
< pix
->width
) ||
534 (Vlines
* 8 < Vsrc
) || (Vsrc
< Vlines
)) {
535 v4l_err(client
, "%dx%d is not a valid size!\n",
536 pix
->width
, pix
->height
);
540 HSC
= (Hsrc
* (1 << 20)) / pix
->width
- (1 << 20);
541 VSC
= (1 << 16) - (Vsrc
* (1 << 9) / Vlines
- (1 << 9));
544 if (pix
->width
>= 385)
546 else if (pix
->width
> 192)
548 else if (pix
->width
> 96)
553 v4l_dbg(1, cx25840_debug
, client
, "decoder set size %dx%d -> scale %ux%u\n",
554 pix
->width
, pix
->height
, HSC
, VSC
);
557 cx25840_write(client
, 0x418, HSC
& 0xff);
558 cx25840_write(client
, 0x419, (HSC
>> 8) & 0xff);
559 cx25840_write(client
, 0x41a, HSC
>> 16);
561 cx25840_write(client
, 0x41c, VSC
& 0xff);
562 cx25840_write(client
, 0x41d, VSC
>> 8);
563 /* VS_INTRLACE=1 VFILT=filter */
564 cx25840_write(client
, 0x41e, 0x8 | filter
);
567 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
:
568 return cx25840_vbi(client
, VIDIOC_S_FMT
, fmt
);
570 case V4L2_BUF_TYPE_VBI_CAPTURE
:
571 return cx25840_vbi(client
, VIDIOC_S_FMT
, fmt
);
580 /* ----------------------------------------------------------------------- */
582 static struct v4l2_queryctrl cx25840_qctrl
[] = {
584 .id
= V4L2_CID_BRIGHTNESS
,
585 .type
= V4L2_CTRL_TYPE_INTEGER
,
586 .name
= "Brightness",
590 .default_value
= 128,
593 .id
= V4L2_CID_CONTRAST
,
594 .type
= V4L2_CTRL_TYPE_INTEGER
,
602 .id
= V4L2_CID_SATURATION
,
603 .type
= V4L2_CTRL_TYPE_INTEGER
,
604 .name
= "Saturation",
612 .type
= V4L2_CTRL_TYPE_INTEGER
,
620 .id
= V4L2_CID_AUDIO_VOLUME
,
621 .type
= V4L2_CTRL_TYPE_INTEGER
,
626 .default_value
= 58880,
629 .id
= V4L2_CID_AUDIO_BALANCE
,
630 .type
= V4L2_CTRL_TYPE_INTEGER
,
635 .default_value
= 32768,
638 .id
= V4L2_CID_AUDIO_MUTE
,
639 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
647 .id
= V4L2_CID_AUDIO_BASS
,
648 .type
= V4L2_CTRL_TYPE_INTEGER
,
653 .default_value
= 32768,
655 .id
= V4L2_CID_AUDIO_TREBLE
,
656 .type
= V4L2_CTRL_TYPE_INTEGER
,
661 .default_value
= 32768,
665 /* ----------------------------------------------------------------------- */
667 static int cx25840_command(struct i2c_client
*client
, unsigned int cmd
,
670 struct cx25840_state
*state
= i2c_get_clientdata(client
);
671 struct v4l2_tuner
*vt
= arg
;
672 struct v4l2_routing
*route
= arg
;
675 #ifdef CONFIG_VIDEO_ADV_DEBUG
676 /* ioctls to allow direct access to the
677 * cx25840 registers for testing */
678 case VIDIOC_INT_G_REGISTER
:
680 struct v4l2_register
*reg
= arg
;
682 if (reg
->i2c_id
!= I2C_DRIVERID_CX25840
)
684 reg
->val
= cx25840_read(client
, reg
->reg
& 0x0fff);
688 case VIDIOC_INT_S_REGISTER
:
690 struct v4l2_register
*reg
= arg
;
692 if (reg
->i2c_id
!= I2C_DRIVERID_CX25840
)
694 if (!capable(CAP_SYS_ADMIN
))
696 cx25840_write(client
, reg
->reg
& 0x0fff, reg
->val
& 0xff);
701 case VIDIOC_INT_DECODE_VBI_LINE
:
702 return cx25840_vbi(client
, cmd
, arg
);
704 case VIDIOC_INT_AUDIO_CLOCK_FREQ
:
705 return cx25840_audio(client
, cmd
, arg
);
707 case VIDIOC_STREAMON
:
708 v4l_dbg(1, cx25840_debug
, client
, "enable output\n");
709 cx25840_write(client
, 0x115, 0x8c);
710 cx25840_write(client
, 0x116, 0x07);
713 case VIDIOC_STREAMOFF
:
714 v4l_dbg(1, cx25840_debug
, client
, "disable output\n");
715 cx25840_write(client
, 0x115, 0x00);
716 cx25840_write(client
, 0x116, 0x00);
719 case VIDIOC_LOG_STATUS
:
724 return get_v4lctrl(client
, (struct v4l2_control
*)arg
);
727 return set_v4lctrl(client
, (struct v4l2_control
*)arg
);
729 case VIDIOC_QUERYCTRL
:
731 struct v4l2_queryctrl
*qc
= arg
;
734 for (i
= 0; i
< ARRAY_SIZE(cx25840_qctrl
); i
++)
735 if (qc
->id
&& qc
->id
== cx25840_qctrl
[i
].id
) {
736 memcpy(qc
, &cx25840_qctrl
[i
], sizeof(*qc
));
743 *(v4l2_std_id
*)arg
= cx25840_get_v4lstd(client
);
748 return set_v4lstd(client
, *(v4l2_std_id
*)arg
);
754 case VIDIOC_INT_G_VIDEO_ROUTING
:
755 route
->input
= state
->vid_input
;
759 case VIDIOC_INT_S_VIDEO_ROUTING
:
760 return set_input(client
, route
->input
, state
->aud_input
);
762 case VIDIOC_INT_G_AUDIO_ROUTING
:
763 route
->input
= state
->aud_input
;
767 case VIDIOC_INT_S_AUDIO_ROUTING
:
768 return set_input(client
, state
->vid_input
, route
->input
);
770 case VIDIOC_S_FREQUENCY
:
771 input_change(client
);
776 u8 mode
= cx25840_read(client
, 0x804);
777 u8 vpres
= cx25840_read(client
, 0x80a) & 0x10;
784 V4L2_TUNER_CAP_STEREO
| V4L2_TUNER_CAP_LANG1
|
785 V4L2_TUNER_CAP_LANG2
| V4L2_TUNER_CAP_SAP
;
787 vt
->signal
= vpres
? 0xffff : 0x0;
789 /* get rxsubchans and audmode */
790 if ((mode
& 0xf) == 1)
791 val
|= V4L2_TUNER_SUB_STEREO
;
793 val
|= V4L2_TUNER_SUB_MONO
;
795 if (mode
== 2 || mode
== 4)
796 val
= V4L2_TUNER_SUB_LANG1
| V4L2_TUNER_SUB_LANG2
;
799 val
|= V4L2_TUNER_SUB_SAP
;
801 vt
->rxsubchans
= val
;
802 vt
->audmode
= state
->audmode
;
810 switch (vt
->audmode
) {
811 case V4L2_TUNER_MODE_MONO
:
814 bilingual -> lang1 */
815 cx25840_and_or(client
, 0x809, ~0xf, 0x00);
817 case V4L2_TUNER_MODE_STEREO
:
818 case V4L2_TUNER_MODE_LANG1
:
821 bilingual -> lang1 */
822 cx25840_and_or(client
, 0x809, ~0xf, 0x04);
824 case V4L2_TUNER_MODE_LANG1_LANG2
:
827 bilingual -> lang1/lang2 */
828 cx25840_and_or(client
, 0x809, ~0xf, 0x07);
830 case V4L2_TUNER_MODE_LANG2
:
833 bilingual -> lang2 */
834 cx25840_and_or(client
, 0x809, ~0xf, 0x01);
839 state
->audmode
= vt
->audmode
;
843 return get_v4lfmt(client
, (struct v4l2_format
*)arg
);
846 return set_v4lfmt(client
, (struct v4l2_format
*)arg
);
848 case VIDIOC_INT_RESET
:
849 cx25840_initialize(client
, 0);
852 case VIDIOC_INT_G_CHIP_IDENT
:
853 *(enum v4l2_chip_ident
*)arg
=
854 V4L2_IDENT_CX25840
+ ((cx25840_read(client
, 0x100) >> 4) & 0xf);
864 /* ----------------------------------------------------------------------- */
866 static struct i2c_driver i2c_driver_cx25840
;
868 static int cx25840_detect_client(struct i2c_adapter
*adapter
, int address
,
871 struct i2c_client
*client
;
872 struct cx25840_state
*state
;
875 /* Check if the adapter supports the needed features
876 * Not until kernel version 2.6.11 did the bit-algo
877 * correctly report that it would do an I2C-level xfer */
878 if (!i2c_check_functionality(adapter
, I2C_FUNC_I2C
))
881 client
= kzalloc(sizeof(struct i2c_client
), GFP_KERNEL
);
885 client
->addr
= address
;
886 client
->adapter
= adapter
;
887 client
->driver
= &i2c_driver_cx25840
;
888 snprintf(client
->name
, sizeof(client
->name
) - 1, "cx25840");
890 v4l_dbg(1, cx25840_debug
, client
, "detecting cx25840 client on address 0x%x\n", address
<< 1);
892 device_id
= cx25840_read(client
, 0x101) << 8;
893 device_id
|= cx25840_read(client
, 0x100);
895 /* The high byte of the device ID should be
896 * 0x84 if chip is present */
897 if ((device_id
& 0xff00) != 0x8400) {
898 v4l_dbg(1, cx25840_debug
, client
, "cx25840 not found\n");
903 v4l_info(client
, "cx25%3x-2%x found @ 0x%x (%s)\n",
904 (device_id
& 0xfff0) >> 4,
905 (device_id
& 0x0f) < 3 ? (device_id
& 0x0f) + 1 : 3,
906 address
<< 1, adapter
->name
);
908 state
= kmalloc(sizeof(struct cx25840_state
), GFP_KERNEL
);
914 i2c_set_clientdata(client
, state
);
915 memset(state
, 0, sizeof(struct cx25840_state
));
916 state
->vid_input
= CX25840_COMPOSITE7
;
917 state
->aud_input
= CX25840_AUDIO8
;
918 state
->audclk_freq
= 48000;
919 state
->pvr150_workaround
= 0;
920 state
->audmode
= V4L2_TUNER_MODE_LANG1
;
922 cx25840_initialize(client
, 1);
924 i2c_attach_client(client
);
929 static int cx25840_attach_adapter(struct i2c_adapter
*adapter
)
931 if (adapter
->class & I2C_CLASS_TV_ANALOG
)
932 return i2c_probe(adapter
, &addr_data
, &cx25840_detect_client
);
936 static int cx25840_detach_client(struct i2c_client
*client
)
938 struct cx25840_state
*state
= i2c_get_clientdata(client
);
941 err
= i2c_detach_client(client
);
952 /* ----------------------------------------------------------------------- */
954 static struct i2c_driver i2c_driver_cx25840
= {
958 .id
= I2C_DRIVERID_CX25840
,
959 .attach_adapter
= cx25840_attach_adapter
,
960 .detach_client
= cx25840_detach_client
,
961 .command
= cx25840_command
,
965 static int __init
m__init(void)
967 return i2c_add_driver(&i2c_driver_cx25840
);
970 static void __exit
m__exit(void)
972 i2c_del_driver(&i2c_driver_cx25840
);
975 module_init(m__init
);
976 module_exit(m__exit
);
978 /* ----------------------------------------------------------------------- */
980 static void log_status(struct i2c_client
*client
)
982 static const char *const fmt_strs
[] = {
984 "NTSC-M", "NTSC-J", "NTSC-4.43",
985 "PAL-BDGHI", "PAL-M", "PAL-N", "PAL-Nc", "PAL-60",
991 struct cx25840_state
*state
= i2c_get_clientdata(client
);
992 u8 microctrl_vidfmt
= cx25840_read(client
, 0x80a);
993 u8 vidfmt_sel
= cx25840_read(client
, 0x400) & 0xf;
994 u8 gen_stat1
= cx25840_read(client
, 0x40d);
995 u8 download_ctl
= cx25840_read(client
, 0x803);
996 u8 mod_det_stat0
= cx25840_read(client
, 0x804);
997 u8 mod_det_stat1
= cx25840_read(client
, 0x805);
998 u8 audio_config
= cx25840_read(client
, 0x808);
999 u8 pref_mode
= cx25840_read(client
, 0x809);
1000 u8 afc0
= cx25840_read(client
, 0x80b);
1001 u8 mute_ctl
= cx25840_read(client
, 0x8d3);
1002 int vid_input
= state
->vid_input
;
1003 int aud_input
= state
->aud_input
;
1006 v4l_info(client
, "Video signal: %spresent\n",
1007 (microctrl_vidfmt
& 0x10) ? "" : "not ");
1008 v4l_info(client
, "Detected format: %s\n",
1009 fmt_strs
[gen_stat1
& 0xf]);
1011 switch (mod_det_stat0
) {
1012 case 0x00: p
= "mono"; break;
1013 case 0x01: p
= "stereo"; break;
1014 case 0x02: p
= "dual"; break;
1015 case 0x04: p
= "tri"; break;
1016 case 0x10: p
= "mono with SAP"; break;
1017 case 0x11: p
= "stereo with SAP"; break;
1018 case 0x12: p
= "dual with SAP"; break;
1019 case 0x14: p
= "tri with SAP"; break;
1020 case 0xfe: p
= "forced mode"; break;
1021 default: p
= "not defined";
1023 v4l_info(client
, "Detected audio mode: %s\n", p
);
1025 switch (mod_det_stat1
) {
1026 case 0x00: p
= "not defined"; break;
1027 case 0x01: p
= "EIAJ"; break;
1028 case 0x02: p
= "A2-M"; break;
1029 case 0x03: p
= "A2-BG"; break;
1030 case 0x04: p
= "A2-DK1"; break;
1031 case 0x05: p
= "A2-DK2"; break;
1032 case 0x06: p
= "A2-DK3"; break;
1033 case 0x07: p
= "A1 (6.0 MHz FM Mono)"; break;
1034 case 0x08: p
= "AM-L"; break;
1035 case 0x09: p
= "NICAM-BG"; break;
1036 case 0x0a: p
= "NICAM-DK"; break;
1037 case 0x0b: p
= "NICAM-I"; break;
1038 case 0x0c: p
= "NICAM-L"; break;
1039 case 0x0d: p
= "BTSC/EIAJ/A2-M Mono (4.5 MHz FMMono)"; break;
1040 case 0x0e: p
= "IF FM Radio"; break;
1041 case 0x0f: p
= "BTSC"; break;
1042 case 0x10: p
= "high-deviation FM"; break;
1043 case 0x11: p
= "very high-deviation FM"; break;
1044 case 0xfd: p
= "unknown audio standard"; break;
1045 case 0xfe: p
= "forced audio standard"; break;
1046 case 0xff: p
= "no detected audio standard"; break;
1047 default: p
= "not defined";
1049 v4l_info(client
, "Detected audio standard: %s\n", p
);
1050 v4l_info(client
, "Audio muted: %s\n",
1051 (mute_ctl
& 0x2) ? "yes" : "no");
1052 v4l_info(client
, "Audio microcontroller: %s\n",
1053 (download_ctl
& 0x10) ? "running" : "stopped");
1055 switch (audio_config
>> 4) {
1056 case 0x00: p
= "undefined"; break;
1057 case 0x01: p
= "BTSC"; break;
1058 case 0x02: p
= "EIAJ"; break;
1059 case 0x03: p
= "A2-M"; break;
1060 case 0x04: p
= "A2-BG"; break;
1061 case 0x05: p
= "A2-DK1"; break;
1062 case 0x06: p
= "A2-DK2"; break;
1063 case 0x07: p
= "A2-DK3"; break;
1064 case 0x08: p
= "A1 (6.0 MHz FM Mono)"; break;
1065 case 0x09: p
= "AM-L"; break;
1066 case 0x0a: p
= "NICAM-BG"; break;
1067 case 0x0b: p
= "NICAM-DK"; break;
1068 case 0x0c: p
= "NICAM-I"; break;
1069 case 0x0d: p
= "NICAM-L"; break;
1070 case 0x0e: p
= "FM radio"; break;
1071 case 0x0f: p
= "automatic detection"; break;
1072 default: p
= "undefined";
1074 v4l_info(client
, "Configured audio standard: %s\n", p
);
1076 if ((audio_config
>> 4) < 0xF) {
1077 switch (audio_config
& 0xF) {
1078 case 0x00: p
= "MONO1 (LANGUAGE A/Mono L+R channel for BTSC, EIAJ, A2)"; break;
1079 case 0x01: p
= "MONO2 (LANGUAGE B)"; break;
1080 case 0x02: p
= "MONO3 (STEREO forced MONO)"; break;
1081 case 0x03: p
= "MONO4 (NICAM ANALOG-Language C/Analog Fallback)"; break;
1082 case 0x04: p
= "STEREO"; break;
1083 case 0x05: p
= "DUAL1 (AB)"; break;
1084 case 0x06: p
= "DUAL2 (AC) (FM)"; break;
1085 case 0x07: p
= "DUAL3 (BC) (FM)"; break;
1086 case 0x08: p
= "DUAL4 (AC) (AM)"; break;
1087 case 0x09: p
= "DUAL5 (BC) (AM)"; break;
1088 case 0x0a: p
= "SAP"; break;
1089 default: p
= "undefined";
1091 v4l_info(client
, "Configured audio mode: %s\n", p
);
1093 switch (audio_config
& 0xF) {
1094 case 0x00: p
= "BG"; break;
1095 case 0x01: p
= "DK1"; break;
1096 case 0x02: p
= "DK2"; break;
1097 case 0x03: p
= "DK3"; break;
1098 case 0x04: p
= "I"; break;
1099 case 0x05: p
= "L"; break;
1100 case 0x06: p
= "BTSC"; break;
1101 case 0x07: p
= "EIAJ"; break;
1102 case 0x08: p
= "A2-M"; break;
1103 case 0x09: p
= "FM Radio"; break;
1104 case 0x0f: p
= "automatic standard and mode detection"; break;
1105 default: p
= "undefined";
1107 v4l_info(client
, "Configured audio system: %s\n", p
);
1110 v4l_info(client
, "Specified standard: %s\n",
1111 vidfmt_sel
? fmt_strs
[vidfmt_sel
] : "automatic detection");
1113 if (vid_input
>= CX25840_COMPOSITE1
&&
1114 vid_input
<= CX25840_COMPOSITE8
) {
1115 v4l_info(client
, "Specified video input: Composite %d\n",
1116 vid_input
- CX25840_COMPOSITE1
+ 1);
1118 v4l_info(client
, "Specified video input: S-Video (Luma In%d, Chroma In%d)\n",
1119 (vid_input
& 0xf0) >> 4, (vid_input
& 0xf00) >> 8);
1122 v4l_info(client
, "Specified audio input: Tuner (In%d)\n", aud_input
);
1124 v4l_info(client
, "Specified audio input: External\n");
1127 v4l_info(client
, "Specified audioclock freq: %d Hz\n", state
->audclk_freq
);
1129 switch (pref_mode
& 0xf) {
1130 case 0: p
= "mono/language A"; break;
1131 case 1: p
= "language B"; break;
1132 case 2: p
= "language C"; break;
1133 case 3: p
= "analog fallback"; break;
1134 case 4: p
= "stereo"; break;
1135 case 5: p
= "language AC"; break;
1136 case 6: p
= "language BC"; break;
1137 case 7: p
= "language AB"; break;
1138 default: p
= "undefined";
1140 v4l_info(client
, "Preferred audio mode: %s\n", p
);
1142 if ((audio_config
& 0xf) == 0xf) {
1143 switch ((afc0
>> 3) & 0x3) {
1144 case 0: p
= "system DK"; break;
1145 case 1: p
= "system L"; break;
1146 case 2: p
= "autodetect"; break;
1147 default: p
= "undefined";
1149 v4l_info(client
, "Selected 65 MHz format: %s\n", p
);
1151 switch (afc0
& 0x7) {
1152 case 0: p
= "chroma"; break;
1153 case 1: p
= "BTSC"; break;
1154 case 2: p
= "EIAJ"; break;
1155 case 3: p
= "A2-M"; break;
1156 case 4: p
= "autodetect"; break;
1157 default: p
= "undefined";
1159 v4l_info(client
, "Selected 45 MHz format: %s\n", p
);