blob: 0ad122fcd632296f7ee904b3810d5e3231b62fab [file] [log] [blame]
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001/*
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -02002 * tvp5150 - Texas Instruments TVP5150A/AM1 video decoder driver
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08003 *
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -02004 * 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
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08006 */
7
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08008#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Hans Verkuil33b687c2008-07-25 05:32:50 -030010#include <linux/videodev2.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080011#include <linux/delay.h>
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -020012#include <linux/gpio/consumer.h>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040013#include <linux/module.h>
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -030014#include <media/v4l2-async.h>
Hans Verkuil6b8fe022008-12-18 11:17:25 -030015#include <media/v4l2-device.h>
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020016#include <media/i2c/tvp5150.h>
Hans Verkuil6c45ec72010-12-12 08:45:43 -030017#include <media/v4l2-ctrls.h>
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020018#include <media/v4l2-of.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080019
20#include "tvp5150_reg.h"
21
Philipp Zabel785a3de2014-02-27 13:44:47 -030022#define TVP5150_H_MAX 720U
23#define TVP5150_V_MAX_525_60 480U
24#define TVP5150_V_MAX_OTHERS 576U
Javier Martin963ddc62012-01-31 05:23:46 -030025#define TVP5150_MAX_CROP_LEFT 511
26#define TVP5150_MAX_CROP_TOP 127
27#define TVP5150_CROP_SHIFT 2
28
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -020029MODULE_DESCRIPTION("Texas Instruments TVP5150A video decoder driver");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080030MODULE_AUTHOR("Mauro Carvalho Chehab");
31MODULE_LICENSE("GPL");
32
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080033
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030034static int debug;
Philipp Zabel2a0489d2014-02-27 13:44:48 -030035module_param(debug, int, 0644);
Hans Verkuil6b8fe022008-12-18 11:17:25 -030036MODULE_PARM_DESC(debug, "Debug level (0-2)");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080037
38struct tvp5150 {
Hans Verkuil6b8fe022008-12-18 11:17:25 -030039 struct v4l2_subdev sd;
Laurent Pincharte545ac82016-01-26 10:46:24 -020040 struct media_pad pad;
Hans Verkuil6c45ec72010-12-12 08:45:43 -030041 struct v4l2_ctrl_handler hdl;
Javier Martin963ddc62012-01-31 05:23:46 -030042 struct v4l2_rect rect;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080043
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020044 v4l2_std_id norm; /* Current set standard */
Hans Verkuil5325b422009-04-02 11:26:22 -030045 u32 input;
46 u32 output;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080047 int enable;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020048
49 enum v4l2_mbus_type mbus_type;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080050};
51
Hans Verkuil6b8fe022008-12-18 11:17:25 -030052static inline struct tvp5150 *to_tvp5150(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080053{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030054 return container_of(sd, struct tvp5150, sd);
55}
56
Hans Verkuil6c45ec72010-12-12 08:45:43 -030057static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
58{
59 return &container_of(ctrl->handler, struct tvp5150, hdl)->sd;
60}
61
Hans Verkuil6b8fe022008-12-18 11:17:25 -030062static int tvp5150_read(struct v4l2_subdev *sd, unsigned char addr)
63{
64 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080065 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080066
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030067 rc = i2c_smbus_read_byte_data(c, addr);
68 if (rc < 0) {
69 v4l2_err(sd, "i2c i/o error: rc == %d\n", rc);
70 return rc;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -030071 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -020072
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030073 v4l2_dbg(2, debug, sd, "tvp5150: read 0x%02x = 0x%02x\n", addr, rc);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080074
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030075 return rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080076}
77
Hans Verkuil6b8fe022008-12-18 11:17:25 -030078static inline void tvp5150_write(struct v4l2_subdev *sd, unsigned char addr,
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080079 unsigned char value)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080080{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030081 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080082 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080083
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030084 v4l2_dbg(2, debug, sd, "tvp5150: writing 0x%02x 0x%02x\n", addr, value);
85 rc = i2c_smbus_write_byte_data(c, addr, value);
86 if (rc < 0)
87 v4l2_dbg(0, debug, sd, "i2c i/o error: rc == %d\n", rc);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080088}
89
Hans Verkuil6b8fe022008-12-18 11:17:25 -030090static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
91 const u8 end, int max_line)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020092{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030093 int i = 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020094
Hans Verkuil6b8fe022008-12-18 11:17:25 -030095 while (init != (u8)(end + 1)) {
96 if ((i % max_line) == 0) {
97 if (i > 0)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020098 printk("\n");
Hans Verkuil6b8fe022008-12-18 11:17:25 -030099 printk("tvp5150: %s reg 0x%02x = ", s, init);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200100 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300101 printk("%02x ", tvp5150_read(sd, init));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200102
103 init++;
104 i++;
105 }
106 printk("\n");
107}
108
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300109static int tvp5150_log_status(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800110{
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800111 printk("tvp5150: Video input source selection #1 = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300112 tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800113 printk("tvp5150: Analog channel controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300114 tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800115 printk("tvp5150: Operation mode controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300116 tvp5150_read(sd, TVP5150_OP_MODE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800117 printk("tvp5150: Miscellaneous controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300118 tvp5150_read(sd, TVP5150_MISC_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200119 printk("tvp5150: Autoswitch mask= 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300120 tvp5150_read(sd, TVP5150_AUTOSW_MSK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800121 printk("tvp5150: Color killer threshold control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300122 tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200123 printk("tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300124 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
125 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
126 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800127 printk("tvp5150: Brightness control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300128 tvp5150_read(sd, TVP5150_BRIGHT_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800129 printk("tvp5150: Color saturation control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300130 tvp5150_read(sd, TVP5150_SATURATION_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800131 printk("tvp5150: Hue control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300132 tvp5150_read(sd, TVP5150_HUE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800133 printk("tvp5150: Contrast control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300134 tvp5150_read(sd, TVP5150_CONTRAST_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800135 printk("tvp5150: Outputs and data rates select = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300136 tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800137 printk("tvp5150: Configuration shared pins = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300138 tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200139 printk("tvp5150: Active video cropping start = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300140 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
141 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200142 printk("tvp5150: Active video cropping stop = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300143 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
144 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800145 printk("tvp5150: Genlock/RTC = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300146 tvp5150_read(sd, TVP5150_GENLOCK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800147 printk("tvp5150: Horizontal sync start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300148 tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800149 printk("tvp5150: Vertical blanking start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300150 tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800151 printk("tvp5150: Vertical blanking stop = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300152 tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200153 printk("tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300154 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
155 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800156 printk("tvp5150: Interrupt reset register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300157 tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800158 printk("tvp5150: Interrupt enable register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300159 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800160 printk("tvp5150: Interrupt configuration register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300161 tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800162 printk("tvp5150: Video standard = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300163 tvp5150_read(sd, TVP5150_VIDEO_STD));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200164 printk("tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300165 tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
166 tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800167 printk("tvp5150: Macrovision on counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300168 tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800169 printk("tvp5150: Macrovision off counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300170 tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200171 printk("tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300172 (tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200173 printk("tvp5150: Device ID = %02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300174 tvp5150_read(sd, TVP5150_MSB_DEV_ID),
175 tvp5150_read(sd, TVP5150_LSB_DEV_ID));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200176 printk("tvp5150: ROM version = (hex) %02x.%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300177 tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
178 tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200179 printk("tvp5150: Vertical line count = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300180 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
181 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800182 printk("tvp5150: Interrupt status register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300183 tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800184 printk("tvp5150: Interrupt active register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300185 tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200186 printk("tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300187 tvp5150_read(sd, TVP5150_STATUS_REG_1),
188 tvp5150_read(sd, TVP5150_STATUS_REG_2),
189 tvp5150_read(sd, TVP5150_STATUS_REG_3),
190 tvp5150_read(sd, TVP5150_STATUS_REG_4),
191 tvp5150_read(sd, TVP5150_STATUS_REG_5));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200192
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300193 dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
194 TVP5150_TELETEXT_FIL1_END, 8);
195 dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
196 TVP5150_TELETEXT_FIL2_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200197
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800198 printk("tvp5150: Teletext filter enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300199 tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800200 printk("tvp5150: Interrupt status register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300201 tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800202 printk("tvp5150: Interrupt enable register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300203 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800204 printk("tvp5150: Interrupt configuration = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300205 tvp5150_read(sd, TVP5150_INT_CONF));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800206 printk("tvp5150: VDP status register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300207 tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800208 printk("tvp5150: FIFO word count = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300209 tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800210 printk("tvp5150: FIFO interrupt threshold = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300211 tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800212 printk("tvp5150: FIFO reset = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300213 tvp5150_read(sd, TVP5150_FIFO_RESET));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800214 printk("tvp5150: Line number interrupt = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300215 tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200216 printk("tvp5150: Pixel alignment register = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300217 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
218 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800219 printk("tvp5150: FIFO output control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300220 tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200221 printk("tvp5150: Full field enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300222 tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800223 printk("tvp5150: Full field mode register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300224 tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200225
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300226 dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
227 TVP5150_CC_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200228
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300229 dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
230 TVP5150_WSS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200231
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300232 dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
233 TVP5150_VPS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200234
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300235 dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
236 TVP5150_VITC_DATA_END, 10);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200237
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300238 dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
239 TVP5150_LINE_MODE_END, 8);
240 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800241}
242
243/****************************************************************************
244 Basic functions
245 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800246
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300247static inline void tvp5150_selmux(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800248{
Paul Walmsley2962fc02010-10-09 01:31:40 -0300249 int opmode = 0;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300250 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300251 int input = 0;
Dan Carpenterafcc8e82012-07-12 10:47:28 -0300252 int val;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800253
Hans Verkuil5325b422009-04-02 11:26:22 -0300254 if ((decoder->output & TVP5150_BLACK_SCREEN) || !decoder->enable)
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300255 input = 8;
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800256
Hans Verkuil5325b422009-04-02 11:26:22 -0300257 switch (decoder->input) {
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300258 case TVP5150_COMPOSITE1:
259 input |= 2;
260 /* fall through */
261 case TVP5150_COMPOSITE0:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200262 break;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300263 case TVP5150_SVIDEO:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200264 default:
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300265 input |= 1;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200266 break;
267 }
268
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300269 v4l2_dbg(1, debug, sd, "Selecting video route: route input=%i, output=%i "
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300270 "=> tvp5150 input=%i, opmode=%i\n",
Hans Verkuil5325b422009-04-02 11:26:22 -0300271 decoder->input, decoder->output,
272 input, opmode);
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300273
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300274 tvp5150_write(sd, TVP5150_OP_MODE_CTL, opmode);
275 tvp5150_write(sd, TVP5150_VD_IN_SRC_SEL_1, input);
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300276
277 /* Svideo should enable YCrCb output and disable GPCL output
278 * For Composite and TV, it should be the reverse
279 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300280 val = tvp5150_read(sd, TVP5150_MISC_CTL);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300281 if (val < 0) {
282 v4l2_err(sd, "%s: failed with error = %d\n", __func__, val);
283 return;
284 }
285
Hans Verkuil5325b422009-04-02 11:26:22 -0300286 if (decoder->input == TVP5150_SVIDEO)
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300287 val = (val & ~0x40) | 0x10;
288 else
289 val = (val & ~0x10) | 0x40;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300290 tvp5150_write(sd, TVP5150_MISC_CTL, val);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800291};
292
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200293struct i2c_reg_value {
294 unsigned char reg;
295 unsigned char value;
296};
297
298/* Default values as sugested at TVP5150AM1 datasheet */
299static const struct i2c_reg_value tvp5150_init_default[] = {
300 { /* 0x00 */
301 TVP5150_VD_IN_SRC_SEL_1,0x00
302 },
303 { /* 0x01 */
304 TVP5150_ANAL_CHL_CTL,0x15
305 },
306 { /* 0x02 */
307 TVP5150_OP_MODE_CTL,0x00
308 },
309 { /* 0x03 */
310 TVP5150_MISC_CTL,0x01
311 },
312 { /* 0x06 */
313 TVP5150_COLOR_KIL_THSH_CTL,0x10
314 },
315 { /* 0x07 */
316 TVP5150_LUMA_PROC_CTL_1,0x60
317 },
318 { /* 0x08 */
319 TVP5150_LUMA_PROC_CTL_2,0x00
320 },
321 { /* 0x09 */
322 TVP5150_BRIGHT_CTL,0x80
323 },
324 { /* 0x0a */
325 TVP5150_SATURATION_CTL,0x80
326 },
327 { /* 0x0b */
328 TVP5150_HUE_CTL,0x00
329 },
330 { /* 0x0c */
331 TVP5150_CONTRAST_CTL,0x80
332 },
333 { /* 0x0d */
334 TVP5150_DATA_RATE_SEL,0x47
335 },
336 { /* 0x0e */
337 TVP5150_LUMA_PROC_CTL_3,0x00
338 },
339 { /* 0x0f */
340 TVP5150_CONF_SHARED_PIN,0x08
341 },
342 { /* 0x11 */
343 TVP5150_ACT_VD_CROP_ST_MSB,0x00
344 },
345 { /* 0x12 */
346 TVP5150_ACT_VD_CROP_ST_LSB,0x00
347 },
348 { /* 0x13 */
349 TVP5150_ACT_VD_CROP_STP_MSB,0x00
350 },
351 { /* 0x14 */
352 TVP5150_ACT_VD_CROP_STP_LSB,0x00
353 },
354 { /* 0x15 */
355 TVP5150_GENLOCK,0x01
356 },
357 { /* 0x16 */
358 TVP5150_HORIZ_SYNC_START,0x80
359 },
360 { /* 0x18 */
361 TVP5150_VERT_BLANKING_START,0x00
362 },
363 { /* 0x19 */
364 TVP5150_VERT_BLANKING_STOP,0x00
365 },
366 { /* 0x1a */
367 TVP5150_CHROMA_PROC_CTL_1,0x0c
368 },
369 { /* 0x1b */
370 TVP5150_CHROMA_PROC_CTL_2,0x14
371 },
372 { /* 0x1c */
373 TVP5150_INT_RESET_REG_B,0x00
374 },
375 { /* 0x1d */
376 TVP5150_INT_ENABLE_REG_B,0x00
377 },
378 { /* 0x1e */
379 TVP5150_INTT_CONFIG_REG_B,0x00
380 },
381 { /* 0x28 */
382 TVP5150_VIDEO_STD,0x00
383 },
384 { /* 0x2e */
385 TVP5150_MACROVISION_ON_CTR,0x0f
386 },
387 { /* 0x2f */
388 TVP5150_MACROVISION_OFF_CTR,0x01
389 },
390 { /* 0xbb */
391 TVP5150_TELETEXT_FIL_ENA,0x00
392 },
393 { /* 0xc0 */
394 TVP5150_INT_STATUS_REG_A,0x00
395 },
396 { /* 0xc1 */
397 TVP5150_INT_ENABLE_REG_A,0x00
398 },
399 { /* 0xc2 */
400 TVP5150_INT_CONF,0x04
401 },
402 { /* 0xc8 */
403 TVP5150_FIFO_INT_THRESHOLD,0x80
404 },
405 { /* 0xc9 */
406 TVP5150_FIFO_RESET,0x00
407 },
408 { /* 0xca */
409 TVP5150_LINE_NUMBER_INT,0x00
410 },
411 { /* 0xcb */
412 TVP5150_PIX_ALIGN_REG_LOW,0x4e
413 },
414 { /* 0xcc */
415 TVP5150_PIX_ALIGN_REG_HIGH,0x00
416 },
417 { /* 0xcd */
418 TVP5150_FIFO_OUT_CTRL,0x01
419 },
420 { /* 0xcf */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200421 TVP5150_FULL_FIELD_ENA,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200422 },
423 { /* 0xd0 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200424 TVP5150_LINE_MODE_INI,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200425 },
426 { /* 0xfc */
427 TVP5150_FULL_FIELD_MODE_REG,0x7f
428 },
429 { /* end of data */
430 0xff,0xff
431 }
432};
433
434/* Default values as sugested at TVP5150AM1 datasheet */
435static const struct i2c_reg_value tvp5150_init_enable[] = {
436 {
437 TVP5150_CONF_SHARED_PIN, 2
438 },{ /* Automatic offset and AGC enabled */
439 TVP5150_ANAL_CHL_CTL, 0x15
440 },{ /* Activate YCrCb output 0x9 or 0xd ? */
441 TVP5150_MISC_CTL, 0x6f
442 },{ /* Activates video std autodetection for all standards */
443 TVP5150_AUTOSW_MSK, 0x0
444 },{ /* Default format: 0x47. For 4:2:2: 0x40 */
445 TVP5150_DATA_RATE_SEL, 0x47
446 },{
447 TVP5150_CHROMA_PROC_CTL_1, 0x0c
448 },{
449 TVP5150_CHROMA_PROC_CTL_2, 0x54
450 },{ /* Non documented, but initialized on WinTV USB2 */
451 0x27, 0x20
452 },{
453 0xff,0xff
454 }
455};
456
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200457struct tvp5150_vbi_type {
458 unsigned int vbi_type;
459 unsigned int ini_line;
460 unsigned int end_line;
461 unsigned int by_field :1;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200462};
463
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200464struct i2c_vbi_ram_value {
465 u16 reg;
466 struct tvp5150_vbi_type type;
467 unsigned char values[16];
468};
469
470/* This struct have the values for each supported VBI Standard
471 * by
472 tvp5150_vbi_types should follow the same order as vbi_ram_default
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200473 * value 0 means rom position 0x10, value 1 means rom position 0x30
474 * and so on. There are 16 possible locations from 0 to 15.
475 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200476
Adrian Bunka9cff902006-01-15 06:56:15 -0200477static struct i2c_vbi_ram_value vbi_ram_default[] =
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200478{
Hans Verkuil9bc74002006-03-29 18:02:51 -0300479 /* FIXME: Current api doesn't handle all VBI types, those not
480 yet supported are placed under #if 0 */
481#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200482 {0x010, /* Teletext, SECAM, WST System A */
483 {V4L2_SLICED_TELETEXT_SECAM,6,23,1},
484 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
485 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200486 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300487#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200488 {0x030, /* Teletext, PAL, WST System B */
Hans Verkuil9bc74002006-03-29 18:02:51 -0300489 {V4L2_SLICED_TELETEXT_B,6,22,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200490 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
491 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200492 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300493#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200494 {0x050, /* Teletext, PAL, WST System C */
495 {V4L2_SLICED_TELETEXT_PAL_C,6,22,1},
496 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
497 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200498 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200499 {0x070, /* Teletext, NTSC, WST System B */
500 {V4L2_SLICED_TELETEXT_NTSC_B,10,21,1},
501 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
502 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200503 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200504 {0x090, /* Tetetext, NTSC NABTS System C */
505 {V4L2_SLICED_TELETEXT_NTSC_C,10,21,1},
506 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
507 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200508 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200509 {0x0b0, /* Teletext, NTSC-J, NABTS System D */
510 {V4L2_SLICED_TELETEXT_NTSC_D,10,21,1},
511 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
512 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200513 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200514 {0x0d0, /* Closed Caption, PAL/SECAM */
515 {V4L2_SLICED_CAPTION_625,22,22,1},
516 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
517 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200518 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300519#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200520 {0x0f0, /* Closed Caption, NTSC */
521 {V4L2_SLICED_CAPTION_525,21,21,1},
522 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
523 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200524 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200525 {0x110, /* Wide Screen Signal, PAL/SECAM */
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200526 {V4L2_SLICED_WSS_625,23,23,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200527 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
528 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200529 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300530#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200531 {0x130, /* Wide Screen Signal, NTSC C */
532 {V4L2_SLICED_WSS_525,20,20,1},
533 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
534 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200535 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200536 {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
537 {V4l2_SLICED_VITC_625,6,22,0},
538 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
539 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200540 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200541 {0x170, /* Vertical Interval Timecode (VITC), NTSC */
542 {V4l2_SLICED_VITC_525,10,20,0},
543 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
544 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200545 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300546#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200547 {0x190, /* Video Program System (VPS), PAL */
548 {V4L2_SLICED_VPS,16,16,0},
549 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
550 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200551 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200552 /* 0x1d0 User programmable */
553
554 /* End of struct */
555 { (u16)-1 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200556};
557
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300558static int tvp5150_write_inittab(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200559 const struct i2c_reg_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200560{
561 while (regs->reg != 0xff) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300562 tvp5150_write(sd, regs->reg, regs->value);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200563 regs++;
564 }
565 return 0;
566}
567
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300568static int tvp5150_vdp_init(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200569 const struct i2c_vbi_ram_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200570{
571 unsigned int i;
572
573 /* Disable Full Field */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300574 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200575
576 /* Before programming, Line mode should be at 0xff */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300577 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
578 tvp5150_write(sd, i, 0xff);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200579
580 /* Load Ram Table */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300581 while (regs->reg != (u16)-1) {
582 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
583 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200584
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300585 for (i = 0; i < 16; i++)
586 tvp5150_write(sd, TVP5150_VDP_CONF_RAM_DATA, regs->values[i]);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200587
588 regs++;
589 }
590 return 0;
591}
592
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200593/* Fills VBI capabilities based on i2c_vbi_ram_value struct */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300594static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200595 struct v4l2_sliced_vbi_cap *cap)
596{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300597 const struct i2c_vbi_ram_value *regs = vbi_ram_default;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200598 int line;
599
Hans Verkuilbccfa442009-03-30 06:55:27 -0300600 v4l2_dbg(1, debug, sd, "g_sliced_vbi_cap\n");
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200601 memset(cap, 0, sizeof *cap);
602
603 while (regs->reg != (u16)-1 ) {
604 for (line=regs->type.ini_line;line<=regs->type.end_line;line++) {
605 cap->service_lines[0][line] |= regs->type.vbi_type;
606 }
607 cap->service_set |= regs->type.vbi_type;
608
609 regs++;
610 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300611 return 0;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200612}
613
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200614/* Set vbi processing
615 * type - one of tvp5150_vbi_types
616 * line - line to gather data
617 * fields: bit 0 field1, bit 1, field2
618 * flags (default=0xf0) is a bitmask, were set means:
619 * bit 7: enable filtering null bytes on CC
620 * bit 6: send data also to FIFO
621 * bit 5: don't allow data with errors on FIFO
622 * bit 4: enable ECC when possible
623 * pix_align = pix alignment:
624 * LSB = field1
625 * MSB = field2
626 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300627static int tvp5150_set_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200628 const struct i2c_vbi_ram_value *regs,
629 unsigned int type,u8 flags, int line,
630 const int fields)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200631{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300632 struct tvp5150 *decoder = to_tvp5150(sd);
633 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200634 u8 reg;
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200635 int pos=0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200636
637 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300638 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200639 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300640 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200641 /* Don't follow NTSC Line number convension */
642 line += 3;
643 }
644
645 if (line<6||line>27)
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200646 return 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200647
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200648 while (regs->reg != (u16)-1 ) {
649 if ((type & regs->type.vbi_type) &&
650 (line>=regs->type.ini_line) &&
651 (line<=regs->type.end_line)) {
652 type=regs->type.vbi_type;
653 break;
654 }
655
656 regs++;
657 pos++;
658 }
659 if (regs->reg == (u16)-1)
660 return 0;
661
662 type=pos | (flags & 0xf0);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200663 reg=((line-6)<<1)+TVP5150_LINE_MODE_INI;
664
665 if (fields&1) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300666 tvp5150_write(sd, reg, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200667 }
668
669 if (fields&2) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300670 tvp5150_write(sd, reg+1, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200671 }
672
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200673 return type;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200674}
675
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300676static int tvp5150_get_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200677 const struct i2c_vbi_ram_value *regs, int line)
678{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300679 struct tvp5150 *decoder = to_tvp5150(sd);
680 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200681 u8 reg;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300682 int pos, type = 0;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300683 int i, ret = 0;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200684
685 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300686 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200687 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300688 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200689 /* Don't follow NTSC Line number convension */
690 line += 3;
691 }
692
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300693 if (line < 6 || line > 27)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200694 return 0;
695
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300696 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200697
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300698 for (i = 0; i <= 1; i++) {
699 ret = tvp5150_read(sd, reg + i);
700 if (ret < 0) {
701 v4l2_err(sd, "%s: failed with error = %d\n",
702 __func__, ret);
703 return 0;
704 }
705 pos = ret & 0x0f;
706 if (pos < 0x0f)
707 type |= regs[pos].type.vbi_type;
708 }
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200709
710 return type;
711}
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800712
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300713static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
714{
715 struct tvp5150 *decoder = to_tvp5150(sd);
716 int fmt = 0;
717
718 decoder->norm = std;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800719
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200720 /* First tests should be against specific std */
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800721
Hans Verkuil26811ae2013-05-29 10:19:06 -0300722 if (std == V4L2_STD_NTSC_443) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300723 fmt = VIDEO_STD_NTSC_4_43_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300724 } else if (std == V4L2_STD_PAL_M) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300725 fmt = VIDEO_STD_PAL_M_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300726 } else if (std == V4L2_STD_PAL_N || std == V4L2_STD_PAL_Nc) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300727 fmt = VIDEO_STD_PAL_COMBINATION_N_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200728 } else {
729 /* Then, test against generic ones */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300730 if (std & V4L2_STD_NTSC)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300731 fmt = VIDEO_STD_NTSC_MJ_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300732 else if (std & V4L2_STD_PAL)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300733 fmt = VIDEO_STD_PAL_BDGHIN_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300734 else if (std & V4L2_STD_SECAM)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300735 fmt = VIDEO_STD_SECAM_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200736 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800737
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300738 v4l2_dbg(1, debug, sd, "Set video std register to %d.\n", fmt);
739 tvp5150_write(sd, TVP5150_VIDEO_STD, fmt);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200740 return 0;
741}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800742
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300743static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200744{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300745 struct tvp5150 *decoder = to_tvp5150(sd);
746
747 if (decoder->norm == std)
748 return 0;
749
Javier Martin963ddc62012-01-31 05:23:46 -0300750 /* Change cropping height limits */
751 if (std & V4L2_STD_525_60)
752 decoder->rect.height = TVP5150_V_MAX_525_60;
753 else
754 decoder->rect.height = TVP5150_V_MAX_OTHERS;
755
756
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300757 return tvp5150_set_std(sd, std);
758}
759
760static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
761{
762 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200763
764 /* Initializes TVP5150 to its default values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300765 tvp5150_write_inittab(sd, tvp5150_init_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200766
767 /* Initializes VDP registers */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300768 tvp5150_vdp_init(sd, vbi_ram_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200769
770 /* Selects decoder input */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300771 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800772
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200773 /* Initializes TVP5150 to stream enabled values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300774 tvp5150_write_inittab(sd, tvp5150_init_enable);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800775
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200776 /* Initialize image preferences */
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300777 v4l2_ctrl_handler_setup(&decoder->hdl);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200778
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300779 tvp5150_set_std(sd, decoder->norm);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200780
781 if (decoder->mbus_type == V4L2_MBUS_PARALLEL)
782 tvp5150_write(sd, TVP5150_DATA_RATE_SEL, 0x40);
783
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300784 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800785};
786
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300787static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800788{
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300789 struct v4l2_subdev *sd = to_sd(ctrl);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800790
791 switch (ctrl->id) {
792 case V4L2_CID_BRIGHTNESS:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300793 tvp5150_write(sd, TVP5150_BRIGHT_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800794 return 0;
795 case V4L2_CID_CONTRAST:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300796 tvp5150_write(sd, TVP5150_CONTRAST_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800797 return 0;
798 case V4L2_CID_SATURATION:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300799 tvp5150_write(sd, TVP5150_SATURATION_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800800 return 0;
801 case V4L2_CID_HUE:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300802 tvp5150_write(sd, TVP5150_HUE_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800803 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800804 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200805 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800806}
807
Javier Martinec2c4f32012-01-05 10:57:39 -0300808static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd)
809{
810 int val = tvp5150_read(sd, TVP5150_STATUS_REG_5);
811
812 switch (val & 0x0F) {
813 case 0x01:
814 return V4L2_STD_NTSC;
815 case 0x03:
816 return V4L2_STD_PAL;
817 case 0x05:
818 return V4L2_STD_PAL_M;
819 case 0x07:
820 return V4L2_STD_PAL_N | V4L2_STD_PAL_Nc;
821 case 0x09:
822 return V4L2_STD_NTSC_443;
823 case 0xb:
824 return V4L2_STD_SECAM;
825 default:
826 return V4L2_STD_UNKNOWN;
827 }
828}
829
Hans Verkuilda298c62015-04-09 04:02:34 -0300830static int tvp5150_fill_fmt(struct v4l2_subdev *sd,
831 struct v4l2_subdev_pad_config *cfg,
832 struct v4l2_subdev_format *format)
Javier Martinec2c4f32012-01-05 10:57:39 -0300833{
Hans Verkuilda298c62015-04-09 04:02:34 -0300834 struct v4l2_mbus_framefmt *f;
Javier Martinec2c4f32012-01-05 10:57:39 -0300835 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martinec2c4f32012-01-05 10:57:39 -0300836
Hans Verkuilda298c62015-04-09 04:02:34 -0300837 if (!format || format->pad)
Javier Martinec2c4f32012-01-05 10:57:39 -0300838 return -EINVAL;
839
Hans Verkuilda298c62015-04-09 04:02:34 -0300840 f = &format->format;
841
Javier Martinec2c4f32012-01-05 10:57:39 -0300842 tvp5150_reset(sd, 0);
843
Javier Martin963ddc62012-01-31 05:23:46 -0300844 f->width = decoder->rect.width;
Laurent Pinchart4f57d27be2016-01-26 10:46:23 -0200845 f->height = decoder->rect.height / 2;
Javier Martinec2c4f32012-01-05 10:57:39 -0300846
Boris BREZILLONf5fe58f2014-11-10 14:28:29 -0300847 f->code = MEDIA_BUS_FMT_UYVY8_2X8;
Laurent Pinchart4f57d27be2016-01-26 10:46:23 -0200848 f->field = V4L2_FIELD_ALTERNATE;
Javier Martinec2c4f32012-01-05 10:57:39 -0300849 f->colorspace = V4L2_COLORSPACE_SMPTE170M;
850
851 v4l2_dbg(1, debug, sd, "width = %d, height = %d\n", f->width,
852 f->height);
853 return 0;
854}
855
Hans Verkuil4f996592012-09-05 05:10:48 -0300856static int tvp5150_s_crop(struct v4l2_subdev *sd, const struct v4l2_crop *a)
Javier Martin963ddc62012-01-31 05:23:46 -0300857{
858 struct v4l2_rect rect = a->c;
859 struct tvp5150 *decoder = to_tvp5150(sd);
860 v4l2_std_id std;
Ricardo Ribaldaf90580c2013-11-26 05:31:42 -0300861 unsigned int hmax;
Javier Martin963ddc62012-01-31 05:23:46 -0300862
863 v4l2_dbg(1, debug, sd, "%s left=%d, top=%d, width=%d, height=%d\n",
864 __func__, rect.left, rect.top, rect.width, rect.height);
865
866 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
867 return -EINVAL;
868
869 /* tvp5150 has some special limits */
870 rect.left = clamp(rect.left, 0, TVP5150_MAX_CROP_LEFT);
Ricardo Ribaldaf90580c2013-11-26 05:31:42 -0300871 rect.width = clamp_t(unsigned int, rect.width,
872 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect.left,
873 TVP5150_H_MAX - rect.left);
Javier Martin963ddc62012-01-31 05:23:46 -0300874 rect.top = clamp(rect.top, 0, TVP5150_MAX_CROP_TOP);
875
876 /* Calculate height based on current standard */
877 if (decoder->norm == V4L2_STD_ALL)
878 std = tvp5150_read_std(sd);
879 else
880 std = decoder->norm;
881
882 if (std & V4L2_STD_525_60)
883 hmax = TVP5150_V_MAX_525_60;
884 else
885 hmax = TVP5150_V_MAX_OTHERS;
886
Ricardo Ribaldaf90580c2013-11-26 05:31:42 -0300887 rect.height = clamp_t(unsigned int, rect.height,
888 hmax - TVP5150_MAX_CROP_TOP - rect.top,
889 hmax - rect.top);
Javier Martin963ddc62012-01-31 05:23:46 -0300890
891 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, rect.top);
892 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP,
893 rect.top + rect.height - hmax);
894 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_MSB,
895 rect.left >> TVP5150_CROP_SHIFT);
896 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_LSB,
897 rect.left | (1 << TVP5150_CROP_SHIFT));
898 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_MSB,
899 (rect.left + rect.width - TVP5150_MAX_CROP_LEFT) >>
900 TVP5150_CROP_SHIFT);
901 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_LSB,
902 rect.left + rect.width - TVP5150_MAX_CROP_LEFT);
903
904 decoder->rect = rect;
905
906 return 0;
907}
908
909static int tvp5150_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
910{
Laurent Pinchart12bd10c2014-05-15 22:53:31 -0300911 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martin963ddc62012-01-31 05:23:46 -0300912
913 a->c = decoder->rect;
914 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
915
916 return 0;
917}
918
919static int tvp5150_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
920{
Laurent Pinchart12bd10c2014-05-15 22:53:31 -0300921 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martin963ddc62012-01-31 05:23:46 -0300922 v4l2_std_id std;
923
924 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
925 return -EINVAL;
926
927 a->bounds.left = 0;
928 a->bounds.top = 0;
929 a->bounds.width = TVP5150_H_MAX;
930
931 /* Calculate height based on current standard */
932 if (decoder->norm == V4L2_STD_ALL)
933 std = tvp5150_read_std(sd);
934 else
935 std = decoder->norm;
936
937 if (std & V4L2_STD_525_60)
938 a->bounds.height = TVP5150_V_MAX_525_60;
939 else
940 a->bounds.height = TVP5150_V_MAX_OTHERS;
941
942 a->defrect = a->bounds;
943 a->pixelaspect.numerator = 1;
944 a->pixelaspect.denominator = 1;
945
946 return 0;
947}
948
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -0200949static int tvp5150_g_mbus_config(struct v4l2_subdev *sd,
950 struct v4l2_mbus_config *cfg)
951{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200952 struct tvp5150 *decoder = to_tvp5150(sd);
953
954 cfg->type = decoder->mbus_type;
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -0200955 cfg->flags = V4L2_MBUS_MASTER | V4L2_MBUS_PCLK_SAMPLE_RISING
956 | V4L2_MBUS_FIELD_EVEN_LOW | V4L2_MBUS_DATA_ACTIVE_HIGH;
957
958 return 0;
959}
960
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800961/****************************************************************************
Laurent Pincharte545ac82016-01-26 10:46:24 -0200962 V4L2 subdev pad ops
963 ****************************************************************************/
964static int tvp5150_enum_mbus_code(struct v4l2_subdev *sd,
965 struct v4l2_subdev_pad_config *cfg,
966 struct v4l2_subdev_mbus_code_enum *code)
967{
968 if (code->pad || code->index)
969 return -EINVAL;
970
971 code->code = MEDIA_BUS_FMT_UYVY8_2X8;
972 return 0;
973}
974
975static int tvp5150_enum_frame_size(struct v4l2_subdev *sd,
976 struct v4l2_subdev_pad_config *cfg,
977 struct v4l2_subdev_frame_size_enum *fse)
978{
979 struct tvp5150 *decoder = to_tvp5150(sd);
980
981 if (fse->index >= 8 || fse->code != MEDIA_BUS_FMT_UYVY8_2X8)
982 return -EINVAL;
983
984 fse->code = MEDIA_BUS_FMT_UYVY8_2X8;
985 fse->min_width = decoder->rect.width;
986 fse->max_width = decoder->rect.width;
987 fse->min_height = decoder->rect.height / 2;
988 fse->max_height = decoder->rect.height / 2;
989
990 return 0;
991}
992
993/****************************************************************************
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800994 I2C Command
995 ****************************************************************************/
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300996
Laurent Pinchart460b6c02016-01-07 10:46:45 -0200997static int tvp5150_s_stream(struct v4l2_subdev *sd, int enable)
998{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200999 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab841502d2016-01-26 07:13:30 -02001000 /* Output format: 8-bit ITU-R BT.656 with embedded syncs */
1001 int val = 0x09;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001002
1003 /* Output format: 8-bit 4:2:2 YUV with discrete sync */
Mauro Carvalho Chehab841502d2016-01-26 07:13:30 -02001004 if (decoder->mbus_type == V4L2_MBUS_PARALLEL)
1005 val = 0x0d;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001006
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001007 /* Initializes TVP5150 to its default values */
1008 /* # set PCLK (27MHz) */
1009 tvp5150_write(sd, TVP5150_CONF_SHARED_PIN, 0x00);
1010
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001011 if (enable)
Mauro Carvalho Chehab841502d2016-01-26 07:13:30 -02001012 tvp5150_write(sd, TVP5150_MISC_CTL, val);
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001013 else
1014 tvp5150_write(sd, TVP5150_MISC_CTL, 0x00);
1015
1016 return 0;
1017}
1018
Hans Verkuil5325b422009-04-02 11:26:22 -03001019static int tvp5150_s_routing(struct v4l2_subdev *sd,
1020 u32 input, u32 output, u32 config)
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001021{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001022 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001023
Hans Verkuil5325b422009-04-02 11:26:22 -03001024 decoder->input = input;
1025 decoder->output = output;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001026 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001027 return 0;
1028}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001029
Hans Verkuild37dad42010-03-14 10:59:16 -03001030static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001031{
Hans Verkuild37dad42010-03-14 10:59:16 -03001032 /* this is for capturing 36 raw vbi lines
1033 if there's a way to cut off the beginning 2 vbi lines
1034 with the tvp5150 then the vbi line count could be lowered
1035 to 17 lines/field again, although I couldn't find a register
1036 which could do that cropping */
1037 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
1038 tvp5150_write(sd, TVP5150_LUMA_PROC_CTL_1, 0x70);
1039 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
1040 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, 0x00);
1041 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP, 0x01);
1042 }
1043 return 0;
1044}
1045
1046static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1047{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001048 int i;
1049
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001050 if (svbi->service_set != 0) {
1051 for (i = 0; i <= 23; i++) {
1052 svbi->service_lines[1][i] = 0;
1053 svbi->service_lines[0][i] =
1054 tvp5150_set_vbi(sd, vbi_ram_default,
1055 svbi->service_lines[0][i], 0xf0, i, 3);
1056 }
1057 /* Enables FIFO */
1058 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 1);
1059 } else {
1060 /* Disables FIFO*/
1061 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 0);
1062
1063 /* Disable Full Field */
1064 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
1065
1066 /* Disable Line modes */
1067 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
1068 tvp5150_write(sd, i, 0xff);
1069 }
1070 return 0;
1071}
1072
Hans Verkuild37dad42010-03-14 10:59:16 -03001073static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1074{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001075 int i, mask = 0;
1076
Hans Verkuil30634e82012-09-05 10:38:10 -03001077 memset(svbi->service_lines, 0, sizeof(svbi->service_lines));
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001078
1079 for (i = 0; i <= 23; i++) {
1080 svbi->service_lines[0][i] =
1081 tvp5150_get_vbi(sd, vbi_ram_default, i);
1082 mask |= svbi->service_lines[0][i];
1083 }
1084 svbi->service_set = mask;
1085 return 0;
1086}
1087
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001088#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001089static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001090{
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001091 int res;
1092
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001093 res = tvp5150_read(sd, reg->reg & 0xff);
1094 if (res < 0) {
1095 v4l2_err(sd, "%s: failed with error = %d\n", __func__, res);
1096 return res;
1097 }
1098
1099 reg->val = res;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001100 reg->size = 1;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001101 return 0;
1102}
1103
Hans Verkuil977ba3b12013-03-24 08:28:46 -03001104static int tvp5150_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001105{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001106 tvp5150_write(sd, reg->reg & 0xff, reg->val & 0xff);
1107 return 0;
1108}
1109#endif
1110
1111static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1112{
1113 int status = tvp5150_read(sd, 0x88);
1114
1115 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
1116 return 0;
1117}
1118
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001119/* ----------------------------------------------------------------------- */
1120
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001121static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
1122 .s_ctrl = tvp5150_s_ctrl,
1123};
1124
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001125static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1126 .log_status = tvp5150_log_status,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001127 .reset = tvp5150_reset,
1128#ifdef CONFIG_VIDEO_ADV_DEBUG
1129 .g_register = tvp5150_g_register,
1130 .s_register = tvp5150_s_register,
1131#endif
1132};
1133
1134static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001135 .g_tuner = tvp5150_g_tuner,
1136};
1137
1138static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001139 .s_std = tvp5150_s_std,
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001140 .s_stream = tvp5150_s_stream,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001141 .s_routing = tvp5150_s_routing,
Javier Martin963ddc62012-01-31 05:23:46 -03001142 .s_crop = tvp5150_s_crop,
1143 .g_crop = tvp5150_g_crop,
1144 .cropcap = tvp5150_cropcap,
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -02001145 .g_mbus_config = tvp5150_g_mbus_config,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001146};
1147
1148static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001149 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
Hans Verkuild37dad42010-03-14 10:59:16 -03001150 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1151 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1152 .s_raw_fmt = tvp5150_s_raw_fmt,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001153};
1154
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001155static const struct v4l2_subdev_pad_ops tvp5150_pad_ops = {
1156 .enum_mbus_code = tvp5150_enum_mbus_code,
Laurent Pincharte545ac82016-01-26 10:46:24 -02001157 .enum_frame_size = tvp5150_enum_frame_size,
Hans Verkuilda298c62015-04-09 04:02:34 -03001158 .set_fmt = tvp5150_fill_fmt,
1159 .get_fmt = tvp5150_fill_fmt,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001160};
1161
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001162static const struct v4l2_subdev_ops tvp5150_ops = {
1163 .core = &tvp5150_core_ops,
1164 .tuner = &tvp5150_tuner_ops,
1165 .video = &tvp5150_video_ops,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001166 .vbi = &tvp5150_vbi_ops,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001167 .pad = &tvp5150_pad_ops,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001168};
1169
1170
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001171/****************************************************************************
1172 I2C Client & Driver
1173 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001174
Laurent Pinchart78715972016-01-07 10:46:41 -02001175static int tvp5150_detect_version(struct tvp5150 *core)
1176{
1177 struct v4l2_subdev *sd = &core->sd;
1178 struct i2c_client *c = v4l2_get_subdevdata(sd);
1179 unsigned int i;
1180 u16 dev_id;
1181 u16 rom_ver;
1182 u8 regs[4];
1183 int res;
1184
1185 /*
1186 * Read consequent registers - TVP5150_MSB_DEV_ID, TVP5150_LSB_DEV_ID,
1187 * TVP5150_ROM_MAJOR_VER, TVP5150_ROM_MINOR_VER
1188 */
1189 for (i = 0; i < 4; i++) {
1190 res = tvp5150_read(sd, TVP5150_MSB_DEV_ID + i);
1191 if (res < 0)
1192 return res;
1193 regs[i] = res;
1194 }
1195
1196 dev_id = (regs[0] << 8) | regs[1];
1197 rom_ver = (regs[2] << 8) | regs[3];
1198
1199 v4l2_info(sd, "tvp%04x (%u.%u) chip found @ 0x%02x (%s)\n",
1200 dev_id, regs[2], regs[3], c->addr << 1, c->adapter->name);
1201
1202 if (dev_id == 0x5150 && rom_ver == 0x0321) { /* TVP51510A */
1203 v4l2_info(sd, "tvp5150a detected.\n");
1204 } else if (dev_id == 0x5150 && rom_ver == 0x0400) { /* TVP5150AM1 */
1205 v4l2_info(sd, "tvp5150am1 detected.\n");
1206
1207 /* ITU-T BT.656.4 timing */
1208 tvp5150_write(sd, TVP5150_REV_SELECT, 0);
Laurent Pinchart05676b32016-01-07 10:46:42 -02001209 } else if (dev_id == 0x5151 && rom_ver == 0x0100) { /* TVP5151 */
1210 v4l2_info(sd, "tvp5151 detected.\n");
Laurent Pinchart78715972016-01-07 10:46:41 -02001211 } else {
1212 v4l2_info(sd, "*** unknown tvp%04x chip detected.\n", dev_id);
1213 }
1214
1215 return 0;
1216}
1217
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02001218static int tvp5150_init(struct i2c_client *c)
1219{
1220 struct gpio_desc *pdn_gpio;
1221 struct gpio_desc *reset_gpio;
1222
1223 pdn_gpio = devm_gpiod_get_optional(&c->dev, "pdn", GPIOD_OUT_HIGH);
1224 if (IS_ERR(pdn_gpio))
1225 return PTR_ERR(pdn_gpio);
1226
1227 if (pdn_gpio) {
1228 gpiod_set_value_cansleep(pdn_gpio, 0);
1229 /* Delay time between power supplies active and reset */
1230 msleep(20);
1231 }
1232
1233 reset_gpio = devm_gpiod_get_optional(&c->dev, "reset", GPIOD_OUT_HIGH);
1234 if (IS_ERR(reset_gpio))
1235 return PTR_ERR(reset_gpio);
1236
1237 if (reset_gpio) {
1238 /* RESETB pulse duration */
1239 ndelay(500);
1240 gpiod_set_value_cansleep(reset_gpio, 0);
1241 /* Delay time between end of reset to I2C active */
1242 usleep_range(200, 250);
1243 }
1244
1245 return 0;
1246}
1247
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001248static int tvp5150_parse_dt(struct tvp5150 *decoder, struct device_node *np)
1249{
1250 struct v4l2_of_endpoint bus_cfg;
1251 struct device_node *ep;
1252 unsigned int flags;
1253 int ret = 0;
1254
1255 ep = of_graph_get_next_endpoint(np, NULL);
1256 if (!ep)
1257 return -EINVAL;
1258
1259 ret = v4l2_of_parse_endpoint(ep, &bus_cfg);
1260 if (ret)
1261 goto err;
1262
1263 flags = bus_cfg.bus.parallel.flags;
1264
1265 if (bus_cfg.bus_type == V4L2_MBUS_PARALLEL &&
1266 !(flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH &&
1267 flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH &&
1268 flags & V4L2_MBUS_FIELD_EVEN_LOW))
1269 return -EINVAL;
1270
1271 decoder->mbus_type = bus_cfg.bus_type;
1272
1273err:
1274 of_node_put(ep);
1275 return ret;
1276}
1277
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001278static int tvp5150_probe(struct i2c_client *c,
1279 const struct i2c_device_id *id)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001280{
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001281 struct tvp5150 *core;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001282 struct v4l2_subdev *sd;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001283 struct device_node *np = c->dev.of_node;
Laurent Pinchart78715972016-01-07 10:46:41 -02001284 int res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001285
1286 /* Check if the adapter supports the needed features */
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001287 if (!i2c_check_functionality(c->adapter,
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001288 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001289 return -EIO;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001290
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02001291 res = tvp5150_init(c);
1292 if (res)
1293 return res;
1294
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001295 core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL);
1296 if (!core)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001297 return -ENOMEM;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001298
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001299 sd = &core->sd;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001300
1301 if (IS_ENABLED(CONFIG_OF) && np) {
1302 res = tvp5150_parse_dt(core, np);
1303 if (res) {
1304 v4l2_err(sd, "DT parsing error: %d\n", res);
1305 return res;
1306 }
1307 } else {
1308 /* Default to BT.656 embedded sync */
1309 core->mbus_type = V4L2_MBUS_BT656;
1310 }
1311
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001312 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
Laurent Pincharte545ac82016-01-26 10:46:24 -02001313 sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1314
1315#if defined(CONFIG_MEDIA_CONTROLLER)
1316 core->pad.flags = MEDIA_PAD_FL_SOURCE;
1317 res = media_entity_pads_init(&sd->entity, 1, &core->pad);
1318 if (res < 0)
1319 return res;
1320#endif
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001321
Laurent Pinchart78715972016-01-07 10:46:41 -02001322 res = tvp5150_detect_version(core);
1323 if (res < 0)
1324 return res;
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001325
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -02001326 core->norm = V4L2_STD_ALL; /* Default is autodetect */
Hans Verkuil5325b422009-04-02 11:26:22 -03001327 core->input = TVP5150_COMPOSITE1;
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001328 core->enable = 1;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001329
Laurent Pinchartb1950b82016-01-07 10:46:44 -02001330 v4l2_ctrl_handler_init(&core->hdl, 5);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001331 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1332 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
1333 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1334 V4L2_CID_CONTRAST, 0, 255, 1, 128);
1335 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1336 V4L2_CID_SATURATION, 0, 255, 1, 128);
1337 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1338 V4L2_CID_HUE, -128, 127, 1, 0);
Laurent Pinchartb1950b82016-01-07 10:46:44 -02001339 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1340 V4L2_CID_PIXEL_RATE, 27000000,
1341 27000000, 1, 27000000);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001342 sd->ctrl_handler = &core->hdl;
1343 if (core->hdl.error) {
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001344 res = core->hdl.error;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001345 goto err;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001346 }
1347 v4l2_ctrl_handler_setup(&core->hdl);
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001348
Javier Martin963ddc62012-01-31 05:23:46 -03001349 /* Default is no cropping */
1350 core->rect.top = 0;
1351 if (tvp5150_read_std(sd) & V4L2_STD_525_60)
1352 core->rect.height = TVP5150_V_MAX_525_60;
1353 else
1354 core->rect.height = TVP5150_V_MAX_OTHERS;
1355 core->rect.left = 0;
1356 core->rect.width = TVP5150_H_MAX;
1357
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001358 res = v4l2_async_register_subdev(sd);
1359 if (res < 0)
1360 goto err;
1361
Markus Rechbergerf1e5ee42006-02-07 04:01:19 +01001362 if (debug > 1)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001363 tvp5150_log_status(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001364 return 0;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001365
1366err:
1367 v4l2_ctrl_handler_free(&core->hdl);
1368 return res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001369}
1370
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001371static int tvp5150_remove(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001372{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001373 struct v4l2_subdev *sd = i2c_get_clientdata(c);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001374 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001375
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001376 v4l2_dbg(1, debug, sd,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -02001377 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1378 c->addr << 1);
1379
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001380 v4l2_async_unregister_subdev(sd);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001381 v4l2_ctrl_handler_free(&decoder->hdl);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001382 return 0;
1383}
1384
1385/* ----------------------------------------------------------------------- */
1386
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001387static const struct i2c_device_id tvp5150_id[] = {
1388 { "tvp5150", 0 },
1389 { }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001390};
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001391MODULE_DEVICE_TABLE(i2c, tvp5150_id);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001392
Eduard Gavin7ef930a2016-01-07 10:46:48 -02001393#if IS_ENABLED(CONFIG_OF)
1394static const struct of_device_id tvp5150_of_match[] = {
1395 { .compatible = "ti,tvp5150", },
1396 { /* sentinel */ },
1397};
1398MODULE_DEVICE_TABLE(of, tvp5150_of_match);
1399#endif
1400
Hans Verkuilc7711452010-09-15 15:45:20 -03001401static struct i2c_driver tvp5150_driver = {
1402 .driver = {
Eduard Gavin7ef930a2016-01-07 10:46:48 -02001403 .of_match_table = of_match_ptr(tvp5150_of_match),
Hans Verkuilc7711452010-09-15 15:45:20 -03001404 .name = "tvp5150",
1405 },
1406 .probe = tvp5150_probe,
1407 .remove = tvp5150_remove,
1408 .id_table = tvp5150_id,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001409};
Hans Verkuilc7711452010-09-15 15:45:20 -03001410
Axel Linc6e8d862012-02-12 06:56:32 -03001411module_i2c_driver(tvp5150_driver);