drm/nvc0: gpuobj_new need only check validity and init the relevant engine
[linux-2.6/libata-dev.git] / drivers / media / video / tvp5150.c
blob58927664d3ea17250027e354fb5e5fa8aaa1d775
1 /*
2 * tvp5150 - Texas Instruments TVP5150A/AM1 video decoder driver
4 * Copyright (c) 2005,2006 Mauro Carvalho Chehab (mchehab@infradead.org)
5 * This code is placed under the terms of the GNU General Public License v2
6 */
8 #include <linux/i2c.h>
9 #include <linux/slab.h>
10 #include <linux/videodev2.h>
11 #include <linux/delay.h>
12 #include <media/v4l2-device.h>
13 #include <media/tvp5150.h>
14 #include <media/v4l2-chip-ident.h>
16 #include "tvp5150_reg.h"
18 MODULE_DESCRIPTION("Texas Instruments TVP5150A video decoder driver");
19 MODULE_AUTHOR("Mauro Carvalho Chehab");
20 MODULE_LICENSE("GPL");
23 static int debug;
24 module_param(debug, int, 0);
25 MODULE_PARM_DESC(debug, "Debug level (0-2)");
27 /* supported controls */
28 static struct v4l2_queryctrl tvp5150_qctrl[] = {
30 .id = V4L2_CID_BRIGHTNESS,
31 .type = V4L2_CTRL_TYPE_INTEGER,
32 .name = "Brightness",
33 .minimum = 0,
34 .maximum = 255,
35 .step = 1,
36 .default_value = 128,
37 .flags = 0,
38 }, {
39 .id = V4L2_CID_CONTRAST,
40 .type = V4L2_CTRL_TYPE_INTEGER,
41 .name = "Contrast",
42 .minimum = 0,
43 .maximum = 255,
44 .step = 0x1,
45 .default_value = 128,
46 .flags = 0,
47 }, {
48 .id = V4L2_CID_SATURATION,
49 .type = V4L2_CTRL_TYPE_INTEGER,
50 .name = "Saturation",
51 .minimum = 0,
52 .maximum = 255,
53 .step = 0x1,
54 .default_value = 128,
55 .flags = 0,
56 }, {
57 .id = V4L2_CID_HUE,
58 .type = V4L2_CTRL_TYPE_INTEGER,
59 .name = "Hue",
60 .minimum = -128,
61 .maximum = 127,
62 .step = 0x1,
63 .default_value = 0,
64 .flags = 0,
68 struct tvp5150 {
69 struct v4l2_subdev sd;
71 v4l2_std_id norm; /* Current set standard */
72 u32 input;
73 u32 output;
74 int enable;
75 int bright;
76 int contrast;
77 int hue;
78 int sat;
81 static inline struct tvp5150 *to_tvp5150(struct v4l2_subdev *sd)
83 return container_of(sd, struct tvp5150, sd);
86 static int tvp5150_read(struct v4l2_subdev *sd, unsigned char addr)
88 struct i2c_client *c = v4l2_get_subdevdata(sd);
89 unsigned char buffer[1];
90 int rc;
92 buffer[0] = addr;
93 if (1 != (rc = i2c_master_send(c, buffer, 1)))
94 v4l2_dbg(0, debug, sd, "i2c i/o error: rc == %d (should be 1)\n", rc);
96 msleep(10);
98 if (1 != (rc = i2c_master_recv(c, buffer, 1)))
99 v4l2_dbg(0, debug, sd, "i2c i/o error: rc == %d (should be 1)\n", rc);
101 v4l2_dbg(2, debug, sd, "tvp5150: read 0x%02x = 0x%02x\n", addr, buffer[0]);
103 return (buffer[0]);
106 static inline void tvp5150_write(struct v4l2_subdev *sd, unsigned char addr,
107 unsigned char value)
109 struct i2c_client *c = v4l2_get_subdevdata(sd);
110 unsigned char buffer[2];
111 int rc;
113 buffer[0] = addr;
114 buffer[1] = value;
115 v4l2_dbg(2, debug, sd, "tvp5150: writing 0x%02x 0x%02x\n", buffer[0], buffer[1]);
116 if (2 != (rc = i2c_master_send(c, buffer, 2)))
117 v4l2_dbg(0, debug, sd, "i2c i/o error: rc == %d (should be 2)\n", rc);
120 static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
121 const u8 end, int max_line)
123 int i = 0;
125 while (init != (u8)(end + 1)) {
126 if ((i % max_line) == 0) {
127 if (i > 0)
128 printk("\n");
129 printk("tvp5150: %s reg 0x%02x = ", s, init);
131 printk("%02x ", tvp5150_read(sd, init));
133 init++;
134 i++;
136 printk("\n");
139 static int tvp5150_log_status(struct v4l2_subdev *sd)
141 printk("tvp5150: Video input source selection #1 = 0x%02x\n",
142 tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
143 printk("tvp5150: Analog channel controls = 0x%02x\n",
144 tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
145 printk("tvp5150: Operation mode controls = 0x%02x\n",
146 tvp5150_read(sd, TVP5150_OP_MODE_CTL));
147 printk("tvp5150: Miscellaneous controls = 0x%02x\n",
148 tvp5150_read(sd, TVP5150_MISC_CTL));
149 printk("tvp5150: Autoswitch mask= 0x%02x\n",
150 tvp5150_read(sd, TVP5150_AUTOSW_MSK));
151 printk("tvp5150: Color killer threshold control = 0x%02x\n",
152 tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
153 printk("tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
154 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
155 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
156 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
157 printk("tvp5150: Brightness control = 0x%02x\n",
158 tvp5150_read(sd, TVP5150_BRIGHT_CTL));
159 printk("tvp5150: Color saturation control = 0x%02x\n",
160 tvp5150_read(sd, TVP5150_SATURATION_CTL));
161 printk("tvp5150: Hue control = 0x%02x\n",
162 tvp5150_read(sd, TVP5150_HUE_CTL));
163 printk("tvp5150: Contrast control = 0x%02x\n",
164 tvp5150_read(sd, TVP5150_CONTRAST_CTL));
165 printk("tvp5150: Outputs and data rates select = 0x%02x\n",
166 tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
167 printk("tvp5150: Configuration shared pins = 0x%02x\n",
168 tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
169 printk("tvp5150: Active video cropping start = 0x%02x%02x\n",
170 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
171 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
172 printk("tvp5150: Active video cropping stop = 0x%02x%02x\n",
173 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
174 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
175 printk("tvp5150: Genlock/RTC = 0x%02x\n",
176 tvp5150_read(sd, TVP5150_GENLOCK));
177 printk("tvp5150: Horizontal sync start = 0x%02x\n",
178 tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
179 printk("tvp5150: Vertical blanking start = 0x%02x\n",
180 tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
181 printk("tvp5150: Vertical blanking stop = 0x%02x\n",
182 tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
183 printk("tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
184 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
185 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
186 printk("tvp5150: Interrupt reset register B = 0x%02x\n",
187 tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
188 printk("tvp5150: Interrupt enable register B = 0x%02x\n",
189 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
190 printk("tvp5150: Interrupt configuration register B = 0x%02x\n",
191 tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
192 printk("tvp5150: Video standard = 0x%02x\n",
193 tvp5150_read(sd, TVP5150_VIDEO_STD));
194 printk("tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
195 tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
196 tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
197 printk("tvp5150: Macrovision on counter = 0x%02x\n",
198 tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
199 printk("tvp5150: Macrovision off counter = 0x%02x\n",
200 tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
201 printk("tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
202 (tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
203 printk("tvp5150: Device ID = %02x%02x\n",
204 tvp5150_read(sd, TVP5150_MSB_DEV_ID),
205 tvp5150_read(sd, TVP5150_LSB_DEV_ID));
206 printk("tvp5150: ROM version = (hex) %02x.%02x\n",
207 tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
208 tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
209 printk("tvp5150: Vertical line count = 0x%02x%02x\n",
210 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
211 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
212 printk("tvp5150: Interrupt status register B = 0x%02x\n",
213 tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
214 printk("tvp5150: Interrupt active register B = 0x%02x\n",
215 tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
216 printk("tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
217 tvp5150_read(sd, TVP5150_STATUS_REG_1),
218 tvp5150_read(sd, TVP5150_STATUS_REG_2),
219 tvp5150_read(sd, TVP5150_STATUS_REG_3),
220 tvp5150_read(sd, TVP5150_STATUS_REG_4),
221 tvp5150_read(sd, TVP5150_STATUS_REG_5));
223 dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
224 TVP5150_TELETEXT_FIL1_END, 8);
225 dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
226 TVP5150_TELETEXT_FIL2_END, 8);
228 printk("tvp5150: Teletext filter enable = 0x%02x\n",
229 tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
230 printk("tvp5150: Interrupt status register A = 0x%02x\n",
231 tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
232 printk("tvp5150: Interrupt enable register A = 0x%02x\n",
233 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
234 printk("tvp5150: Interrupt configuration = 0x%02x\n",
235 tvp5150_read(sd, TVP5150_INT_CONF));
236 printk("tvp5150: VDP status register = 0x%02x\n",
237 tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
238 printk("tvp5150: FIFO word count = 0x%02x\n",
239 tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
240 printk("tvp5150: FIFO interrupt threshold = 0x%02x\n",
241 tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
242 printk("tvp5150: FIFO reset = 0x%02x\n",
243 tvp5150_read(sd, TVP5150_FIFO_RESET));
244 printk("tvp5150: Line number interrupt = 0x%02x\n",
245 tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
246 printk("tvp5150: Pixel alignment register = 0x%02x%02x\n",
247 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
248 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
249 printk("tvp5150: FIFO output control = 0x%02x\n",
250 tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
251 printk("tvp5150: Full field enable = 0x%02x\n",
252 tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
253 printk("tvp5150: Full field mode register = 0x%02x\n",
254 tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
256 dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
257 TVP5150_CC_DATA_END, 8);
259 dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
260 TVP5150_WSS_DATA_END, 8);
262 dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
263 TVP5150_VPS_DATA_END, 8);
265 dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
266 TVP5150_VITC_DATA_END, 10);
268 dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
269 TVP5150_LINE_MODE_END, 8);
270 return 0;
273 /****************************************************************************
274 Basic functions
275 ****************************************************************************/
277 static inline void tvp5150_selmux(struct v4l2_subdev *sd)
279 int opmode = 0;
280 struct tvp5150 *decoder = to_tvp5150(sd);
281 int input = 0;
282 unsigned char val;
284 if ((decoder->output & TVP5150_BLACK_SCREEN) || !decoder->enable)
285 input = 8;
287 switch (decoder->input) {
288 case TVP5150_COMPOSITE1:
289 input |= 2;
290 /* fall through */
291 case TVP5150_COMPOSITE0:
292 break;
293 case TVP5150_SVIDEO:
294 default:
295 input |= 1;
296 break;
299 v4l2_dbg(1, debug, sd, "Selecting video route: route input=%i, output=%i "
300 "=> tvp5150 input=%i, opmode=%i\n",
301 decoder->input, decoder->output,
302 input, opmode);
304 tvp5150_write(sd, TVP5150_OP_MODE_CTL, opmode);
305 tvp5150_write(sd, TVP5150_VD_IN_SRC_SEL_1, input);
307 /* Svideo should enable YCrCb output and disable GPCL output
308 * For Composite and TV, it should be the reverse
310 val = tvp5150_read(sd, TVP5150_MISC_CTL);
311 if (decoder->input == TVP5150_SVIDEO)
312 val = (val & ~0x40) | 0x10;
313 else
314 val = (val & ~0x10) | 0x40;
315 tvp5150_write(sd, TVP5150_MISC_CTL, val);
318 struct i2c_reg_value {
319 unsigned char reg;
320 unsigned char value;
323 /* Default values as sugested at TVP5150AM1 datasheet */
324 static const struct i2c_reg_value tvp5150_init_default[] = {
325 { /* 0x00 */
326 TVP5150_VD_IN_SRC_SEL_1,0x00
328 { /* 0x01 */
329 TVP5150_ANAL_CHL_CTL,0x15
331 { /* 0x02 */
332 TVP5150_OP_MODE_CTL,0x00
334 { /* 0x03 */
335 TVP5150_MISC_CTL,0x01
337 { /* 0x06 */
338 TVP5150_COLOR_KIL_THSH_CTL,0x10
340 { /* 0x07 */
341 TVP5150_LUMA_PROC_CTL_1,0x60
343 { /* 0x08 */
344 TVP5150_LUMA_PROC_CTL_2,0x00
346 { /* 0x09 */
347 TVP5150_BRIGHT_CTL,0x80
349 { /* 0x0a */
350 TVP5150_SATURATION_CTL,0x80
352 { /* 0x0b */
353 TVP5150_HUE_CTL,0x00
355 { /* 0x0c */
356 TVP5150_CONTRAST_CTL,0x80
358 { /* 0x0d */
359 TVP5150_DATA_RATE_SEL,0x47
361 { /* 0x0e */
362 TVP5150_LUMA_PROC_CTL_3,0x00
364 { /* 0x0f */
365 TVP5150_CONF_SHARED_PIN,0x08
367 { /* 0x11 */
368 TVP5150_ACT_VD_CROP_ST_MSB,0x00
370 { /* 0x12 */
371 TVP5150_ACT_VD_CROP_ST_LSB,0x00
373 { /* 0x13 */
374 TVP5150_ACT_VD_CROP_STP_MSB,0x00
376 { /* 0x14 */
377 TVP5150_ACT_VD_CROP_STP_LSB,0x00
379 { /* 0x15 */
380 TVP5150_GENLOCK,0x01
382 { /* 0x16 */
383 TVP5150_HORIZ_SYNC_START,0x80
385 { /* 0x18 */
386 TVP5150_VERT_BLANKING_START,0x00
388 { /* 0x19 */
389 TVP5150_VERT_BLANKING_STOP,0x00
391 { /* 0x1a */
392 TVP5150_CHROMA_PROC_CTL_1,0x0c
394 { /* 0x1b */
395 TVP5150_CHROMA_PROC_CTL_2,0x14
397 { /* 0x1c */
398 TVP5150_INT_RESET_REG_B,0x00
400 { /* 0x1d */
401 TVP5150_INT_ENABLE_REG_B,0x00
403 { /* 0x1e */
404 TVP5150_INTT_CONFIG_REG_B,0x00
406 { /* 0x28 */
407 TVP5150_VIDEO_STD,0x00
409 { /* 0x2e */
410 TVP5150_MACROVISION_ON_CTR,0x0f
412 { /* 0x2f */
413 TVP5150_MACROVISION_OFF_CTR,0x01
415 { /* 0xbb */
416 TVP5150_TELETEXT_FIL_ENA,0x00
418 { /* 0xc0 */
419 TVP5150_INT_STATUS_REG_A,0x00
421 { /* 0xc1 */
422 TVP5150_INT_ENABLE_REG_A,0x00
424 { /* 0xc2 */
425 TVP5150_INT_CONF,0x04
427 { /* 0xc8 */
428 TVP5150_FIFO_INT_THRESHOLD,0x80
430 { /* 0xc9 */
431 TVP5150_FIFO_RESET,0x00
433 { /* 0xca */
434 TVP5150_LINE_NUMBER_INT,0x00
436 { /* 0xcb */
437 TVP5150_PIX_ALIGN_REG_LOW,0x4e
439 { /* 0xcc */
440 TVP5150_PIX_ALIGN_REG_HIGH,0x00
442 { /* 0xcd */
443 TVP5150_FIFO_OUT_CTRL,0x01
445 { /* 0xcf */
446 TVP5150_FULL_FIELD_ENA,0x00
448 { /* 0xd0 */
449 TVP5150_LINE_MODE_INI,0x00
451 { /* 0xfc */
452 TVP5150_FULL_FIELD_MODE_REG,0x7f
454 { /* end of data */
455 0xff,0xff
459 /* Default values as sugested at TVP5150AM1 datasheet */
460 static const struct i2c_reg_value tvp5150_init_enable[] = {
462 TVP5150_CONF_SHARED_PIN, 2
463 },{ /* Automatic offset and AGC enabled */
464 TVP5150_ANAL_CHL_CTL, 0x15
465 },{ /* Activate YCrCb output 0x9 or 0xd ? */
466 TVP5150_MISC_CTL, 0x6f
467 },{ /* Activates video std autodetection for all standards */
468 TVP5150_AUTOSW_MSK, 0x0
469 },{ /* Default format: 0x47. For 4:2:2: 0x40 */
470 TVP5150_DATA_RATE_SEL, 0x47
472 TVP5150_CHROMA_PROC_CTL_1, 0x0c
474 TVP5150_CHROMA_PROC_CTL_2, 0x54
475 },{ /* Non documented, but initialized on WinTV USB2 */
476 0x27, 0x20
478 0xff,0xff
482 struct tvp5150_vbi_type {
483 unsigned int vbi_type;
484 unsigned int ini_line;
485 unsigned int end_line;
486 unsigned int by_field :1;
489 struct i2c_vbi_ram_value {
490 u16 reg;
491 struct tvp5150_vbi_type type;
492 unsigned char values[16];
495 /* This struct have the values for each supported VBI Standard
496 * by
497 tvp5150_vbi_types should follow the same order as vbi_ram_default
498 * value 0 means rom position 0x10, value 1 means rom position 0x30
499 * and so on. There are 16 possible locations from 0 to 15.
502 static struct i2c_vbi_ram_value vbi_ram_default[] =
504 /* FIXME: Current api doesn't handle all VBI types, those not
505 yet supported are placed under #if 0 */
506 #if 0
507 {0x010, /* Teletext, SECAM, WST System A */
508 {V4L2_SLICED_TELETEXT_SECAM,6,23,1},
509 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
510 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
512 #endif
513 {0x030, /* Teletext, PAL, WST System B */
514 {V4L2_SLICED_TELETEXT_B,6,22,1},
515 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
516 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
518 #if 0
519 {0x050, /* Teletext, PAL, WST System C */
520 {V4L2_SLICED_TELETEXT_PAL_C,6,22,1},
521 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
522 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
524 {0x070, /* Teletext, NTSC, WST System B */
525 {V4L2_SLICED_TELETEXT_NTSC_B,10,21,1},
526 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
527 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
529 {0x090, /* Tetetext, NTSC NABTS System C */
530 {V4L2_SLICED_TELETEXT_NTSC_C,10,21,1},
531 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
532 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
534 {0x0b0, /* Teletext, NTSC-J, NABTS System D */
535 {V4L2_SLICED_TELETEXT_NTSC_D,10,21,1},
536 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
537 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
539 {0x0d0, /* Closed Caption, PAL/SECAM */
540 {V4L2_SLICED_CAPTION_625,22,22,1},
541 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
542 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
544 #endif
545 {0x0f0, /* Closed Caption, NTSC */
546 {V4L2_SLICED_CAPTION_525,21,21,1},
547 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
548 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
550 {0x110, /* Wide Screen Signal, PAL/SECAM */
551 {V4L2_SLICED_WSS_625,23,23,1},
552 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
553 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
555 #if 0
556 {0x130, /* Wide Screen Signal, NTSC C */
557 {V4L2_SLICED_WSS_525,20,20,1},
558 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
559 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
561 {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
562 {V4l2_SLICED_VITC_625,6,22,0},
563 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
564 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
566 {0x170, /* Vertical Interval Timecode (VITC), NTSC */
567 {V4l2_SLICED_VITC_525,10,20,0},
568 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
569 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
571 #endif
572 {0x190, /* Video Program System (VPS), PAL */
573 {V4L2_SLICED_VPS,16,16,0},
574 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
575 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
577 /* 0x1d0 User programmable */
579 /* End of struct */
580 { (u16)-1 }
583 static int tvp5150_write_inittab(struct v4l2_subdev *sd,
584 const struct i2c_reg_value *regs)
586 while (regs->reg != 0xff) {
587 tvp5150_write(sd, regs->reg, regs->value);
588 regs++;
590 return 0;
593 static int tvp5150_vdp_init(struct v4l2_subdev *sd,
594 const struct i2c_vbi_ram_value *regs)
596 unsigned int i;
598 /* Disable Full Field */
599 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
601 /* Before programming, Line mode should be at 0xff */
602 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
603 tvp5150_write(sd, i, 0xff);
605 /* Load Ram Table */
606 while (regs->reg != (u16)-1) {
607 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
608 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
610 for (i = 0; i < 16; i++)
611 tvp5150_write(sd, TVP5150_VDP_CONF_RAM_DATA, regs->values[i]);
613 regs++;
615 return 0;
618 /* Fills VBI capabilities based on i2c_vbi_ram_value struct */
619 static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
620 struct v4l2_sliced_vbi_cap *cap)
622 const struct i2c_vbi_ram_value *regs = vbi_ram_default;
623 int line;
625 v4l2_dbg(1, debug, sd, "g_sliced_vbi_cap\n");
626 memset(cap, 0, sizeof *cap);
628 while (regs->reg != (u16)-1 ) {
629 for (line=regs->type.ini_line;line<=regs->type.end_line;line++) {
630 cap->service_lines[0][line] |= regs->type.vbi_type;
632 cap->service_set |= regs->type.vbi_type;
634 regs++;
636 return 0;
639 /* Set vbi processing
640 * type - one of tvp5150_vbi_types
641 * line - line to gather data
642 * fields: bit 0 field1, bit 1, field2
643 * flags (default=0xf0) is a bitmask, were set means:
644 * bit 7: enable filtering null bytes on CC
645 * bit 6: send data also to FIFO
646 * bit 5: don't allow data with errors on FIFO
647 * bit 4: enable ECC when possible
648 * pix_align = pix alignment:
649 * LSB = field1
650 * MSB = field2
652 static int tvp5150_set_vbi(struct v4l2_subdev *sd,
653 const struct i2c_vbi_ram_value *regs,
654 unsigned int type,u8 flags, int line,
655 const int fields)
657 struct tvp5150 *decoder = to_tvp5150(sd);
658 v4l2_std_id std = decoder->norm;
659 u8 reg;
660 int pos=0;
662 if (std == V4L2_STD_ALL) {
663 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
664 return 0;
665 } else if (std & V4L2_STD_625_50) {
666 /* Don't follow NTSC Line number convension */
667 line += 3;
670 if (line<6||line>27)
671 return 0;
673 while (regs->reg != (u16)-1 ) {
674 if ((type & regs->type.vbi_type) &&
675 (line>=regs->type.ini_line) &&
676 (line<=regs->type.end_line)) {
677 type=regs->type.vbi_type;
678 break;
681 regs++;
682 pos++;
684 if (regs->reg == (u16)-1)
685 return 0;
687 type=pos | (flags & 0xf0);
688 reg=((line-6)<<1)+TVP5150_LINE_MODE_INI;
690 if (fields&1) {
691 tvp5150_write(sd, reg, type);
694 if (fields&2) {
695 tvp5150_write(sd, reg+1, type);
698 return type;
701 static int tvp5150_get_vbi(struct v4l2_subdev *sd,
702 const struct i2c_vbi_ram_value *regs, int line)
704 struct tvp5150 *decoder = to_tvp5150(sd);
705 v4l2_std_id std = decoder->norm;
706 u8 reg;
707 int pos, type = 0;
709 if (std == V4L2_STD_ALL) {
710 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
711 return 0;
712 } else if (std & V4L2_STD_625_50) {
713 /* Don't follow NTSC Line number convension */
714 line += 3;
717 if (line < 6 || line > 27)
718 return 0;
720 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
722 pos = tvp5150_read(sd, reg) & 0x0f;
723 if (pos < 0x0f)
724 type = regs[pos].type.vbi_type;
726 pos = tvp5150_read(sd, reg + 1) & 0x0f;
727 if (pos < 0x0f)
728 type |= regs[pos].type.vbi_type;
730 return type;
733 static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
735 struct tvp5150 *decoder = to_tvp5150(sd);
736 int fmt = 0;
738 decoder->norm = std;
740 /* First tests should be against specific std */
742 if (std == V4L2_STD_ALL) {
743 fmt = 0; /* Autodetect mode */
744 } else if (std & V4L2_STD_NTSC_443) {
745 fmt = 0xa;
746 } else if (std & V4L2_STD_PAL_M) {
747 fmt = 0x6;
748 } else if (std & (V4L2_STD_PAL_N | V4L2_STD_PAL_Nc)) {
749 fmt = 0x8;
750 } else {
751 /* Then, test against generic ones */
752 if (std & V4L2_STD_NTSC)
753 fmt = 0x2;
754 else if (std & V4L2_STD_PAL)
755 fmt = 0x4;
756 else if (std & V4L2_STD_SECAM)
757 fmt = 0xc;
760 v4l2_dbg(1, debug, sd, "Set video std register to %d.\n", fmt);
761 tvp5150_write(sd, TVP5150_VIDEO_STD, fmt);
762 return 0;
765 static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
767 struct tvp5150 *decoder = to_tvp5150(sd);
769 if (decoder->norm == std)
770 return 0;
772 return tvp5150_set_std(sd, std);
775 static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
777 struct tvp5150 *decoder = to_tvp5150(sd);
778 u8 msb_id, lsb_id, msb_rom, lsb_rom;
780 msb_id = tvp5150_read(sd, TVP5150_MSB_DEV_ID);
781 lsb_id = tvp5150_read(sd, TVP5150_LSB_DEV_ID);
782 msb_rom = tvp5150_read(sd, TVP5150_ROM_MAJOR_VER);
783 lsb_rom = tvp5150_read(sd, TVP5150_ROM_MINOR_VER);
785 if (msb_rom == 4 && lsb_rom == 0) { /* Is TVP5150AM1 */
786 v4l2_info(sd, "tvp%02x%02xam1 detected.\n", msb_id, lsb_id);
788 /* ITU-T BT.656.4 timing */
789 tvp5150_write(sd, TVP5150_REV_SELECT, 0);
790 } else {
791 if (msb_rom == 3 || lsb_rom == 0x21) { /* Is TVP5150A */
792 v4l2_info(sd, "tvp%02x%02xa detected.\n", msb_id, lsb_id);
793 } else {
794 v4l2_info(sd, "*** unknown tvp%02x%02x chip detected.\n",
795 msb_id, lsb_id);
796 v4l2_info(sd, "*** Rom ver is %d.%d\n", msb_rom, lsb_rom);
800 /* Initializes TVP5150 to its default values */
801 tvp5150_write_inittab(sd, tvp5150_init_default);
803 /* Initializes VDP registers */
804 tvp5150_vdp_init(sd, vbi_ram_default);
806 /* Selects decoder input */
807 tvp5150_selmux(sd);
809 /* Initializes TVP5150 to stream enabled values */
810 tvp5150_write_inittab(sd, tvp5150_init_enable);
812 /* Initialize image preferences */
813 tvp5150_write(sd, TVP5150_BRIGHT_CTL, decoder->bright);
814 tvp5150_write(sd, TVP5150_CONTRAST_CTL, decoder->contrast);
815 tvp5150_write(sd, TVP5150_SATURATION_CTL, decoder->contrast);
816 tvp5150_write(sd, TVP5150_HUE_CTL, decoder->hue);
818 tvp5150_set_std(sd, decoder->norm);
819 return 0;
822 static int tvp5150_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
824 v4l2_dbg(1, debug, sd, "g_ctrl called\n");
826 switch (ctrl->id) {
827 case V4L2_CID_BRIGHTNESS:
828 ctrl->value = tvp5150_read(sd, TVP5150_BRIGHT_CTL);
829 return 0;
830 case V4L2_CID_CONTRAST:
831 ctrl->value = tvp5150_read(sd, TVP5150_CONTRAST_CTL);
832 return 0;
833 case V4L2_CID_SATURATION:
834 ctrl->value = tvp5150_read(sd, TVP5150_SATURATION_CTL);
835 return 0;
836 case V4L2_CID_HUE:
837 ctrl->value = tvp5150_read(sd, TVP5150_HUE_CTL);
838 return 0;
840 return -EINVAL;
843 static int tvp5150_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
845 u8 i, n;
846 n = ARRAY_SIZE(tvp5150_qctrl);
848 for (i = 0; i < n; i++) {
849 if (ctrl->id != tvp5150_qctrl[i].id)
850 continue;
851 if (ctrl->value < tvp5150_qctrl[i].minimum ||
852 ctrl->value > tvp5150_qctrl[i].maximum)
853 return -ERANGE;
854 v4l2_dbg(1, debug, sd, "s_ctrl: id=%d, value=%d\n",
855 ctrl->id, ctrl->value);
856 break;
859 switch (ctrl->id) {
860 case V4L2_CID_BRIGHTNESS:
861 tvp5150_write(sd, TVP5150_BRIGHT_CTL, ctrl->value);
862 return 0;
863 case V4L2_CID_CONTRAST:
864 tvp5150_write(sd, TVP5150_CONTRAST_CTL, ctrl->value);
865 return 0;
866 case V4L2_CID_SATURATION:
867 tvp5150_write(sd, TVP5150_SATURATION_CTL, ctrl->value);
868 return 0;
869 case V4L2_CID_HUE:
870 tvp5150_write(sd, TVP5150_HUE_CTL, ctrl->value);
871 return 0;
873 return -EINVAL;
876 /****************************************************************************
877 I2C Command
878 ****************************************************************************/
880 static int tvp5150_s_routing(struct v4l2_subdev *sd,
881 u32 input, u32 output, u32 config)
883 struct tvp5150 *decoder = to_tvp5150(sd);
885 decoder->input = input;
886 decoder->output = output;
887 tvp5150_selmux(sd);
888 return 0;
891 static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
893 /* this is for capturing 36 raw vbi lines
894 if there's a way to cut off the beginning 2 vbi lines
895 with the tvp5150 then the vbi line count could be lowered
896 to 17 lines/field again, although I couldn't find a register
897 which could do that cropping */
898 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
899 tvp5150_write(sd, TVP5150_LUMA_PROC_CTL_1, 0x70);
900 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
901 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, 0x00);
902 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP, 0x01);
904 return 0;
907 static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
909 int i;
911 if (svbi->service_set != 0) {
912 for (i = 0; i <= 23; i++) {
913 svbi->service_lines[1][i] = 0;
914 svbi->service_lines[0][i] =
915 tvp5150_set_vbi(sd, vbi_ram_default,
916 svbi->service_lines[0][i], 0xf0, i, 3);
918 /* Enables FIFO */
919 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 1);
920 } else {
921 /* Disables FIFO*/
922 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 0);
924 /* Disable Full Field */
925 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
927 /* Disable Line modes */
928 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
929 tvp5150_write(sd, i, 0xff);
931 return 0;
934 static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
936 int i, mask = 0;
938 memset(svbi, 0, sizeof(*svbi));
940 for (i = 0; i <= 23; i++) {
941 svbi->service_lines[0][i] =
942 tvp5150_get_vbi(sd, vbi_ram_default, i);
943 mask |= svbi->service_lines[0][i];
945 svbi->service_set = mask;
946 return 0;
949 static int tvp5150_g_chip_ident(struct v4l2_subdev *sd,
950 struct v4l2_dbg_chip_ident *chip)
952 int rev;
953 struct i2c_client *client = v4l2_get_subdevdata(sd);
955 rev = tvp5150_read(sd, TVP5150_ROM_MAJOR_VER) << 8 |
956 tvp5150_read(sd, TVP5150_ROM_MINOR_VER);
958 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_TVP5150,
959 rev);
963 #ifdef CONFIG_VIDEO_ADV_DEBUG
964 static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
966 struct i2c_client *client = v4l2_get_subdevdata(sd);
968 if (!v4l2_chip_match_i2c_client(client, &reg->match))
969 return -EINVAL;
970 if (!capable(CAP_SYS_ADMIN))
971 return -EPERM;
972 reg->val = tvp5150_read(sd, reg->reg & 0xff);
973 reg->size = 1;
974 return 0;
977 static int tvp5150_s_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
979 struct i2c_client *client = v4l2_get_subdevdata(sd);
981 if (!v4l2_chip_match_i2c_client(client, &reg->match))
982 return -EINVAL;
983 if (!capable(CAP_SYS_ADMIN))
984 return -EPERM;
985 tvp5150_write(sd, reg->reg & 0xff, reg->val & 0xff);
986 return 0;
988 #endif
990 static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
992 int status = tvp5150_read(sd, 0x88);
994 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
995 return 0;
998 static int tvp5150_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc)
1000 int i;
1002 v4l2_dbg(1, debug, sd, "queryctrl called\n");
1004 for (i = 0; i < ARRAY_SIZE(tvp5150_qctrl); i++)
1005 if (qc->id && qc->id == tvp5150_qctrl[i].id) {
1006 memcpy(qc, &(tvp5150_qctrl[i]),
1007 sizeof(*qc));
1008 return 0;
1011 return -EINVAL;
1014 /* ----------------------------------------------------------------------- */
1016 static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1017 .log_status = tvp5150_log_status,
1018 .g_ctrl = tvp5150_g_ctrl,
1019 .s_ctrl = tvp5150_s_ctrl,
1020 .queryctrl = tvp5150_queryctrl,
1021 .s_std = tvp5150_s_std,
1022 .reset = tvp5150_reset,
1023 .g_chip_ident = tvp5150_g_chip_ident,
1024 #ifdef CONFIG_VIDEO_ADV_DEBUG
1025 .g_register = tvp5150_g_register,
1026 .s_register = tvp5150_s_register,
1027 #endif
1030 static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
1031 .g_tuner = tvp5150_g_tuner,
1034 static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
1035 .s_routing = tvp5150_s_routing,
1038 static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
1039 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
1040 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1041 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1042 .s_raw_fmt = tvp5150_s_raw_fmt,
1045 static const struct v4l2_subdev_ops tvp5150_ops = {
1046 .core = &tvp5150_core_ops,
1047 .tuner = &tvp5150_tuner_ops,
1048 .video = &tvp5150_video_ops,
1049 .vbi = &tvp5150_vbi_ops,
1053 /****************************************************************************
1054 I2C Client & Driver
1055 ****************************************************************************/
1057 static int tvp5150_probe(struct i2c_client *c,
1058 const struct i2c_device_id *id)
1060 struct tvp5150 *core;
1061 struct v4l2_subdev *sd;
1063 /* Check if the adapter supports the needed features */
1064 if (!i2c_check_functionality(c->adapter,
1065 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
1066 return -EIO;
1068 core = kzalloc(sizeof(struct tvp5150), GFP_KERNEL);
1069 if (!core) {
1070 return -ENOMEM;
1072 sd = &core->sd;
1073 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
1074 v4l_info(c, "chip found @ 0x%02x (%s)\n",
1075 c->addr << 1, c->adapter->name);
1077 core->norm = V4L2_STD_ALL; /* Default is autodetect */
1078 core->input = TVP5150_COMPOSITE1;
1079 core->enable = 1;
1080 core->bright = 128;
1081 core->contrast = 128;
1082 core->hue = 0;
1083 core->sat = 128;
1085 if (debug > 1)
1086 tvp5150_log_status(sd);
1087 return 0;
1090 static int tvp5150_remove(struct i2c_client *c)
1092 struct v4l2_subdev *sd = i2c_get_clientdata(c);
1094 v4l2_dbg(1, debug, sd,
1095 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1096 c->addr << 1);
1098 v4l2_device_unregister_subdev(sd);
1099 kfree(to_tvp5150(sd));
1100 return 0;
1103 /* ----------------------------------------------------------------------- */
1105 static const struct i2c_device_id tvp5150_id[] = {
1106 { "tvp5150", 0 },
1109 MODULE_DEVICE_TABLE(i2c, tvp5150_id);
1111 static struct i2c_driver tvp5150_driver = {
1112 .driver = {
1113 .owner = THIS_MODULE,
1114 .name = "tvp5150",
1116 .probe = tvp5150_probe,
1117 .remove = tvp5150_remove,
1118 .id_table = tvp5150_id,
1121 static __init int init_tvp5150(void)
1123 return i2c_add_driver(&tvp5150_driver);
1126 static __exit void exit_tvp5150(void)
1128 i2c_del_driver(&tvp5150_driver);
1131 module_init(init_tvp5150);
1132 module_exit(exit_tvp5150);