blob: b9dabc9f4050956c6cd379b2a10e044013958a10 [file] [log] [blame]
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001/*
Mauro Carvalho Chehabcb7a01a2012-08-14 16:23:43 -03002 * drivers/media/i2c/tvp514x.c
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03003 *
4 * TI TVP5146/47 decoder driver
5 *
6 * Copyright (C) 2008 Texas Instruments Inc
7 * Author: Vaibhav Hiremath <hvaibhav@ti.com>
8 *
9 * Contributors:
10 * Sivaraj R <sivaraj@ti.com>
11 * Brijesh R Jadav <brijesh.j@ti.com>
12 * Hardik Shah <hardik.shah@ti.com>
13 * Manjunath Hadli <mrh@ti.com>
14 * Karicheri Muralidharan <m-karicheri2@ti.com>
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -030015 * Prabhakar Lad <prabhakar.lad@ti.com>
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030016 *
17 * This package is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License version 2 as
19 * published by the Free Software Foundation.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 *
30 */
31
32#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030034#include <linux/delay.h>
35#include <linux/videodev2.h>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040036#include <linux/module.h>
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -030037#include <linux/v4l2-mediabus.h>
Sachin Kamat098bcba2013-10-18 00:07:13 -030038#include <linux/of.h>
Philipp Zabelfd9fdb72014-02-10 22:01:48 +010039#include <linux/of_graph.h>
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -030040
Lad, Prabhakar8f23acb2013-06-24 11:51:39 -030041#include <media/v4l2-async.h>
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -030042#include <media/v4l2-device.h>
43#include <media/v4l2-common.h>
Hans Verkuil83811912010-05-09 06:50:25 -030044#include <media/v4l2-mediabus.h>
Lad, Prabhakarb610b592013-06-04 12:26:23 -030045#include <media/v4l2-of.h>
Hans Verkuilcf6832a2010-12-12 08:45:22 -030046#include <media/v4l2-ctrls.h>
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030047#include <media/tvp514x.h>
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -030048#include <media/media-entity.h>
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030049
50#include "tvp514x_regs.h"
51
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030052/* Private macros for TVP */
53#define I2C_RETRY_COUNT (5)
54#define LOCK_RETRY_COUNT (5)
55#define LOCK_RETRY_DELAY (200)
56
57/* Debug functions */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103058static bool debug;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030059module_param(debug, bool, 0644);
60MODULE_PARM_DESC(debug, "Debug level (0-1)");
61
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -030062MODULE_AUTHOR("Texas Instruments");
63MODULE_DESCRIPTION("TVP514X linux decoder driver");
64MODULE_LICENSE("GPL");
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030065
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -030066/* enum tvp514x_std - enum for supported standards */
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030067enum tvp514x_std {
68 STD_NTSC_MJ = 0,
69 STD_PAL_BDGHIN,
70 STD_INVALID
71};
72
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -030073/**
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030074 * struct tvp514x_std_info - Structure to store standard informations
75 * @width: Line width in pixels
76 * @height:Number of active lines
77 * @video_std: Value to write in REG_VIDEO_STD register
78 * @standard: v4l2 standard structure information
79 */
80struct tvp514x_std_info {
81 unsigned long width;
82 unsigned long height;
83 u8 video_std;
84 struct v4l2_standard standard;
85};
86
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -030087static struct tvp514x_reg tvp514x_reg_list_default[0x40];
Vaibhav Hiremath63b59ce2010-03-27 09:37:54 -030088
89static int tvp514x_s_stream(struct v4l2_subdev *sd, int enable);
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -030090/**
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -030091 * struct tvp514x_decoder - TVP5146/47 decoder object
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -030092 * @sd: Subdevice Slave handle
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -030093 * @tvp514x_regs: copy of hw's regs with preset values.
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030094 * @pdata: Board specific
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -030095 * @ver: Chip version
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -030096 * @streaming: TVP5146/47 decoder streaming - enabled or disabled.
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -030097 * @pix: Current pixel format
98 * @num_fmts: Number of formats
99 * @fmt_list: Format list
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300100 * @current_std: Current standard
101 * @num_stds: Number of standards
102 * @std_list: Standards list
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300103 * @input: Input routing at chip level
104 * @output: Output routing at chip level
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300105 */
106struct tvp514x_decoder {
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300107 struct v4l2_subdev sd;
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300108 struct v4l2_ctrl_handler hdl;
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -0300109 struct tvp514x_reg tvp514x_regs[ARRAY_SIZE(tvp514x_reg_list_default)];
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300110 const struct tvp514x_platform_data *pdata;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300111
112 int ver;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300113 int streaming;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300114
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -0300115 struct v4l2_pix_format pix;
116 int num_fmts;
117 const struct v4l2_fmtdesc *fmt_list;
118
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300119 enum tvp514x_std current_std;
120 int num_stds;
Hans Verkuila75ffc12010-05-09 06:32:47 -0300121 const struct tvp514x_std_info *std_list;
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300122 /* Input and Output Routing parameters */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300123 u32 input;
124 u32 output;
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -0300125
126 /* mc related members */
127 struct media_pad pad;
128 struct v4l2_mbus_framefmt format;
Lars-Peter Clausenf0a12d02013-06-23 10:01:35 -0300129
130 struct tvp514x_reg *int_seq;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300131};
132
133/* TVP514x default register values */
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -0300134static struct tvp514x_reg tvp514x_reg_list_default[] = {
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300135 /* Composite selected */
136 {TOK_WRITE, REG_INPUT_SEL, 0x05},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300137 {TOK_WRITE, REG_AFE_GAIN_CTRL, 0x0F},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300138 /* Auto mode */
139 {TOK_WRITE, REG_VIDEO_STD, 0x00},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300140 {TOK_WRITE, REG_OPERATION_MODE, 0x00},
141 {TOK_SKIP, REG_AUTOSWITCH_MASK, 0x3F},
142 {TOK_WRITE, REG_COLOR_KILLER, 0x10},
143 {TOK_WRITE, REG_LUMA_CONTROL1, 0x00},
144 {TOK_WRITE, REG_LUMA_CONTROL2, 0x00},
145 {TOK_WRITE, REG_LUMA_CONTROL3, 0x02},
146 {TOK_WRITE, REG_BRIGHTNESS, 0x80},
147 {TOK_WRITE, REG_CONTRAST, 0x80},
148 {TOK_WRITE, REG_SATURATION, 0x80},
149 {TOK_WRITE, REG_HUE, 0x00},
150 {TOK_WRITE, REG_CHROMA_CONTROL1, 0x00},
151 {TOK_WRITE, REG_CHROMA_CONTROL2, 0x0E},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300152 /* Reserved */
153 {TOK_SKIP, 0x0F, 0x00},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300154 {TOK_WRITE, REG_COMP_PR_SATURATION, 0x80},
155 {TOK_WRITE, REG_COMP_Y_CONTRAST, 0x80},
156 {TOK_WRITE, REG_COMP_PB_SATURATION, 0x80},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300157 /* Reserved */
158 {TOK_SKIP, 0x13, 0x00},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300159 {TOK_WRITE, REG_COMP_Y_BRIGHTNESS, 0x80},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300160 /* Reserved */
161 {TOK_SKIP, 0x15, 0x00},
162 /* NTSC timing */
163 {TOK_SKIP, REG_AVID_START_PIXEL_LSB, 0x55},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300164 {TOK_SKIP, REG_AVID_START_PIXEL_MSB, 0x00},
165 {TOK_SKIP, REG_AVID_STOP_PIXEL_LSB, 0x25},
166 {TOK_SKIP, REG_AVID_STOP_PIXEL_MSB, 0x03},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300167 /* NTSC timing */
168 {TOK_SKIP, REG_HSYNC_START_PIXEL_LSB, 0x00},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300169 {TOK_SKIP, REG_HSYNC_START_PIXEL_MSB, 0x00},
170 {TOK_SKIP, REG_HSYNC_STOP_PIXEL_LSB, 0x40},
171 {TOK_SKIP, REG_HSYNC_STOP_PIXEL_MSB, 0x00},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300172 /* NTSC timing */
173 {TOK_SKIP, REG_VSYNC_START_LINE_LSB, 0x04},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300174 {TOK_SKIP, REG_VSYNC_START_LINE_MSB, 0x00},
175 {TOK_SKIP, REG_VSYNC_STOP_LINE_LSB, 0x07},
176 {TOK_SKIP, REG_VSYNC_STOP_LINE_MSB, 0x00},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300177 /* NTSC timing */
178 {TOK_SKIP, REG_VBLK_START_LINE_LSB, 0x01},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300179 {TOK_SKIP, REG_VBLK_START_LINE_MSB, 0x00},
180 {TOK_SKIP, REG_VBLK_STOP_LINE_LSB, 0x15},
181 {TOK_SKIP, REG_VBLK_STOP_LINE_MSB, 0x00},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300182 /* Reserved */
183 {TOK_SKIP, 0x26, 0x00},
184 /* Reserved */
185 {TOK_SKIP, 0x27, 0x00},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300186 {TOK_SKIP, REG_FAST_SWTICH_CONTROL, 0xCC},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300187 /* Reserved */
188 {TOK_SKIP, 0x29, 0x00},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300189 {TOK_SKIP, REG_FAST_SWTICH_SCART_DELAY, 0x00},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300190 /* Reserved */
191 {TOK_SKIP, 0x2B, 0x00},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300192 {TOK_SKIP, REG_SCART_DELAY, 0x00},
193 {TOK_SKIP, REG_CTI_DELAY, 0x00},
194 {TOK_SKIP, REG_CTI_CONTROL, 0x00},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300195 /* Reserved */
196 {TOK_SKIP, 0x2F, 0x00},
197 /* Reserved */
198 {TOK_SKIP, 0x30, 0x00},
199 /* Reserved */
200 {TOK_SKIP, 0x31, 0x00},
201 /* HS, VS active high */
202 {TOK_WRITE, REG_SYNC_CONTROL, 0x00},
203 /* 10-bit BT.656 */
204 {TOK_WRITE, REG_OUTPUT_FORMATTER1, 0x00},
205 /* Enable clk & data */
206 {TOK_WRITE, REG_OUTPUT_FORMATTER2, 0x11},
207 /* Enable AVID & FLD */
208 {TOK_WRITE, REG_OUTPUT_FORMATTER3, 0xEE},
209 /* Enable VS & HS */
210 {TOK_WRITE, REG_OUTPUT_FORMATTER4, 0xAF},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300211 {TOK_WRITE, REG_OUTPUT_FORMATTER5, 0xFF},
212 {TOK_WRITE, REG_OUTPUT_FORMATTER6, 0xFF},
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300213 /* Clear status */
214 {TOK_WRITE, REG_CLEAR_LOST_LOCK, 0x01},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300215 {TOK_TERM, 0, 0},
216};
217
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300218/**
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -0300219 * List of image formats supported by TVP5146/47 decoder
220 * Currently we are using 8 bit mode only, but can be
221 * extended to 10/20 bit mode.
222 */
223static const struct v4l2_fmtdesc tvp514x_fmt_list[] = {
224 {
225 .index = 0,
226 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
227 .flags = 0,
228 .description = "8-bit UYVY 4:2:2 Format",
229 .pixelformat = V4L2_PIX_FMT_UYVY,
230 },
231};
232
233/**
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300234 * Supported standards -
235 *
236 * Currently supports two standards only, need to add support for rest of the
237 * modes, like SECAM, etc...
238 */
Hans Verkuila75ffc12010-05-09 06:32:47 -0300239static const struct tvp514x_std_info tvp514x_std_list[] = {
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300240 /* Standard: STD_NTSC_MJ */
241 [STD_NTSC_MJ] = {
242 .width = NTSC_NUM_ACTIVE_PIXELS,
243 .height = NTSC_NUM_ACTIVE_LINES,
244 .video_std = VIDEO_STD_NTSC_MJ_BIT,
245 .standard = {
246 .index = 0,
247 .id = V4L2_STD_NTSC,
248 .name = "NTSC",
249 .frameperiod = {1001, 30000},
250 .framelines = 525
251 },
252 /* Standard: STD_PAL_BDGHIN */
253 },
254 [STD_PAL_BDGHIN] = {
255 .width = PAL_NUM_ACTIVE_PIXELS,
256 .height = PAL_NUM_ACTIVE_LINES,
257 .video_std = VIDEO_STD_PAL_BDGHIN_BIT,
258 .standard = {
259 .index = 1,
260 .id = V4L2_STD_PAL,
261 .name = "PAL",
262 .frameperiod = {1, 25},
263 .framelines = 625
264 },
265 },
266 /* Standard: need to add for additional standard */
267};
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300268
269
270static inline struct tvp514x_decoder *to_decoder(struct v4l2_subdev *sd)
271{
272 return container_of(sd, struct tvp514x_decoder, sd);
273}
274
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300275static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
276{
277 return &container_of(ctrl->handler, struct tvp514x_decoder, hdl)->sd;
278}
279
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300280
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300281/**
282 * tvp514x_read_reg() - Read a value from a register in an TVP5146/47.
283 * @sd: ptr to v4l2_subdev struct
284 * @reg: TVP5146/47 register address
285 *
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300286 * Returns value read if successful, or non-zero (-1) otherwise.
287 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300288static int tvp514x_read_reg(struct v4l2_subdev *sd, u8 reg)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300289{
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300290 int err, retry = 0;
291 struct i2c_client *client = v4l2_get_subdevdata(sd);
292
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300293read_again:
294
295 err = i2c_smbus_read_byte_data(client, reg);
Sebastian Andrzej Siewior6f901a92009-11-04 15:35:09 -0300296 if (err < 0) {
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300297 if (retry <= I2C_RETRY_COUNT) {
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300298 v4l2_warn(sd, "Read: retry ... %d\n", retry);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300299 retry++;
300 msleep_interruptible(10);
301 goto read_again;
302 }
303 }
304
305 return err;
306}
307
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300308/**
309 * dump_reg() - dump the register content of TVP5146/47.
310 * @sd: ptr to v4l2_subdev struct
311 * @reg: TVP5146/47 register address
312 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300313static void dump_reg(struct v4l2_subdev *sd, u8 reg)
314{
315 u32 val;
316
317 val = tvp514x_read_reg(sd, reg);
318 v4l2_info(sd, "Reg(0x%.2X): 0x%.2X\n", reg, val);
319}
320
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300321/**
322 * tvp514x_write_reg() - Write a value to a register in TVP5146/47
323 * @sd: ptr to v4l2_subdev struct
324 * @reg: TVP5146/47 register address
325 * @val: value to be written to the register
326 *
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300327 * Write a value to a register in an TVP5146/47 decoder device.
328 * Returns zero if successful, or non-zero otherwise.
329 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300330static int tvp514x_write_reg(struct v4l2_subdev *sd, u8 reg, u8 val)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300331{
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300332 int err, retry = 0;
333 struct i2c_client *client = v4l2_get_subdevdata(sd);
334
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300335write_again:
336
337 err = i2c_smbus_write_byte_data(client, reg, val);
338 if (err) {
339 if (retry <= I2C_RETRY_COUNT) {
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300340 v4l2_warn(sd, "Write: retry ... %d\n", retry);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300341 retry++;
342 msleep_interruptible(10);
343 goto write_again;
344 }
345 }
346
347 return err;
348}
349
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300350/**
351 * tvp514x_write_regs() : Initializes a list of TVP5146/47 registers
352 * @sd: ptr to v4l2_subdev struct
353 * @reglist: list of TVP5146/47 registers and values
354 *
355 * Initializes a list of TVP5146/47 registers:-
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300356 * if token is TOK_TERM, then entire write operation terminates
357 * if token is TOK_DELAY, then a delay of 'val' msec is introduced
358 * if token is TOK_SKIP, then the register write is skipped
359 * if token is TOK_WRITE, then the register write is performed
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300360 * Returns zero if successful, or non-zero otherwise.
361 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300362static int tvp514x_write_regs(struct v4l2_subdev *sd,
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300363 const struct tvp514x_reg reglist[])
364{
365 int err;
366 const struct tvp514x_reg *next = reglist;
367
368 for (; next->token != TOK_TERM; next++) {
369 if (next->token == TOK_DELAY) {
370 msleep(next->val);
371 continue;
372 }
373
374 if (next->token == TOK_SKIP)
375 continue;
376
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300377 err = tvp514x_write_reg(sd, next->reg, (u8) next->val);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300378 if (err) {
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300379 v4l2_err(sd, "Write failed. Err[%d]\n", err);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300380 return err;
381 }
382 }
383 return 0;
384}
385
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300386/**
Hans Verkuil2db4e782010-05-09 06:30:15 -0300387 * tvp514x_query_current_std() : Query the current standard detected by TVP5146/47
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300388 * @sd: ptr to v4l2_subdev struct
389 *
Hans Verkuil2db4e782010-05-09 06:30:15 -0300390 * Returns the current standard detected by TVP5146/47, STD_INVALID if there is no
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300391 * standard detected.
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300392 */
Hans Verkuil2db4e782010-05-09 06:30:15 -0300393static enum tvp514x_std tvp514x_query_current_std(struct v4l2_subdev *sd)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300394{
395 u8 std, std_status;
396
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300397 std = tvp514x_read_reg(sd, REG_VIDEO_STD);
398 if ((std & VIDEO_STD_MASK) == VIDEO_STD_AUTO_SWITCH_BIT)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300399 /* use the standard status register */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300400 std_status = tvp514x_read_reg(sd, REG_VIDEO_STD_STATUS);
401 else
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300402 /* use the standard register itself */
403 std_status = std;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300404
405 switch (std_status & VIDEO_STD_MASK) {
406 case VIDEO_STD_NTSC_MJ_BIT:
407 return STD_NTSC_MJ;
408
409 case VIDEO_STD_PAL_BDGHIN_BIT:
410 return STD_PAL_BDGHIN;
411
412 default:
413 return STD_INVALID;
414 }
415
416 return STD_INVALID;
417}
418
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300419/* TVP5146/47 register dump function */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300420static void tvp514x_reg_dump(struct v4l2_subdev *sd)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300421{
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300422 dump_reg(sd, REG_INPUT_SEL);
423 dump_reg(sd, REG_AFE_GAIN_CTRL);
424 dump_reg(sd, REG_VIDEO_STD);
425 dump_reg(sd, REG_OPERATION_MODE);
426 dump_reg(sd, REG_COLOR_KILLER);
427 dump_reg(sd, REG_LUMA_CONTROL1);
428 dump_reg(sd, REG_LUMA_CONTROL2);
429 dump_reg(sd, REG_LUMA_CONTROL3);
430 dump_reg(sd, REG_BRIGHTNESS);
431 dump_reg(sd, REG_CONTRAST);
432 dump_reg(sd, REG_SATURATION);
433 dump_reg(sd, REG_HUE);
434 dump_reg(sd, REG_CHROMA_CONTROL1);
435 dump_reg(sd, REG_CHROMA_CONTROL2);
436 dump_reg(sd, REG_COMP_PR_SATURATION);
437 dump_reg(sd, REG_COMP_Y_CONTRAST);
438 dump_reg(sd, REG_COMP_PB_SATURATION);
439 dump_reg(sd, REG_COMP_Y_BRIGHTNESS);
440 dump_reg(sd, REG_AVID_START_PIXEL_LSB);
441 dump_reg(sd, REG_AVID_START_PIXEL_MSB);
442 dump_reg(sd, REG_AVID_STOP_PIXEL_LSB);
443 dump_reg(sd, REG_AVID_STOP_PIXEL_MSB);
444 dump_reg(sd, REG_HSYNC_START_PIXEL_LSB);
445 dump_reg(sd, REG_HSYNC_START_PIXEL_MSB);
446 dump_reg(sd, REG_HSYNC_STOP_PIXEL_LSB);
447 dump_reg(sd, REG_HSYNC_STOP_PIXEL_MSB);
448 dump_reg(sd, REG_VSYNC_START_LINE_LSB);
449 dump_reg(sd, REG_VSYNC_START_LINE_MSB);
450 dump_reg(sd, REG_VSYNC_STOP_LINE_LSB);
451 dump_reg(sd, REG_VSYNC_STOP_LINE_MSB);
452 dump_reg(sd, REG_VBLK_START_LINE_LSB);
453 dump_reg(sd, REG_VBLK_START_LINE_MSB);
454 dump_reg(sd, REG_VBLK_STOP_LINE_LSB);
455 dump_reg(sd, REG_VBLK_STOP_LINE_MSB);
456 dump_reg(sd, REG_SYNC_CONTROL);
457 dump_reg(sd, REG_OUTPUT_FORMATTER1);
458 dump_reg(sd, REG_OUTPUT_FORMATTER2);
459 dump_reg(sd, REG_OUTPUT_FORMATTER3);
460 dump_reg(sd, REG_OUTPUT_FORMATTER4);
461 dump_reg(sd, REG_OUTPUT_FORMATTER5);
462 dump_reg(sd, REG_OUTPUT_FORMATTER6);
463 dump_reg(sd, REG_CLEAR_LOST_LOCK);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300464}
465
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300466/**
467 * tvp514x_configure() - Configure the TVP5146/47 registers
468 * @sd: ptr to v4l2_subdev struct
469 * @decoder: ptr to tvp514x_decoder structure
470 *
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300471 * Returns zero if successful, or non-zero otherwise.
472 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300473static int tvp514x_configure(struct v4l2_subdev *sd,
474 struct tvp514x_decoder *decoder)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300475{
476 int err;
477
478 /* common register initialization */
479 err =
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300480 tvp514x_write_regs(sd, decoder->tvp514x_regs);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300481 if (err)
482 return err;
483
484 if (debug)
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300485 tvp514x_reg_dump(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300486
487 return 0;
488}
489
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300490/**
491 * tvp514x_detect() - Detect if an tvp514x is present, and if so which revision.
492 * @sd: pointer to standard V4L2 sub-device structure
493 * @decoder: pointer to tvp514x_decoder structure
494 *
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300495 * A device is considered to be detected if the chip ID (LSB and MSB)
496 * registers match the expected values.
497 * Any value of the rom version register is accepted.
498 * Returns ENODEV error number if no device is detected, or zero
499 * if a device is detected.
500 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300501static int tvp514x_detect(struct v4l2_subdev *sd,
502 struct tvp514x_decoder *decoder)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300503{
504 u8 chip_id_msb, chip_id_lsb, rom_ver;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300505 struct i2c_client *client = v4l2_get_subdevdata(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300506
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300507 chip_id_msb = tvp514x_read_reg(sd, REG_CHIP_ID_MSB);
508 chip_id_lsb = tvp514x_read_reg(sd, REG_CHIP_ID_LSB);
509 rom_ver = tvp514x_read_reg(sd, REG_ROM_VERSION);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300510
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300511 v4l2_dbg(1, debug, sd,
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300512 "chip id detected msb:0x%x lsb:0x%x rom version:0x%x\n",
513 chip_id_msb, chip_id_lsb, rom_ver);
514 if ((chip_id_msb != TVP514X_CHIP_ID_MSB)
515 || ((chip_id_lsb != TVP5146_CHIP_ID_LSB)
516 && (chip_id_lsb != TVP5147_CHIP_ID_LSB))) {
517 /* We didn't read the values we expected, so this must not be
518 * an TVP5146/47.
519 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300520 v4l2_err(sd, "chip id mismatch msb:0x%x lsb:0x%x\n",
521 chip_id_msb, chip_id_lsb);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300522 return -ENODEV;
523 }
524
525 decoder->ver = rom_ver;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300526
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300527 v4l2_info(sd, "%s (Version - 0x%.2x) found at 0x%x (%s)\n",
528 client->name, decoder->ver,
529 client->addr << 1, client->adapter->name);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300530 return 0;
531}
532
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300533/**
534 * tvp514x_querystd() - V4L2 decoder interface handler for querystd
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300535 * @sd: pointer to standard V4L2 sub-device structure
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300536 * @std_id: standard V4L2 std_id ioctl enum
537 *
538 * Returns the current standard detected by TVP5146/47. If no active input is
Hans Verkuil2db4e782010-05-09 06:30:15 -0300539 * detected then *std_id is set to 0 and the function returns 0.
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300540 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300541static int tvp514x_querystd(struct v4l2_subdev *sd, v4l2_std_id *std_id)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300542{
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300543 struct tvp514x_decoder *decoder = to_decoder(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300544 enum tvp514x_std current_std;
545 enum tvp514x_input input_sel;
546 u8 sync_lock_status, lock_mask;
547
548 if (std_id == NULL)
549 return -EINVAL;
550
Hans Verkuilc3896482012-09-20 09:06:33 -0300551 /* To query the standard the TVP514x must power on the ADCs. */
552 if (!decoder->streaming) {
553 tvp514x_s_stream(sd, 1);
554 msleep(LOCK_RETRY_DELAY);
555 }
556
Hans Verkuil2db4e782010-05-09 06:30:15 -0300557 /* query the current standard */
558 current_std = tvp514x_query_current_std(sd);
Hans Verkuil55852cb2013-05-29 10:19:00 -0300559 if (current_std == STD_INVALID) {
560 *std_id = V4L2_STD_UNKNOWN;
Hans Verkuil2db4e782010-05-09 06:30:15 -0300561 return 0;
Hans Verkuil55852cb2013-05-29 10:19:00 -0300562 }
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300563
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300564 input_sel = decoder->input;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300565
566 switch (input_sel) {
567 case INPUT_CVBS_VI1A:
568 case INPUT_CVBS_VI1B:
569 case INPUT_CVBS_VI1C:
570 case INPUT_CVBS_VI2A:
571 case INPUT_CVBS_VI2B:
572 case INPUT_CVBS_VI2C:
573 case INPUT_CVBS_VI3A:
574 case INPUT_CVBS_VI3B:
575 case INPUT_CVBS_VI3C:
576 case INPUT_CVBS_VI4A:
577 lock_mask = STATUS_CLR_SUBCAR_LOCK_BIT |
578 STATUS_HORZ_SYNC_LOCK_BIT |
579 STATUS_VIRT_SYNC_LOCK_BIT;
580 break;
581
582 case INPUT_SVIDEO_VI2A_VI1A:
583 case INPUT_SVIDEO_VI2B_VI1B:
584 case INPUT_SVIDEO_VI2C_VI1C:
585 case INPUT_SVIDEO_VI2A_VI3A:
586 case INPUT_SVIDEO_VI2B_VI3B:
587 case INPUT_SVIDEO_VI2C_VI3C:
588 case INPUT_SVIDEO_VI4A_VI1A:
589 case INPUT_SVIDEO_VI4A_VI1B:
590 case INPUT_SVIDEO_VI4A_VI1C:
591 case INPUT_SVIDEO_VI4A_VI3A:
592 case INPUT_SVIDEO_VI4A_VI3B:
593 case INPUT_SVIDEO_VI4A_VI3C:
594 lock_mask = STATUS_HORZ_SYNC_LOCK_BIT |
595 STATUS_VIRT_SYNC_LOCK_BIT;
596 break;
597 /*Need to add other interfaces*/
598 default:
599 return -EINVAL;
600 }
601 /* check whether signal is locked */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300602 sync_lock_status = tvp514x_read_reg(sd, REG_STATUS1);
Hans Verkuil55852cb2013-05-29 10:19:00 -0300603 if (lock_mask != (sync_lock_status & lock_mask)) {
604 *std_id = V4L2_STD_UNKNOWN;
Hans Verkuil2db4e782010-05-09 06:30:15 -0300605 return 0; /* No input detected */
Hans Verkuil55852cb2013-05-29 10:19:00 -0300606 }
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300607
Hans Verkuil55852cb2013-05-29 10:19:00 -0300608 *std_id &= decoder->std_list[current_std].standard.id;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300609
Hans Verkuil2db4e782010-05-09 06:30:15 -0300610 v4l2_dbg(1, debug, sd, "Current STD: %s\n",
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300611 decoder->std_list[current_std].standard.name);
612 return 0;
613}
614
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300615/**
616 * tvp514x_s_std() - V4L2 decoder interface handler for s_std
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300617 * @sd: pointer to standard V4L2 sub-device structure
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300618 * @std_id: standard V4L2 v4l2_std_id ioctl enum
619 *
620 * If std_id is supported, sets the requested standard. Otherwise, returns
621 * -EINVAL
622 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300623static int tvp514x_s_std(struct v4l2_subdev *sd, v4l2_std_id std_id)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300624{
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300625 struct tvp514x_decoder *decoder = to_decoder(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300626 int err, i;
627
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300628 for (i = 0; i < decoder->num_stds; i++)
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300629 if (std_id & decoder->std_list[i].standard.id)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300630 break;
631
632 if ((i == decoder->num_stds) || (i == STD_INVALID))
633 return -EINVAL;
634
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300635 err = tvp514x_write_reg(sd, REG_VIDEO_STD,
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300636 decoder->std_list[i].video_std);
637 if (err)
638 return err;
639
640 decoder->current_std = i;
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -0300641 decoder->tvp514x_regs[REG_VIDEO_STD].val =
642 decoder->std_list[i].video_std;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300643
Hans Verkuil3907b072010-05-09 06:39:44 -0300644 v4l2_dbg(1, debug, sd, "Standard set to: %s\n",
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300645 decoder->std_list[i].standard.name);
646 return 0;
647}
648
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300649/**
650 * tvp514x_s_routing() - V4L2 decoder interface handler for s_routing
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300651 * @sd: pointer to standard V4L2 sub-device structure
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300652 * @input: input selector for routing the signal
653 * @output: output selector for routing the signal
654 * @config: config value. Not used
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300655 *
656 * If index is valid, selects the requested input. Otherwise, returns -EINVAL if
657 * the input is not supported or there is no active signal present in the
658 * selected input.
659 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300660static int tvp514x_s_routing(struct v4l2_subdev *sd,
661 u32 input, u32 output, u32 config)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300662{
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300663 struct tvp514x_decoder *decoder = to_decoder(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300664 int err;
665 enum tvp514x_input input_sel;
666 enum tvp514x_output output_sel;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300667
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300668 if ((input >= INPUT_INVALID) ||
669 (output >= OUTPUT_INVALID))
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300670 /* Index out of bound */
671 return -EINVAL;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300672
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300673 input_sel = input;
674 output_sel = output;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300675
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300676 err = tvp514x_write_reg(sd, REG_INPUT_SEL, input_sel);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300677 if (err)
678 return err;
679
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300680 output_sel |= tvp514x_read_reg(sd,
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300681 REG_OUTPUT_FORMATTER1) & 0x7;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300682 err = tvp514x_write_reg(sd, REG_OUTPUT_FORMATTER1,
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300683 output_sel);
684 if (err)
685 return err;
686
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -0300687 decoder->tvp514x_regs[REG_INPUT_SEL].val = input_sel;
688 decoder->tvp514x_regs[REG_OUTPUT_FORMATTER1].val = output_sel;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300689 decoder->input = input;
690 decoder->output = output;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300691
Hans Verkuil2db4e782010-05-09 06:30:15 -0300692 v4l2_dbg(1, debug, sd, "Input set to: %d\n", input_sel);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300693
694 return 0;
695}
696
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300697/**
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300698 * tvp514x_s_ctrl() - V4L2 decoder interface handler for s_ctrl
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300699 * @ctrl: pointer to v4l2_ctrl structure
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300700 *
701 * If the requested control is supported, sets the control's current
702 * value in HW. Otherwise, returns -EINVAL if the control is not supported.
703 */
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300704static int tvp514x_s_ctrl(struct v4l2_ctrl *ctrl)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300705{
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300706 struct v4l2_subdev *sd = to_sd(ctrl);
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300707 struct tvp514x_decoder *decoder = to_decoder(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300708 int err = -EINVAL, value;
709
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300710 value = ctrl->val;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300711
712 switch (ctrl->id) {
713 case V4L2_CID_BRIGHTNESS:
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300714 err = tvp514x_write_reg(sd, REG_BRIGHTNESS, value);
715 if (!err)
716 decoder->tvp514x_regs[REG_BRIGHTNESS].val = value;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300717 break;
718 case V4L2_CID_CONTRAST:
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300719 err = tvp514x_write_reg(sd, REG_CONTRAST, value);
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300720 if (!err)
721 decoder->tvp514x_regs[REG_CONTRAST].val = value;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300722 break;
723 case V4L2_CID_SATURATION:
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300724 err = tvp514x_write_reg(sd, REG_SATURATION, value);
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300725 if (!err)
726 decoder->tvp514x_regs[REG_SATURATION].val = value;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300727 break;
728 case V4L2_CID_HUE:
729 if (value == 180)
730 value = 0x7F;
731 else if (value == -180)
732 value = 0x80;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300733 err = tvp514x_write_reg(sd, REG_HUE, value);
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300734 if (!err)
735 decoder->tvp514x_regs[REG_HUE].val = value;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300736 break;
737 case V4L2_CID_AUTOGAIN:
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300738 err = tvp514x_write_reg(sd, REG_AFE_GAIN_CTRL, value ? 0x0f : 0x0c);
739 if (!err)
740 decoder->tvp514x_regs[REG_AFE_GAIN_CTRL].val = value;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300741 break;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300742 }
743
Hans Verkuil3907b072010-05-09 06:39:44 -0300744 v4l2_dbg(1, debug, sd, "Set Control: ID - %d - %d\n",
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300745 ctrl->id, ctrl->val);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300746 return err;
747}
748
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300749/**
Hans Verkuil83811912010-05-09 06:50:25 -0300750 * tvp514x_enum_mbus_fmt() - V4L2 decoder interface handler for enum_mbus_fmt
751 * @sd: pointer to standard V4L2 sub-device structure
752 * @index: index of pixelcode to retrieve
753 * @code: receives the pixelcode
754 *
755 * Enumerates supported mediabus formats
756 */
757static int
758tvp514x_enum_mbus_fmt(struct v4l2_subdev *sd, unsigned index,
759 enum v4l2_mbus_pixelcode *code)
760{
761 if (index)
762 return -EINVAL;
763
764 *code = V4L2_MBUS_FMT_YUYV10_2X10;
765 return 0;
766}
767
768/**
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -0300769 * tvp514x_mbus_fmt() - V4L2 decoder interface handler for try/s/g_mbus_fmt
Hans Verkuil83811912010-05-09 06:50:25 -0300770 * @sd: pointer to standard V4L2 sub-device structure
771 * @f: pointer to the mediabus format structure
772 *
773 * Negotiates the image capture size and mediabus format.
774 */
775static int
776tvp514x_mbus_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *f)
777{
778 struct tvp514x_decoder *decoder = to_decoder(sd);
779 enum tvp514x_std current_std;
780
781 if (f == NULL)
782 return -EINVAL;
783
784 /* Calculate height and width based on current standard */
785 current_std = decoder->current_std;
786
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -0300787 f->code = V4L2_MBUS_FMT_YUYV8_2X8;
Hans Verkuil83811912010-05-09 06:50:25 -0300788 f->width = decoder->std_list[current_std].width;
789 f->height = decoder->std_list[current_std].height;
790 f->field = V4L2_FIELD_INTERLACED;
791 f->colorspace = V4L2_COLORSPACE_SMPTE170M;
Hans Verkuil83811912010-05-09 06:50:25 -0300792 v4l2_dbg(1, debug, sd, "MBUS_FMT: Width - %d, Height - %d\n",
793 f->width, f->height);
794 return 0;
795}
796
797/**
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300798 * tvp514x_g_parm() - V4L2 decoder interface handler for g_parm
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300799 * @sd: pointer to standard V4L2 sub-device structure
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300800 * @a: pointer to standard V4L2 VIDIOC_G_PARM ioctl structure
801 *
802 * Returns the decoder's video CAPTURE parameters.
803 */
804static int
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300805tvp514x_g_parm(struct v4l2_subdev *sd, struct v4l2_streamparm *a)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300806{
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300807 struct tvp514x_decoder *decoder = to_decoder(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300808 struct v4l2_captureparm *cparm;
809 enum tvp514x_std current_std;
810
811 if (a == NULL)
812 return -EINVAL;
813
814 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300815 /* only capture is supported */
816 return -EINVAL;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300817
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300818 /* get the current standard */
Hans Verkuil2db4e782010-05-09 06:30:15 -0300819 current_std = decoder->current_std;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300820
821 cparm = &a->parm.capture;
822 cparm->capability = V4L2_CAP_TIMEPERFRAME;
823 cparm->timeperframe =
824 decoder->std_list[current_std].standard.frameperiod;
825
826 return 0;
827}
828
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300829/**
830 * tvp514x_s_parm() - V4L2 decoder interface handler for s_parm
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300831 * @sd: pointer to standard V4L2 sub-device structure
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300832 * @a: pointer to standard V4L2 VIDIOC_S_PARM ioctl structure
833 *
834 * Configures the decoder to use the input parameters, if possible. If
835 * not possible, returns the appropriate error code.
836 */
837static int
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300838tvp514x_s_parm(struct v4l2_subdev *sd, struct v4l2_streamparm *a)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300839{
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300840 struct tvp514x_decoder *decoder = to_decoder(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300841 struct v4l2_fract *timeperframe;
842 enum tvp514x_std current_std;
843
844 if (a == NULL)
845 return -EINVAL;
846
847 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300848 /* only capture is supported */
849 return -EINVAL;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300850
851 timeperframe = &a->parm.capture.timeperframe;
852
853 /* get the current standard */
Hans Verkuil2db4e782010-05-09 06:30:15 -0300854 current_std = decoder->current_std;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300855
856 *timeperframe =
857 decoder->std_list[current_std].standard.frameperiod;
858
859 return 0;
860}
861
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -0300862/**
863 * tvp514x_s_stream() - V4L2 decoder i/f handler for s_stream
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300864 * @sd: pointer to standard V4L2 sub-device structure
865 * @enable: streaming enable or disable
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300866 *
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300867 * Sets streaming to enable or disable, if possible.
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300868 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300869static int tvp514x_s_stream(struct v4l2_subdev *sd, int enable)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300870{
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300871 int err = 0;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300872 struct tvp514x_decoder *decoder = to_decoder(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300873
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300874 if (decoder->streaming == enable)
875 return 0;
876
877 switch (enable) {
878 case 0:
879 {
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300880 /* Power Down Sequence */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300881 err = tvp514x_write_reg(sd, REG_OPERATION_MODE, 0x01);
882 if (err) {
883 v4l2_err(sd, "Unable to turn off decoder\n");
884 return err;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300885 }
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300886 decoder->streaming = enable;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300887 break;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300888 }
889 case 1:
890 {
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300891 /* Power Up Sequence */
Lars-Peter Clausenf0a12d02013-06-23 10:01:35 -0300892 err = tvp514x_write_regs(sd, decoder->int_seq);
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300893 if (err) {
894 v4l2_err(sd, "Unable to turn on decoder\n");
895 return err;
896 }
897 /* Detect if not already detected */
898 err = tvp514x_detect(sd, decoder);
899 if (err) {
900 v4l2_err(sd, "Unable to detect decoder\n");
901 return err;
902 }
903 err = tvp514x_configure(sd, decoder);
904 if (err) {
905 v4l2_err(sd, "Unable to configure decoder\n");
906 return err;
907 }
908 decoder->streaming = enable;
909 break;
910 }
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -0300911 default:
912 err = -ENODEV;
913 break;
914 }
915
916 return err;
917}
918
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300919static const struct v4l2_ctrl_ops tvp514x_ctrl_ops = {
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -0300920 .s_ctrl = tvp514x_s_ctrl,
Hans Verkuilcf6832a2010-12-12 08:45:22 -0300921};
922
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -0300923/**
924 * tvp514x_enum_mbus_code() - V4L2 decoder interface handler for enum_mbus_code
925 * @sd: pointer to standard V4L2 sub-device structure
926 * @fh: file handle
927 * @code: pointer to v4l2_subdev_mbus_code_enum structure
928 *
929 * Enumertaes mbus codes supported
930 */
931static int tvp514x_enum_mbus_code(struct v4l2_subdev *sd,
932 struct v4l2_subdev_fh *fh,
933 struct v4l2_subdev_mbus_code_enum *code)
934{
935 u32 pad = code->pad;
936 u32 index = code->index;
937
938 memset(code, 0, sizeof(*code));
939 code->index = index;
940 code->pad = pad;
941
942 if (index != 0)
943 return -EINVAL;
944
945 code->code = V4L2_MBUS_FMT_YUYV8_2X8;
946
947 return 0;
948}
949
950/**
951 * tvp514x_get_pad_format() - V4L2 decoder interface handler for get pad format
952 * @sd: pointer to standard V4L2 sub-device structure
953 * @fh: file handle
954 * @format: pointer to v4l2_subdev_format structure
955 *
956 * Retrieves pad format which is active or tried based on requirement
957 */
958static int tvp514x_get_pad_format(struct v4l2_subdev *sd,
959 struct v4l2_subdev_fh *fh,
960 struct v4l2_subdev_format *format)
961{
962 struct tvp514x_decoder *decoder = to_decoder(sd);
963 __u32 which = format->which;
964
965 if (which == V4L2_SUBDEV_FORMAT_ACTIVE) {
966 format->format = decoder->format;
967 return 0;
968 }
969
970 format->format.code = V4L2_MBUS_FMT_YUYV8_2X8;
971 format->format.width = tvp514x_std_list[decoder->current_std].width;
972 format->format.height = tvp514x_std_list[decoder->current_std].height;
973 format->format.colorspace = V4L2_COLORSPACE_SMPTE170M;
974 format->format.field = V4L2_FIELD_INTERLACED;
975
976 return 0;
977}
978
979/**
980 * tvp514x_set_pad_format() - V4L2 decoder interface handler for set pad format
981 * @sd: pointer to standard V4L2 sub-device structure
982 * @fh: file handle
983 * @format: pointer to v4l2_subdev_format structure
984 *
985 * Set pad format for the output pad
986 */
987static int tvp514x_set_pad_format(struct v4l2_subdev *sd,
988 struct v4l2_subdev_fh *fh,
989 struct v4l2_subdev_format *fmt)
990{
991 struct tvp514x_decoder *decoder = to_decoder(sd);
992
993 if (fmt->format.field != V4L2_FIELD_INTERLACED ||
994 fmt->format.code != V4L2_MBUS_FMT_YUYV8_2X8 ||
995 fmt->format.colorspace != V4L2_COLORSPACE_SMPTE170M ||
996 fmt->format.width != tvp514x_std_list[decoder->current_std].width ||
997 fmt->format.height != tvp514x_std_list[decoder->current_std].height)
998 return -EINVAL;
999
1000 decoder->format = fmt->format;
1001
1002 return 0;
1003}
1004
Hans Verkuilcf6832a2010-12-12 08:45:22 -03001005static const struct v4l2_subdev_core_ops tvp514x_core_ops = {
1006 .g_ext_ctrls = v4l2_subdev_g_ext_ctrls,
1007 .try_ext_ctrls = v4l2_subdev_try_ext_ctrls,
1008 .s_ext_ctrls = v4l2_subdev_s_ext_ctrls,
1009 .g_ctrl = v4l2_subdev_g_ctrl,
1010 .s_ctrl = v4l2_subdev_s_ctrl,
1011 .queryctrl = v4l2_subdev_queryctrl,
1012 .querymenu = v4l2_subdev_querymenu,
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001013};
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001014
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001015static const struct v4l2_subdev_video_ops tvp514x_video_ops = {
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001016 .s_std = tvp514x_s_std,
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001017 .s_routing = tvp514x_s_routing,
1018 .querystd = tvp514x_querystd,
Hans Verkuil83811912010-05-09 06:50:25 -03001019 .enum_mbus_fmt = tvp514x_enum_mbus_fmt,
1020 .g_mbus_fmt = tvp514x_mbus_fmt,
1021 .try_mbus_fmt = tvp514x_mbus_fmt,
1022 .s_mbus_fmt = tvp514x_mbus_fmt,
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001023 .g_parm = tvp514x_g_parm,
1024 .s_parm = tvp514x_s_parm,
1025 .s_stream = tvp514x_s_stream,
1026};
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001027
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -03001028static const struct v4l2_subdev_pad_ops tvp514x_pad_ops = {
1029 .enum_mbus_code = tvp514x_enum_mbus_code,
1030 .get_fmt = tvp514x_get_pad_format,
1031 .set_fmt = tvp514x_set_pad_format,
1032};
1033
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001034static const struct v4l2_subdev_ops tvp514x_ops = {
1035 .core = &tvp514x_core_ops,
1036 .video = &tvp514x_video_ops,
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -03001037 .pad = &tvp514x_pad_ops,
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001038};
1039
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001040static struct tvp514x_decoder tvp514x_dev = {
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001041 .streaming = 0,
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -03001042 .fmt_list = tvp514x_fmt_list,
1043 .num_fmts = ARRAY_SIZE(tvp514x_fmt_list),
1044 .pix = {
1045 /* Default to NTSC 8-bit YUV 422 */
1046 .width = NTSC_NUM_ACTIVE_PIXELS,
1047 .height = NTSC_NUM_ACTIVE_LINES,
1048 .pixelformat = V4L2_PIX_FMT_UYVY,
1049 .field = V4L2_FIELD_INTERLACED,
1050 .bytesperline = NTSC_NUM_ACTIVE_PIXELS * 2,
1051 .sizeimage = NTSC_NUM_ACTIVE_PIXELS * 2 *
1052 NTSC_NUM_ACTIVE_LINES,
1053 .colorspace = V4L2_COLORSPACE_SMPTE170M,
1054 },
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001055 .current_std = STD_NTSC_MJ,
1056 .std_list = tvp514x_std_list,
1057 .num_stds = ARRAY_SIZE(tvp514x_std_list),
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001058
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001059};
1060
Lad, Prabhakarb610b592013-06-04 12:26:23 -03001061static struct tvp514x_platform_data *
1062tvp514x_get_pdata(struct i2c_client *client)
1063{
1064 struct tvp514x_platform_data *pdata;
1065 struct v4l2_of_endpoint bus_cfg;
1066 struct device_node *endpoint;
1067 unsigned int flags;
1068
1069 if (!IS_ENABLED(CONFIG_OF) || !client->dev.of_node)
1070 return client->dev.platform_data;
1071
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01001072 endpoint = of_graph_get_next_endpoint(client->dev.of_node, NULL);
Lad, Prabhakarb610b592013-06-04 12:26:23 -03001073 if (!endpoint)
1074 return NULL;
1075
1076 pdata = devm_kzalloc(&client->dev, sizeof(*pdata), GFP_KERNEL);
1077 if (!pdata)
1078 goto done;
1079
1080 v4l2_of_parse_endpoint(endpoint, &bus_cfg);
1081 flags = bus_cfg.bus.parallel.flags;
1082
1083 if (flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH)
1084 pdata->hs_polarity = 1;
1085
1086 if (flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH)
1087 pdata->vs_polarity = 1;
1088
1089 if (flags & V4L2_MBUS_PCLK_SAMPLE_RISING)
1090 pdata->clk_polarity = 1;
1091
1092done:
1093 of_node_put(endpoint);
1094 return pdata;
1095}
1096
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -03001097/**
1098 * tvp514x_probe() - decoder driver i2c probe handler
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001099 * @client: i2c driver client device structure
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001100 * @id: i2c driver id table
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001101 *
1102 * Register decoder as an i2c client device and V4L2
1103 * device.
1104 */
1105static int
1106tvp514x_probe(struct i2c_client *client, const struct i2c_device_id *id)
1107{
Lad, Prabhakarb610b592013-06-04 12:26:23 -03001108 struct tvp514x_platform_data *pdata = tvp514x_get_pdata(client);
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -03001109 struct tvp514x_decoder *decoder;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001110 struct v4l2_subdev *sd;
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -03001111 int ret;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001112
Lad, Prabhakarb610b592013-06-04 12:26:23 -03001113 if (pdata == NULL) {
1114 dev_err(&client->dev, "No platform data\n");
1115 return -EINVAL;
1116 }
1117
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001118 /* Check if the adapter supports the needed features */
1119 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
1120 return -EIO;
1121
Lad, Prabhakar08754d32013-01-03 10:04:57 -03001122 decoder = devm_kzalloc(&client->dev, sizeof(*decoder), GFP_KERNEL);
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -03001123 if (!decoder)
1124 return -ENOMEM;
1125
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -03001126 /* Initialize the tvp514x_decoder with default configuration */
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -03001127 *decoder = tvp514x_dev;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001128 /* Copy default register configuration */
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -03001129 memcpy(decoder->tvp514x_regs, tvp514x_reg_list_default,
1130 sizeof(tvp514x_reg_list_default));
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001131
Lars-Peter Clausenf0a12d02013-06-23 10:01:35 -03001132 decoder->int_seq = (struct tvp514x_reg *)id->driver_data;
1133
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -03001134 /* Copy board specific information here */
Lad, Prabhakarb610b592013-06-04 12:26:23 -03001135 decoder->pdata = pdata;
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001136
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -03001137 /**
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001138 * Fetch platform specific data, and configure the
1139 * tvp514x_reg_list[] accordingly. Since this is one
1140 * time configuration, no need to preserve.
1141 */
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -03001142 decoder->tvp514x_regs[REG_OUTPUT_FORMATTER2].val |=
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001143 (decoder->pdata->clk_polarity << 1);
Sebastian Andrzej Siewior6722e0e2009-01-12 06:17:43 -03001144 decoder->tvp514x_regs[REG_SYNC_CONTROL].val |=
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001145 ((decoder->pdata->hs_polarity << 2) |
1146 (decoder->pdata->vs_polarity << 3));
1147 /* Set default standard to auto */
1148 decoder->tvp514x_regs[REG_VIDEO_STD].val =
1149 VIDEO_STD_AUTO_SWITCH_BIT;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001150
1151 /* Register with V4L2 layer as slave device */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001152 sd = &decoder->sd;
1153 v4l2_i2c_subdev_init(sd, client, &tvp514x_ops);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001154
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -03001155#if defined(CONFIG_MEDIA_CONTROLLER)
1156 decoder->pad.flags = MEDIA_PAD_FL_SOURCE;
1157 decoder->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1158 decoder->sd.entity.flags |= MEDIA_ENT_T_V4L2_SUBDEV_DECODER;
1159
1160 ret = media_entity_init(&decoder->sd.entity, 1, &decoder->pad, 0);
1161 if (ret < 0) {
1162 v4l2_err(sd, "%s decoder driver failed to register !!\n",
1163 sd->name);
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -03001164 return ret;
1165 }
1166#endif
Hans Verkuilcf6832a2010-12-12 08:45:22 -03001167 v4l2_ctrl_handler_init(&decoder->hdl, 5);
1168 v4l2_ctrl_new_std(&decoder->hdl, &tvp514x_ctrl_ops,
1169 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
1170 v4l2_ctrl_new_std(&decoder->hdl, &tvp514x_ctrl_ops,
1171 V4L2_CID_CONTRAST, 0, 255, 1, 128);
1172 v4l2_ctrl_new_std(&decoder->hdl, &tvp514x_ctrl_ops,
1173 V4L2_CID_SATURATION, 0, 255, 1, 128);
1174 v4l2_ctrl_new_std(&decoder->hdl, &tvp514x_ctrl_ops,
1175 V4L2_CID_HUE, -180, 180, 180, 0);
1176 v4l2_ctrl_new_std(&decoder->hdl, &tvp514x_ctrl_ops,
1177 V4L2_CID_AUTOGAIN, 0, 1, 1, 1);
1178 sd->ctrl_handler = &decoder->hdl;
1179 if (decoder->hdl.error) {
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -03001180 ret = decoder->hdl.error;
Lad, Prabhakar8f23acb2013-06-24 11:51:39 -03001181 goto done;
Hans Verkuilcf6832a2010-12-12 08:45:22 -03001182 }
1183 v4l2_ctrl_handler_setup(&decoder->hdl);
1184
Lad, Prabhakar8f23acb2013-06-24 11:51:39 -03001185 ret = v4l2_async_register_subdev(&decoder->sd);
1186 if (!ret)
1187 v4l2_info(sd, "%s decoder driver registered !!\n", sd->name);
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001188
Lad, Prabhakar8f23acb2013-06-24 11:51:39 -03001189done:
1190 if (ret < 0) {
1191 v4l2_ctrl_handler_free(&decoder->hdl);
1192#if defined(CONFIG_MEDIA_CONTROLLER)
1193 media_entity_cleanup(&decoder->sd.entity);
1194#endif
1195 }
1196 return ret;
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001197}
1198
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -03001199/**
1200 * tvp514x_remove() - decoder driver i2c remove handler
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001201 * @client: i2c driver client device structure
1202 *
1203 * Unregister decoder as an i2c client device and V4L2
1204 * device. Complement of tvp514x_probe().
1205 */
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001206static int tvp514x_remove(struct i2c_client *client)
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001207{
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001208 struct v4l2_subdev *sd = i2c_get_clientdata(client);
1209 struct tvp514x_decoder *decoder = to_decoder(sd);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001210
Lad, Prabhakar8f23acb2013-06-24 11:51:39 -03001211 v4l2_async_unregister_subdev(&decoder->sd);
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001212 v4l2_device_unregister_subdev(sd);
Manjunath Hadli5b38b0f2013-03-08 04:13:35 -03001213#if defined(CONFIG_MEDIA_CONTROLLER)
1214 media_entity_cleanup(&decoder->sd.entity);
1215#endif
Hans Verkuilcf6832a2010-12-12 08:45:22 -03001216 v4l2_ctrl_handler_free(&decoder->hdl);
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001217 return 0;
1218}
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -03001219/* TVP5146 Init/Power on Sequence */
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001220static const struct tvp514x_reg tvp5146_init_reg_seq[] = {
1221 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS1, 0x02},
1222 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS2, 0x00},
1223 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS3, 0x80},
1224 {TOK_WRITE, REG_VBUS_DATA_ACCESS_NO_VBUS_ADDR_INCR, 0x01},
1225 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS1, 0x60},
1226 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS2, 0x00},
1227 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS3, 0xB0},
1228 {TOK_WRITE, REG_VBUS_DATA_ACCESS_NO_VBUS_ADDR_INCR, 0x01},
1229 {TOK_WRITE, REG_VBUS_DATA_ACCESS_NO_VBUS_ADDR_INCR, 0x00},
1230 {TOK_WRITE, REG_OPERATION_MODE, 0x01},
1231 {TOK_WRITE, REG_OPERATION_MODE, 0x00},
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001232 {TOK_TERM, 0, 0},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001233};
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001234
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -03001235/* TVP5147 Init/Power on Sequence */
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001236static const struct tvp514x_reg tvp5147_init_reg_seq[] = {
1237 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS1, 0x02},
1238 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS2, 0x00},
1239 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS3, 0x80},
1240 {TOK_WRITE, REG_VBUS_DATA_ACCESS_NO_VBUS_ADDR_INCR, 0x01},
1241 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS1, 0x60},
1242 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS2, 0x00},
1243 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS3, 0xB0},
1244 {TOK_WRITE, REG_VBUS_DATA_ACCESS_NO_VBUS_ADDR_INCR, 0x01},
1245 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS1, 0x16},
1246 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS2, 0x00},
1247 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS3, 0xA0},
1248 {TOK_WRITE, REG_VBUS_DATA_ACCESS_NO_VBUS_ADDR_INCR, 0x16},
1249 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS1, 0x60},
1250 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS2, 0x00},
1251 {TOK_WRITE, REG_VBUS_ADDRESS_ACCESS3, 0xB0},
1252 {TOK_WRITE, REG_VBUS_DATA_ACCESS_NO_VBUS_ADDR_INCR, 0x00},
1253 {TOK_WRITE, REG_OPERATION_MODE, 0x01},
1254 {TOK_WRITE, REG_OPERATION_MODE, 0x00},
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001255 {TOK_TERM, 0, 0},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001256};
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001257
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -03001258/* TVP5146M2/TVP5147M1 Init/Power on Sequence */
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001259static const struct tvp514x_reg tvp514xm_init_reg_seq[] = {
1260 {TOK_WRITE, REG_OPERATION_MODE, 0x01},
1261 {TOK_WRITE, REG_OPERATION_MODE, 0x00},
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001262 {TOK_TERM, 0, 0},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001263};
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001264
Muralidharan Karicheric1c9d092009-07-01 04:20:43 -03001265/**
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001266 * I2C Device Table -
1267 *
1268 * name - Name of the actual device/chip.
1269 * driver_data - Driver data
1270 */
1271static const struct i2c_device_id tvp514x_id[] = {
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001272 {"tvp5146", (unsigned long)tvp5146_init_reg_seq},
1273 {"tvp5146m2", (unsigned long)tvp514xm_init_reg_seq},
1274 {"tvp5147", (unsigned long)tvp5147_init_reg_seq},
1275 {"tvp5147m1", (unsigned long)tvp514xm_init_reg_seq},
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001276 {},
1277};
1278
1279MODULE_DEVICE_TABLE(i2c, tvp514x_id);
1280
Lad, Prabhakarb610b592013-06-04 12:26:23 -03001281#if IS_ENABLED(CONFIG_OF)
1282static const struct of_device_id tvp514x_of_match[] = {
1283 { .compatible = "ti,tvp5146", },
1284 { .compatible = "ti,tvp5146m2", },
1285 { .compatible = "ti,tvp5147", },
1286 { .compatible = "ti,tvp5147m1", },
1287 { /* sentinel */ },
1288};
1289MODULE_DEVICE_TABLE(of, tvp514x_of_match);
1290#endif
1291
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001292static struct i2c_driver tvp514x_driver = {
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001293 .driver = {
Lad, Prabhakarb610b592013-06-04 12:26:23 -03001294 .of_match_table = of_match_ptr(tvp514x_of_match),
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001295 .owner = THIS_MODULE,
1296 .name = TVP514X_MODULE_NAME,
1297 },
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001298 .probe = tvp514x_probe,
Muralidharan Karicheri62ef80a2009-06-19 07:13:44 -03001299 .remove = tvp514x_remove,
Vaibhav Hiremath07b1747c2008-12-05 10:19:36 -03001300 .id_table = tvp514x_id,
1301};
1302
Axel Linc6e8d862012-02-12 06:56:32 -03001303module_i2c_driver(tvp514x_driver);