blob: 9da4bf4f2c7a73222043088ba68be4e2c0051108 [file] [log] [blame]
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001/*
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02002 * tvp5150 - Texas Instruments TVP5150A/AM1 and TVP5151 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
Javier Martinez Canillasb802fb92016-02-05 17:09:56 -02008#include <dt-bindings/media/tvp5150.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08009#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Hans Verkuil33b687c2008-07-25 05:32:50 -030011#include <linux/videodev2.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080012#include <linux/delay.h>
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -020013#include <linux/gpio/consumer.h>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040014#include <linux/module.h>
Sakari Ailus859969b2016-08-26 20:17:25 -030015#include <linux/of_graph.h>
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -030016#include <media/v4l2-async.h>
Hans Verkuil6b8fe022008-12-18 11:17:25 -030017#include <media/v4l2-device.h>
Hans Verkuil6c45ec72010-12-12 08:45:43 -030018#include <media/v4l2-ctrls.h>
Sakari Ailus859969b2016-08-26 20:17:25 -030019#include <media/v4l2-fwnode.h>
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020020#include <media/v4l2-mc.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080021
22#include "tvp5150_reg.h"
23
Philipp Zabel785a3de2014-02-27 13:44:47 -030024#define TVP5150_H_MAX 720U
25#define TVP5150_V_MAX_525_60 480U
26#define TVP5150_V_MAX_OTHERS 576U
Javier Martin963ddc62012-01-31 05:23:46 -030027#define TVP5150_MAX_CROP_LEFT 511
28#define TVP5150_MAX_CROP_TOP 127
29#define TVP5150_CROP_SHIFT 2
30
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -020031MODULE_DESCRIPTION("Texas Instruments TVP5150A/TVP5150AM1/TVP5151 video decoder driver");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080032MODULE_AUTHOR("Mauro Carvalho Chehab");
33MODULE_LICENSE("GPL");
34
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080035
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030036static int debug;
Philipp Zabel2a0489d2014-02-27 13:44:48 -030037module_param(debug, int, 0644);
Hans Verkuil6b8fe022008-12-18 11:17:25 -030038MODULE_PARM_DESC(debug, "Debug level (0-2)");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080039
Mauro Carvalho Chehabad0e3742016-11-13 05:34:12 -020040#define dprintk0(__dev, __arg...) dev_dbg_lvl(__dev, 0, 0, __arg)
41
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080042struct tvp5150 {
Hans Verkuil6b8fe022008-12-18 11:17:25 -030043 struct v4l2_subdev sd;
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020044#ifdef CONFIG_MEDIA_CONTROLLER
45 struct media_pad pads[DEMOD_NUM_PADS];
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -020046 struct media_entity input_ent[TVP5150_INPUT_NUM];
47 struct media_pad input_pad[TVP5150_INPUT_NUM];
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020048#endif
Hans Verkuil6c45ec72010-12-12 08:45:43 -030049 struct v4l2_ctrl_handler hdl;
Javier Martin963ddc62012-01-31 05:23:46 -030050 struct v4l2_rect rect;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080051
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020052 v4l2_std_id norm; /* Current set standard */
Hans Verkuil5325b422009-04-02 11:26:22 -030053 u32 input;
54 u32 output;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080055 int enable;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020056
Javier Martinez Canillas82275132016-02-05 17:09:54 -020057 u16 dev_id;
58 u16 rom_ver;
59
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020060 enum v4l2_mbus_type mbus_type;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080061};
62
Hans Verkuil6b8fe022008-12-18 11:17:25 -030063static inline struct tvp5150 *to_tvp5150(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080064{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030065 return container_of(sd, struct tvp5150, sd);
66}
67
Hans Verkuil6c45ec72010-12-12 08:45:43 -030068static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
69{
70 return &container_of(ctrl->handler, struct tvp5150, hdl)->sd;
71}
72
Hans Verkuil6b8fe022008-12-18 11:17:25 -030073static int tvp5150_read(struct v4l2_subdev *sd, unsigned char addr)
74{
75 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080076 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080077
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030078 rc = i2c_smbus_read_byte_data(c, addr);
79 if (rc < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -020080 dev_err(sd->dev, "i2c i/o error: rc == %d\n", rc);
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030081 return rc;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -030082 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -020083
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -020084 dev_dbg_lvl(sd->dev, 2, debug, "tvp5150: read 0x%02x = %02x\n", addr, rc);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080085
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030086 return rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080087}
88
Javier Martinez Canillascacdd6a2016-04-14 22:00:07 -030089static int tvp5150_write(struct v4l2_subdev *sd, unsigned char addr,
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080090 unsigned char value)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080091{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030092 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080093 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080094
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -020095 dev_dbg_lvl(sd->dev, 2, debug, "tvp5150: writing %02x %02x\n", addr, value);
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030096 rc = i2c_smbus_write_byte_data(c, addr, value);
97 if (rc < 0)
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -020098 dev_err(sd->dev, "i2c i/o error: rc == %d\n", rc);
Javier Martinez Canillascacdd6a2016-04-14 22:00:07 -030099
100 return rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800101}
102
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300103static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
104 const u8 end, int max_line)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200105{
Mauro Carvalho Chehabe5134112016-10-20 11:36:42 -0200106 u8 buf[16];
107 int i = 0, j, len;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200108
Mauro Carvalho Chehabe5134112016-10-20 11:36:42 -0200109 if (max_line > 16) {
110 dprintk0(sd->dev, "too much data to dump\n");
111 return;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200112 }
Mauro Carvalho Chehabe5134112016-10-20 11:36:42 -0200113
114 for (i = init; i < end; i += max_line) {
115 len = (end - i > max_line) ? max_line : end - i;
116
117 for (j = 0; j < len; j++)
118 buf[j] = tvp5150_read(sd, i + j);
119
120 dprintk0(sd->dev, "%s reg %02x = %*ph\n", s, i, len, buf);
121 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200122}
123
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300124static int tvp5150_log_status(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800125{
Mauro Carvalho Chehabad0e3742016-11-13 05:34:12 -0200126 dprintk0(sd->dev, "tvp5150: Video input source selection #1 = 0x%02x\n",
127 tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
128 dprintk0(sd->dev, "tvp5150: Analog channel controls = 0x%02x\n",
129 tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
130 dprintk0(sd->dev, "tvp5150: Operation mode controls = 0x%02x\n",
131 tvp5150_read(sd, TVP5150_OP_MODE_CTL));
132 dprintk0(sd->dev, "tvp5150: Miscellaneous controls = 0x%02x\n",
133 tvp5150_read(sd, TVP5150_MISC_CTL));
134 dprintk0(sd->dev, "tvp5150: Autoswitch mask= 0x%02x\n",
135 tvp5150_read(sd, TVP5150_AUTOSW_MSK));
136 dprintk0(sd->dev, "tvp5150: Color killer threshold control = 0x%02x\n",
137 tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
138 dprintk0(sd->dev, "tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
139 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
140 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
141 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
142 dprintk0(sd->dev, "tvp5150: Brightness control = 0x%02x\n",
143 tvp5150_read(sd, TVP5150_BRIGHT_CTL));
144 dprintk0(sd->dev, "tvp5150: Color saturation control = 0x%02x\n",
145 tvp5150_read(sd, TVP5150_SATURATION_CTL));
146 dprintk0(sd->dev, "tvp5150: Hue control = 0x%02x\n",
147 tvp5150_read(sd, TVP5150_HUE_CTL));
148 dprintk0(sd->dev, "tvp5150: Contrast control = 0x%02x\n",
149 tvp5150_read(sd, TVP5150_CONTRAST_CTL));
150 dprintk0(sd->dev, "tvp5150: Outputs and data rates select = 0x%02x\n",
151 tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
152 dprintk0(sd->dev, "tvp5150: Configuration shared pins = 0x%02x\n",
153 tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
154 dprintk0(sd->dev, "tvp5150: Active video cropping start = 0x%02x%02x\n",
155 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
156 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
157 dprintk0(sd->dev, "tvp5150: Active video cropping stop = 0x%02x%02x\n",
158 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
159 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
160 dprintk0(sd->dev, "tvp5150: Genlock/RTC = 0x%02x\n",
161 tvp5150_read(sd, TVP5150_GENLOCK));
162 dprintk0(sd->dev, "tvp5150: Horizontal sync start = 0x%02x\n",
163 tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
164 dprintk0(sd->dev, "tvp5150: Vertical blanking start = 0x%02x\n",
165 tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
166 dprintk0(sd->dev, "tvp5150: Vertical blanking stop = 0x%02x\n",
167 tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
168 dprintk0(sd->dev, "tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
169 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
170 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
171 dprintk0(sd->dev, "tvp5150: Interrupt reset register B = 0x%02x\n",
172 tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
173 dprintk0(sd->dev, "tvp5150: Interrupt enable register B = 0x%02x\n",
174 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
175 dprintk0(sd->dev, "tvp5150: Interrupt configuration register B = 0x%02x\n",
176 tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
177 dprintk0(sd->dev, "tvp5150: Video standard = 0x%02x\n",
178 tvp5150_read(sd, TVP5150_VIDEO_STD));
179 dprintk0(sd->dev, "tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
180 tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
181 tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
182 dprintk0(sd->dev, "tvp5150: Macrovision on counter = 0x%02x\n",
183 tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
184 dprintk0(sd->dev, "tvp5150: Macrovision off counter = 0x%02x\n",
185 tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
186 dprintk0(sd->dev, "tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
187 (tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
188 dprintk0(sd->dev, "tvp5150: Device ID = %02x%02x\n",
189 tvp5150_read(sd, TVP5150_MSB_DEV_ID),
190 tvp5150_read(sd, TVP5150_LSB_DEV_ID));
191 dprintk0(sd->dev, "tvp5150: ROM version = (hex) %02x.%02x\n",
192 tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
193 tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
194 dprintk0(sd->dev, "tvp5150: Vertical line count = 0x%02x%02x\n",
195 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
196 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
197 dprintk0(sd->dev, "tvp5150: Interrupt status register B = 0x%02x\n",
198 tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
199 dprintk0(sd->dev, "tvp5150: Interrupt active register B = 0x%02x\n",
200 tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
201 dprintk0(sd->dev, "tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
202 tvp5150_read(sd, TVP5150_STATUS_REG_1),
203 tvp5150_read(sd, TVP5150_STATUS_REG_2),
204 tvp5150_read(sd, TVP5150_STATUS_REG_3),
205 tvp5150_read(sd, TVP5150_STATUS_REG_4),
206 tvp5150_read(sd, TVP5150_STATUS_REG_5));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200207
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300208 dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
209 TVP5150_TELETEXT_FIL1_END, 8);
210 dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
211 TVP5150_TELETEXT_FIL2_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200212
Mauro Carvalho Chehabad0e3742016-11-13 05:34:12 -0200213 dprintk0(sd->dev, "tvp5150: Teletext filter enable = 0x%02x\n",
214 tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
215 dprintk0(sd->dev, "tvp5150: Interrupt status register A = 0x%02x\n",
216 tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
217 dprintk0(sd->dev, "tvp5150: Interrupt enable register A = 0x%02x\n",
218 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
219 dprintk0(sd->dev, "tvp5150: Interrupt configuration = 0x%02x\n",
220 tvp5150_read(sd, TVP5150_INT_CONF));
221 dprintk0(sd->dev, "tvp5150: VDP status register = 0x%02x\n",
222 tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
223 dprintk0(sd->dev, "tvp5150: FIFO word count = 0x%02x\n",
224 tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
225 dprintk0(sd->dev, "tvp5150: FIFO interrupt threshold = 0x%02x\n",
226 tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
227 dprintk0(sd->dev, "tvp5150: FIFO reset = 0x%02x\n",
228 tvp5150_read(sd, TVP5150_FIFO_RESET));
229 dprintk0(sd->dev, "tvp5150: Line number interrupt = 0x%02x\n",
230 tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
231 dprintk0(sd->dev, "tvp5150: Pixel alignment register = 0x%02x%02x\n",
232 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
233 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
234 dprintk0(sd->dev, "tvp5150: FIFO output control = 0x%02x\n",
235 tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
236 dprintk0(sd->dev, "tvp5150: Full field enable = 0x%02x\n",
237 tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
238 dprintk0(sd->dev, "tvp5150: Full field mode register = 0x%02x\n",
239 tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200240
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300241 dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
242 TVP5150_CC_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200243
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300244 dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
245 TVP5150_WSS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200246
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300247 dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
248 TVP5150_VPS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200249
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300250 dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
251 TVP5150_VITC_DATA_END, 10);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200252
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300253 dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
254 TVP5150_LINE_MODE_END, 8);
255 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800256}
257
258/****************************************************************************
259 Basic functions
260 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800261
Laurent Pinchart6e98bee2016-12-08 20:22:42 -0200262static void tvp5150_selmux(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800263{
Paul Walmsley2962fc02010-10-09 01:31:40 -0300264 int opmode = 0;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300265 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300266 int input = 0;
Dan Carpenterafcc8e82012-07-12 10:47:28 -0300267 int val;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800268
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200269 /* Only tvp5150am1 and tvp5151 have signal generator support */
270 if ((decoder->dev_id == 0x5150 && decoder->rom_ver == 0x0400) ||
271 (decoder->dev_id == 0x5151 && decoder->rom_ver == 0x0100)) {
272 if (!decoder->enable)
273 input = 8;
274 }
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800275
Hans Verkuil5325b422009-04-02 11:26:22 -0300276 switch (decoder->input) {
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300277 case TVP5150_COMPOSITE1:
278 input |= 2;
279 /* fall through */
280 case TVP5150_COMPOSITE0:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200281 break;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300282 case TVP5150_SVIDEO:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200283 default:
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300284 input |= 1;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200285 break;
286 }
287
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200288 dev_dbg_lvl(sd->dev, 1, debug, "Selecting video route: route input=%i, output=%i => tvp5150 input=%i, opmode=%i\n",
Hans Verkuil5325b422009-04-02 11:26:22 -0300289 decoder->input, decoder->output,
290 input, opmode);
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300291
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300292 tvp5150_write(sd, TVP5150_OP_MODE_CTL, opmode);
293 tvp5150_write(sd, TVP5150_VD_IN_SRC_SEL_1, input);
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300294
Laurent Pinchartb4b2de32016-12-09 09:47:18 -0200295 /*
296 * Setup the FID/GLCO/VLK/HVLK and INTREQ/GPCL/VBLK output signals. For
297 * S-Video we output the vertical lock (VLK) signal on FID/GLCO/VLK/HVLK
298 * and set INTREQ/GPCL/VBLK to logic 0. For composite we output the
299 * field indicator (FID) signal on FID/GLCO/VLK/HVLK and set
300 * INTREQ/GPCL/VBLK to logic 1.
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300301 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300302 val = tvp5150_read(sd, TVP5150_MISC_CTL);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300303 if (val < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200304 dev_err(sd->dev, "%s: failed with error = %d\n", __func__, val);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300305 return;
306 }
307
Hans Verkuil5325b422009-04-02 11:26:22 -0300308 if (decoder->input == TVP5150_SVIDEO)
Laurent Pinchartb4b2de32016-12-09 09:47:18 -0200309 val = (val & ~TVP5150_MISC_CTL_GPCL) | TVP5150_MISC_CTL_HVLK;
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300310 else
Laurent Pinchartb4b2de32016-12-09 09:47:18 -0200311 val = (val & ~TVP5150_MISC_CTL_HVLK) | TVP5150_MISC_CTL_GPCL;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300312 tvp5150_write(sd, TVP5150_MISC_CTL, val);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800313};
314
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200315struct i2c_reg_value {
316 unsigned char reg;
317 unsigned char value;
318};
319
320/* Default values as sugested at TVP5150AM1 datasheet */
321static const struct i2c_reg_value tvp5150_init_default[] = {
322 { /* 0x00 */
323 TVP5150_VD_IN_SRC_SEL_1,0x00
324 },
325 { /* 0x01 */
326 TVP5150_ANAL_CHL_CTL,0x15
327 },
328 { /* 0x02 */
329 TVP5150_OP_MODE_CTL,0x00
330 },
331 { /* 0x03 */
332 TVP5150_MISC_CTL,0x01
333 },
334 { /* 0x06 */
335 TVP5150_COLOR_KIL_THSH_CTL,0x10
336 },
337 { /* 0x07 */
338 TVP5150_LUMA_PROC_CTL_1,0x60
339 },
340 { /* 0x08 */
341 TVP5150_LUMA_PROC_CTL_2,0x00
342 },
343 { /* 0x09 */
344 TVP5150_BRIGHT_CTL,0x80
345 },
346 { /* 0x0a */
347 TVP5150_SATURATION_CTL,0x80
348 },
349 { /* 0x0b */
350 TVP5150_HUE_CTL,0x00
351 },
352 { /* 0x0c */
353 TVP5150_CONTRAST_CTL,0x80
354 },
355 { /* 0x0d */
356 TVP5150_DATA_RATE_SEL,0x47
357 },
358 { /* 0x0e */
359 TVP5150_LUMA_PROC_CTL_3,0x00
360 },
361 { /* 0x0f */
362 TVP5150_CONF_SHARED_PIN,0x08
363 },
364 { /* 0x11 */
365 TVP5150_ACT_VD_CROP_ST_MSB,0x00
366 },
367 { /* 0x12 */
368 TVP5150_ACT_VD_CROP_ST_LSB,0x00
369 },
370 { /* 0x13 */
371 TVP5150_ACT_VD_CROP_STP_MSB,0x00
372 },
373 { /* 0x14 */
374 TVP5150_ACT_VD_CROP_STP_LSB,0x00
375 },
376 { /* 0x15 */
377 TVP5150_GENLOCK,0x01
378 },
379 { /* 0x16 */
380 TVP5150_HORIZ_SYNC_START,0x80
381 },
382 { /* 0x18 */
383 TVP5150_VERT_BLANKING_START,0x00
384 },
385 { /* 0x19 */
386 TVP5150_VERT_BLANKING_STOP,0x00
387 },
388 { /* 0x1a */
389 TVP5150_CHROMA_PROC_CTL_1,0x0c
390 },
391 { /* 0x1b */
392 TVP5150_CHROMA_PROC_CTL_2,0x14
393 },
394 { /* 0x1c */
395 TVP5150_INT_RESET_REG_B,0x00
396 },
397 { /* 0x1d */
398 TVP5150_INT_ENABLE_REG_B,0x00
399 },
400 { /* 0x1e */
401 TVP5150_INTT_CONFIG_REG_B,0x00
402 },
403 { /* 0x28 */
404 TVP5150_VIDEO_STD,0x00
405 },
406 { /* 0x2e */
407 TVP5150_MACROVISION_ON_CTR,0x0f
408 },
409 { /* 0x2f */
410 TVP5150_MACROVISION_OFF_CTR,0x01
411 },
412 { /* 0xbb */
413 TVP5150_TELETEXT_FIL_ENA,0x00
414 },
415 { /* 0xc0 */
416 TVP5150_INT_STATUS_REG_A,0x00
417 },
418 { /* 0xc1 */
419 TVP5150_INT_ENABLE_REG_A,0x00
420 },
421 { /* 0xc2 */
422 TVP5150_INT_CONF,0x04
423 },
424 { /* 0xc8 */
425 TVP5150_FIFO_INT_THRESHOLD,0x80
426 },
427 { /* 0xc9 */
428 TVP5150_FIFO_RESET,0x00
429 },
430 { /* 0xca */
431 TVP5150_LINE_NUMBER_INT,0x00
432 },
433 { /* 0xcb */
434 TVP5150_PIX_ALIGN_REG_LOW,0x4e
435 },
436 { /* 0xcc */
437 TVP5150_PIX_ALIGN_REG_HIGH,0x00
438 },
439 { /* 0xcd */
440 TVP5150_FIFO_OUT_CTRL,0x01
441 },
442 { /* 0xcf */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200443 TVP5150_FULL_FIELD_ENA,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200444 },
445 { /* 0xd0 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200446 TVP5150_LINE_MODE_INI,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200447 },
448 { /* 0xfc */
449 TVP5150_FULL_FIELD_MODE_REG,0x7f
450 },
451 { /* end of data */
452 0xff,0xff
453 }
454};
455
456/* Default values as sugested at TVP5150AM1 datasheet */
457static const struct i2c_reg_value tvp5150_init_enable[] = {
458 {
459 TVP5150_CONF_SHARED_PIN, 2
460 },{ /* Automatic offset and AGC enabled */
461 TVP5150_ANAL_CHL_CTL, 0x15
462 },{ /* Activate YCrCb output 0x9 or 0xd ? */
Laurent Pinchartb4b2de32016-12-09 09:47:18 -0200463 TVP5150_MISC_CTL, TVP5150_MISC_CTL_GPCL |
464 TVP5150_MISC_CTL_INTREQ_OE |
465 TVP5150_MISC_CTL_YCBCR_OE |
466 TVP5150_MISC_CTL_SYNC_OE |
467 TVP5150_MISC_CTL_VBLANK |
468 TVP5150_MISC_CTL_CLOCK_OE,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200469 },{ /* Activates video std autodetection for all standards */
470 TVP5150_AUTOSW_MSK, 0x0
471 },{ /* Default format: 0x47. For 4:2:2: 0x40 */
472 TVP5150_DATA_RATE_SEL, 0x47
473 },{
474 TVP5150_CHROMA_PROC_CTL_1, 0x0c
475 },{
476 TVP5150_CHROMA_PROC_CTL_2, 0x54
477 },{ /* Non documented, but initialized on WinTV USB2 */
478 0x27, 0x20
479 },{
480 0xff,0xff
481 }
482};
483
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200484struct tvp5150_vbi_type {
485 unsigned int vbi_type;
486 unsigned int ini_line;
487 unsigned int end_line;
488 unsigned int by_field :1;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200489};
490
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200491struct i2c_vbi_ram_value {
492 u16 reg;
493 struct tvp5150_vbi_type type;
494 unsigned char values[16];
495};
496
497/* This struct have the values for each supported VBI Standard
498 * by
499 tvp5150_vbi_types should follow the same order as vbi_ram_default
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200500 * value 0 means rom position 0x10, value 1 means rom position 0x30
501 * and so on. There are 16 possible locations from 0 to 15.
502 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200503
Adrian Bunka9cff902006-01-15 06:56:15 -0200504static struct i2c_vbi_ram_value vbi_ram_default[] =
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200505{
Hans Verkuil9bc74002006-03-29 18:02:51 -0300506 /* FIXME: Current api doesn't handle all VBI types, those not
507 yet supported are placed under #if 0 */
508#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200509 {0x010, /* Teletext, SECAM, WST System A */
510 {V4L2_SLICED_TELETEXT_SECAM,6,23,1},
511 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
512 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200513 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300514#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200515 {0x030, /* Teletext, PAL, WST System B */
Hans Verkuil9bc74002006-03-29 18:02:51 -0300516 {V4L2_SLICED_TELETEXT_B,6,22,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200517 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
518 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200519 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300520#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200521 {0x050, /* Teletext, PAL, WST System C */
522 {V4L2_SLICED_TELETEXT_PAL_C,6,22,1},
523 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
524 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200525 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200526 {0x070, /* Teletext, NTSC, WST System B */
527 {V4L2_SLICED_TELETEXT_NTSC_B,10,21,1},
528 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
529 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200530 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200531 {0x090, /* Tetetext, NTSC NABTS System C */
532 {V4L2_SLICED_TELETEXT_NTSC_C,10,21,1},
533 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
534 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200535 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200536 {0x0b0, /* Teletext, NTSC-J, NABTS System D */
537 {V4L2_SLICED_TELETEXT_NTSC_D,10,21,1},
538 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
539 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200540 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200541 {0x0d0, /* Closed Caption, PAL/SECAM */
542 {V4L2_SLICED_CAPTION_625,22,22,1},
543 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
544 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 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 {0x0f0, /* Closed Caption, NTSC */
548 {V4L2_SLICED_CAPTION_525,21,21,1},
549 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
550 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200551 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200552 {0x110, /* Wide Screen Signal, PAL/SECAM */
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200553 {V4L2_SLICED_WSS_625,23,23,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200554 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
555 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200556 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300557#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200558 {0x130, /* Wide Screen Signal, NTSC C */
559 {V4L2_SLICED_WSS_525,20,20,1},
560 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
561 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200562 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200563 {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
564 {V4l2_SLICED_VITC_625,6,22,0},
565 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
566 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200567 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200568 {0x170, /* Vertical Interval Timecode (VITC), NTSC */
569 {V4l2_SLICED_VITC_525,10,20,0},
570 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
571 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200572 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300573#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200574 {0x190, /* Video Program System (VPS), PAL */
575 {V4L2_SLICED_VPS,16,16,0},
576 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
577 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200578 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200579 /* 0x1d0 User programmable */
580
581 /* End of struct */
582 { (u16)-1 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200583};
584
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300585static int tvp5150_write_inittab(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200586 const struct i2c_reg_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200587{
588 while (regs->reg != 0xff) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300589 tvp5150_write(sd, regs->reg, regs->value);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200590 regs++;
591 }
592 return 0;
593}
594
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300595static int tvp5150_vdp_init(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200596 const struct i2c_vbi_ram_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200597{
598 unsigned int i;
599
600 /* Disable Full Field */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300601 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200602
603 /* Before programming, Line mode should be at 0xff */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300604 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
605 tvp5150_write(sd, i, 0xff);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200606
607 /* Load Ram Table */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300608 while (regs->reg != (u16)-1) {
609 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
610 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200611
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300612 for (i = 0; i < 16; i++)
613 tvp5150_write(sd, TVP5150_VDP_CONF_RAM_DATA, regs->values[i]);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200614
615 regs++;
616 }
617 return 0;
618}
619
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200620/* Fills VBI capabilities based on i2c_vbi_ram_value struct */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300621static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200622 struct v4l2_sliced_vbi_cap *cap)
623{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300624 const struct i2c_vbi_ram_value *regs = vbi_ram_default;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200625 int line;
626
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200627 dev_dbg_lvl(sd->dev, 1, debug, "g_sliced_vbi_cap\n");
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200628 memset(cap, 0, sizeof *cap);
629
630 while (regs->reg != (u16)-1 ) {
631 for (line=regs->type.ini_line;line<=regs->type.end_line;line++) {
632 cap->service_lines[0][line] |= regs->type.vbi_type;
633 }
634 cap->service_set |= regs->type.vbi_type;
635
636 regs++;
637 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300638 return 0;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200639}
640
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200641/* Set vbi processing
642 * type - one of tvp5150_vbi_types
643 * line - line to gather data
644 * fields: bit 0 field1, bit 1, field2
645 * flags (default=0xf0) is a bitmask, were set means:
646 * bit 7: enable filtering null bytes on CC
647 * bit 6: send data also to FIFO
648 * bit 5: don't allow data with errors on FIFO
649 * bit 4: enable ECC when possible
650 * pix_align = pix alignment:
651 * LSB = field1
652 * MSB = field2
653 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300654static int tvp5150_set_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200655 const struct i2c_vbi_ram_value *regs,
656 unsigned int type,u8 flags, int line,
657 const int fields)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200658{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300659 struct tvp5150 *decoder = to_tvp5150(sd);
660 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200661 u8 reg;
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200662 int pos=0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200663
664 if (std == V4L2_STD_ALL) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200665 dev_err(sd->dev, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200666 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300667 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200668 /* Don't follow NTSC Line number convension */
669 line += 3;
670 }
671
672 if (line<6||line>27)
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200673 return 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200674
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200675 while (regs->reg != (u16)-1 ) {
676 if ((type & regs->type.vbi_type) &&
677 (line>=regs->type.ini_line) &&
678 (line<=regs->type.end_line)) {
679 type=regs->type.vbi_type;
680 break;
681 }
682
683 regs++;
684 pos++;
685 }
686 if (regs->reg == (u16)-1)
687 return 0;
688
689 type=pos | (flags & 0xf0);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200690 reg=((line-6)<<1)+TVP5150_LINE_MODE_INI;
691
692 if (fields&1) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300693 tvp5150_write(sd, reg, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200694 }
695
696 if (fields&2) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300697 tvp5150_write(sd, reg+1, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200698 }
699
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200700 return type;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200701}
702
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300703static int tvp5150_get_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200704 const struct i2c_vbi_ram_value *regs, int line)
705{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300706 struct tvp5150 *decoder = to_tvp5150(sd);
707 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200708 u8 reg;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300709 int pos, type = 0;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300710 int i, ret = 0;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200711
712 if (std == V4L2_STD_ALL) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200713 dev_err(sd->dev, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200714 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300715 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200716 /* Don't follow NTSC Line number convension */
717 line += 3;
718 }
719
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300720 if (line < 6 || line > 27)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200721 return 0;
722
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300723 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200724
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300725 for (i = 0; i <= 1; i++) {
726 ret = tvp5150_read(sd, reg + i);
727 if (ret < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200728 dev_err(sd->dev, "%s: failed with error = %d\n",
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300729 __func__, ret);
730 return 0;
731 }
732 pos = ret & 0x0f;
733 if (pos < 0x0f)
734 type |= regs[pos].type.vbi_type;
735 }
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200736
737 return type;
738}
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800739
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300740static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
741{
742 struct tvp5150 *decoder = to_tvp5150(sd);
743 int fmt = 0;
744
745 decoder->norm = std;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800746
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200747 /* First tests should be against specific std */
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800748
Hans Verkuil26811ae2013-05-29 10:19:06 -0300749 if (std == V4L2_STD_NTSC_443) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300750 fmt = VIDEO_STD_NTSC_4_43_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300751 } else if (std == V4L2_STD_PAL_M) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300752 fmt = VIDEO_STD_PAL_M_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300753 } else if (std == V4L2_STD_PAL_N || std == V4L2_STD_PAL_Nc) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300754 fmt = VIDEO_STD_PAL_COMBINATION_N_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200755 } else {
756 /* Then, test against generic ones */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300757 if (std & V4L2_STD_NTSC)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300758 fmt = VIDEO_STD_NTSC_MJ_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300759 else if (std & V4L2_STD_PAL)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300760 fmt = VIDEO_STD_PAL_BDGHIN_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300761 else if (std & V4L2_STD_SECAM)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300762 fmt = VIDEO_STD_SECAM_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200763 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800764
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200765 dev_dbg_lvl(sd->dev, 1, debug, "Set video std register to %d.\n", fmt);
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300766 tvp5150_write(sd, TVP5150_VIDEO_STD, fmt);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200767 return 0;
768}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800769
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300770static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200771{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300772 struct tvp5150 *decoder = to_tvp5150(sd);
773
774 if (decoder->norm == std)
775 return 0;
776
Javier Martin963ddc62012-01-31 05:23:46 -0300777 /* Change cropping height limits */
778 if (std & V4L2_STD_525_60)
779 decoder->rect.height = TVP5150_V_MAX_525_60;
780 else
781 decoder->rect.height = TVP5150_V_MAX_OTHERS;
782
783
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300784 return tvp5150_set_std(sd, std);
785}
786
787static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
788{
789 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200790
791 /* Initializes TVP5150 to its default values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300792 tvp5150_write_inittab(sd, tvp5150_init_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200793
794 /* Initializes VDP registers */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300795 tvp5150_vdp_init(sd, vbi_ram_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200796
797 /* Selects decoder input */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300798 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800799
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200800 /* Initializes TVP5150 to stream enabled values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300801 tvp5150_write_inittab(sd, tvp5150_init_enable);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800802
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200803 /* Initialize image preferences */
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300804 v4l2_ctrl_handler_setup(&decoder->hdl);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200805
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300806 tvp5150_set_std(sd, decoder->norm);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200807
808 if (decoder->mbus_type == V4L2_MBUS_PARALLEL)
809 tvp5150_write(sd, TVP5150_DATA_RATE_SEL, 0x40);
810
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300811 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800812};
813
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300814static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800815{
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300816 struct v4l2_subdev *sd = to_sd(ctrl);
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200817 struct tvp5150 *decoder = to_tvp5150(sd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800818
819 switch (ctrl->id) {
820 case V4L2_CID_BRIGHTNESS:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300821 tvp5150_write(sd, TVP5150_BRIGHT_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800822 return 0;
823 case V4L2_CID_CONTRAST:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300824 tvp5150_write(sd, TVP5150_CONTRAST_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800825 return 0;
826 case V4L2_CID_SATURATION:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300827 tvp5150_write(sd, TVP5150_SATURATION_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800828 return 0;
829 case V4L2_CID_HUE:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300830 tvp5150_write(sd, TVP5150_HUE_CTL, ctrl->val);
Laurent Pinchartd183e4e2016-12-08 20:22:43 -0200831 break;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200832 case V4L2_CID_TEST_PATTERN:
833 decoder->enable = ctrl->val ? false : true;
834 tvp5150_selmux(sd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800835 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800836 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200837 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800838}
839
Javier Martinec2c4f32012-01-05 10:57:39 -0300840static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd)
841{
842 int val = tvp5150_read(sd, TVP5150_STATUS_REG_5);
843
844 switch (val & 0x0F) {
845 case 0x01:
846 return V4L2_STD_NTSC;
847 case 0x03:
848 return V4L2_STD_PAL;
849 case 0x05:
850 return V4L2_STD_PAL_M;
851 case 0x07:
852 return V4L2_STD_PAL_N | V4L2_STD_PAL_Nc;
853 case 0x09:
854 return V4L2_STD_NTSC_443;
855 case 0xb:
856 return V4L2_STD_SECAM;
857 default:
858 return V4L2_STD_UNKNOWN;
859 }
860}
861
Hans Verkuilda298c62015-04-09 04:02:34 -0300862static int tvp5150_fill_fmt(struct v4l2_subdev *sd,
863 struct v4l2_subdev_pad_config *cfg,
864 struct v4l2_subdev_format *format)
Javier Martinec2c4f32012-01-05 10:57:39 -0300865{
Hans Verkuilda298c62015-04-09 04:02:34 -0300866 struct v4l2_mbus_framefmt *f;
Javier Martinec2c4f32012-01-05 10:57:39 -0300867 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martinec2c4f32012-01-05 10:57:39 -0300868
Philipp Zabelf6f0e2f2017-03-31 10:33:25 -0300869 if (!format || (format->pad != DEMOD_PAD_VID_OUT))
Javier Martinec2c4f32012-01-05 10:57:39 -0300870 return -EINVAL;
871
Hans Verkuilda298c62015-04-09 04:02:34 -0300872 f = &format->format;
873
Javier Martin963ddc62012-01-31 05:23:46 -0300874 f->width = decoder->rect.width;
Philipp Zabel0866df82017-03-31 10:33:26 -0300875 f->height = decoder->rect.height;
Javier Martinec2c4f32012-01-05 10:57:39 -0300876
Boris BREZILLONf5fe58f2014-11-10 14:28:29 -0300877 f->code = MEDIA_BUS_FMT_UYVY8_2X8;
Laurent Pinchart4f57d27be2016-01-26 10:46:23 -0200878 f->field = V4L2_FIELD_ALTERNATE;
Javier Martinec2c4f32012-01-05 10:57:39 -0300879 f->colorspace = V4L2_COLORSPACE_SMPTE170M;
880
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200881 dev_dbg_lvl(sd->dev, 1, debug, "width = %d, height = %d\n", f->width,
Javier Martinec2c4f32012-01-05 10:57:39 -0300882 f->height);
883 return 0;
884}
885
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200886static int tvp5150_set_selection(struct v4l2_subdev *sd,
887 struct v4l2_subdev_pad_config *cfg,
888 struct v4l2_subdev_selection *sel)
Javier Martin963ddc62012-01-31 05:23:46 -0300889{
Javier Martin963ddc62012-01-31 05:23:46 -0300890 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200891 struct v4l2_rect rect = sel->r;
Javier Martin963ddc62012-01-31 05:23:46 -0300892 v4l2_std_id std;
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200893 int hmax;
894
895 if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE ||
896 sel->target != V4L2_SEL_TGT_CROP)
897 return -EINVAL;
Javier Martin963ddc62012-01-31 05:23:46 -0300898
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200899 dev_dbg_lvl(sd->dev, 1, debug, "%s left=%d, top=%d, width=%d, height=%d\n",
Javier Martin963ddc62012-01-31 05:23:46 -0300900 __func__, rect.left, rect.top, rect.width, rect.height);
901
Javier Martin963ddc62012-01-31 05:23:46 -0300902 /* tvp5150 has some special limits */
903 rect.left = clamp(rect.left, 0, TVP5150_MAX_CROP_LEFT);
Ricardo Ribaldaf90580c2013-11-26 05:31:42 -0300904 rect.width = clamp_t(unsigned int, rect.width,
905 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect.left,
906 TVP5150_H_MAX - rect.left);
Javier Martin963ddc62012-01-31 05:23:46 -0300907 rect.top = clamp(rect.top, 0, TVP5150_MAX_CROP_TOP);
908
909 /* Calculate height based on current standard */
910 if (decoder->norm == V4L2_STD_ALL)
911 std = tvp5150_read_std(sd);
912 else
913 std = decoder->norm;
914
915 if (std & V4L2_STD_525_60)
916 hmax = TVP5150_V_MAX_525_60;
917 else
918 hmax = TVP5150_V_MAX_OTHERS;
919
Ricardo Ribaldaf90580c2013-11-26 05:31:42 -0300920 rect.height = clamp_t(unsigned int, rect.height,
921 hmax - TVP5150_MAX_CROP_TOP - rect.top,
922 hmax - rect.top);
Javier Martin963ddc62012-01-31 05:23:46 -0300923
924 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, rect.top);
925 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP,
926 rect.top + rect.height - hmax);
927 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_MSB,
928 rect.left >> TVP5150_CROP_SHIFT);
929 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_LSB,
930 rect.left | (1 << TVP5150_CROP_SHIFT));
931 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_MSB,
932 (rect.left + rect.width - TVP5150_MAX_CROP_LEFT) >>
933 TVP5150_CROP_SHIFT);
934 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_LSB,
935 rect.left + rect.width - TVP5150_MAX_CROP_LEFT);
936
937 decoder->rect = rect;
938
939 return 0;
940}
941
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200942static int tvp5150_get_selection(struct v4l2_subdev *sd,
943 struct v4l2_subdev_pad_config *cfg,
944 struct v4l2_subdev_selection *sel)
Javier Martin963ddc62012-01-31 05:23:46 -0300945{
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200946 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
Javier Martin963ddc62012-01-31 05:23:46 -0300947 v4l2_std_id std;
948
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200949 if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE)
Javier Martin963ddc62012-01-31 05:23:46 -0300950 return -EINVAL;
951
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200952 switch (sel->target) {
953 case V4L2_SEL_TGT_CROP_BOUNDS:
954 case V4L2_SEL_TGT_CROP_DEFAULT:
955 sel->r.left = 0;
956 sel->r.top = 0;
957 sel->r.width = TVP5150_H_MAX;
Javier Martin963ddc62012-01-31 05:23:46 -0300958
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200959 /* Calculate height based on current standard */
960 if (decoder->norm == V4L2_STD_ALL)
961 std = tvp5150_read_std(sd);
962 else
963 std = decoder->norm;
964 if (std & V4L2_STD_525_60)
965 sel->r.height = TVP5150_V_MAX_525_60;
966 else
967 sel->r.height = TVP5150_V_MAX_OTHERS;
968 return 0;
969 case V4L2_SEL_TGT_CROP:
970 sel->r = decoder->rect;
971 return 0;
972 default:
973 return -EINVAL;
974 }
Javier Martin963ddc62012-01-31 05:23:46 -0300975}
976
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -0200977static int tvp5150_g_mbus_config(struct v4l2_subdev *sd,
978 struct v4l2_mbus_config *cfg)
979{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200980 struct tvp5150 *decoder = to_tvp5150(sd);
981
982 cfg->type = decoder->mbus_type;
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -0200983 cfg->flags = V4L2_MBUS_MASTER | V4L2_MBUS_PCLK_SAMPLE_RISING
984 | V4L2_MBUS_FIELD_EVEN_LOW | V4L2_MBUS_DATA_ACTIVE_HIGH;
985
986 return 0;
987}
988
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800989/****************************************************************************
Laurent Pincharte545ac82016-01-26 10:46:24 -0200990 V4L2 subdev pad ops
991 ****************************************************************************/
992static int tvp5150_enum_mbus_code(struct v4l2_subdev *sd,
993 struct v4l2_subdev_pad_config *cfg,
994 struct v4l2_subdev_mbus_code_enum *code)
995{
996 if (code->pad || code->index)
997 return -EINVAL;
998
999 code->code = MEDIA_BUS_FMT_UYVY8_2X8;
1000 return 0;
1001}
1002
1003static int tvp5150_enum_frame_size(struct v4l2_subdev *sd,
1004 struct v4l2_subdev_pad_config *cfg,
1005 struct v4l2_subdev_frame_size_enum *fse)
1006{
1007 struct tvp5150 *decoder = to_tvp5150(sd);
1008
1009 if (fse->index >= 8 || fse->code != MEDIA_BUS_FMT_UYVY8_2X8)
1010 return -EINVAL;
1011
1012 fse->code = MEDIA_BUS_FMT_UYVY8_2X8;
1013 fse->min_width = decoder->rect.width;
1014 fse->max_width = decoder->rect.width;
1015 fse->min_height = decoder->rect.height / 2;
1016 fse->max_height = decoder->rect.height / 2;
1017
1018 return 0;
1019}
1020
1021/****************************************************************************
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001022 Media entity ops
1023 ****************************************************************************/
1024
Laurent Pinchart406ff672016-12-08 20:22:41 -02001025#ifdef CONFIG_MEDIA_CONTROLLER
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001026static int tvp5150_link_setup(struct media_entity *entity,
1027 const struct media_pad *local,
1028 const struct media_pad *remote, u32 flags)
1029{
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001030 struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
1031 struct tvp5150 *decoder = to_tvp5150(sd);
1032 int i;
1033
1034 for (i = 0; i < TVP5150_INPUT_NUM; i++) {
1035 if (remote->entity == &decoder->input_ent[i])
1036 break;
1037 }
1038
1039 /* Do nothing for entities that are not input connectors */
1040 if (i == TVP5150_INPUT_NUM)
1041 return 0;
1042
1043 decoder->input = i;
1044
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001045 tvp5150_selmux(sd);
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001046
1047 return 0;
1048}
1049
1050static const struct media_entity_operations tvp5150_sd_media_ops = {
1051 .link_setup = tvp5150_link_setup,
1052};
Laurent Pinchart406ff672016-12-08 20:22:41 -02001053#endif
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001054
1055/****************************************************************************
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001056 I2C Command
1057 ****************************************************************************/
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001058
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001059static int tvp5150_s_stream(struct v4l2_subdev *sd, int enable)
1060{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001061 struct tvp5150 *decoder = to_tvp5150(sd);
Laurent Pinchart79d62052016-12-09 09:47:19 -02001062 int val;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001063
Laurent Pinchart79d62052016-12-09 09:47:19 -02001064 /* Enable or disable the video output signals. */
1065 val = tvp5150_read(sd, TVP5150_MISC_CTL);
1066 if (val < 0)
1067 return val;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001068
Laurent Pinchart79d62052016-12-09 09:47:19 -02001069 val &= ~(TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_SYNC_OE |
1070 TVP5150_MISC_CTL_CLOCK_OE);
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001071
Laurent Pinchart79d62052016-12-09 09:47:19 -02001072 if (enable) {
1073 /*
1074 * Enable the YCbCr and clock outputs. In discrete sync mode
1075 * (non-BT.656) additionally enable the the sync outputs.
1076 */
1077 val |= TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_CLOCK_OE;
1078 if (decoder->mbus_type == V4L2_MBUS_PARALLEL)
1079 val |= TVP5150_MISC_CTL_SYNC_OE;
1080 }
1081
1082 tvp5150_write(sd, TVP5150_MISC_CTL, val);
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001083
1084 return 0;
1085}
1086
Hans Verkuil5325b422009-04-02 11:26:22 -03001087static int tvp5150_s_routing(struct v4l2_subdev *sd,
1088 u32 input, u32 output, u32 config)
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001089{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001090 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001091
Hans Verkuil5325b422009-04-02 11:26:22 -03001092 decoder->input = input;
1093 decoder->output = output;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001094
1095 if (output == TVP5150_BLACK_SCREEN)
1096 decoder->enable = false;
1097 else
1098 decoder->enable = true;
1099
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001100 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001101 return 0;
1102}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001103
Hans Verkuild37dad42010-03-14 10:59:16 -03001104static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001105{
Hans Verkuild37dad42010-03-14 10:59:16 -03001106 /* this is for capturing 36 raw vbi lines
1107 if there's a way to cut off the beginning 2 vbi lines
1108 with the tvp5150 then the vbi line count could be lowered
1109 to 17 lines/field again, although I couldn't find a register
1110 which could do that cropping */
1111 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
1112 tvp5150_write(sd, TVP5150_LUMA_PROC_CTL_1, 0x70);
1113 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
1114 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, 0x00);
1115 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP, 0x01);
1116 }
1117 return 0;
1118}
1119
1120static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1121{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001122 int i;
1123
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001124 if (svbi->service_set != 0) {
1125 for (i = 0; i <= 23; i++) {
1126 svbi->service_lines[1][i] = 0;
1127 svbi->service_lines[0][i] =
1128 tvp5150_set_vbi(sd, vbi_ram_default,
1129 svbi->service_lines[0][i], 0xf0, i, 3);
1130 }
1131 /* Enables FIFO */
1132 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 1);
1133 } else {
1134 /* Disables FIFO*/
1135 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 0);
1136
1137 /* Disable Full Field */
1138 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
1139
1140 /* Disable Line modes */
1141 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
1142 tvp5150_write(sd, i, 0xff);
1143 }
1144 return 0;
1145}
1146
Hans Verkuild37dad42010-03-14 10:59:16 -03001147static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1148{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001149 int i, mask = 0;
1150
Hans Verkuil30634e82012-09-05 10:38:10 -03001151 memset(svbi->service_lines, 0, sizeof(svbi->service_lines));
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001152
1153 for (i = 0; i <= 23; i++) {
1154 svbi->service_lines[0][i] =
1155 tvp5150_get_vbi(sd, vbi_ram_default, i);
1156 mask |= svbi->service_lines[0][i];
1157 }
1158 svbi->service_set = mask;
1159 return 0;
1160}
1161
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001162#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001163static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001164{
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001165 int res;
1166
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001167 res = tvp5150_read(sd, reg->reg & 0xff);
1168 if (res < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001169 dev_err(sd->dev, "%s: failed with error = %d\n", __func__, res);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001170 return res;
1171 }
1172
1173 reg->val = res;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001174 reg->size = 1;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001175 return 0;
1176}
1177
Hans Verkuil977ba3b12013-03-24 08:28:46 -03001178static int tvp5150_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001179{
Javier Martinez Canillaseca4ca82016-04-14 22:00:08 -03001180 return tvp5150_write(sd, reg->reg & 0xff, reg->val & 0xff);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001181}
1182#endif
1183
1184static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1185{
1186 int status = tvp5150_read(sd, 0x88);
1187
1188 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
1189 return 0;
1190}
1191
Javier Martinez Canillas5a08bc02016-08-11 13:28:15 -03001192static int tvp5150_registered(struct v4l2_subdev *sd)
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001193{
1194#ifdef CONFIG_MEDIA_CONTROLLER
1195 struct tvp5150 *decoder = to_tvp5150(sd);
1196 int ret = 0;
1197 int i;
1198
1199 for (i = 0; i < TVP5150_INPUT_NUM; i++) {
1200 struct media_entity *input = &decoder->input_ent[i];
1201 struct media_pad *pad = &decoder->input_pad[i];
1202
1203 if (!input->name)
1204 continue;
1205
1206 decoder->input_pad[i].flags = MEDIA_PAD_FL_SOURCE;
1207
1208 ret = media_entity_pads_init(input, 1, pad);
1209 if (ret < 0)
1210 return ret;
1211
1212 ret = media_device_register_entity(sd->v4l2_dev->mdev, input);
1213 if (ret < 0)
1214 return ret;
1215
1216 ret = media_create_pad_link(input, 0, &sd->entity,
1217 DEMOD_PAD_IF_INPUT, 0);
1218 if (ret < 0) {
1219 media_device_unregister_entity(input);
1220 return ret;
1221 }
1222 }
1223#endif
1224
1225 return 0;
1226}
1227
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001228/* ----------------------------------------------------------------------- */
1229
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001230static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
1231 .s_ctrl = tvp5150_s_ctrl,
1232};
1233
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001234static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1235 .log_status = tvp5150_log_status,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001236 .reset = tvp5150_reset,
1237#ifdef CONFIG_VIDEO_ADV_DEBUG
1238 .g_register = tvp5150_g_register,
1239 .s_register = tvp5150_s_register,
1240#endif
1241};
1242
1243static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001244 .g_tuner = tvp5150_g_tuner,
1245};
1246
1247static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001248 .s_std = tvp5150_s_std,
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001249 .s_stream = tvp5150_s_stream,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001250 .s_routing = tvp5150_s_routing,
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -02001251 .g_mbus_config = tvp5150_g_mbus_config,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001252};
1253
1254static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001255 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
Hans Verkuild37dad42010-03-14 10:59:16 -03001256 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1257 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1258 .s_raw_fmt = tvp5150_s_raw_fmt,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001259};
1260
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001261static const struct v4l2_subdev_pad_ops tvp5150_pad_ops = {
1262 .enum_mbus_code = tvp5150_enum_mbus_code,
Laurent Pincharte545ac82016-01-26 10:46:24 -02001263 .enum_frame_size = tvp5150_enum_frame_size,
Hans Verkuilda298c62015-04-09 04:02:34 -03001264 .set_fmt = tvp5150_fill_fmt,
1265 .get_fmt = tvp5150_fill_fmt,
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001266 .get_selection = tvp5150_get_selection,
1267 .set_selection = tvp5150_set_selection,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001268};
1269
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001270static const struct v4l2_subdev_ops tvp5150_ops = {
1271 .core = &tvp5150_core_ops,
1272 .tuner = &tvp5150_tuner_ops,
1273 .video = &tvp5150_video_ops,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001274 .vbi = &tvp5150_vbi_ops,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001275 .pad = &tvp5150_pad_ops,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001276};
1277
Javier Martinez Canillas5a08bc02016-08-11 13:28:15 -03001278static const struct v4l2_subdev_internal_ops tvp5150_internal_ops = {
1279 .registered = tvp5150_registered,
1280};
1281
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001282
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001283/****************************************************************************
1284 I2C Client & Driver
1285 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001286
Laurent Pinchart78715972016-01-07 10:46:41 -02001287static int tvp5150_detect_version(struct tvp5150 *core)
1288{
1289 struct v4l2_subdev *sd = &core->sd;
1290 struct i2c_client *c = v4l2_get_subdevdata(sd);
1291 unsigned int i;
Laurent Pinchart78715972016-01-07 10:46:41 -02001292 u8 regs[4];
1293 int res;
1294
1295 /*
1296 * Read consequent registers - TVP5150_MSB_DEV_ID, TVP5150_LSB_DEV_ID,
1297 * TVP5150_ROM_MAJOR_VER, TVP5150_ROM_MINOR_VER
1298 */
1299 for (i = 0; i < 4; i++) {
1300 res = tvp5150_read(sd, TVP5150_MSB_DEV_ID + i);
1301 if (res < 0)
1302 return res;
1303 regs[i] = res;
1304 }
1305
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001306 core->dev_id = (regs[0] << 8) | regs[1];
1307 core->rom_ver = (regs[2] << 8) | regs[3];
Laurent Pinchart78715972016-01-07 10:46:41 -02001308
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001309 dev_info(sd->dev, "tvp%04x (%u.%u) chip found @ 0x%02x (%s)\n",
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001310 core->dev_id, regs[2], regs[3], c->addr << 1,
1311 c->adapter->name);
Laurent Pinchart78715972016-01-07 10:46:41 -02001312
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001313 if (core->dev_id == 0x5150 && core->rom_ver == 0x0321) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001314 dev_info(sd->dev, "tvp5150a detected.\n");
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001315 } else if (core->dev_id == 0x5150 && core->rom_ver == 0x0400) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001316 dev_info(sd->dev, "tvp5150am1 detected.\n");
Laurent Pinchart78715972016-01-07 10:46:41 -02001317
1318 /* ITU-T BT.656.4 timing */
1319 tvp5150_write(sd, TVP5150_REV_SELECT, 0);
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001320 } else if (core->dev_id == 0x5151 && core->rom_ver == 0x0100) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001321 dev_info(sd->dev, "tvp5151 detected.\n");
Laurent Pinchart78715972016-01-07 10:46:41 -02001322 } else {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001323 dev_info(sd->dev, "*** unknown tvp%04x chip detected.\n",
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001324 core->dev_id);
Laurent Pinchart78715972016-01-07 10:46:41 -02001325 }
1326
1327 return 0;
1328}
1329
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02001330static int tvp5150_init(struct i2c_client *c)
1331{
1332 struct gpio_desc *pdn_gpio;
1333 struct gpio_desc *reset_gpio;
1334
1335 pdn_gpio = devm_gpiod_get_optional(&c->dev, "pdn", GPIOD_OUT_HIGH);
1336 if (IS_ERR(pdn_gpio))
1337 return PTR_ERR(pdn_gpio);
1338
1339 if (pdn_gpio) {
1340 gpiod_set_value_cansleep(pdn_gpio, 0);
1341 /* Delay time between power supplies active and reset */
1342 msleep(20);
1343 }
1344
1345 reset_gpio = devm_gpiod_get_optional(&c->dev, "reset", GPIOD_OUT_HIGH);
1346 if (IS_ERR(reset_gpio))
1347 return PTR_ERR(reset_gpio);
1348
1349 if (reset_gpio) {
1350 /* RESETB pulse duration */
1351 ndelay(500);
1352 gpiod_set_value_cansleep(reset_gpio, 0);
1353 /* Delay time between end of reset to I2C active */
1354 usleep_range(200, 250);
1355 }
1356
1357 return 0;
1358}
1359
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001360static int tvp5150_parse_dt(struct tvp5150 *decoder, struct device_node *np)
1361{
Sakari Ailus859969b2016-08-26 20:17:25 -03001362 struct v4l2_fwnode_endpoint bus_cfg;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001363 struct device_node *ep;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001364#ifdef CONFIG_MEDIA_CONTROLLER
1365 struct device_node *connectors, *child;
1366 struct media_entity *input;
1367 const char *name;
1368 u32 input_type;
1369#endif
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001370 unsigned int flags;
1371 int ret = 0;
1372
1373 ep = of_graph_get_next_endpoint(np, NULL);
1374 if (!ep)
1375 return -EINVAL;
1376
Sakari Ailus859969b2016-08-26 20:17:25 -03001377 ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(ep), &bus_cfg);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001378 if (ret)
1379 goto err;
1380
1381 flags = bus_cfg.bus.parallel.flags;
1382
1383 if (bus_cfg.bus_type == V4L2_MBUS_PARALLEL &&
1384 !(flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH &&
1385 flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH &&
Javier Martinez Canillas2bd5e432016-02-05 17:09:53 -02001386 flags & V4L2_MBUS_FIELD_EVEN_LOW)) {
1387 ret = -EINVAL;
1388 goto err;
1389 }
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001390
1391 decoder->mbus_type = bus_cfg.bus_type;
1392
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001393#ifdef CONFIG_MEDIA_CONTROLLER
1394 connectors = of_get_child_by_name(np, "connectors");
1395
1396 if (!connectors)
1397 goto err;
1398
1399 for_each_available_child_of_node(connectors, child) {
1400 ret = of_property_read_u32(child, "input", &input_type);
1401 if (ret) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001402 dev_err(decoder->sd.dev,
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001403 "missing type property in node %s\n",
1404 child->name);
1405 goto err_connector;
1406 }
1407
Mauro Carvalho Chehab60ad7682016-02-19 15:02:30 -02001408 if (input_type >= TVP5150_INPUT_NUM) {
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001409 ret = -EINVAL;
1410 goto err_connector;
1411 }
1412
1413 input = &decoder->input_ent[input_type];
1414
1415 /* Each input connector can only be defined once */
1416 if (input->name) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001417 dev_err(decoder->sd.dev,
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001418 "input %s with same type already exists\n",
1419 input->name);
1420 ret = -EINVAL;
1421 goto err_connector;
1422 }
1423
1424 switch (input_type) {
1425 case TVP5150_COMPOSITE0:
1426 case TVP5150_COMPOSITE1:
1427 input->function = MEDIA_ENT_F_CONN_COMPOSITE;
1428 break;
1429 case TVP5150_SVIDEO:
1430 input->function = MEDIA_ENT_F_CONN_SVIDEO;
1431 break;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001432 }
1433
1434 input->flags = MEDIA_ENT_FL_CONNECTOR;
1435
1436 ret = of_property_read_string(child, "label", &name);
1437 if (ret < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001438 dev_err(decoder->sd.dev,
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001439 "missing label property in node %s\n",
1440 child->name);
1441 goto err_connector;
1442 }
1443
1444 input->name = name;
1445 }
1446
1447err_connector:
1448 of_node_put(connectors);
1449#endif
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001450err:
1451 of_node_put(ep);
1452 return ret;
1453}
1454
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001455static const char * const tvp5150_test_patterns[2] = {
1456 "Disabled",
1457 "Black screen"
1458};
1459
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001460static int tvp5150_probe(struct i2c_client *c,
1461 const struct i2c_device_id *id)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001462{
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001463 struct tvp5150 *core;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001464 struct v4l2_subdev *sd;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001465 struct device_node *np = c->dev.of_node;
Laurent Pinchart78715972016-01-07 10:46:41 -02001466 int res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001467
1468 /* Check if the adapter supports the needed features */
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001469 if (!i2c_check_functionality(c->adapter,
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001470 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001471 return -EIO;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001472
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02001473 res = tvp5150_init(c);
1474 if (res)
1475 return res;
1476
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001477 core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL);
1478 if (!core)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001479 return -ENOMEM;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001480
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001481 sd = &core->sd;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001482
1483 if (IS_ENABLED(CONFIG_OF) && np) {
1484 res = tvp5150_parse_dt(core, np);
1485 if (res) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001486 dev_err(sd->dev, "DT parsing error: %d\n", res);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001487 return res;
1488 }
1489 } else {
1490 /* Default to BT.656 embedded sync */
1491 core->mbus_type = V4L2_MBUS_BT656;
1492 }
1493
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001494 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
Javier Martinez Canillas5a08bc02016-08-11 13:28:15 -03001495 sd->internal_ops = &tvp5150_internal_ops;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001496 sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1497
1498#if defined(CONFIG_MEDIA_CONTROLLER)
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -02001499 core->pads[DEMOD_PAD_IF_INPUT].flags = MEDIA_PAD_FL_SINK;
1500 core->pads[DEMOD_PAD_VID_OUT].flags = MEDIA_PAD_FL_SOURCE;
1501 core->pads[DEMOD_PAD_VBI_OUT].flags = MEDIA_PAD_FL_SOURCE;
Mauro Carvalho Chehabf92c70a2016-01-27 15:09:15 -02001502
1503 sd->entity.function = MEDIA_ENT_F_ATV_DECODER;
1504
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -02001505 res = media_entity_pads_init(&sd->entity, DEMOD_NUM_PADS, core->pads);
Laurent Pincharte545ac82016-01-26 10:46:24 -02001506 if (res < 0)
1507 return res;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001508
1509 sd->entity.ops = &tvp5150_sd_media_ops;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001510#endif
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001511
Laurent Pinchart78715972016-01-07 10:46:41 -02001512 res = tvp5150_detect_version(core);
1513 if (res < 0)
1514 return res;
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001515
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -02001516 core->norm = V4L2_STD_ALL; /* Default is autodetect */
Hans Verkuil5325b422009-04-02 11:26:22 -03001517 core->input = TVP5150_COMPOSITE1;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001518 core->enable = true;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001519
Laurent Pinchartb1950b82016-01-07 10:46:44 -02001520 v4l2_ctrl_handler_init(&core->hdl, 5);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001521 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1522 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
1523 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1524 V4L2_CID_CONTRAST, 0, 255, 1, 128);
1525 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1526 V4L2_CID_SATURATION, 0, 255, 1, 128);
1527 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1528 V4L2_CID_HUE, -128, 127, 1, 0);
Laurent Pinchartb1950b82016-01-07 10:46:44 -02001529 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1530 V4L2_CID_PIXEL_RATE, 27000000,
1531 27000000, 1, 27000000);
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001532 v4l2_ctrl_new_std_menu_items(&core->hdl, &tvp5150_ctrl_ops,
1533 V4L2_CID_TEST_PATTERN,
1534 ARRAY_SIZE(tvp5150_test_patterns),
1535 0, 0, tvp5150_test_patterns);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001536 sd->ctrl_handler = &core->hdl;
1537 if (core->hdl.error) {
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001538 res = core->hdl.error;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001539 goto err;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001540 }
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001541
Javier Martin963ddc62012-01-31 05:23:46 -03001542 /* Default is no cropping */
1543 core->rect.top = 0;
1544 if (tvp5150_read_std(sd) & V4L2_STD_525_60)
1545 core->rect.height = TVP5150_V_MAX_525_60;
1546 else
1547 core->rect.height = TVP5150_V_MAX_OTHERS;
1548 core->rect.left = 0;
1549 core->rect.width = TVP5150_H_MAX;
1550
Laurent Pinchartaff808e2016-12-09 09:47:17 -02001551 tvp5150_reset(sd, 0); /* Calls v4l2_ctrl_handler_setup() */
1552
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001553 res = v4l2_async_register_subdev(sd);
1554 if (res < 0)
1555 goto err;
1556
Markus Rechbergerf1e5ee42006-02-07 04:01:19 +01001557 if (debug > 1)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001558 tvp5150_log_status(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001559 return 0;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001560
1561err:
1562 v4l2_ctrl_handler_free(&core->hdl);
1563 return res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001564}
1565
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001566static int tvp5150_remove(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001567{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001568 struct v4l2_subdev *sd = i2c_get_clientdata(c);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001569 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001570
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001571 dev_dbg_lvl(sd->dev, 1, debug,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -02001572 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1573 c->addr << 1);
1574
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001575 v4l2_async_unregister_subdev(sd);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001576 v4l2_ctrl_handler_free(&decoder->hdl);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001577 return 0;
1578}
1579
1580/* ----------------------------------------------------------------------- */
1581
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001582static const struct i2c_device_id tvp5150_id[] = {
1583 { "tvp5150", 0 },
1584 { }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001585};
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001586MODULE_DEVICE_TABLE(i2c, tvp5150_id);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001587
Eduard Gavin7ef930a2016-01-07 10:46:48 -02001588#if IS_ENABLED(CONFIG_OF)
1589static const struct of_device_id tvp5150_of_match[] = {
1590 { .compatible = "ti,tvp5150", },
1591 { /* sentinel */ },
1592};
1593MODULE_DEVICE_TABLE(of, tvp5150_of_match);
1594#endif
1595
Hans Verkuilc7711452010-09-15 15:45:20 -03001596static struct i2c_driver tvp5150_driver = {
1597 .driver = {
Eduard Gavin7ef930a2016-01-07 10:46:48 -02001598 .of_match_table = of_match_ptr(tvp5150_of_match),
Hans Verkuilc7711452010-09-15 15:45:20 -03001599 .name = "tvp5150",
1600 },
1601 .probe = tvp5150_probe,
1602 .remove = tvp5150_remove,
1603 .id_table = tvp5150_id,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001604};
Hans Verkuilc7711452010-09-15 15:45:20 -03001605
Axel Linc6e8d862012-02-12 06:56:32 -03001606module_i2c_driver(tvp5150_driver);