2 * tvp5150 - Texas Instruments TVP5150A/AM1 and TVP5151 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
8 #include <dt-bindings/media/tvp5150.h>
10 #include <linux/slab.h>
11 #include <linux/videodev2.h>
12 #include <linux/delay.h>
13 #include <linux/gpio/consumer.h>
14 #include <linux/module.h>
15 #include <media/v4l2-async.h>
16 #include <media/v4l2-device.h>
17 #include <media/v4l2-ctrls.h>
18 #include <media/v4l2-of.h>
19 #include <media/v4l2-mc.h>
21 #include "tvp5150_reg.h"
23 #define TVP5150_H_MAX 720U
24 #define TVP5150_V_MAX_525_60 480U
25 #define TVP5150_V_MAX_OTHERS 576U
26 #define TVP5150_MAX_CROP_LEFT 511
27 #define TVP5150_MAX_CROP_TOP 127
28 #define TVP5150_CROP_SHIFT 2
30 MODULE_DESCRIPTION("Texas Instruments TVP5150A/TVP5150AM1/TVP5151 video decoder driver");
31 MODULE_AUTHOR("Mauro Carvalho Chehab");
32 MODULE_LICENSE("GPL");
36 module_param(debug
, int, 0644);
37 MODULE_PARM_DESC(debug
, "Debug level (0-2)");
40 struct v4l2_subdev sd
;
41 #ifdef CONFIG_MEDIA_CONTROLLER
42 struct media_pad pads
[DEMOD_NUM_PADS
];
43 struct media_entity input_ent
[TVP5150_INPUT_NUM
];
44 struct media_pad input_pad
[TVP5150_INPUT_NUM
];
46 struct v4l2_ctrl_handler hdl
;
47 struct v4l2_rect rect
;
49 v4l2_std_id norm
; /* Current set standard */
57 enum v4l2_mbus_type mbus_type
;
60 static inline struct tvp5150
*to_tvp5150(struct v4l2_subdev
*sd
)
62 return container_of(sd
, struct tvp5150
, sd
);
65 static inline struct v4l2_subdev
*to_sd(struct v4l2_ctrl
*ctrl
)
67 return &container_of(ctrl
->handler
, struct tvp5150
, hdl
)->sd
;
70 static int tvp5150_read(struct v4l2_subdev
*sd
, unsigned char addr
)
72 struct i2c_client
*c
= v4l2_get_subdevdata(sd
);
75 rc
= i2c_smbus_read_byte_data(c
, addr
);
77 v4l2_err(sd
, "i2c i/o error: rc == %d\n", rc
);
81 v4l2_dbg(2, debug
, sd
, "tvp5150: read 0x%02x = 0x%02x\n", addr
, rc
);
86 static int tvp5150_write(struct v4l2_subdev
*sd
, unsigned char addr
,
89 struct i2c_client
*c
= v4l2_get_subdevdata(sd
);
92 v4l2_dbg(2, debug
, sd
, "tvp5150: writing 0x%02x 0x%02x\n", addr
, value
);
93 rc
= i2c_smbus_write_byte_data(c
, addr
, value
);
95 v4l2_err(sd
, "i2c i/o error: rc == %d\n", rc
);
100 static void dump_reg_range(struct v4l2_subdev
*sd
, char *s
, u8 init
,
101 const u8 end
, int max_line
)
105 while (init
!= (u8
)(end
+ 1)) {
106 if ((i
% max_line
) == 0) {
109 printk("tvp5150: %s reg 0x%02x = ", s
, init
);
111 printk("%02x ", tvp5150_read(sd
, init
));
119 static int tvp5150_log_status(struct v4l2_subdev
*sd
)
121 printk("tvp5150: Video input source selection #1 = 0x%02x\n",
122 tvp5150_read(sd
, TVP5150_VD_IN_SRC_SEL_1
));
123 printk("tvp5150: Analog channel controls = 0x%02x\n",
124 tvp5150_read(sd
, TVP5150_ANAL_CHL_CTL
));
125 printk("tvp5150: Operation mode controls = 0x%02x\n",
126 tvp5150_read(sd
, TVP5150_OP_MODE_CTL
));
127 printk("tvp5150: Miscellaneous controls = 0x%02x\n",
128 tvp5150_read(sd
, TVP5150_MISC_CTL
));
129 printk("tvp5150: Autoswitch mask= 0x%02x\n",
130 tvp5150_read(sd
, TVP5150_AUTOSW_MSK
));
131 printk("tvp5150: Color killer threshold control = 0x%02x\n",
132 tvp5150_read(sd
, TVP5150_COLOR_KIL_THSH_CTL
));
133 printk("tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
134 tvp5150_read(sd
, TVP5150_LUMA_PROC_CTL_1
),
135 tvp5150_read(sd
, TVP5150_LUMA_PROC_CTL_2
),
136 tvp5150_read(sd
, TVP5150_LUMA_PROC_CTL_3
));
137 printk("tvp5150: Brightness control = 0x%02x\n",
138 tvp5150_read(sd
, TVP5150_BRIGHT_CTL
));
139 printk("tvp5150: Color saturation control = 0x%02x\n",
140 tvp5150_read(sd
, TVP5150_SATURATION_CTL
));
141 printk("tvp5150: Hue control = 0x%02x\n",
142 tvp5150_read(sd
, TVP5150_HUE_CTL
));
143 printk("tvp5150: Contrast control = 0x%02x\n",
144 tvp5150_read(sd
, TVP5150_CONTRAST_CTL
));
145 printk("tvp5150: Outputs and data rates select = 0x%02x\n",
146 tvp5150_read(sd
, TVP5150_DATA_RATE_SEL
));
147 printk("tvp5150: Configuration shared pins = 0x%02x\n",
148 tvp5150_read(sd
, TVP5150_CONF_SHARED_PIN
));
149 printk("tvp5150: Active video cropping start = 0x%02x%02x\n",
150 tvp5150_read(sd
, TVP5150_ACT_VD_CROP_ST_MSB
),
151 tvp5150_read(sd
, TVP5150_ACT_VD_CROP_ST_LSB
));
152 printk("tvp5150: Active video cropping stop = 0x%02x%02x\n",
153 tvp5150_read(sd
, TVP5150_ACT_VD_CROP_STP_MSB
),
154 tvp5150_read(sd
, TVP5150_ACT_VD_CROP_STP_LSB
));
155 printk("tvp5150: Genlock/RTC = 0x%02x\n",
156 tvp5150_read(sd
, TVP5150_GENLOCK
));
157 printk("tvp5150: Horizontal sync start = 0x%02x\n",
158 tvp5150_read(sd
, TVP5150_HORIZ_SYNC_START
));
159 printk("tvp5150: Vertical blanking start = 0x%02x\n",
160 tvp5150_read(sd
, TVP5150_VERT_BLANKING_START
));
161 printk("tvp5150: Vertical blanking stop = 0x%02x\n",
162 tvp5150_read(sd
, TVP5150_VERT_BLANKING_STOP
));
163 printk("tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
164 tvp5150_read(sd
, TVP5150_CHROMA_PROC_CTL_1
),
165 tvp5150_read(sd
, TVP5150_CHROMA_PROC_CTL_2
));
166 printk("tvp5150: Interrupt reset register B = 0x%02x\n",
167 tvp5150_read(sd
, TVP5150_INT_RESET_REG_B
));
168 printk("tvp5150: Interrupt enable register B = 0x%02x\n",
169 tvp5150_read(sd
, TVP5150_INT_ENABLE_REG_B
));
170 printk("tvp5150: Interrupt configuration register B = 0x%02x\n",
171 tvp5150_read(sd
, TVP5150_INTT_CONFIG_REG_B
));
172 printk("tvp5150: Video standard = 0x%02x\n",
173 tvp5150_read(sd
, TVP5150_VIDEO_STD
));
174 printk("tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
175 tvp5150_read(sd
, TVP5150_CB_GAIN_FACT
),
176 tvp5150_read(sd
, TVP5150_CR_GAIN_FACTOR
));
177 printk("tvp5150: Macrovision on counter = 0x%02x\n",
178 tvp5150_read(sd
, TVP5150_MACROVISION_ON_CTR
));
179 printk("tvp5150: Macrovision off counter = 0x%02x\n",
180 tvp5150_read(sd
, TVP5150_MACROVISION_OFF_CTR
));
181 printk("tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
182 (tvp5150_read(sd
, TVP5150_REV_SELECT
) & 1) ? 3 : 4);
183 printk("tvp5150: Device ID = %02x%02x\n",
184 tvp5150_read(sd
, TVP5150_MSB_DEV_ID
),
185 tvp5150_read(sd
, TVP5150_LSB_DEV_ID
));
186 printk("tvp5150: ROM version = (hex) %02x.%02x\n",
187 tvp5150_read(sd
, TVP5150_ROM_MAJOR_VER
),
188 tvp5150_read(sd
, TVP5150_ROM_MINOR_VER
));
189 printk("tvp5150: Vertical line count = 0x%02x%02x\n",
190 tvp5150_read(sd
, TVP5150_VERT_LN_COUNT_MSB
),
191 tvp5150_read(sd
, TVP5150_VERT_LN_COUNT_LSB
));
192 printk("tvp5150: Interrupt status register B = 0x%02x\n",
193 tvp5150_read(sd
, TVP5150_INT_STATUS_REG_B
));
194 printk("tvp5150: Interrupt active register B = 0x%02x\n",
195 tvp5150_read(sd
, TVP5150_INT_ACTIVE_REG_B
));
196 printk("tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
197 tvp5150_read(sd
, TVP5150_STATUS_REG_1
),
198 tvp5150_read(sd
, TVP5150_STATUS_REG_2
),
199 tvp5150_read(sd
, TVP5150_STATUS_REG_3
),
200 tvp5150_read(sd
, TVP5150_STATUS_REG_4
),
201 tvp5150_read(sd
, TVP5150_STATUS_REG_5
));
203 dump_reg_range(sd
, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI
,
204 TVP5150_TELETEXT_FIL1_END
, 8);
205 dump_reg_range(sd
, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI
,
206 TVP5150_TELETEXT_FIL2_END
, 8);
208 printk("tvp5150: Teletext filter enable = 0x%02x\n",
209 tvp5150_read(sd
, TVP5150_TELETEXT_FIL_ENA
));
210 printk("tvp5150: Interrupt status register A = 0x%02x\n",
211 tvp5150_read(sd
, TVP5150_INT_STATUS_REG_A
));
212 printk("tvp5150: Interrupt enable register A = 0x%02x\n",
213 tvp5150_read(sd
, TVP5150_INT_ENABLE_REG_A
));
214 printk("tvp5150: Interrupt configuration = 0x%02x\n",
215 tvp5150_read(sd
, TVP5150_INT_CONF
));
216 printk("tvp5150: VDP status register = 0x%02x\n",
217 tvp5150_read(sd
, TVP5150_VDP_STATUS_REG
));
218 printk("tvp5150: FIFO word count = 0x%02x\n",
219 tvp5150_read(sd
, TVP5150_FIFO_WORD_COUNT
));
220 printk("tvp5150: FIFO interrupt threshold = 0x%02x\n",
221 tvp5150_read(sd
, TVP5150_FIFO_INT_THRESHOLD
));
222 printk("tvp5150: FIFO reset = 0x%02x\n",
223 tvp5150_read(sd
, TVP5150_FIFO_RESET
));
224 printk("tvp5150: Line number interrupt = 0x%02x\n",
225 tvp5150_read(sd
, TVP5150_LINE_NUMBER_INT
));
226 printk("tvp5150: Pixel alignment register = 0x%02x%02x\n",
227 tvp5150_read(sd
, TVP5150_PIX_ALIGN_REG_HIGH
),
228 tvp5150_read(sd
, TVP5150_PIX_ALIGN_REG_LOW
));
229 printk("tvp5150: FIFO output control = 0x%02x\n",
230 tvp5150_read(sd
, TVP5150_FIFO_OUT_CTRL
));
231 printk("tvp5150: Full field enable = 0x%02x\n",
232 tvp5150_read(sd
, TVP5150_FULL_FIELD_ENA
));
233 printk("tvp5150: Full field mode register = 0x%02x\n",
234 tvp5150_read(sd
, TVP5150_FULL_FIELD_MODE_REG
));
236 dump_reg_range(sd
, "CC data", TVP5150_CC_DATA_INI
,
237 TVP5150_CC_DATA_END
, 8);
239 dump_reg_range(sd
, "WSS data", TVP5150_WSS_DATA_INI
,
240 TVP5150_WSS_DATA_END
, 8);
242 dump_reg_range(sd
, "VPS data", TVP5150_VPS_DATA_INI
,
243 TVP5150_VPS_DATA_END
, 8);
245 dump_reg_range(sd
, "VITC data", TVP5150_VITC_DATA_INI
,
246 TVP5150_VITC_DATA_END
, 10);
248 dump_reg_range(sd
, "Line mode", TVP5150_LINE_MODE_INI
,
249 TVP5150_LINE_MODE_END
, 8);
253 /****************************************************************************
255 ****************************************************************************/
257 static inline void tvp5150_selmux(struct v4l2_subdev
*sd
)
260 struct tvp5150
*decoder
= to_tvp5150(sd
);
264 /* Only tvp5150am1 and tvp5151 have signal generator support */
265 if ((decoder
->dev_id
== 0x5150 && decoder
->rom_ver
== 0x0400) ||
266 (decoder
->dev_id
== 0x5151 && decoder
->rom_ver
== 0x0100)) {
267 if (!decoder
->enable
)
271 switch (decoder
->input
) {
272 case TVP5150_COMPOSITE1
:
275 case TVP5150_COMPOSITE0
:
283 v4l2_dbg(1, debug
, sd
, "Selecting video route: route input=%i, output=%i "
284 "=> tvp5150 input=%i, opmode=%i\n",
285 decoder
->input
, decoder
->output
,
288 tvp5150_write(sd
, TVP5150_OP_MODE_CTL
, opmode
);
289 tvp5150_write(sd
, TVP5150_VD_IN_SRC_SEL_1
, input
);
291 /* Svideo should enable YCrCb output and disable GPCL output
292 * For Composite and TV, it should be the reverse
294 val
= tvp5150_read(sd
, TVP5150_MISC_CTL
);
296 v4l2_err(sd
, "%s: failed with error = %d\n", __func__
, val
);
300 if (decoder
->input
== TVP5150_SVIDEO
)
301 val
= (val
& ~0x40) | 0x10;
303 val
= (val
& ~0x10) | 0x40;
304 tvp5150_write(sd
, TVP5150_MISC_CTL
, val
);
307 struct i2c_reg_value
{
312 /* Default values as sugested at TVP5150AM1 datasheet */
313 static const struct i2c_reg_value tvp5150_init_default
[] = {
315 TVP5150_VD_IN_SRC_SEL_1
,0x00
318 TVP5150_ANAL_CHL_CTL
,0x15
321 TVP5150_OP_MODE_CTL
,0x00
324 TVP5150_MISC_CTL
,0x01
327 TVP5150_COLOR_KIL_THSH_CTL
,0x10
330 TVP5150_LUMA_PROC_CTL_1
,0x60
333 TVP5150_LUMA_PROC_CTL_2
,0x00
336 TVP5150_BRIGHT_CTL
,0x80
339 TVP5150_SATURATION_CTL
,0x80
345 TVP5150_CONTRAST_CTL
,0x80
348 TVP5150_DATA_RATE_SEL
,0x47
351 TVP5150_LUMA_PROC_CTL_3
,0x00
354 TVP5150_CONF_SHARED_PIN
,0x08
357 TVP5150_ACT_VD_CROP_ST_MSB
,0x00
360 TVP5150_ACT_VD_CROP_ST_LSB
,0x00
363 TVP5150_ACT_VD_CROP_STP_MSB
,0x00
366 TVP5150_ACT_VD_CROP_STP_LSB
,0x00
372 TVP5150_HORIZ_SYNC_START
,0x80
375 TVP5150_VERT_BLANKING_START
,0x00
378 TVP5150_VERT_BLANKING_STOP
,0x00
381 TVP5150_CHROMA_PROC_CTL_1
,0x0c
384 TVP5150_CHROMA_PROC_CTL_2
,0x14
387 TVP5150_INT_RESET_REG_B
,0x00
390 TVP5150_INT_ENABLE_REG_B
,0x00
393 TVP5150_INTT_CONFIG_REG_B
,0x00
396 TVP5150_VIDEO_STD
,0x00
399 TVP5150_MACROVISION_ON_CTR
,0x0f
402 TVP5150_MACROVISION_OFF_CTR
,0x01
405 TVP5150_TELETEXT_FIL_ENA
,0x00
408 TVP5150_INT_STATUS_REG_A
,0x00
411 TVP5150_INT_ENABLE_REG_A
,0x00
414 TVP5150_INT_CONF
,0x04
417 TVP5150_FIFO_INT_THRESHOLD
,0x80
420 TVP5150_FIFO_RESET
,0x00
423 TVP5150_LINE_NUMBER_INT
,0x00
426 TVP5150_PIX_ALIGN_REG_LOW
,0x4e
429 TVP5150_PIX_ALIGN_REG_HIGH
,0x00
432 TVP5150_FIFO_OUT_CTRL
,0x01
435 TVP5150_FULL_FIELD_ENA
,0x00
438 TVP5150_LINE_MODE_INI
,0x00
441 TVP5150_FULL_FIELD_MODE_REG
,0x7f
448 /* Default values as sugested at TVP5150AM1 datasheet */
449 static const struct i2c_reg_value tvp5150_init_enable
[] = {
451 TVP5150_CONF_SHARED_PIN
, 2
452 },{ /* Automatic offset and AGC enabled */
453 TVP5150_ANAL_CHL_CTL
, 0x15
454 },{ /* Activate YCrCb output 0x9 or 0xd ? */
455 TVP5150_MISC_CTL
, 0x6f
456 },{ /* Activates video std autodetection for all standards */
457 TVP5150_AUTOSW_MSK
, 0x0
458 },{ /* Default format: 0x47. For 4:2:2: 0x40 */
459 TVP5150_DATA_RATE_SEL
, 0x47
461 TVP5150_CHROMA_PROC_CTL_1
, 0x0c
463 TVP5150_CHROMA_PROC_CTL_2
, 0x54
464 },{ /* Non documented, but initialized on WinTV USB2 */
471 struct tvp5150_vbi_type
{
472 unsigned int vbi_type
;
473 unsigned int ini_line
;
474 unsigned int end_line
;
475 unsigned int by_field
:1;
478 struct i2c_vbi_ram_value
{
480 struct tvp5150_vbi_type type
;
481 unsigned char values
[16];
484 /* This struct have the values for each supported VBI Standard
486 tvp5150_vbi_types should follow the same order as vbi_ram_default
487 * value 0 means rom position 0x10, value 1 means rom position 0x30
488 * and so on. There are 16 possible locations from 0 to 15.
491 static struct i2c_vbi_ram_value vbi_ram_default
[] =
493 /* FIXME: Current api doesn't handle all VBI types, those not
494 yet supported are placed under #if 0 */
496 {0x010, /* Teletext, SECAM, WST System A */
497 {V4L2_SLICED_TELETEXT_SECAM
,6,23,1},
498 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
499 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
502 {0x030, /* Teletext, PAL, WST System B */
503 {V4L2_SLICED_TELETEXT_B
,6,22,1},
504 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
505 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
508 {0x050, /* Teletext, PAL, WST System C */
509 {V4L2_SLICED_TELETEXT_PAL_C
,6,22,1},
510 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
511 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
513 {0x070, /* Teletext, NTSC, WST System B */
514 {V4L2_SLICED_TELETEXT_NTSC_B
,10,21,1},
515 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
516 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
518 {0x090, /* Tetetext, NTSC NABTS System C */
519 {V4L2_SLICED_TELETEXT_NTSC_C
,10,21,1},
520 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
521 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
523 {0x0b0, /* Teletext, NTSC-J, NABTS System D */
524 {V4L2_SLICED_TELETEXT_NTSC_D
,10,21,1},
525 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
526 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
528 {0x0d0, /* Closed Caption, PAL/SECAM */
529 {V4L2_SLICED_CAPTION_625
,22,22,1},
530 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
531 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
534 {0x0f0, /* Closed Caption, NTSC */
535 {V4L2_SLICED_CAPTION_525
,21,21,1},
536 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
537 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
539 {0x110, /* Wide Screen Signal, PAL/SECAM */
540 {V4L2_SLICED_WSS_625
,23,23,1},
541 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
542 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
545 {0x130, /* Wide Screen Signal, NTSC C */
546 {V4L2_SLICED_WSS_525
,20,20,1},
547 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
548 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
550 {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
551 {V4l2_SLICED_VITC_625
,6,22,0},
552 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
553 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
555 {0x170, /* Vertical Interval Timecode (VITC), NTSC */
556 {V4l2_SLICED_VITC_525
,10,20,0},
557 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
558 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
561 {0x190, /* Video Program System (VPS), PAL */
562 {V4L2_SLICED_VPS
,16,16,0},
563 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
564 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
566 /* 0x1d0 User programmable */
572 static int tvp5150_write_inittab(struct v4l2_subdev
*sd
,
573 const struct i2c_reg_value
*regs
)
575 while (regs
->reg
!= 0xff) {
576 tvp5150_write(sd
, regs
->reg
, regs
->value
);
582 static int tvp5150_vdp_init(struct v4l2_subdev
*sd
,
583 const struct i2c_vbi_ram_value
*regs
)
587 /* Disable Full Field */
588 tvp5150_write(sd
, TVP5150_FULL_FIELD_ENA
, 0);
590 /* Before programming, Line mode should be at 0xff */
591 for (i
= TVP5150_LINE_MODE_INI
; i
<= TVP5150_LINE_MODE_END
; i
++)
592 tvp5150_write(sd
, i
, 0xff);
595 while (regs
->reg
!= (u16
)-1) {
596 tvp5150_write(sd
, TVP5150_CONF_RAM_ADDR_HIGH
, regs
->reg
>> 8);
597 tvp5150_write(sd
, TVP5150_CONF_RAM_ADDR_LOW
, regs
->reg
);
599 for (i
= 0; i
< 16; i
++)
600 tvp5150_write(sd
, TVP5150_VDP_CONF_RAM_DATA
, regs
->values
[i
]);
607 /* Fills VBI capabilities based on i2c_vbi_ram_value struct */
608 static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev
*sd
,
609 struct v4l2_sliced_vbi_cap
*cap
)
611 const struct i2c_vbi_ram_value
*regs
= vbi_ram_default
;
614 v4l2_dbg(1, debug
, sd
, "g_sliced_vbi_cap\n");
615 memset(cap
, 0, sizeof *cap
);
617 while (regs
->reg
!= (u16
)-1 ) {
618 for (line
=regs
->type
.ini_line
;line
<=regs
->type
.end_line
;line
++) {
619 cap
->service_lines
[0][line
] |= regs
->type
.vbi_type
;
621 cap
->service_set
|= regs
->type
.vbi_type
;
628 /* Set vbi processing
629 * type - one of tvp5150_vbi_types
630 * line - line to gather data
631 * fields: bit 0 field1, bit 1, field2
632 * flags (default=0xf0) is a bitmask, were set means:
633 * bit 7: enable filtering null bytes on CC
634 * bit 6: send data also to FIFO
635 * bit 5: don't allow data with errors on FIFO
636 * bit 4: enable ECC when possible
637 * pix_align = pix alignment:
641 static int tvp5150_set_vbi(struct v4l2_subdev
*sd
,
642 const struct i2c_vbi_ram_value
*regs
,
643 unsigned int type
,u8 flags
, int line
,
646 struct tvp5150
*decoder
= to_tvp5150(sd
);
647 v4l2_std_id std
= decoder
->norm
;
651 if (std
== V4L2_STD_ALL
) {
652 v4l2_err(sd
, "VBI can't be configured without knowing number of lines\n");
654 } else if (std
& V4L2_STD_625_50
) {
655 /* Don't follow NTSC Line number convension */
662 while (regs
->reg
!= (u16
)-1 ) {
663 if ((type
& regs
->type
.vbi_type
) &&
664 (line
>=regs
->type
.ini_line
) &&
665 (line
<=regs
->type
.end_line
)) {
666 type
=regs
->type
.vbi_type
;
673 if (regs
->reg
== (u16
)-1)
676 type
=pos
| (flags
& 0xf0);
677 reg
=((line
-6)<<1)+TVP5150_LINE_MODE_INI
;
680 tvp5150_write(sd
, reg
, type
);
684 tvp5150_write(sd
, reg
+1, type
);
690 static int tvp5150_get_vbi(struct v4l2_subdev
*sd
,
691 const struct i2c_vbi_ram_value
*regs
, int line
)
693 struct tvp5150
*decoder
= to_tvp5150(sd
);
694 v4l2_std_id std
= decoder
->norm
;
699 if (std
== V4L2_STD_ALL
) {
700 v4l2_err(sd
, "VBI can't be configured without knowing number of lines\n");
702 } else if (std
& V4L2_STD_625_50
) {
703 /* Don't follow NTSC Line number convension */
707 if (line
< 6 || line
> 27)
710 reg
= ((line
- 6) << 1) + TVP5150_LINE_MODE_INI
;
712 for (i
= 0; i
<= 1; i
++) {
713 ret
= tvp5150_read(sd
, reg
+ i
);
715 v4l2_err(sd
, "%s: failed with error = %d\n",
721 type
|= regs
[pos
].type
.vbi_type
;
727 static int tvp5150_set_std(struct v4l2_subdev
*sd
, v4l2_std_id std
)
729 struct tvp5150
*decoder
= to_tvp5150(sd
);
734 /* First tests should be against specific std */
736 if (std
== V4L2_STD_NTSC_443
) {
737 fmt
= VIDEO_STD_NTSC_4_43_BIT
;
738 } else if (std
== V4L2_STD_PAL_M
) {
739 fmt
= VIDEO_STD_PAL_M_BIT
;
740 } else if (std
== V4L2_STD_PAL_N
|| std
== V4L2_STD_PAL_Nc
) {
741 fmt
= VIDEO_STD_PAL_COMBINATION_N_BIT
;
743 /* Then, test against generic ones */
744 if (std
& V4L2_STD_NTSC
)
745 fmt
= VIDEO_STD_NTSC_MJ_BIT
;
746 else if (std
& V4L2_STD_PAL
)
747 fmt
= VIDEO_STD_PAL_BDGHIN_BIT
;
748 else if (std
& V4L2_STD_SECAM
)
749 fmt
= VIDEO_STD_SECAM_BIT
;
752 v4l2_dbg(1, debug
, sd
, "Set video std register to %d.\n", fmt
);
753 tvp5150_write(sd
, TVP5150_VIDEO_STD
, fmt
);
757 static int tvp5150_s_std(struct v4l2_subdev
*sd
, v4l2_std_id std
)
759 struct tvp5150
*decoder
= to_tvp5150(sd
);
761 if (decoder
->norm
== std
)
764 /* Change cropping height limits */
765 if (std
& V4L2_STD_525_60
)
766 decoder
->rect
.height
= TVP5150_V_MAX_525_60
;
768 decoder
->rect
.height
= TVP5150_V_MAX_OTHERS
;
771 return tvp5150_set_std(sd
, std
);
774 static int tvp5150_reset(struct v4l2_subdev
*sd
, u32 val
)
776 struct tvp5150
*decoder
= to_tvp5150(sd
);
778 /* Initializes TVP5150 to its default values */
779 tvp5150_write_inittab(sd
, tvp5150_init_default
);
781 /* Initializes VDP registers */
782 tvp5150_vdp_init(sd
, vbi_ram_default
);
784 /* Selects decoder input */
787 /* Initializes TVP5150 to stream enabled values */
788 tvp5150_write_inittab(sd
, tvp5150_init_enable
);
790 /* Initialize image preferences */
791 v4l2_ctrl_handler_setup(&decoder
->hdl
);
793 tvp5150_set_std(sd
, decoder
->norm
);
795 if (decoder
->mbus_type
== V4L2_MBUS_PARALLEL
)
796 tvp5150_write(sd
, TVP5150_DATA_RATE_SEL
, 0x40);
801 static int tvp5150_s_ctrl(struct v4l2_ctrl
*ctrl
)
803 struct v4l2_subdev
*sd
= to_sd(ctrl
);
804 struct tvp5150
*decoder
= to_tvp5150(sd
);
807 case V4L2_CID_BRIGHTNESS
:
808 tvp5150_write(sd
, TVP5150_BRIGHT_CTL
, ctrl
->val
);
810 case V4L2_CID_CONTRAST
:
811 tvp5150_write(sd
, TVP5150_CONTRAST_CTL
, ctrl
->val
);
813 case V4L2_CID_SATURATION
:
814 tvp5150_write(sd
, TVP5150_SATURATION_CTL
, ctrl
->val
);
817 tvp5150_write(sd
, TVP5150_HUE_CTL
, ctrl
->val
);
818 case V4L2_CID_TEST_PATTERN
:
819 decoder
->enable
= ctrl
->val
? false : true;
826 static v4l2_std_id
tvp5150_read_std(struct v4l2_subdev
*sd
)
828 int val
= tvp5150_read(sd
, TVP5150_STATUS_REG_5
);
830 switch (val
& 0x0F) {
832 return V4L2_STD_NTSC
;
836 return V4L2_STD_PAL_M
;
838 return V4L2_STD_PAL_N
| V4L2_STD_PAL_Nc
;
840 return V4L2_STD_NTSC_443
;
842 return V4L2_STD_SECAM
;
844 return V4L2_STD_UNKNOWN
;
848 static int tvp5150_fill_fmt(struct v4l2_subdev
*sd
,
849 struct v4l2_subdev_pad_config
*cfg
,
850 struct v4l2_subdev_format
*format
)
852 struct v4l2_mbus_framefmt
*f
;
853 struct tvp5150
*decoder
= to_tvp5150(sd
);
855 if (!format
|| format
->pad
)
860 tvp5150_reset(sd
, 0);
862 f
->width
= decoder
->rect
.width
;
863 f
->height
= decoder
->rect
.height
/ 2;
865 f
->code
= MEDIA_BUS_FMT_UYVY8_2X8
;
866 f
->field
= V4L2_FIELD_ALTERNATE
;
867 f
->colorspace
= V4L2_COLORSPACE_SMPTE170M
;
869 v4l2_dbg(1, debug
, sd
, "width = %d, height = %d\n", f
->width
,
874 static int tvp5150_s_crop(struct v4l2_subdev
*sd
, const struct v4l2_crop
*a
)
876 struct v4l2_rect rect
= a
->c
;
877 struct tvp5150
*decoder
= to_tvp5150(sd
);
881 v4l2_dbg(1, debug
, sd
, "%s left=%d, top=%d, width=%d, height=%d\n",
882 __func__
, rect
.left
, rect
.top
, rect
.width
, rect
.height
);
884 if (a
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
887 /* tvp5150 has some special limits */
888 rect
.left
= clamp(rect
.left
, 0, TVP5150_MAX_CROP_LEFT
);
889 rect
.width
= clamp_t(unsigned int, rect
.width
,
890 TVP5150_H_MAX
- TVP5150_MAX_CROP_LEFT
- rect
.left
,
891 TVP5150_H_MAX
- rect
.left
);
892 rect
.top
= clamp(rect
.top
, 0, TVP5150_MAX_CROP_TOP
);
894 /* Calculate height based on current standard */
895 if (decoder
->norm
== V4L2_STD_ALL
)
896 std
= tvp5150_read_std(sd
);
900 if (std
& V4L2_STD_525_60
)
901 hmax
= TVP5150_V_MAX_525_60
;
903 hmax
= TVP5150_V_MAX_OTHERS
;
905 rect
.height
= clamp_t(unsigned int, rect
.height
,
906 hmax
- TVP5150_MAX_CROP_TOP
- rect
.top
,
909 tvp5150_write(sd
, TVP5150_VERT_BLANKING_START
, rect
.top
);
910 tvp5150_write(sd
, TVP5150_VERT_BLANKING_STOP
,
911 rect
.top
+ rect
.height
- hmax
);
912 tvp5150_write(sd
, TVP5150_ACT_VD_CROP_ST_MSB
,
913 rect
.left
>> TVP5150_CROP_SHIFT
);
914 tvp5150_write(sd
, TVP5150_ACT_VD_CROP_ST_LSB
,
915 rect
.left
| (1 << TVP5150_CROP_SHIFT
));
916 tvp5150_write(sd
, TVP5150_ACT_VD_CROP_STP_MSB
,
917 (rect
.left
+ rect
.width
- TVP5150_MAX_CROP_LEFT
) >>
919 tvp5150_write(sd
, TVP5150_ACT_VD_CROP_STP_LSB
,
920 rect
.left
+ rect
.width
- TVP5150_MAX_CROP_LEFT
);
922 decoder
->rect
= rect
;
927 static int tvp5150_g_crop(struct v4l2_subdev
*sd
, struct v4l2_crop
*a
)
929 struct tvp5150
*decoder
= to_tvp5150(sd
);
931 a
->c
= decoder
->rect
;
932 a
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
937 static int tvp5150_cropcap(struct v4l2_subdev
*sd
, struct v4l2_cropcap
*a
)
939 struct tvp5150
*decoder
= to_tvp5150(sd
);
942 if (a
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
947 a
->bounds
.width
= TVP5150_H_MAX
;
949 /* Calculate height based on current standard */
950 if (decoder
->norm
== V4L2_STD_ALL
)
951 std
= tvp5150_read_std(sd
);
955 if (std
& V4L2_STD_525_60
)
956 a
->bounds
.height
= TVP5150_V_MAX_525_60
;
958 a
->bounds
.height
= TVP5150_V_MAX_OTHERS
;
960 a
->defrect
= a
->bounds
;
961 a
->pixelaspect
.numerator
= 1;
962 a
->pixelaspect
.denominator
= 1;
967 static int tvp5150_g_mbus_config(struct v4l2_subdev
*sd
,
968 struct v4l2_mbus_config
*cfg
)
970 struct tvp5150
*decoder
= to_tvp5150(sd
);
972 cfg
->type
= decoder
->mbus_type
;
973 cfg
->flags
= V4L2_MBUS_MASTER
| V4L2_MBUS_PCLK_SAMPLE_RISING
974 | V4L2_MBUS_FIELD_EVEN_LOW
| V4L2_MBUS_DATA_ACTIVE_HIGH
;
979 /****************************************************************************
981 ****************************************************************************/
982 static int tvp5150_enum_mbus_code(struct v4l2_subdev
*sd
,
983 struct v4l2_subdev_pad_config
*cfg
,
984 struct v4l2_subdev_mbus_code_enum
*code
)
986 if (code
->pad
|| code
->index
)
989 code
->code
= MEDIA_BUS_FMT_UYVY8_2X8
;
993 static int tvp5150_enum_frame_size(struct v4l2_subdev
*sd
,
994 struct v4l2_subdev_pad_config
*cfg
,
995 struct v4l2_subdev_frame_size_enum
*fse
)
997 struct tvp5150
*decoder
= to_tvp5150(sd
);
999 if (fse
->index
>= 8 || fse
->code
!= MEDIA_BUS_FMT_UYVY8_2X8
)
1002 fse
->code
= MEDIA_BUS_FMT_UYVY8_2X8
;
1003 fse
->min_width
= decoder
->rect
.width
;
1004 fse
->max_width
= decoder
->rect
.width
;
1005 fse
->min_height
= decoder
->rect
.height
/ 2;
1006 fse
->max_height
= decoder
->rect
.height
/ 2;
1011 /****************************************************************************
1013 ****************************************************************************/
1015 static int tvp5150_link_setup(struct media_entity
*entity
,
1016 const struct media_pad
*local
,
1017 const struct media_pad
*remote
, u32 flags
)
1019 #ifdef CONFIG_MEDIA_CONTROLLER
1020 struct v4l2_subdev
*sd
= media_entity_to_v4l2_subdev(entity
);
1021 struct tvp5150
*decoder
= to_tvp5150(sd
);
1024 for (i
= 0; i
< TVP5150_INPUT_NUM
; i
++) {
1025 if (remote
->entity
== &decoder
->input_ent
[i
])
1029 /* Do nothing for entities that are not input connectors */
1030 if (i
== TVP5150_INPUT_NUM
)
1041 static const struct media_entity_operations tvp5150_sd_media_ops
= {
1042 .link_setup
= tvp5150_link_setup
,
1045 /****************************************************************************
1047 ****************************************************************************/
1049 static int tvp5150_s_stream(struct v4l2_subdev
*sd
, int enable
)
1051 struct tvp5150
*decoder
= to_tvp5150(sd
);
1052 /* Output format: 8-bit ITU-R BT.656 with embedded syncs */
1055 /* Output format: 8-bit 4:2:2 YUV with discrete sync */
1056 if (decoder
->mbus_type
== V4L2_MBUS_PARALLEL
)
1059 /* Initializes TVP5150 to its default values */
1060 /* # set PCLK (27MHz) */
1061 tvp5150_write(sd
, TVP5150_CONF_SHARED_PIN
, 0x00);
1064 tvp5150_write(sd
, TVP5150_MISC_CTL
, val
);
1066 tvp5150_write(sd
, TVP5150_MISC_CTL
, 0x00);
1071 static int tvp5150_s_routing(struct v4l2_subdev
*sd
,
1072 u32 input
, u32 output
, u32 config
)
1074 struct tvp5150
*decoder
= to_tvp5150(sd
);
1076 decoder
->input
= input
;
1077 decoder
->output
= output
;
1079 if (output
== TVP5150_BLACK_SCREEN
)
1080 decoder
->enable
= false;
1082 decoder
->enable
= true;
1088 static int tvp5150_s_raw_fmt(struct v4l2_subdev
*sd
, struct v4l2_vbi_format
*fmt
)
1090 /* this is for capturing 36 raw vbi lines
1091 if there's a way to cut off the beginning 2 vbi lines
1092 with the tvp5150 then the vbi line count could be lowered
1093 to 17 lines/field again, although I couldn't find a register
1094 which could do that cropping */
1095 if (fmt
->sample_format
== V4L2_PIX_FMT_GREY
)
1096 tvp5150_write(sd
, TVP5150_LUMA_PROC_CTL_1
, 0x70);
1097 if (fmt
->count
[0] == 18 && fmt
->count
[1] == 18) {
1098 tvp5150_write(sd
, TVP5150_VERT_BLANKING_START
, 0x00);
1099 tvp5150_write(sd
, TVP5150_VERT_BLANKING_STOP
, 0x01);
1104 static int tvp5150_s_sliced_fmt(struct v4l2_subdev
*sd
, struct v4l2_sliced_vbi_format
*svbi
)
1108 if (svbi
->service_set
!= 0) {
1109 for (i
= 0; i
<= 23; i
++) {
1110 svbi
->service_lines
[1][i
] = 0;
1111 svbi
->service_lines
[0][i
] =
1112 tvp5150_set_vbi(sd
, vbi_ram_default
,
1113 svbi
->service_lines
[0][i
], 0xf0, i
, 3);
1116 tvp5150_write(sd
, TVP5150_FIFO_OUT_CTRL
, 1);
1119 tvp5150_write(sd
, TVP5150_FIFO_OUT_CTRL
, 0);
1121 /* Disable Full Field */
1122 tvp5150_write(sd
, TVP5150_FULL_FIELD_ENA
, 0);
1124 /* Disable Line modes */
1125 for (i
= TVP5150_LINE_MODE_INI
; i
<= TVP5150_LINE_MODE_END
; i
++)
1126 tvp5150_write(sd
, i
, 0xff);
1131 static int tvp5150_g_sliced_fmt(struct v4l2_subdev
*sd
, struct v4l2_sliced_vbi_format
*svbi
)
1135 memset(svbi
->service_lines
, 0, sizeof(svbi
->service_lines
));
1137 for (i
= 0; i
<= 23; i
++) {
1138 svbi
->service_lines
[0][i
] =
1139 tvp5150_get_vbi(sd
, vbi_ram_default
, i
);
1140 mask
|= svbi
->service_lines
[0][i
];
1142 svbi
->service_set
= mask
;
1146 #ifdef CONFIG_VIDEO_ADV_DEBUG
1147 static int tvp5150_g_register(struct v4l2_subdev
*sd
, struct v4l2_dbg_register
*reg
)
1151 res
= tvp5150_read(sd
, reg
->reg
& 0xff);
1153 v4l2_err(sd
, "%s: failed with error = %d\n", __func__
, res
);
1162 static int tvp5150_s_register(struct v4l2_subdev
*sd
, const struct v4l2_dbg_register
*reg
)
1164 return tvp5150_write(sd
, reg
->reg
& 0xff, reg
->val
& 0xff);
1168 static int tvp5150_g_tuner(struct v4l2_subdev
*sd
, struct v4l2_tuner
*vt
)
1170 int status
= tvp5150_read(sd
, 0x88);
1172 vt
->signal
= ((status
& 0x04) && (status
& 0x02)) ? 0xffff : 0x0;
1176 static int tvp5150_registered_async(struct v4l2_subdev
*sd
)
1178 #ifdef CONFIG_MEDIA_CONTROLLER
1179 struct tvp5150
*decoder
= to_tvp5150(sd
);
1183 for (i
= 0; i
< TVP5150_INPUT_NUM
; i
++) {
1184 struct media_entity
*input
= &decoder
->input_ent
[i
];
1185 struct media_pad
*pad
= &decoder
->input_pad
[i
];
1190 decoder
->input_pad
[i
].flags
= MEDIA_PAD_FL_SOURCE
;
1192 ret
= media_entity_pads_init(input
, 1, pad
);
1196 ret
= media_device_register_entity(sd
->v4l2_dev
->mdev
, input
);
1200 ret
= media_create_pad_link(input
, 0, &sd
->entity
,
1201 DEMOD_PAD_IF_INPUT
, 0);
1203 media_device_unregister_entity(input
);
1212 /* ----------------------------------------------------------------------- */
1214 static const struct v4l2_ctrl_ops tvp5150_ctrl_ops
= {
1215 .s_ctrl
= tvp5150_s_ctrl
,
1218 static const struct v4l2_subdev_core_ops tvp5150_core_ops
= {
1219 .log_status
= tvp5150_log_status
,
1220 .reset
= tvp5150_reset
,
1221 #ifdef CONFIG_VIDEO_ADV_DEBUG
1222 .g_register
= tvp5150_g_register
,
1223 .s_register
= tvp5150_s_register
,
1225 .registered_async
= tvp5150_registered_async
,
1228 static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops
= {
1229 .g_tuner
= tvp5150_g_tuner
,
1232 static const struct v4l2_subdev_video_ops tvp5150_video_ops
= {
1233 .s_std
= tvp5150_s_std
,
1234 .s_stream
= tvp5150_s_stream
,
1235 .s_routing
= tvp5150_s_routing
,
1236 .s_crop
= tvp5150_s_crop
,
1237 .g_crop
= tvp5150_g_crop
,
1238 .cropcap
= tvp5150_cropcap
,
1239 .g_mbus_config
= tvp5150_g_mbus_config
,
1242 static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops
= {
1243 .g_sliced_vbi_cap
= tvp5150_g_sliced_vbi_cap
,
1244 .g_sliced_fmt
= tvp5150_g_sliced_fmt
,
1245 .s_sliced_fmt
= tvp5150_s_sliced_fmt
,
1246 .s_raw_fmt
= tvp5150_s_raw_fmt
,
1249 static const struct v4l2_subdev_pad_ops tvp5150_pad_ops
= {
1250 .enum_mbus_code
= tvp5150_enum_mbus_code
,
1251 .enum_frame_size
= tvp5150_enum_frame_size
,
1252 .set_fmt
= tvp5150_fill_fmt
,
1253 .get_fmt
= tvp5150_fill_fmt
,
1256 static const struct v4l2_subdev_ops tvp5150_ops
= {
1257 .core
= &tvp5150_core_ops
,
1258 .tuner
= &tvp5150_tuner_ops
,
1259 .video
= &tvp5150_video_ops
,
1260 .vbi
= &tvp5150_vbi_ops
,
1261 .pad
= &tvp5150_pad_ops
,
1265 /****************************************************************************
1267 ****************************************************************************/
1269 static int tvp5150_detect_version(struct tvp5150
*core
)
1271 struct v4l2_subdev
*sd
= &core
->sd
;
1272 struct i2c_client
*c
= v4l2_get_subdevdata(sd
);
1278 * Read consequent registers - TVP5150_MSB_DEV_ID, TVP5150_LSB_DEV_ID,
1279 * TVP5150_ROM_MAJOR_VER, TVP5150_ROM_MINOR_VER
1281 for (i
= 0; i
< 4; i
++) {
1282 res
= tvp5150_read(sd
, TVP5150_MSB_DEV_ID
+ i
);
1288 core
->dev_id
= (regs
[0] << 8) | regs
[1];
1289 core
->rom_ver
= (regs
[2] << 8) | regs
[3];
1291 v4l2_info(sd
, "tvp%04x (%u.%u) chip found @ 0x%02x (%s)\n",
1292 core
->dev_id
, regs
[2], regs
[3], c
->addr
<< 1,
1295 if (core
->dev_id
== 0x5150 && core
->rom_ver
== 0x0321) {
1296 v4l2_info(sd
, "tvp5150a detected.\n");
1297 } else if (core
->dev_id
== 0x5150 && core
->rom_ver
== 0x0400) {
1298 v4l2_info(sd
, "tvp5150am1 detected.\n");
1300 /* ITU-T BT.656.4 timing */
1301 tvp5150_write(sd
, TVP5150_REV_SELECT
, 0);
1302 } else if (core
->dev_id
== 0x5151 && core
->rom_ver
== 0x0100) {
1303 v4l2_info(sd
, "tvp5151 detected.\n");
1305 v4l2_info(sd
, "*** unknown tvp%04x chip detected.\n",
1312 static int tvp5150_init(struct i2c_client
*c
)
1314 struct gpio_desc
*pdn_gpio
;
1315 struct gpio_desc
*reset_gpio
;
1317 pdn_gpio
= devm_gpiod_get_optional(&c
->dev
, "pdn", GPIOD_OUT_HIGH
);
1318 if (IS_ERR(pdn_gpio
))
1319 return PTR_ERR(pdn_gpio
);
1322 gpiod_set_value_cansleep(pdn_gpio
, 0);
1323 /* Delay time between power supplies active and reset */
1327 reset_gpio
= devm_gpiod_get_optional(&c
->dev
, "reset", GPIOD_OUT_HIGH
);
1328 if (IS_ERR(reset_gpio
))
1329 return PTR_ERR(reset_gpio
);
1332 /* RESETB pulse duration */
1334 gpiod_set_value_cansleep(reset_gpio
, 0);
1335 /* Delay time between end of reset to I2C active */
1336 usleep_range(200, 250);
1342 static int tvp5150_parse_dt(struct tvp5150
*decoder
, struct device_node
*np
)
1344 struct v4l2_of_endpoint bus_cfg
;
1345 struct device_node
*ep
;
1346 #ifdef CONFIG_MEDIA_CONTROLLER
1347 struct device_node
*connectors
, *child
;
1348 struct media_entity
*input
;
1355 ep
= of_graph_get_next_endpoint(np
, NULL
);
1359 ret
= v4l2_of_parse_endpoint(ep
, &bus_cfg
);
1363 flags
= bus_cfg
.bus
.parallel
.flags
;
1365 if (bus_cfg
.bus_type
== V4L2_MBUS_PARALLEL
&&
1366 !(flags
& V4L2_MBUS_HSYNC_ACTIVE_HIGH
&&
1367 flags
& V4L2_MBUS_VSYNC_ACTIVE_HIGH
&&
1368 flags
& V4L2_MBUS_FIELD_EVEN_LOW
)) {
1373 decoder
->mbus_type
= bus_cfg
.bus_type
;
1375 #ifdef CONFIG_MEDIA_CONTROLLER
1376 connectors
= of_get_child_by_name(np
, "connectors");
1381 for_each_available_child_of_node(connectors
, child
) {
1382 ret
= of_property_read_u32(child
, "input", &input_type
);
1384 v4l2_err(&decoder
->sd
,
1385 "missing type property in node %s\n",
1390 if (input_type
>= TVP5150_INPUT_NUM
) {
1395 input
= &decoder
->input_ent
[input_type
];
1397 /* Each input connector can only be defined once */
1399 v4l2_err(&decoder
->sd
,
1400 "input %s with same type already exists\n",
1406 switch (input_type
) {
1407 case TVP5150_COMPOSITE0
:
1408 case TVP5150_COMPOSITE1
:
1409 input
->function
= MEDIA_ENT_F_CONN_COMPOSITE
;
1411 case TVP5150_SVIDEO
:
1412 input
->function
= MEDIA_ENT_F_CONN_SVIDEO
;
1416 input
->flags
= MEDIA_ENT_FL_CONNECTOR
;
1418 ret
= of_property_read_string(child
, "label", &name
);
1420 v4l2_err(&decoder
->sd
,
1421 "missing label property in node %s\n",
1430 of_node_put(connectors
);
1437 static const char * const tvp5150_test_patterns
[2] = {
1442 static int tvp5150_probe(struct i2c_client
*c
,
1443 const struct i2c_device_id
*id
)
1445 struct tvp5150
*core
;
1446 struct v4l2_subdev
*sd
;
1447 struct device_node
*np
= c
->dev
.of_node
;
1450 /* Check if the adapter supports the needed features */
1451 if (!i2c_check_functionality(c
->adapter
,
1452 I2C_FUNC_SMBUS_READ_BYTE
| I2C_FUNC_SMBUS_WRITE_BYTE_DATA
))
1455 res
= tvp5150_init(c
);
1459 core
= devm_kzalloc(&c
->dev
, sizeof(*core
), GFP_KERNEL
);
1465 if (IS_ENABLED(CONFIG_OF
) && np
) {
1466 res
= tvp5150_parse_dt(core
, np
);
1468 v4l2_err(sd
, "DT parsing error: %d\n", res
);
1472 /* Default to BT.656 embedded sync */
1473 core
->mbus_type
= V4L2_MBUS_BT656
;
1476 v4l2_i2c_subdev_init(sd
, c
, &tvp5150_ops
);
1477 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1479 #if defined(CONFIG_MEDIA_CONTROLLER)
1480 core
->pads
[DEMOD_PAD_IF_INPUT
].flags
= MEDIA_PAD_FL_SINK
;
1481 core
->pads
[DEMOD_PAD_VID_OUT
].flags
= MEDIA_PAD_FL_SOURCE
;
1482 core
->pads
[DEMOD_PAD_VBI_OUT
].flags
= MEDIA_PAD_FL_SOURCE
;
1484 sd
->entity
.function
= MEDIA_ENT_F_ATV_DECODER
;
1486 res
= media_entity_pads_init(&sd
->entity
, DEMOD_NUM_PADS
, core
->pads
);
1490 sd
->entity
.ops
= &tvp5150_sd_media_ops
;
1493 res
= tvp5150_detect_version(core
);
1497 core
->norm
= V4L2_STD_ALL
; /* Default is autodetect */
1498 core
->input
= TVP5150_COMPOSITE1
;
1499 core
->enable
= true;
1501 v4l2_ctrl_handler_init(&core
->hdl
, 5);
1502 v4l2_ctrl_new_std(&core
->hdl
, &tvp5150_ctrl_ops
,
1503 V4L2_CID_BRIGHTNESS
, 0, 255, 1, 128);
1504 v4l2_ctrl_new_std(&core
->hdl
, &tvp5150_ctrl_ops
,
1505 V4L2_CID_CONTRAST
, 0, 255, 1, 128);
1506 v4l2_ctrl_new_std(&core
->hdl
, &tvp5150_ctrl_ops
,
1507 V4L2_CID_SATURATION
, 0, 255, 1, 128);
1508 v4l2_ctrl_new_std(&core
->hdl
, &tvp5150_ctrl_ops
,
1509 V4L2_CID_HUE
, -128, 127, 1, 0);
1510 v4l2_ctrl_new_std(&core
->hdl
, &tvp5150_ctrl_ops
,
1511 V4L2_CID_PIXEL_RATE
, 27000000,
1512 27000000, 1, 27000000);
1513 v4l2_ctrl_new_std_menu_items(&core
->hdl
, &tvp5150_ctrl_ops
,
1514 V4L2_CID_TEST_PATTERN
,
1515 ARRAY_SIZE(tvp5150_test_patterns
),
1516 0, 0, tvp5150_test_patterns
);
1517 sd
->ctrl_handler
= &core
->hdl
;
1518 if (core
->hdl
.error
) {
1519 res
= core
->hdl
.error
;
1522 v4l2_ctrl_handler_setup(&core
->hdl
);
1524 /* Default is no cropping */
1526 if (tvp5150_read_std(sd
) & V4L2_STD_525_60
)
1527 core
->rect
.height
= TVP5150_V_MAX_525_60
;
1529 core
->rect
.height
= TVP5150_V_MAX_OTHERS
;
1530 core
->rect
.left
= 0;
1531 core
->rect
.width
= TVP5150_H_MAX
;
1533 res
= v4l2_async_register_subdev(sd
);
1538 tvp5150_log_status(sd
);
1542 v4l2_ctrl_handler_free(&core
->hdl
);
1546 static int tvp5150_remove(struct i2c_client
*c
)
1548 struct v4l2_subdev
*sd
= i2c_get_clientdata(c
);
1549 struct tvp5150
*decoder
= to_tvp5150(sd
);
1551 v4l2_dbg(1, debug
, sd
,
1552 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1555 v4l2_async_unregister_subdev(sd
);
1556 v4l2_ctrl_handler_free(&decoder
->hdl
);
1560 /* ----------------------------------------------------------------------- */
1562 static const struct i2c_device_id tvp5150_id
[] = {
1566 MODULE_DEVICE_TABLE(i2c
, tvp5150_id
);
1568 #if IS_ENABLED(CONFIG_OF)
1569 static const struct of_device_id tvp5150_of_match
[] = {
1570 { .compatible
= "ti,tvp5150", },
1573 MODULE_DEVICE_TABLE(of
, tvp5150_of_match
);
1576 static struct i2c_driver tvp5150_driver
= {
1578 .of_match_table
= of_match_ptr(tvp5150_of_match
),
1581 .probe
= tvp5150_probe
,
1582 .remove
= tvp5150_remove
,
1583 .id_table
= tvp5150_id
,
1586 module_i2c_driver(tvp5150_driver
);