V4L/DVB (6051): cx25840: make proper use of SOFT_RESET
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / media / video / cx25840 / cx25840-core.c
blobae90d1c3d12bfd0642db55fcb34a5c5c42c45a6c
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
6 * cx25840 driver.
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/v4l2-chip-ident.h>
39 #include <media/cx25840.h>
41 #include "cx25840-core.h"
43 MODULE_DESCRIPTION("Conexant CX25840 audio/video decoder driver");
44 MODULE_AUTHOR("Ulf Eklund, Chris Kennedy, Hans Verkuil, Tyler Trafford");
45 MODULE_LICENSE("GPL");
47 static unsigned short normal_i2c[] = { 0x88 >> 1, I2C_CLIENT_END };
50 int cx25840_debug;
52 module_param_named(debug,cx25840_debug, int, 0644);
54 MODULE_PARM_DESC(debug, "Debugging messages [0=Off (default) 1=On]");
56 I2C_CLIENT_INSMOD;
58 /* ----------------------------------------------------------------------- */
60 int cx25840_write(struct i2c_client *client, u16 addr, u8 value)
62 u8 buffer[3];
63 buffer[0] = addr >> 8;
64 buffer[1] = addr & 0xff;
65 buffer[2] = value;
66 return i2c_master_send(client, buffer, 3);
69 int cx25840_write4(struct i2c_client *client, u16 addr, u32 value)
71 u8 buffer[6];
72 buffer[0] = addr >> 8;
73 buffer[1] = addr & 0xff;
74 buffer[2] = value >> 24;
75 buffer[3] = (value >> 16) & 0xff;
76 buffer[4] = (value >> 8) & 0xff;
77 buffer[5] = value & 0xff;
78 return i2c_master_send(client, buffer, 6);
81 u8 cx25840_read(struct i2c_client * client, u16 addr)
83 u8 buffer[2];
84 buffer[0] = addr >> 8;
85 buffer[1] = addr & 0xff;
87 if (i2c_master_send(client, buffer, 2) < 2)
88 return 0;
90 if (i2c_master_recv(client, buffer, 1) < 1)
91 return 0;
93 return buffer[0];
96 u32 cx25840_read4(struct i2c_client * client, u16 addr)
98 u8 buffer[4];
99 buffer[0] = addr >> 8;
100 buffer[1] = addr & 0xff;
102 if (i2c_master_send(client, buffer, 2) < 2)
103 return 0;
105 if (i2c_master_recv(client, buffer, 4) < 4)
106 return 0;
108 return (buffer[3] << 24) | (buffer[2] << 16) |
109 (buffer[1] << 8) | buffer[0];
112 int cx25840_and_or(struct i2c_client *client, u16 addr, unsigned and_mask,
113 u8 or_value)
115 return cx25840_write(client, addr,
116 (cx25840_read(client, addr) & and_mask) |
117 or_value);
120 /* ----------------------------------------------------------------------- */
122 static int set_input(struct i2c_client *client, enum cx25840_video_input vid_input,
123 enum cx25840_audio_input aud_input);
124 static void log_audio_status(struct i2c_client *client);
125 static void log_video_status(struct i2c_client *client);
127 /* ----------------------------------------------------------------------- */
129 static void init_dll1(struct i2c_client *client)
131 /* This is the Hauppauge sequence used to
132 * initialize the Delay Lock Loop 1 (ADC DLL). */
133 cx25840_write(client, 0x159, 0x23);
134 cx25840_write(client, 0x15a, 0x87);
135 cx25840_write(client, 0x15b, 0x06);
136 cx25840_write(client, 0x159, 0xe1);
137 cx25840_write(client, 0x15a, 0x86);
138 cx25840_write(client, 0x159, 0xe0);
139 cx25840_write(client, 0x159, 0xe1);
140 cx25840_write(client, 0x15b, 0x10);
143 static void init_dll2(struct i2c_client *client)
145 /* This is the Hauppauge sequence used to
146 * initialize the Delay Lock Loop 2 (ADC DLL). */
147 cx25840_write(client, 0x15d, 0xe3);
148 cx25840_write(client, 0x15e, 0x86);
149 cx25840_write(client, 0x15f, 0x06);
150 cx25840_write(client, 0x15d, 0xe1);
151 cx25840_write(client, 0x15d, 0xe0);
152 cx25840_write(client, 0x15d, 0xe1);
155 static void cx25836_initialize(struct i2c_client *client)
157 /* reset configuration is described on page 3-77 of the CX25836 datasheet */
158 /* 2. */
159 cx25840_and_or(client, 0x000, ~0x01, 0x01);
160 cx25840_and_or(client, 0x000, ~0x01, 0x00);
161 /* 3a. */
162 cx25840_and_or(client, 0x15a, ~0x70, 0x00);
163 /* 3b. */
164 cx25840_and_or(client, 0x15b, ~0x1e, 0x06);
165 /* 3c. */
166 cx25840_and_or(client, 0x159, ~0x02, 0x02);
167 /* 3d. */
168 /* There should be a 10-us delay here, but since the
169 i2c bus already has a 10-us delay we don't need to do
170 anything */
171 /* 3e. */
172 cx25840_and_or(client, 0x159, ~0x02, 0x00);
173 /* 3f. */
174 cx25840_and_or(client, 0x159, ~0xc0, 0xc0);
175 /* 3g. */
176 cx25840_and_or(client, 0x159, ~0x01, 0x00);
177 cx25840_and_or(client, 0x159, ~0x01, 0x01);
178 /* 3h. */
179 cx25840_and_or(client, 0x15b, ~0x1e, 0x10);
182 static void cx25840_initialize(struct i2c_client *client)
184 struct cx25840_state *state = i2c_get_clientdata(client);
186 /* datasheet startup in numbered steps, refer to page 3-77 */
187 /* 2. */
188 cx25840_and_or(client, 0x803, ~0x10, 0x00);
189 /* The default of this register should be 4, but I get 0 instead.
190 * Set this register to 4 manually. */
191 cx25840_write(client, 0x000, 0x04);
192 /* 3. */
193 init_dll1(client);
194 init_dll2(client);
195 cx25840_write(client, 0x136, 0x0a);
196 /* 4. */
197 cx25840_write(client, 0x13c, 0x01);
198 cx25840_write(client, 0x13c, 0x00);
199 /* 5. */
200 cx25840_loadfw(client);
201 /* 6. */
202 cx25840_write(client, 0x115, 0x8c);
203 cx25840_write(client, 0x116, 0x07);
204 cx25840_write(client, 0x118, 0x02);
205 /* 7. */
206 cx25840_write(client, 0x4a5, 0x80);
207 cx25840_write(client, 0x4a5, 0x00);
208 cx25840_write(client, 0x402, 0x00);
209 /* 8. */
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() */
213 /* 10. */
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);
226 /* AC97 shift */
227 cx25840_write(client, 0x8cf, 0x0f);
229 /* (re)set input */
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);
247 else {
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);
253 cx25840_and_or(client, 0x810, ~0x01, 1);
255 if (state->radio) {
256 cx25840_write(client, 0x808, 0xf9);
257 cx25840_write(client, 0x80b, 0x00);
259 else if (std & V4L2_STD_525_60) {
260 /* Certain Hauppauge PVR150 models have a hardware bug
261 that causes audio to drop out. For these models the
262 audio standard must be set explicitly.
263 To be precise: it affects cards with tuner models
264 85, 99 and 112 (model numbers from tveeprom). */
265 int hw_fix = state->pvr150_workaround;
267 if (std == V4L2_STD_NTSC_M_JP) {
268 /* Japan uses EIAJ audio standard */
269 cx25840_write(client, 0x808, hw_fix ? 0x2f : 0xf7);
270 } else if (std == V4L2_STD_NTSC_M_KR) {
271 /* South Korea uses A2 audio standard */
272 cx25840_write(client, 0x808, hw_fix ? 0x3f : 0xf8);
273 } else {
274 /* Others use the BTSC audio standard */
275 cx25840_write(client, 0x808, hw_fix ? 0x1f : 0xf6);
277 cx25840_write(client, 0x80b, 0x00);
278 } else if (std & V4L2_STD_PAL) {
279 /* Follow tuner change procedure for PAL */
280 cx25840_write(client, 0x808, 0xff);
281 cx25840_write(client, 0x80b, 0x10);
282 } else if (std & V4L2_STD_SECAM) {
283 /* Select autodetect for SECAM */
284 cx25840_write(client, 0x808, 0xff);
285 cx25840_write(client, 0x80b, 0x10);
288 cx25840_and_or(client, 0x810, ~0x01, 0);
291 static int set_input(struct i2c_client *client, enum cx25840_video_input vid_input,
292 enum cx25840_audio_input aud_input)
294 struct cx25840_state *state = i2c_get_clientdata(client);
295 u8 is_composite = (vid_input >= CX25840_COMPOSITE1 &&
296 vid_input <= CX25840_COMPOSITE8);
297 u8 reg;
299 v4l_dbg(1, cx25840_debug, client, "decoder set video input %d, audio input %d\n",
300 vid_input, aud_input);
302 if (is_composite) {
303 reg = 0xf0 + (vid_input - CX25840_COMPOSITE1);
304 } else {
305 int luma = vid_input & 0xf0;
306 int chroma = vid_input & 0xf00;
308 if ((vid_input & ~0xff0) ||
309 luma < CX25840_SVIDEO_LUMA1 || luma > CX25840_SVIDEO_LUMA4 ||
310 chroma < CX25840_SVIDEO_CHROMA4 || chroma > CX25840_SVIDEO_CHROMA8) {
311 v4l_err(client, "0x%04x is not a valid video input!\n", vid_input);
312 return -EINVAL;
314 reg = 0xf0 + ((luma - CX25840_SVIDEO_LUMA1) >> 4);
315 if (chroma >= CX25840_SVIDEO_CHROMA7) {
316 reg &= 0x3f;
317 reg |= (chroma - CX25840_SVIDEO_CHROMA7) >> 2;
318 } else {
319 reg &= 0xcf;
320 reg |= (chroma - CX25840_SVIDEO_CHROMA4) >> 4;
324 switch (aud_input) {
325 case CX25840_AUDIO_SERIAL:
326 /* do nothing, use serial audio input */
327 break;
328 case CX25840_AUDIO4: reg &= ~0x30; break;
329 case CX25840_AUDIO5: reg &= ~0x30; reg |= 0x10; break;
330 case CX25840_AUDIO6: reg &= ~0x30; reg |= 0x20; break;
331 case CX25840_AUDIO7: reg &= ~0xc0; break;
332 case CX25840_AUDIO8: reg &= ~0xc0; reg |= 0x40; break;
334 default:
335 v4l_err(client, "0x%04x is not a valid audio input!\n", aud_input);
336 return -EINVAL;
339 cx25840_write(client, 0x103, reg);
340 /* Set INPUT_MODE to Composite (0) or S-Video (1) */
341 cx25840_and_or(client, 0x401, ~0x6, is_composite ? 0 : 0x02);
342 /* Set CH_SEL_ADC2 to 1 if input comes from CH3 */
343 cx25840_and_or(client, 0x102, ~0x2, (reg & 0x80) == 0 ? 2 : 0);
344 /* Set DUAL_MODE_ADC2 to 1 if input comes from both CH2 and CH3 */
345 if ((reg & 0xc0) != 0xc0 && (reg & 0x30) != 0x30)
346 cx25840_and_or(client, 0x102, ~0x4, 4);
347 else
348 cx25840_and_or(client, 0x102, ~0x4, 0);
350 state->vid_input = vid_input;
351 state->aud_input = aud_input;
352 if (!state->is_cx25836) {
353 cx25840_audio_set_path(client);
354 input_change(client);
356 return 0;
359 /* ----------------------------------------------------------------------- */
361 static int set_v4lstd(struct i2c_client *client, v4l2_std_id std)
363 u8 fmt=0; /* zero is autodetect */
365 /* First tests should be against specific std */
366 if (std == V4L2_STD_NTSC_M_JP) {
367 fmt=0x2;
368 } else if (std == V4L2_STD_NTSC_443) {
369 fmt=0x3;
370 } else if (std == V4L2_STD_PAL_M) {
371 fmt=0x5;
372 } else if (std == V4L2_STD_PAL_N) {
373 fmt=0x6;
374 } else if (std == V4L2_STD_PAL_Nc) {
375 fmt=0x7;
376 } else if (std == V4L2_STD_PAL_60) {
377 fmt=0x8;
378 } else {
379 /* Then, test against generic ones */
380 if (std & V4L2_STD_NTSC) {
381 fmt=0x1;
382 } else if (std & V4L2_STD_PAL) {
383 fmt=0x4;
384 } else if (std & V4L2_STD_SECAM) {
385 fmt=0xc;
389 v4l_dbg(1, cx25840_debug, client, "changing video std to fmt %i\n",fmt);
391 /* Follow step 9 of section 3.16 in the cx25840 datasheet.
392 Without this PAL may display a vertical ghosting effect.
393 This happens for example with the Yuan MPC622. */
394 if (fmt >= 4 && fmt < 8) {
395 /* Set format to NTSC-M */
396 cx25840_and_or(client, 0x400, ~0xf, 1);
397 /* Turn off LCOMB */
398 cx25840_and_or(client, 0x47b, ~6, 0);
400 cx25840_and_or(client, 0x400, ~0xf, fmt);
401 cx25840_vbi_setup(client);
402 return 0;
405 v4l2_std_id cx25840_get_v4lstd(struct i2c_client * client)
407 struct cx25840_state *state = i2c_get_clientdata(client);
408 /* check VID_FMT_SEL first */
409 u8 fmt = cx25840_read(client, 0x400) & 0xf;
411 if (!fmt) {
412 /* check AFD_FMT_STAT if set to autodetect */
413 fmt = cx25840_read(client, 0x40d) & 0xf;
416 switch (fmt) {
417 case 0x1:
419 /* if the audio std is A2-M, then this is the South Korean
420 NTSC standard */
421 if (!state->is_cx25836 && cx25840_read(client, 0x805) == 2)
422 return V4L2_STD_NTSC_M_KR;
423 return V4L2_STD_NTSC_M;
425 case 0x2: return V4L2_STD_NTSC_M_JP;
426 case 0x3: return V4L2_STD_NTSC_443;
427 case 0x4: return V4L2_STD_PAL;
428 case 0x5: return V4L2_STD_PAL_M;
429 case 0x6: return V4L2_STD_PAL_N;
430 case 0x7: return V4L2_STD_PAL_Nc;
431 case 0x8: return V4L2_STD_PAL_60;
432 case 0xc: return V4L2_STD_SECAM;
433 default: return V4L2_STD_UNKNOWN;
437 /* ----------------------------------------------------------------------- */
439 static int set_v4lctrl(struct i2c_client *client, struct v4l2_control *ctrl)
441 struct cx25840_state *state = i2c_get_clientdata(client);
443 switch (ctrl->id) {
444 case CX25840_CID_ENABLE_PVR150_WORKAROUND:
445 state->pvr150_workaround = ctrl->value;
446 set_input(client, state->vid_input, state->aud_input);
447 break;
449 case V4L2_CID_BRIGHTNESS:
450 if (ctrl->value < 0 || ctrl->value > 255) {
451 v4l_err(client, "invalid brightness setting %d\n",
452 ctrl->value);
453 return -ERANGE;
456 cx25840_write(client, 0x414, ctrl->value - 128);
457 break;
459 case V4L2_CID_CONTRAST:
460 if (ctrl->value < 0 || ctrl->value > 127) {
461 v4l_err(client, "invalid contrast setting %d\n",
462 ctrl->value);
463 return -ERANGE;
466 cx25840_write(client, 0x415, ctrl->value << 1);
467 break;
469 case V4L2_CID_SATURATION:
470 if (ctrl->value < 0 || ctrl->value > 127) {
471 v4l_err(client, "invalid saturation setting %d\n",
472 ctrl->value);
473 return -ERANGE;
476 cx25840_write(client, 0x420, ctrl->value << 1);
477 cx25840_write(client, 0x421, ctrl->value << 1);
478 break;
480 case V4L2_CID_HUE:
481 if (ctrl->value < -127 || ctrl->value > 127) {
482 v4l_err(client, "invalid hue setting %d\n", ctrl->value);
483 return -ERANGE;
486 cx25840_write(client, 0x422, ctrl->value);
487 break;
489 case V4L2_CID_AUDIO_VOLUME:
490 case V4L2_CID_AUDIO_BASS:
491 case V4L2_CID_AUDIO_TREBLE:
492 case V4L2_CID_AUDIO_BALANCE:
493 case V4L2_CID_AUDIO_MUTE:
494 if (state->is_cx25836)
495 return -EINVAL;
496 return cx25840_audio(client, VIDIOC_S_CTRL, ctrl);
498 default:
499 return -EINVAL;
502 return 0;
505 static int get_v4lctrl(struct i2c_client *client, struct v4l2_control *ctrl)
507 struct cx25840_state *state = i2c_get_clientdata(client);
509 switch (ctrl->id) {
510 case CX25840_CID_ENABLE_PVR150_WORKAROUND:
511 ctrl->value = state->pvr150_workaround;
512 break;
513 case V4L2_CID_BRIGHTNESS:
514 ctrl->value = (s8)cx25840_read(client, 0x414) + 128;
515 break;
516 case V4L2_CID_CONTRAST:
517 ctrl->value = cx25840_read(client, 0x415) >> 1;
518 break;
519 case V4L2_CID_SATURATION:
520 ctrl->value = cx25840_read(client, 0x420) >> 1;
521 break;
522 case V4L2_CID_HUE:
523 ctrl->value = (s8)cx25840_read(client, 0x422);
524 break;
525 case V4L2_CID_AUDIO_VOLUME:
526 case V4L2_CID_AUDIO_BASS:
527 case V4L2_CID_AUDIO_TREBLE:
528 case V4L2_CID_AUDIO_BALANCE:
529 case V4L2_CID_AUDIO_MUTE:
530 if (state->is_cx25836)
531 return -EINVAL;
532 return cx25840_audio(client, VIDIOC_G_CTRL, ctrl);
533 default:
534 return -EINVAL;
537 return 0;
540 /* ----------------------------------------------------------------------- */
542 static int get_v4lfmt(struct i2c_client *client, struct v4l2_format *fmt)
544 switch (fmt->type) {
545 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
546 return cx25840_vbi(client, VIDIOC_G_FMT, fmt);
547 default:
548 return -EINVAL;
551 return 0;
554 static int set_v4lfmt(struct i2c_client *client, struct v4l2_format *fmt)
556 struct v4l2_pix_format *pix;
557 int HSC, VSC, Vsrc, Hsrc, filter, Vlines;
558 int is_50Hz = !(cx25840_get_v4lstd(client) & V4L2_STD_525_60);
560 switch (fmt->type) {
561 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
562 pix = &(fmt->fmt.pix);
564 Vsrc = (cx25840_read(client, 0x476) & 0x3f) << 4;
565 Vsrc |= (cx25840_read(client, 0x475) & 0xf0) >> 4;
567 Hsrc = (cx25840_read(client, 0x472) & 0x3f) << 4;
568 Hsrc |= (cx25840_read(client, 0x471) & 0xf0) >> 4;
570 Vlines = pix->height + (is_50Hz ? 4 : 7);
572 if ((pix->width * 16 < Hsrc) || (Hsrc < pix->width) ||
573 (Vlines * 8 < Vsrc) || (Vsrc < Vlines)) {
574 v4l_err(client, "%dx%d is not a valid size!\n",
575 pix->width, pix->height);
576 return -ERANGE;
579 HSC = (Hsrc * (1 << 20)) / pix->width - (1 << 20);
580 VSC = (1 << 16) - (Vsrc * (1 << 9) / Vlines - (1 << 9));
581 VSC &= 0x1fff;
583 if (pix->width >= 385)
584 filter = 0;
585 else if (pix->width > 192)
586 filter = 1;
587 else if (pix->width > 96)
588 filter = 2;
589 else
590 filter = 3;
592 v4l_dbg(1, cx25840_debug, client, "decoder set size %dx%d -> scale %ux%u\n",
593 pix->width, pix->height, HSC, VSC);
595 /* HSCALE=HSC */
596 cx25840_write(client, 0x418, HSC & 0xff);
597 cx25840_write(client, 0x419, (HSC >> 8) & 0xff);
598 cx25840_write(client, 0x41a, HSC >> 16);
599 /* VSCALE=VSC */
600 cx25840_write(client, 0x41c, VSC & 0xff);
601 cx25840_write(client, 0x41d, VSC >> 8);
602 /* VS_INTRLACE=1 VFILT=filter */
603 cx25840_write(client, 0x41e, 0x8 | filter);
604 break;
606 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
607 return cx25840_vbi(client, VIDIOC_S_FMT, fmt);
609 case V4L2_BUF_TYPE_VBI_CAPTURE:
610 return cx25840_vbi(client, VIDIOC_S_FMT, fmt);
612 default:
613 return -EINVAL;
616 return 0;
619 /* ----------------------------------------------------------------------- */
621 static int cx25840_command(struct i2c_client *client, unsigned int cmd,
622 void *arg)
624 struct cx25840_state *state = i2c_get_clientdata(client);
625 struct v4l2_tuner *vt = arg;
626 struct v4l2_routing *route = arg;
628 /* ignore these commands */
629 switch (cmd) {
630 case TUNER_SET_TYPE_ADDR:
631 return 0;
634 if (!state->is_initialized) {
635 v4l_dbg(1, cx25840_debug, client, "cmd %08x triggered fw load\n", cmd);
636 /* initialize on first use */
637 state->is_initialized = 1;
638 if (state->is_cx25836)
639 cx25836_initialize(client);
640 else
641 cx25840_initialize(client);
644 switch (cmd) {
645 #ifdef CONFIG_VIDEO_ADV_DEBUG
646 /* ioctls to allow direct access to the
647 * cx25840 registers for testing */
648 case VIDIOC_DBG_G_REGISTER:
649 case VIDIOC_DBG_S_REGISTER:
651 struct v4l2_register *reg = arg;
653 if (!v4l2_chip_match_i2c_client(client, reg->match_type, reg->match_chip))
654 return -EINVAL;
655 if (!capable(CAP_SYS_ADMIN))
656 return -EPERM;
657 if (cmd == VIDIOC_DBG_G_REGISTER)
658 reg->val = cx25840_read(client, reg->reg & 0x0fff);
659 else
660 cx25840_write(client, reg->reg & 0x0fff, reg->val & 0xff);
661 break;
663 #endif
665 case VIDIOC_INT_DECODE_VBI_LINE:
666 return cx25840_vbi(client, cmd, arg);
668 case VIDIOC_INT_AUDIO_CLOCK_FREQ:
669 return cx25840_audio(client, cmd, arg);
671 case VIDIOC_STREAMON:
672 v4l_dbg(1, cx25840_debug, client, "enable output\n");
673 cx25840_write(client, 0x115, state->is_cx25836 ? 0x0c : 0x8c);
674 cx25840_write(client, 0x116, state->is_cx25836 ? 0x04 : 0x07);
675 break;
677 case VIDIOC_STREAMOFF:
678 v4l_dbg(1, cx25840_debug, client, "disable output\n");
679 cx25840_write(client, 0x115, 0x00);
680 cx25840_write(client, 0x116, 0x00);
681 break;
683 case VIDIOC_LOG_STATUS:
684 log_video_status(client);
685 if (!state->is_cx25836)
686 log_audio_status(client);
687 break;
689 case VIDIOC_G_CTRL:
690 return get_v4lctrl(client, (struct v4l2_control *)arg);
692 case VIDIOC_S_CTRL:
693 return set_v4lctrl(client, (struct v4l2_control *)arg);
695 case VIDIOC_QUERYCTRL:
697 struct v4l2_queryctrl *qc = arg;
699 switch (qc->id) {
700 case V4L2_CID_BRIGHTNESS:
701 case V4L2_CID_CONTRAST:
702 case V4L2_CID_SATURATION:
703 case V4L2_CID_HUE:
704 return v4l2_ctrl_query_fill_std(qc);
705 default:
706 break;
708 if (state->is_cx25836)
709 return -EINVAL;
711 switch (qc->id) {
712 case V4L2_CID_AUDIO_VOLUME:
713 case V4L2_CID_AUDIO_MUTE:
714 case V4L2_CID_AUDIO_BALANCE:
715 case V4L2_CID_AUDIO_BASS:
716 case V4L2_CID_AUDIO_TREBLE:
717 return v4l2_ctrl_query_fill_std(qc);
718 default:
719 return -EINVAL;
721 return -EINVAL;
724 case VIDIOC_G_STD:
725 *(v4l2_std_id *)arg = cx25840_get_v4lstd(client);
726 break;
728 case VIDIOC_S_STD:
729 state->radio = 0;
730 return set_v4lstd(client, *(v4l2_std_id *)arg);
732 case AUDC_SET_RADIO:
733 state->radio = 1;
734 break;
736 case VIDIOC_INT_G_VIDEO_ROUTING:
737 route->input = state->vid_input;
738 route->output = 0;
739 break;
741 case VIDIOC_INT_S_VIDEO_ROUTING:
742 return set_input(client, route->input, state->aud_input);
744 case VIDIOC_INT_G_AUDIO_ROUTING:
745 if (state->is_cx25836)
746 return -EINVAL;
747 route->input = state->aud_input;
748 route->output = 0;
749 break;
751 case VIDIOC_INT_S_AUDIO_ROUTING:
752 if (state->is_cx25836)
753 return -EINVAL;
754 return set_input(client, state->vid_input, route->input);
756 case VIDIOC_S_FREQUENCY:
757 if (!state->is_cx25836) {
758 input_change(client);
760 break;
762 case VIDIOC_G_TUNER:
764 u8 vpres = cx25840_read(client, 0x40e) & 0x20;
765 u8 mode;
766 int val = 0;
768 if (state->radio)
769 break;
771 vt->signal = vpres ? 0xffff : 0x0;
772 if (state->is_cx25836)
773 break;
775 vt->capability |=
776 V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_LANG1 |
777 V4L2_TUNER_CAP_LANG2 | V4L2_TUNER_CAP_SAP;
779 mode = cx25840_read(client, 0x804);
781 /* get rxsubchans and audmode */
782 if ((mode & 0xf) == 1)
783 val |= V4L2_TUNER_SUB_STEREO;
784 else
785 val |= V4L2_TUNER_SUB_MONO;
787 if (mode == 2 || mode == 4)
788 val = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
790 if (mode & 0x10)
791 val |= V4L2_TUNER_SUB_SAP;
793 vt->rxsubchans = val;
794 vt->audmode = state->audmode;
795 break;
798 case VIDIOC_S_TUNER:
799 if (state->radio || state->is_cx25836)
800 break;
802 switch (vt->audmode) {
803 case V4L2_TUNER_MODE_MONO:
804 /* mono -> mono
805 stereo -> mono
806 bilingual -> lang1 */
807 cx25840_and_or(client, 0x809, ~0xf, 0x00);
808 break;
809 case V4L2_TUNER_MODE_STEREO:
810 case V4L2_TUNER_MODE_LANG1:
811 /* mono -> mono
812 stereo -> stereo
813 bilingual -> lang1 */
814 cx25840_and_or(client, 0x809, ~0xf, 0x04);
815 break;
816 case V4L2_TUNER_MODE_LANG1_LANG2:
817 /* mono -> mono
818 stereo -> stereo
819 bilingual -> lang1/lang2 */
820 cx25840_and_or(client, 0x809, ~0xf, 0x07);
821 break;
822 case V4L2_TUNER_MODE_LANG2:
823 /* mono -> mono
824 stereo -> stereo
825 bilingual -> lang2 */
826 cx25840_and_or(client, 0x809, ~0xf, 0x01);
827 break;
828 default:
829 return -EINVAL;
831 state->audmode = vt->audmode;
832 break;
834 case VIDIOC_G_FMT:
835 return get_v4lfmt(client, (struct v4l2_format *)arg);
837 case VIDIOC_S_FMT:
838 return set_v4lfmt(client, (struct v4l2_format *)arg);
840 case VIDIOC_INT_RESET:
841 if (state->is_cx25836)
842 cx25836_initialize(client);
843 else
844 cx25840_initialize(client);
845 break;
847 case VIDIOC_G_CHIP_IDENT:
848 return v4l2_chip_ident_i2c_client(client, arg, state->id, state->rev);
850 default:
851 return -EINVAL;
854 return 0;
857 /* ----------------------------------------------------------------------- */
859 static struct i2c_driver i2c_driver_cx25840;
861 static int cx25840_detect_client(struct i2c_adapter *adapter, int address,
862 int kind)
864 struct i2c_client *client;
865 struct cx25840_state *state;
866 u32 id;
867 u16 device_id;
869 /* Check if the adapter supports the needed features
870 * Not until kernel version 2.6.11 did the bit-algo
871 * correctly report that it would do an I2C-level xfer */
872 if (!i2c_check_functionality(adapter, I2C_FUNC_I2C))
873 return 0;
875 state = kzalloc(sizeof(struct cx25840_state), GFP_KERNEL);
876 if (state == 0)
877 return -ENOMEM;
879 client = &state->c;
880 client->addr = address;
881 client->adapter = adapter;
882 client->driver = &i2c_driver_cx25840;
883 snprintf(client->name, sizeof(client->name) - 1, "cx25840");
885 v4l_dbg(1, cx25840_debug, client, "detecting cx25840 client on address 0x%x\n", address << 1);
887 device_id = cx25840_read(client, 0x101) << 8;
888 device_id |= cx25840_read(client, 0x100);
890 /* The high byte of the device ID should be
891 * 0x83 for the cx2583x and 0x84 for the cx2584x */
892 if ((device_id & 0xff00) == 0x8300) {
893 id = V4L2_IDENT_CX25836 + ((device_id >> 4) & 0xf) - 6;
894 state->is_cx25836 = 1;
896 else if ((device_id & 0xff00) == 0x8400) {
897 id = V4L2_IDENT_CX25840 + ((device_id >> 4) & 0xf);
898 state->is_cx25836 = 0;
900 else {
901 v4l_dbg(1, cx25840_debug, client, "cx25840 not found\n");
902 kfree(state);
903 return 0;
906 /* Note: revision '(device_id & 0x0f) == 2' was never built. The
907 marking skips from 0x1 == 22 to 0x3 == 23. */
908 v4l_info(client, "cx25%3x-2%x found @ 0x%x (%s)\n",
909 (device_id & 0xfff0) >> 4,
910 (device_id & 0x0f) < 3 ? (device_id & 0x0f) + 1 : (device_id & 0x0f),
911 address << 1, adapter->name);
913 i2c_set_clientdata(client, state);
914 state->vid_input = CX25840_COMPOSITE7;
915 state->aud_input = CX25840_AUDIO8;
916 state->audclk_freq = 48000;
917 state->pvr150_workaround = 0;
918 state->audmode = V4L2_TUNER_MODE_LANG1;
919 state->unmute_volume = -1;
920 state->vbi_line_offset = 8;
921 state->id = id;
922 state->rev = device_id;
924 i2c_attach_client(client);
926 return 0;
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);
933 return 0;
936 static int cx25840_detach_client(struct i2c_client *client)
938 struct cx25840_state *state = i2c_get_clientdata(client);
939 int err;
941 err = i2c_detach_client(client);
942 if (err) {
943 return err;
946 kfree(state);
948 return 0;
951 /* ----------------------------------------------------------------------- */
953 static struct i2c_driver i2c_driver_cx25840 = {
954 .driver = {
955 .name = "cx25840",
957 .id = I2C_DRIVERID_CX25840,
958 .attach_adapter = cx25840_attach_adapter,
959 .detach_client = cx25840_detach_client,
960 .command = cx25840_command,
964 static int __init m__init(void)
966 return i2c_add_driver(&i2c_driver_cx25840);
969 static void __exit m__exit(void)
971 i2c_del_driver(&i2c_driver_cx25840);
974 module_init(m__init);
975 module_exit(m__exit);
977 /* ----------------------------------------------------------------------- */
979 static void log_video_status(struct i2c_client *client)
981 static const char *const fmt_strs[] = {
982 "0x0",
983 "NTSC-M", "NTSC-J", "NTSC-4.43",
984 "PAL-BDGHI", "PAL-M", "PAL-N", "PAL-Nc", "PAL-60",
985 "0x9", "0xA", "0xB",
986 "SECAM",
987 "0xD", "0xE", "0xF"
990 struct cx25840_state *state = i2c_get_clientdata(client);
991 u8 vidfmt_sel = cx25840_read(client, 0x400) & 0xf;
992 u8 gen_stat1 = cx25840_read(client, 0x40d);
993 u8 gen_stat2 = cx25840_read(client, 0x40e);
994 int vid_input = state->vid_input;
996 v4l_info(client, "Video signal: %spresent\n",
997 (gen_stat2 & 0x20) ? "" : "not ");
998 v4l_info(client, "Detected format: %s\n",
999 fmt_strs[gen_stat1 & 0xf]);
1001 v4l_info(client, "Specified standard: %s\n",
1002 vidfmt_sel ? fmt_strs[vidfmt_sel] : "automatic detection");
1004 if (vid_input >= CX25840_COMPOSITE1 &&
1005 vid_input <= CX25840_COMPOSITE8) {
1006 v4l_info(client, "Specified video input: Composite %d\n",
1007 vid_input - CX25840_COMPOSITE1 + 1);
1008 } else {
1009 v4l_info(client, "Specified video input: S-Video (Luma In%d, Chroma In%d)\n",
1010 (vid_input & 0xf0) >> 4, (vid_input & 0xf00) >> 8);
1013 v4l_info(client, "Specified audioclock freq: %d Hz\n", state->audclk_freq);
1016 /* ----------------------------------------------------------------------- */
1018 static void log_audio_status(struct i2c_client *client)
1020 struct cx25840_state *state = i2c_get_clientdata(client);
1021 u8 download_ctl = cx25840_read(client, 0x803);
1022 u8 mod_det_stat0 = cx25840_read(client, 0x804);
1023 u8 mod_det_stat1 = cx25840_read(client, 0x805);
1024 u8 audio_config = cx25840_read(client, 0x808);
1025 u8 pref_mode = cx25840_read(client, 0x809);
1026 u8 afc0 = cx25840_read(client, 0x80b);
1027 u8 mute_ctl = cx25840_read(client, 0x8d3);
1028 int aud_input = state->aud_input;
1029 char *p;
1031 switch (mod_det_stat0) {
1032 case 0x00: p = "mono"; break;
1033 case 0x01: p = "stereo"; break;
1034 case 0x02: p = "dual"; break;
1035 case 0x04: p = "tri"; break;
1036 case 0x10: p = "mono with SAP"; break;
1037 case 0x11: p = "stereo with SAP"; break;
1038 case 0x12: p = "dual with SAP"; break;
1039 case 0x14: p = "tri with SAP"; break;
1040 case 0xfe: p = "forced mode"; break;
1041 default: p = "not defined";
1043 v4l_info(client, "Detected audio mode: %s\n", p);
1045 switch (mod_det_stat1) {
1046 case 0x00: p = "not defined"; break;
1047 case 0x01: p = "EIAJ"; break;
1048 case 0x02: p = "A2-M"; break;
1049 case 0x03: p = "A2-BG"; break;
1050 case 0x04: p = "A2-DK1"; break;
1051 case 0x05: p = "A2-DK2"; break;
1052 case 0x06: p = "A2-DK3"; break;
1053 case 0x07: p = "A1 (6.0 MHz FM Mono)"; break;
1054 case 0x08: p = "AM-L"; break;
1055 case 0x09: p = "NICAM-BG"; break;
1056 case 0x0a: p = "NICAM-DK"; break;
1057 case 0x0b: p = "NICAM-I"; break;
1058 case 0x0c: p = "NICAM-L"; break;
1059 case 0x0d: p = "BTSC/EIAJ/A2-M Mono (4.5 MHz FMMono)"; break;
1060 case 0x0e: p = "IF FM Radio"; break;
1061 case 0x0f: p = "BTSC"; break;
1062 case 0x10: p = "high-deviation FM"; break;
1063 case 0x11: p = "very high-deviation FM"; break;
1064 case 0xfd: p = "unknown audio standard"; break;
1065 case 0xfe: p = "forced audio standard"; break;
1066 case 0xff: p = "no detected audio standard"; break;
1067 default: p = "not defined";
1069 v4l_info(client, "Detected audio standard: %s\n", p);
1070 v4l_info(client, "Audio muted: %s\n",
1071 (state->unmute_volume >= 0) ? "yes" : "no");
1072 v4l_info(client, "Audio microcontroller: %s\n",
1073 (download_ctl & 0x10) ?
1074 ((mute_ctl & 0x2) ? "detecting" : "running") : "stopped");
1076 switch (audio_config >> 4) {
1077 case 0x00: p = "undefined"; break;
1078 case 0x01: p = "BTSC"; break;
1079 case 0x02: p = "EIAJ"; break;
1080 case 0x03: p = "A2-M"; break;
1081 case 0x04: p = "A2-BG"; break;
1082 case 0x05: p = "A2-DK1"; break;
1083 case 0x06: p = "A2-DK2"; break;
1084 case 0x07: p = "A2-DK3"; break;
1085 case 0x08: p = "A1 (6.0 MHz FM Mono)"; break;
1086 case 0x09: p = "AM-L"; break;
1087 case 0x0a: p = "NICAM-BG"; break;
1088 case 0x0b: p = "NICAM-DK"; break;
1089 case 0x0c: p = "NICAM-I"; break;
1090 case 0x0d: p = "NICAM-L"; break;
1091 case 0x0e: p = "FM radio"; break;
1092 case 0x0f: p = "automatic detection"; break;
1093 default: p = "undefined";
1095 v4l_info(client, "Configured audio standard: %s\n", p);
1097 if ((audio_config >> 4) < 0xF) {
1098 switch (audio_config & 0xF) {
1099 case 0x00: p = "MONO1 (LANGUAGE A/Mono L+R channel for BTSC, EIAJ, A2)"; break;
1100 case 0x01: p = "MONO2 (LANGUAGE B)"; break;
1101 case 0x02: p = "MONO3 (STEREO forced MONO)"; break;
1102 case 0x03: p = "MONO4 (NICAM ANALOG-Language C/Analog Fallback)"; break;
1103 case 0x04: p = "STEREO"; break;
1104 case 0x05: p = "DUAL1 (AB)"; break;
1105 case 0x06: p = "DUAL2 (AC) (FM)"; break;
1106 case 0x07: p = "DUAL3 (BC) (FM)"; break;
1107 case 0x08: p = "DUAL4 (AC) (AM)"; break;
1108 case 0x09: p = "DUAL5 (BC) (AM)"; break;
1109 case 0x0a: p = "SAP"; break;
1110 default: p = "undefined";
1112 v4l_info(client, "Configured audio mode: %s\n", p);
1113 } else {
1114 switch (audio_config & 0xF) {
1115 case 0x00: p = "BG"; break;
1116 case 0x01: p = "DK1"; break;
1117 case 0x02: p = "DK2"; break;
1118 case 0x03: p = "DK3"; break;
1119 case 0x04: p = "I"; break;
1120 case 0x05: p = "L"; break;
1121 case 0x06: p = "BTSC"; break;
1122 case 0x07: p = "EIAJ"; break;
1123 case 0x08: p = "A2-M"; break;
1124 case 0x09: p = "FM Radio"; break;
1125 case 0x0f: p = "automatic standard and mode detection"; break;
1126 default: p = "undefined";
1128 v4l_info(client, "Configured audio system: %s\n", p);
1131 if (aud_input) {
1132 v4l_info(client, "Specified audio input: Tuner (In%d)\n", aud_input);
1133 } else {
1134 v4l_info(client, "Specified audio input: External\n");
1137 switch (pref_mode & 0xf) {
1138 case 0: p = "mono/language A"; break;
1139 case 1: p = "language B"; break;
1140 case 2: p = "language C"; break;
1141 case 3: p = "analog fallback"; break;
1142 case 4: p = "stereo"; break;
1143 case 5: p = "language AC"; break;
1144 case 6: p = "language BC"; break;
1145 case 7: p = "language AB"; break;
1146 default: p = "undefined";
1148 v4l_info(client, "Preferred audio mode: %s\n", p);
1150 if ((audio_config & 0xf) == 0xf) {
1151 switch ((afc0 >> 3) & 0x3) {
1152 case 0: p = "system DK"; break;
1153 case 1: p = "system L"; break;
1154 case 2: p = "autodetect"; break;
1155 default: p = "undefined";
1157 v4l_info(client, "Selected 65 MHz format: %s\n", p);
1159 switch (afc0 & 0x7) {
1160 case 0: p = "chroma"; break;
1161 case 1: p = "BTSC"; break;
1162 case 2: p = "EIAJ"; break;
1163 case 3: p = "A2-M"; break;
1164 case 4: p = "autodetect"; break;
1165 default: p = "undefined";
1167 v4l_info(client, "Selected 45 MHz format: %s\n", p);