blob: cbb19001c9e42544d77ad8d8755a4fbd7622a175 [file] [log] [blame]
Mauro Carvalho Chehab459ee172017-12-01 08:47:12 -05001// SPDX-License-Identifier: GPL-2.0
2//
3// tvp5150 - Texas Instruments TVP5150A/AM1 and TVP5151 video decoder driver
4//
Mauro Carvalho Chehab32590812018-04-25 05:34:48 -04005// Copyright (c) 2005,2006 Mauro Carvalho Chehab <mchehab@kernel.org>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08006
Javier Martinez Canillasb802fb92016-02-05 17:09:56 -02007#include <dt-bindings/media/tvp5150.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08008#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Hans Verkuil33b687c2008-07-25 05:32:50 -030010#include <linux/videodev2.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080011#include <linux/delay.h>
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -020012#include <linux/gpio/consumer.h>
Philipp Zabel8e4c97e2018-06-28 12:20:44 -040013#include <linux/interrupt.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>
Philipp Zabel28b9e222018-06-28 12:20:35 -040016#include <linux/regmap.h>
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -030017#include <media/v4l2-async.h>
Hans Verkuil6b8fe022008-12-18 11:17:25 -030018#include <media/v4l2-device.h>
Hans Verkuil6c45ec72010-12-12 08:45:43 -030019#include <media/v4l2-ctrls.h>
Sakari Ailus859969b2016-08-26 20:17:25 -030020#include <media/v4l2-fwnode.h>
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020021#include <media/v4l2-mc.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080022
23#include "tvp5150_reg.h"
24
Philipp Zabel785a3de2014-02-27 13:44:47 -030025#define TVP5150_H_MAX 720U
26#define TVP5150_V_MAX_525_60 480U
27#define TVP5150_V_MAX_OTHERS 576U
Javier Martin963ddc62012-01-31 05:23:46 -030028#define TVP5150_MAX_CROP_LEFT 511
29#define TVP5150_MAX_CROP_TOP 127
30#define TVP5150_CROP_SHIFT 2
Marco Felsch5cb82942018-06-28 12:20:39 -040031#define TVP5150_MBUS_FMT MEDIA_BUS_FMT_UYVY8_2X8
32#define TVP5150_FIELD V4L2_FIELD_ALTERNATE
33#define TVP5150_COLORSPACE V4L2_COLORSPACE_SMPTE170M
Javier Martin963ddc62012-01-31 05:23:46 -030034
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -020035MODULE_DESCRIPTION("Texas Instruments TVP5150A/TVP5150AM1/TVP5151 video decoder driver");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080036MODULE_AUTHOR("Mauro Carvalho Chehab");
Mauro Carvalho Chehab459ee172017-12-01 08:47:12 -050037MODULE_LICENSE("GPL v2");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080038
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080039
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030040static int debug;
Philipp Zabel2a0489d2014-02-27 13:44:48 -030041module_param(debug, int, 0644);
Hans Verkuil6b8fe022008-12-18 11:17:25 -030042MODULE_PARM_DESC(debug, "Debug level (0-2)");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080043
Mauro Carvalho Chehabad0e3742016-11-13 05:34:12 -020044#define dprintk0(__dev, __arg...) dev_dbg_lvl(__dev, 0, 0, __arg)
45
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -040046enum tvp5150_pads {
47 TVP5150_PAD_IF_INPUT,
48 TVP5150_PAD_VID_OUT,
49 TVP5150_NUM_PADS
50};
51
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080052struct tvp5150 {
Hans Verkuil6b8fe022008-12-18 11:17:25 -030053 struct v4l2_subdev sd;
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020054#ifdef CONFIG_MEDIA_CONTROLLER
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -040055 struct media_pad pads[TVP5150_NUM_PADS];
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -020056 struct media_entity input_ent[TVP5150_INPUT_NUM];
57 struct media_pad input_pad[TVP5150_INPUT_NUM];
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020058#endif
Hans Verkuil6c45ec72010-12-12 08:45:43 -030059 struct v4l2_ctrl_handler hdl;
Javier Martin963ddc62012-01-31 05:23:46 -030060 struct v4l2_rect rect;
Philipp Zabel28b9e222018-06-28 12:20:35 -040061 struct regmap *regmap;
Philipp Zabel8e4c97e2018-06-28 12:20:44 -040062 int irq;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080063
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020064 v4l2_std_id norm; /* Current set standard */
Philipp Zabelb440b732018-06-28 12:20:40 -040065 v4l2_std_id detected_norm;
Hans Verkuil5325b422009-04-02 11:26:22 -030066 u32 input;
67 u32 output;
Philipp Zabel62a764e2018-06-28 12:20:45 -040068 u32 oe;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080069 int enable;
Philipp Zabel8e4c97e2018-06-28 12:20:44 -040070 bool lock;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020071
Javier Martinez Canillas82275132016-02-05 17:09:54 -020072 u16 dev_id;
73 u16 rom_ver;
74
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020075 enum v4l2_mbus_type mbus_type;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080076};
77
Hans Verkuil6b8fe022008-12-18 11:17:25 -030078static inline struct tvp5150 *to_tvp5150(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080079{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030080 return container_of(sd, struct tvp5150, sd);
81}
82
Hans Verkuil6c45ec72010-12-12 08:45:43 -030083static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
84{
85 return &container_of(ctrl->handler, struct tvp5150, hdl)->sd;
86}
87
Hans Verkuil6b8fe022008-12-18 11:17:25 -030088static int tvp5150_read(struct v4l2_subdev *sd, unsigned char addr)
89{
Philipp Zabel28b9e222018-06-28 12:20:35 -040090 struct tvp5150 *decoder = to_tvp5150(sd);
91 int ret, val;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080092
Philipp Zabel28b9e222018-06-28 12:20:35 -040093 ret = regmap_read(decoder->regmap, addr, &val);
94 if (ret < 0)
95 return ret;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -020096
Philipp Zabel28b9e222018-06-28 12:20:35 -040097 return val;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080098}
99
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300100static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
101 const u8 end, int max_line)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200102{
Mauro Carvalho Chehabe5134112016-10-20 11:36:42 -0200103 u8 buf[16];
104 int i = 0, j, len;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200105
Mauro Carvalho Chehabe5134112016-10-20 11:36:42 -0200106 if (max_line > 16) {
107 dprintk0(sd->dev, "too much data to dump\n");
108 return;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200109 }
Mauro Carvalho Chehabe5134112016-10-20 11:36:42 -0200110
111 for (i = init; i < end; i += max_line) {
112 len = (end - i > max_line) ? max_line : end - i;
113
114 for (j = 0; j < len; j++)
115 buf[j] = tvp5150_read(sd, i + j);
116
117 dprintk0(sd->dev, "%s reg %02x = %*ph\n", s, i, len, buf);
118 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200119}
120
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300121static int tvp5150_log_status(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800122{
Mauro Carvalho Chehabad0e3742016-11-13 05:34:12 -0200123 dprintk0(sd->dev, "tvp5150: Video input source selection #1 = 0x%02x\n",
124 tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
125 dprintk0(sd->dev, "tvp5150: Analog channel controls = 0x%02x\n",
126 tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
127 dprintk0(sd->dev, "tvp5150: Operation mode controls = 0x%02x\n",
128 tvp5150_read(sd, TVP5150_OP_MODE_CTL));
129 dprintk0(sd->dev, "tvp5150: Miscellaneous controls = 0x%02x\n",
130 tvp5150_read(sd, TVP5150_MISC_CTL));
131 dprintk0(sd->dev, "tvp5150: Autoswitch mask= 0x%02x\n",
132 tvp5150_read(sd, TVP5150_AUTOSW_MSK));
133 dprintk0(sd->dev, "tvp5150: Color killer threshold control = 0x%02x\n",
134 tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
135 dprintk0(sd->dev, "tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
136 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
137 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
138 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
139 dprintk0(sd->dev, "tvp5150: Brightness control = 0x%02x\n",
140 tvp5150_read(sd, TVP5150_BRIGHT_CTL));
141 dprintk0(sd->dev, "tvp5150: Color saturation control = 0x%02x\n",
142 tvp5150_read(sd, TVP5150_SATURATION_CTL));
143 dprintk0(sd->dev, "tvp5150: Hue control = 0x%02x\n",
144 tvp5150_read(sd, TVP5150_HUE_CTL));
145 dprintk0(sd->dev, "tvp5150: Contrast control = 0x%02x\n",
146 tvp5150_read(sd, TVP5150_CONTRAST_CTL));
147 dprintk0(sd->dev, "tvp5150: Outputs and data rates select = 0x%02x\n",
148 tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
149 dprintk0(sd->dev, "tvp5150: Configuration shared pins = 0x%02x\n",
150 tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
151 dprintk0(sd->dev, "tvp5150: Active video cropping start = 0x%02x%02x\n",
152 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
153 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
154 dprintk0(sd->dev, "tvp5150: Active video cropping stop = 0x%02x%02x\n",
155 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
156 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
157 dprintk0(sd->dev, "tvp5150: Genlock/RTC = 0x%02x\n",
158 tvp5150_read(sd, TVP5150_GENLOCK));
159 dprintk0(sd->dev, "tvp5150: Horizontal sync start = 0x%02x\n",
160 tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
161 dprintk0(sd->dev, "tvp5150: Vertical blanking start = 0x%02x\n",
162 tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
163 dprintk0(sd->dev, "tvp5150: Vertical blanking stop = 0x%02x\n",
164 tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
165 dprintk0(sd->dev, "tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
166 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
167 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
168 dprintk0(sd->dev, "tvp5150: Interrupt reset register B = 0x%02x\n",
169 tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
170 dprintk0(sd->dev, "tvp5150: Interrupt enable register B = 0x%02x\n",
171 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
172 dprintk0(sd->dev, "tvp5150: Interrupt configuration register B = 0x%02x\n",
173 tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
174 dprintk0(sd->dev, "tvp5150: Video standard = 0x%02x\n",
175 tvp5150_read(sd, TVP5150_VIDEO_STD));
176 dprintk0(sd->dev, "tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
177 tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
178 tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
179 dprintk0(sd->dev, "tvp5150: Macrovision on counter = 0x%02x\n",
180 tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
181 dprintk0(sd->dev, "tvp5150: Macrovision off counter = 0x%02x\n",
182 tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
183 dprintk0(sd->dev, "tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
184 (tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
185 dprintk0(sd->dev, "tvp5150: Device ID = %02x%02x\n",
186 tvp5150_read(sd, TVP5150_MSB_DEV_ID),
187 tvp5150_read(sd, TVP5150_LSB_DEV_ID));
188 dprintk0(sd->dev, "tvp5150: ROM version = (hex) %02x.%02x\n",
189 tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
190 tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
191 dprintk0(sd->dev, "tvp5150: Vertical line count = 0x%02x%02x\n",
192 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
193 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
194 dprintk0(sd->dev, "tvp5150: Interrupt status register B = 0x%02x\n",
195 tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
196 dprintk0(sd->dev, "tvp5150: Interrupt active register B = 0x%02x\n",
197 tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
198 dprintk0(sd->dev, "tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
199 tvp5150_read(sd, TVP5150_STATUS_REG_1),
200 tvp5150_read(sd, TVP5150_STATUS_REG_2),
201 tvp5150_read(sd, TVP5150_STATUS_REG_3),
202 tvp5150_read(sd, TVP5150_STATUS_REG_4),
203 tvp5150_read(sd, TVP5150_STATUS_REG_5));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200204
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300205 dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
206 TVP5150_TELETEXT_FIL1_END, 8);
207 dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
208 TVP5150_TELETEXT_FIL2_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200209
Mauro Carvalho Chehabad0e3742016-11-13 05:34:12 -0200210 dprintk0(sd->dev, "tvp5150: Teletext filter enable = 0x%02x\n",
211 tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
212 dprintk0(sd->dev, "tvp5150: Interrupt status register A = 0x%02x\n",
213 tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
214 dprintk0(sd->dev, "tvp5150: Interrupt enable register A = 0x%02x\n",
215 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
216 dprintk0(sd->dev, "tvp5150: Interrupt configuration = 0x%02x\n",
217 tvp5150_read(sd, TVP5150_INT_CONF));
218 dprintk0(sd->dev, "tvp5150: VDP status register = 0x%02x\n",
219 tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
220 dprintk0(sd->dev, "tvp5150: FIFO word count = 0x%02x\n",
221 tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
222 dprintk0(sd->dev, "tvp5150: FIFO interrupt threshold = 0x%02x\n",
223 tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
224 dprintk0(sd->dev, "tvp5150: FIFO reset = 0x%02x\n",
225 tvp5150_read(sd, TVP5150_FIFO_RESET));
226 dprintk0(sd->dev, "tvp5150: Line number interrupt = 0x%02x\n",
227 tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
228 dprintk0(sd->dev, "tvp5150: Pixel alignment register = 0x%02x%02x\n",
229 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
230 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
231 dprintk0(sd->dev, "tvp5150: FIFO output control = 0x%02x\n",
232 tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
233 dprintk0(sd->dev, "tvp5150: Full field enable = 0x%02x\n",
234 tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
235 dprintk0(sd->dev, "tvp5150: Full field mode register = 0x%02x\n",
236 tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200237
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300238 dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
239 TVP5150_CC_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200240
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300241 dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
242 TVP5150_WSS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200243
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300244 dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
245 TVP5150_VPS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200246
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300247 dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
248 TVP5150_VITC_DATA_END, 10);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200249
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300250 dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
251 TVP5150_LINE_MODE_END, 8);
252 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800253}
254
255/****************************************************************************
256 Basic functions
257 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800258
Laurent Pinchart6e98bee2016-12-08 20:22:42 -0200259static void tvp5150_selmux(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800260{
Paul Walmsley2962fc02010-10-09 01:31:40 -0300261 int opmode = 0;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300262 struct tvp5150 *decoder = to_tvp5150(sd);
Marco Felsch8a7441b2018-06-28 12:20:36 -0400263 unsigned int mask, val;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300264 int input = 0;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800265
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200266 /* Only tvp5150am1 and tvp5151 have signal generator support */
267 if ((decoder->dev_id == 0x5150 && decoder->rom_ver == 0x0400) ||
268 (decoder->dev_id == 0x5151 && decoder->rom_ver == 0x0100)) {
269 if (!decoder->enable)
270 input = 8;
271 }
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800272
Hans Verkuil5325b422009-04-02 11:26:22 -0300273 switch (decoder->input) {
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300274 case TVP5150_COMPOSITE1:
275 input |= 2;
276 /* fall through */
277 case TVP5150_COMPOSITE0:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200278 break;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300279 case TVP5150_SVIDEO:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200280 default:
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300281 input |= 1;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200282 break;
283 }
284
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200285 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 -0300286 decoder->input, decoder->output,
287 input, opmode);
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300288
Philipp Zabel28b9e222018-06-28 12:20:35 -0400289 regmap_write(decoder->regmap, TVP5150_OP_MODE_CTL, opmode);
290 regmap_write(decoder->regmap, TVP5150_VD_IN_SRC_SEL_1, input);
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300291
Laurent Pinchartb4b2de32016-12-09 09:47:18 -0200292 /*
293 * Setup the FID/GLCO/VLK/HVLK and INTREQ/GPCL/VBLK output signals. For
294 * S-Video we output the vertical lock (VLK) signal on FID/GLCO/VLK/HVLK
295 * and set INTREQ/GPCL/VBLK to logic 0. For composite we output the
296 * field indicator (FID) signal on FID/GLCO/VLK/HVLK and set
297 * INTREQ/GPCL/VBLK to logic 1.
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300298 */
Marco Felsch8a7441b2018-06-28 12:20:36 -0400299 mask = TVP5150_MISC_CTL_GPCL | TVP5150_MISC_CTL_HVLK;
Hans Verkuil5325b422009-04-02 11:26:22 -0300300 if (decoder->input == TVP5150_SVIDEO)
Marco Felsch8a7441b2018-06-28 12:20:36 -0400301 val = TVP5150_MISC_CTL_HVLK;
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300302 else
Marco Felsch8a7441b2018-06-28 12:20:36 -0400303 val = TVP5150_MISC_CTL_GPCL;
304 regmap_update_bits(decoder->regmap, TVP5150_MISC_CTL, mask, val);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800305};
306
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200307struct i2c_reg_value {
308 unsigned char reg;
309 unsigned char value;
310};
311
312/* Default values as sugested at TVP5150AM1 datasheet */
313static const struct i2c_reg_value tvp5150_init_default[] = {
314 { /* 0x00 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400315 TVP5150_VD_IN_SRC_SEL_1, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200316 },
317 { /* 0x01 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400318 TVP5150_ANAL_CHL_CTL, 0x15
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200319 },
320 { /* 0x02 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400321 TVP5150_OP_MODE_CTL, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200322 },
323 { /* 0x03 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400324 TVP5150_MISC_CTL, 0x01
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200325 },
326 { /* 0x06 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400327 TVP5150_COLOR_KIL_THSH_CTL, 0x10
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200328 },
329 { /* 0x07 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400330 TVP5150_LUMA_PROC_CTL_1, 0x60
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200331 },
332 { /* 0x08 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400333 TVP5150_LUMA_PROC_CTL_2, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200334 },
335 { /* 0x09 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400336 TVP5150_BRIGHT_CTL, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200337 },
338 { /* 0x0a */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400339 TVP5150_SATURATION_CTL, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200340 },
341 { /* 0x0b */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400342 TVP5150_HUE_CTL, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200343 },
344 { /* 0x0c */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400345 TVP5150_CONTRAST_CTL, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200346 },
347 { /* 0x0d */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400348 TVP5150_DATA_RATE_SEL, 0x47
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200349 },
350 { /* 0x0e */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400351 TVP5150_LUMA_PROC_CTL_3, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200352 },
353 { /* 0x0f */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400354 TVP5150_CONF_SHARED_PIN, 0x08
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200355 },
356 { /* 0x11 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400357 TVP5150_ACT_VD_CROP_ST_MSB, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200358 },
359 { /* 0x12 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400360 TVP5150_ACT_VD_CROP_ST_LSB, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200361 },
362 { /* 0x13 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400363 TVP5150_ACT_VD_CROP_STP_MSB, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200364 },
365 { /* 0x14 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400366 TVP5150_ACT_VD_CROP_STP_LSB, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200367 },
368 { /* 0x15 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400369 TVP5150_GENLOCK, 0x01
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200370 },
371 { /* 0x16 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400372 TVP5150_HORIZ_SYNC_START, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200373 },
374 { /* 0x18 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400375 TVP5150_VERT_BLANKING_START, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200376 },
377 { /* 0x19 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400378 TVP5150_VERT_BLANKING_STOP, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200379 },
380 { /* 0x1a */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400381 TVP5150_CHROMA_PROC_CTL_1, 0x0c
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200382 },
383 { /* 0x1b */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400384 TVP5150_CHROMA_PROC_CTL_2, 0x14
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200385 },
386 { /* 0x1c */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400387 TVP5150_INT_RESET_REG_B, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200388 },
389 { /* 0x1d */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400390 TVP5150_INT_ENABLE_REG_B, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200391 },
392 { /* 0x1e */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400393 TVP5150_INTT_CONFIG_REG_B, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200394 },
395 { /* 0x28 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400396 TVP5150_VIDEO_STD, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200397 },
398 { /* 0x2e */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400399 TVP5150_MACROVISION_ON_CTR, 0x0f
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200400 },
401 { /* 0x2f */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400402 TVP5150_MACROVISION_OFF_CTR, 0x01
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200403 },
404 { /* 0xbb */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400405 TVP5150_TELETEXT_FIL_ENA, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200406 },
407 { /* 0xc0 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400408 TVP5150_INT_STATUS_REG_A, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200409 },
410 { /* 0xc1 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400411 TVP5150_INT_ENABLE_REG_A, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200412 },
413 { /* 0xc2 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400414 TVP5150_INT_CONF, 0x04
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200415 },
416 { /* 0xc8 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400417 TVP5150_FIFO_INT_THRESHOLD, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200418 },
419 { /* 0xc9 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400420 TVP5150_FIFO_RESET, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200421 },
422 { /* 0xca */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400423 TVP5150_LINE_NUMBER_INT, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200424 },
425 { /* 0xcb */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400426 TVP5150_PIX_ALIGN_REG_LOW, 0x4e
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200427 },
428 { /* 0xcc */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400429 TVP5150_PIX_ALIGN_REG_HIGH, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200430 },
431 { /* 0xcd */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400432 TVP5150_FIFO_OUT_CTRL, 0x01
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200433 },
434 { /* 0xcf */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400435 TVP5150_FULL_FIELD_ENA, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200436 },
437 { /* 0xd0 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400438 TVP5150_LINE_MODE_INI, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200439 },
440 { /* 0xfc */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400441 TVP5150_FULL_FIELD_MODE_REG, 0x7f
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200442 },
443 { /* end of data */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400444 0xff, 0xff
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200445 }
446};
447
448/* Default values as sugested at TVP5150AM1 datasheet */
449static const struct i2c_reg_value tvp5150_init_enable[] = {
Philipp Zabel8105e1b2018-06-28 12:20:43 -0400450 { /* Automatic offset and AGC enabled */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200451 TVP5150_ANAL_CHL_CTL, 0x15
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400452 }, { /* Activate YCrCb output 0x9 or 0xd ? */
Laurent Pinchartb4b2de32016-12-09 09:47:18 -0200453 TVP5150_MISC_CTL, TVP5150_MISC_CTL_GPCL |
454 TVP5150_MISC_CTL_INTREQ_OE |
455 TVP5150_MISC_CTL_YCBCR_OE |
456 TVP5150_MISC_CTL_SYNC_OE |
457 TVP5150_MISC_CTL_VBLANK |
458 TVP5150_MISC_CTL_CLOCK_OE,
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400459 }, { /* Activates video std autodetection for all standards */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200460 TVP5150_AUTOSW_MSK, 0x0
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400461 }, { /* Default format: 0x47. For 4:2:2: 0x40 */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200462 TVP5150_DATA_RATE_SEL, 0x47
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400463 }, {
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200464 TVP5150_CHROMA_PROC_CTL_1, 0x0c
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400465 }, {
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200466 TVP5150_CHROMA_PROC_CTL_2, 0x54
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400467 }, { /* Non documented, but initialized on WinTV USB2 */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200468 0x27, 0x20
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400469 }, {
470 0xff, 0xff
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200471 }
472};
473
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200474struct tvp5150_vbi_type {
475 unsigned int vbi_type;
476 unsigned int ini_line;
477 unsigned int end_line;
478 unsigned int by_field :1;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200479};
480
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200481struct i2c_vbi_ram_value {
482 u16 reg;
483 struct tvp5150_vbi_type type;
484 unsigned char values[16];
485};
486
487/* This struct have the values for each supported VBI Standard
488 * by
489 tvp5150_vbi_types should follow the same order as vbi_ram_default
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200490 * value 0 means rom position 0x10, value 1 means rom position 0x30
491 * and so on. There are 16 possible locations from 0 to 15.
492 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200493
Nasser Afshin65dc7602018-04-02 18:23:19 -0400494static struct i2c_vbi_ram_value vbi_ram_default[] = {
495
Nasser Afshin9bfd8f82018-04-02 18:23:18 -0400496 /*
497 * FIXME: Current api doesn't handle all VBI types, those not
498 * yet supported are placed under #if 0
499 */
Hans Verkuil9bc74002006-03-29 18:02:51 -0300500#if 0
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500501 [0] = {0x010, /* Teletext, SECAM, WST System A */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400502 {V4L2_SLICED_TELETEXT_SECAM, 6, 23, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200503 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
504 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200505 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300506#endif
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500507 [1] = {0x030, /* Teletext, PAL, WST System B */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400508 {V4L2_SLICED_TELETEXT_B, 6, 22, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200509 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
510 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200511 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300512#if 0
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500513 [2] = {0x050, /* Teletext, PAL, WST System C */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400514 {V4L2_SLICED_TELETEXT_PAL_C, 6, 22, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200515 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
516 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200517 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500518 [3] = {0x070, /* Teletext, NTSC, WST System B */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400519 {V4L2_SLICED_TELETEXT_NTSC_B, 10, 21, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200520 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
521 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200522 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500523 [4] = {0x090, /* Tetetext, NTSC NABTS System C */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400524 {V4L2_SLICED_TELETEXT_NTSC_C, 10, 21, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200525 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
526 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200527 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500528 [5] = {0x0b0, /* Teletext, NTSC-J, NABTS System D */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400529 {V4L2_SLICED_TELETEXT_NTSC_D, 10, 21, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200530 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
531 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200532 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500533 [6] = {0x0d0, /* Closed Caption, PAL/SECAM */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400534 {V4L2_SLICED_CAPTION_625, 22, 22, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200535 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
536 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200537 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300538#endif
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500539 [7] = {0x0f0, /* Closed Caption, NTSC */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400540 {V4L2_SLICED_CAPTION_525, 21, 21, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200541 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
542 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200543 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500544 [8] = {0x110, /* Wide Screen Signal, PAL/SECAM */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400545 {V4L2_SLICED_WSS_625, 23, 23, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200546 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
547 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200548 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300549#if 0
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500550 [9] = {0x130, /* Wide Screen Signal, NTSC C */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400551 {V4L2_SLICED_WSS_525, 20, 20, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200552 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
553 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200554 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500555 [10] = {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400556 {V4l2_SLICED_VITC_625, 6, 22, 0},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200557 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
558 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200559 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500560 [11] = {0x170, /* Vertical Interval Timecode (VITC), NTSC */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400561 {V4l2_SLICED_VITC_525, 10, 20, 0},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200562 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
563 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200564 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300565#endif
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500566 [12] = {0x190, /* Video Program System (VPS), PAL */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400567 {V4L2_SLICED_VPS, 16, 16, 0},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200568 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
569 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200570 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200571 /* 0x1d0 User programmable */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200572};
573
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300574static int tvp5150_write_inittab(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200575 const struct i2c_reg_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200576{
Philipp Zabel28b9e222018-06-28 12:20:35 -0400577 struct tvp5150 *decoder = to_tvp5150(sd);
578
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200579 while (regs->reg != 0xff) {
Philipp Zabel28b9e222018-06-28 12:20:35 -0400580 regmap_write(decoder->regmap, regs->reg, regs->value);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200581 regs++;
582 }
583 return 0;
584}
585
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500586static int tvp5150_vdp_init(struct v4l2_subdev *sd)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200587{
Philipp Zabel28b9e222018-06-28 12:20:35 -0400588 struct tvp5150 *decoder = to_tvp5150(sd);
589 struct regmap *map = decoder->regmap;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200590 unsigned int i;
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500591 int j;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200592
593 /* Disable Full Field */
Philipp Zabel28b9e222018-06-28 12:20:35 -0400594 regmap_write(map, TVP5150_FULL_FIELD_ENA, 0);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200595
596 /* Before programming, Line mode should be at 0xff */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300597 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
Philipp Zabel28b9e222018-06-28 12:20:35 -0400598 regmap_write(map, i, 0xff);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200599
600 /* Load Ram Table */
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500601 for (j = 0; j < ARRAY_SIZE(vbi_ram_default); j++) {
602 const struct i2c_vbi_ram_value *regs = &vbi_ram_default[j];
603
604 if (!regs->type.vbi_type)
605 continue;
606
Philipp Zabel28b9e222018-06-28 12:20:35 -0400607 regmap_write(map, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
608 regmap_write(map, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200609
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300610 for (i = 0; i < 16; i++)
Philipp Zabel28b9e222018-06-28 12:20:35 -0400611 regmap_write(map, TVP5150_VDP_CONF_RAM_DATA,
612 regs->values[i]);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200613 }
614 return 0;
615}
616
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200617/* Fills VBI capabilities based on i2c_vbi_ram_value struct */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300618static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200619 struct v4l2_sliced_vbi_cap *cap)
620{
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500621 int line, i;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200622
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200623 dev_dbg_lvl(sd->dev, 1, debug, "g_sliced_vbi_cap\n");
Nasser Afshinbb7a3682018-04-02 18:23:20 -0400624 memset(cap, 0, sizeof(*cap));
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200625
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500626 for (i = 0; i < ARRAY_SIZE(vbi_ram_default); i++) {
627 const struct i2c_vbi_ram_value *regs = &vbi_ram_default[i];
628
629 if (!regs->type.vbi_type)
630 continue;
631
632 for (line = regs->type.ini_line;
633 line <= regs->type.end_line;
634 line++) {
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200635 cap->service_lines[0][line] |= regs->type.vbi_type;
636 }
637 cap->service_set |= regs->type.vbi_type;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200638 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300639 return 0;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200640}
641
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200642/* Set vbi processing
643 * type - one of tvp5150_vbi_types
644 * line - line to gather data
645 * fields: bit 0 field1, bit 1, field2
646 * flags (default=0xf0) is a bitmask, were set means:
647 * bit 7: enable filtering null bytes on CC
648 * bit 6: send data also to FIFO
649 * bit 5: don't allow data with errors on FIFO
650 * bit 4: enable ECC when possible
651 * pix_align = pix alignment:
652 * LSB = field1
653 * MSB = field2
654 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300655static int tvp5150_set_vbi(struct v4l2_subdev *sd,
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400656 unsigned int type, u8 flags, int line,
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200657 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 Chehab3dd6b562018-02-19 13:23:39 -0500662 int i, 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
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300672 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 Chehab3dd6b562018-02-19 13:23:39 -0500675 for (i = 0; i < ARRAY_SIZE(vbi_ram_default); i++) {
676 const struct i2c_vbi_ram_value *regs = &vbi_ram_default[i];
677
678 if (!regs->type.vbi_type)
679 continue;
680
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200681 if ((type & regs->type.vbi_type) &&
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300682 (line >= regs->type.ini_line) &&
683 (line <= regs->type.end_line))
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200684 break;
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200685 pos++;
686 }
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300687
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300688 type = pos | (flags & 0xf0);
689 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200690
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300691 if (fields & 1)
Philipp Zabel28b9e222018-06-28 12:20:35 -0400692 regmap_write(decoder->regmap, reg, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200693
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300694 if (fields & 2)
Philipp Zabel28b9e222018-06-28 12:20:35 -0400695 regmap_write(decoder->regmap, reg + 1, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200696
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200697 return type;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200698}
699
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500700static int tvp5150_get_vbi(struct v4l2_subdev *sd, int line)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200701{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300702 struct tvp5150 *decoder = to_tvp5150(sd);
703 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200704 u8 reg;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300705 int pos, type = 0;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300706 int i, ret = 0;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200707
708 if (std == V4L2_STD_ALL) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200709 dev_err(sd->dev, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200710 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300711 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200712 /* Don't follow NTSC Line number convension */
713 line += 3;
714 }
715
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300716 if (line < 6 || line > 27)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200717 return 0;
718
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300719 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200720
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300721 for (i = 0; i <= 1; i++) {
722 ret = tvp5150_read(sd, reg + i);
723 if (ret < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200724 dev_err(sd->dev, "%s: failed with error = %d\n",
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300725 __func__, ret);
726 return 0;
727 }
728 pos = ret & 0x0f;
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500729 if (pos < ARRAY_SIZE(vbi_ram_default))
730 type |= vbi_ram_default[pos].type.vbi_type;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300731 }
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200732
733 return type;
734}
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800735
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300736static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
737{
738 struct tvp5150 *decoder = to_tvp5150(sd);
739 int fmt = 0;
740
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200741 /* First tests should be against specific std */
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800742
Hans Verkuil26811ae2013-05-29 10:19:06 -0300743 if (std == V4L2_STD_NTSC_443) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300744 fmt = VIDEO_STD_NTSC_4_43_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300745 } else if (std == V4L2_STD_PAL_M) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300746 fmt = VIDEO_STD_PAL_M_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300747 } else if (std == V4L2_STD_PAL_N || std == V4L2_STD_PAL_Nc) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300748 fmt = VIDEO_STD_PAL_COMBINATION_N_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200749 } else {
750 /* Then, test against generic ones */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300751 if (std & V4L2_STD_NTSC)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300752 fmt = VIDEO_STD_NTSC_MJ_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300753 else if (std & V4L2_STD_PAL)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300754 fmt = VIDEO_STD_PAL_BDGHIN_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300755 else if (std & V4L2_STD_SECAM)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300756 fmt = VIDEO_STD_SECAM_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200757 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800758
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200759 dev_dbg_lvl(sd->dev, 1, debug, "Set video std register to %d.\n", fmt);
Philipp Zabel28b9e222018-06-28 12:20:35 -0400760 regmap_write(decoder->regmap, TVP5150_VIDEO_STD, fmt);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200761 return 0;
762}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800763
Marco Felsch0db87cc2018-06-28 12:20:49 -0400764static int tvp5150_g_std(struct v4l2_subdev *sd, v4l2_std_id *std)
765{
766 struct tvp5150 *decoder = to_tvp5150(sd);
767
768 *std = decoder->norm;
769
770 return 0;
771}
772
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300773static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200774{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300775 struct tvp5150 *decoder = to_tvp5150(sd);
776
777 if (decoder->norm == std)
778 return 0;
779
Javier Martin963ddc62012-01-31 05:23:46 -0300780 /* Change cropping height limits */
781 if (std & V4L2_STD_525_60)
782 decoder->rect.height = TVP5150_V_MAX_525_60;
783 else
784 decoder->rect.height = TVP5150_V_MAX_OTHERS;
785
Philipp Zabel15695862018-06-28 12:20:41 -0400786 decoder->norm = std;
Javier Martin963ddc62012-01-31 05:23:46 -0300787
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300788 return tvp5150_set_std(sd, std);
789}
790
Philipp Zabel15695862018-06-28 12:20:41 -0400791static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd)
792{
793 int val = tvp5150_read(sd, TVP5150_STATUS_REG_5);
794
795 switch (val & 0x0F) {
796 case 0x01:
797 return V4L2_STD_NTSC;
798 case 0x03:
799 return V4L2_STD_PAL;
800 case 0x05:
801 return V4L2_STD_PAL_M;
802 case 0x07:
803 return V4L2_STD_PAL_N | V4L2_STD_PAL_Nc;
804 case 0x09:
805 return V4L2_STD_NTSC_443;
806 case 0xb:
807 return V4L2_STD_SECAM;
808 default:
809 return V4L2_STD_UNKNOWN;
810 }
811}
812
Philipp Zabelee9a6ff2018-06-28 12:20:48 -0400813static int tvp5150_querystd(struct v4l2_subdev *sd, v4l2_std_id *std_id)
814{
815 struct tvp5150 *decoder = to_tvp5150(sd);
816
817 *std_id = decoder->lock ? tvp5150_read_std(sd) : V4L2_STD_UNKNOWN;
818
819 return 0;
820}
821
Philipp Zabel2f0a5c62018-06-28 12:20:46 -0400822static const struct v4l2_event tvp5150_ev_fmt = {
823 .type = V4L2_EVENT_SOURCE_CHANGE,
824 .u.src_change.changes = V4L2_EVENT_SRC_CH_RESOLUTION,
825};
826
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400827static irqreturn_t tvp5150_isr(int irq, void *dev_id)
828{
829 struct tvp5150 *decoder = dev_id;
830 struct regmap *map = decoder->regmap;
Philipp Zabel62a764e2018-06-28 12:20:45 -0400831 unsigned int mask, active = 0, status = 0;
832
833 mask = TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_SYNC_OE |
834 TVP5150_MISC_CTL_CLOCK_OE;
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400835
836 regmap_read(map, TVP5150_INT_STATUS_REG_A, &status);
837 if (status) {
838 regmap_write(map, TVP5150_INT_STATUS_REG_A, status);
839
Philipp Zabel62a764e2018-06-28 12:20:45 -0400840 if (status & TVP5150_INT_A_LOCK) {
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400841 decoder->lock = !!(status & TVP5150_INT_A_LOCK_STATUS);
Philipp Zabel7bb3c332018-06-28 12:20:47 -0400842 dev_dbg_lvl(decoder->sd.dev, 1, debug,
843 "sync lo%s signal\n",
844 decoder->lock ? "ck" : "ss");
Philipp Zabel2f0a5c62018-06-28 12:20:46 -0400845 v4l2_subdev_notify_event(&decoder->sd, &tvp5150_ev_fmt);
Philipp Zabel62a764e2018-06-28 12:20:45 -0400846 regmap_update_bits(map, TVP5150_MISC_CTL, mask,
847 decoder->lock ? decoder->oe : 0);
848 }
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400849
850 return IRQ_HANDLED;
851 }
852
853 regmap_read(map, TVP5150_INT_ACTIVE_REG_B, &active);
854 if (active) {
855 status = 0;
856 regmap_read(map, TVP5150_INT_STATUS_REG_B, &status);
857 if (status)
858 regmap_write(map, TVP5150_INT_RESET_REG_B, status);
859 }
860
861 return IRQ_HANDLED;
862}
863
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300864static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
865{
866 struct tvp5150 *decoder = to_tvp5150(sd);
Philipp Zabel8105e1b2018-06-28 12:20:43 -0400867 struct regmap *map = decoder->regmap;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200868
869 /* Initializes TVP5150 to its default values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300870 tvp5150_write_inittab(sd, tvp5150_init_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200871
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400872 if (decoder->irq) {
873 /* Configure pins: FID, VSYNC, INTREQ, SCLK */
874 regmap_write(map, TVP5150_CONF_SHARED_PIN, 0x0);
875 /* Set interrupt polarity to active high */
876 regmap_write(map, TVP5150_INT_CONF, TVP5150_VDPOE | 0x1);
877 regmap_write(map, TVP5150_INTT_CONFIG_REG_B, 0x1);
878 } else {
879 /* Configure pins: FID, VSYNC, GPCL/VBLK, SCLK */
880 regmap_write(map, TVP5150_CONF_SHARED_PIN, 0x2);
881 /* Keep interrupt polarity active low */
882 regmap_write(map, TVP5150_INT_CONF, TVP5150_VDPOE);
883 regmap_write(map, TVP5150_INTT_CONFIG_REG_B, 0x0);
884 }
Philipp Zabel8105e1b2018-06-28 12:20:43 -0400885
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200886 /* Initializes VDP registers */
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500887 tvp5150_vdp_init(sd);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200888
889 /* Selects decoder input */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300890 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800891
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200892 /* Initialize image preferences */
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300893 v4l2_ctrl_handler_setup(&decoder->hdl);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200894
Philipp Zabel1bb086b2018-06-28 12:20:42 -0400895 return 0;
896}
897
898static int tvp5150_enable(struct v4l2_subdev *sd)
899{
900 struct tvp5150 *decoder = to_tvp5150(sd);
901 v4l2_std_id std;
902
903 /* Initializes TVP5150 to stream enabled values */
904 tvp5150_write_inittab(sd, tvp5150_init_enable);
905
Philipp Zabel15695862018-06-28 12:20:41 -0400906 if (decoder->norm == V4L2_STD_ALL)
907 std = tvp5150_read_std(sd);
908 else
909 std = decoder->norm;
910
911 /* Disable autoswitch mode */
912 tvp5150_set_std(sd, std);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200913
Philipp Zabel62a764e2018-06-28 12:20:45 -0400914 /*
915 * Enable the YCbCr and clock outputs. In discrete sync mode
916 * (non-BT.656) additionally enable the the sync outputs.
917 */
918 switch (decoder->mbus_type) {
919 case V4L2_MBUS_PARALLEL:
Marco Felsch8a7441b2018-06-28 12:20:36 -0400920 /* 8-bit 4:2:2 YUV with discrete sync output */
921 regmap_update_bits(decoder->regmap, TVP5150_DATA_RATE_SEL,
922 0x7, 0x0);
Philipp Zabel62a764e2018-06-28 12:20:45 -0400923 decoder->oe = TVP5150_MISC_CTL_YCBCR_OE |
924 TVP5150_MISC_CTL_CLOCK_OE |
925 TVP5150_MISC_CTL_SYNC_OE;
926 break;
927 case V4L2_MBUS_BT656:
928 decoder->oe = TVP5150_MISC_CTL_YCBCR_OE |
929 TVP5150_MISC_CTL_CLOCK_OE;
930 break;
931 default:
932 return -EINVAL;
933 }
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200934
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300935 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800936};
937
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300938static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800939{
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300940 struct v4l2_subdev *sd = to_sd(ctrl);
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200941 struct tvp5150 *decoder = to_tvp5150(sd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800942
943 switch (ctrl->id) {
944 case V4L2_CID_BRIGHTNESS:
Philipp Zabel28b9e222018-06-28 12:20:35 -0400945 regmap_write(decoder->regmap, TVP5150_BRIGHT_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800946 return 0;
947 case V4L2_CID_CONTRAST:
Philipp Zabel28b9e222018-06-28 12:20:35 -0400948 regmap_write(decoder->regmap, TVP5150_CONTRAST_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800949 return 0;
950 case V4L2_CID_SATURATION:
Philipp Zabel28b9e222018-06-28 12:20:35 -0400951 regmap_write(decoder->regmap, TVP5150_SATURATION_CTL,
952 ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800953 return 0;
954 case V4L2_CID_HUE:
Philipp Zabel28b9e222018-06-28 12:20:35 -0400955 regmap_write(decoder->regmap, TVP5150_HUE_CTL, ctrl->val);
Marco Felsch2d29bcc2018-06-28 12:20:34 -0400956 return 0;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200957 case V4L2_CID_TEST_PATTERN:
958 decoder->enable = ctrl->val ? false : true;
959 tvp5150_selmux(sd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800960 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800961 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200962 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800963}
964
Marco Felsch5cb82942018-06-28 12:20:39 -0400965static void tvp5150_set_default(v4l2_std_id std, struct v4l2_rect *crop)
966{
967 /* Default is no cropping */
968 crop->top = 0;
969 crop->left = 0;
970 crop->width = TVP5150_H_MAX;
971 if (std & V4L2_STD_525_60)
972 crop->height = TVP5150_V_MAX_525_60;
973 else
974 crop->height = TVP5150_V_MAX_OTHERS;
975}
976
Hans Verkuilda298c62015-04-09 04:02:34 -0300977static int tvp5150_fill_fmt(struct v4l2_subdev *sd,
Marco Felsch5cb82942018-06-28 12:20:39 -0400978 struct v4l2_subdev_pad_config *cfg,
979 struct v4l2_subdev_format *format)
Javier Martinec2c4f32012-01-05 10:57:39 -0300980{
Hans Verkuilda298c62015-04-09 04:02:34 -0300981 struct v4l2_mbus_framefmt *f;
Javier Martinec2c4f32012-01-05 10:57:39 -0300982 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martinec2c4f32012-01-05 10:57:39 -0300983
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -0400984 if (!format || (format->pad != TVP5150_PAD_VID_OUT))
Javier Martinec2c4f32012-01-05 10:57:39 -0300985 return -EINVAL;
986
Hans Verkuilda298c62015-04-09 04:02:34 -0300987 f = &format->format;
988
Javier Martin963ddc62012-01-31 05:23:46 -0300989 f->width = decoder->rect.width;
Javier Martinez Canillas1831af02018-06-10 16:43:02 -0400990 f->height = decoder->rect.height / 2;
Javier Martinec2c4f32012-01-05 10:57:39 -0300991
Marco Felsch5cb82942018-06-28 12:20:39 -0400992 f->code = TVP5150_MBUS_FMT;
993 f->field = TVP5150_FIELD;
994 f->colorspace = TVP5150_COLORSPACE;
Javier Martinec2c4f32012-01-05 10:57:39 -0300995
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200996 dev_dbg_lvl(sd->dev, 1, debug, "width = %d, height = %d\n", f->width,
Marco Felsch5cb82942018-06-28 12:20:39 -0400997 f->height);
Javier Martinec2c4f32012-01-05 10:57:39 -0300998 return 0;
999}
1000
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001001static int tvp5150_set_selection(struct v4l2_subdev *sd,
1002 struct v4l2_subdev_pad_config *cfg,
1003 struct v4l2_subdev_selection *sel)
Javier Martin963ddc62012-01-31 05:23:46 -03001004{
Javier Martin963ddc62012-01-31 05:23:46 -03001005 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001006 struct v4l2_rect rect = sel->r;
Javier Martin963ddc62012-01-31 05:23:46 -03001007 v4l2_std_id std;
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001008 int hmax;
1009
1010 if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE ||
1011 sel->target != V4L2_SEL_TGT_CROP)
1012 return -EINVAL;
Javier Martin963ddc62012-01-31 05:23:46 -03001013
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001014 dev_dbg_lvl(sd->dev, 1, debug, "%s left=%d, top=%d, width=%d, height=%d\n",
Javier Martin963ddc62012-01-31 05:23:46 -03001015 __func__, rect.left, rect.top, rect.width, rect.height);
1016
Javier Martin963ddc62012-01-31 05:23:46 -03001017 /* tvp5150 has some special limits */
1018 rect.left = clamp(rect.left, 0, TVP5150_MAX_CROP_LEFT);
Javier Martin963ddc62012-01-31 05:23:46 -03001019 rect.top = clamp(rect.top, 0, TVP5150_MAX_CROP_TOP);
1020
1021 /* Calculate height based on current standard */
1022 if (decoder->norm == V4L2_STD_ALL)
1023 std = tvp5150_read_std(sd);
1024 else
1025 std = decoder->norm;
1026
1027 if (std & V4L2_STD_525_60)
1028 hmax = TVP5150_V_MAX_525_60;
1029 else
1030 hmax = TVP5150_V_MAX_OTHERS;
1031
Marco Felschbd24db02018-06-28 12:20:33 -04001032 /*
1033 * alignments:
1034 * - width = 2 due to UYVY colorspace
1035 * - height, image = no special alignment
1036 */
1037 v4l_bound_align_image(&rect.width,
1038 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect.left,
1039 TVP5150_H_MAX - rect.left, 1, &rect.height,
Ricardo Ribaldaf90580c2013-11-26 05:31:42 -03001040 hmax - TVP5150_MAX_CROP_TOP - rect.top,
Marco Felschbd24db02018-06-28 12:20:33 -04001041 hmax - rect.top, 0, 0);
Javier Martin963ddc62012-01-31 05:23:46 -03001042
Philipp Zabel28b9e222018-06-28 12:20:35 -04001043 regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_START, rect.top);
1044 regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_STOP,
1045 rect.top + rect.height - hmax);
1046 regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_ST_MSB,
1047 rect.left >> TVP5150_CROP_SHIFT);
1048 regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_ST_LSB,
1049 rect.left | (1 << TVP5150_CROP_SHIFT));
1050 regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_STP_MSB,
1051 (rect.left + rect.width - TVP5150_MAX_CROP_LEFT) >>
1052 TVP5150_CROP_SHIFT);
1053 regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_STP_LSB,
1054 rect.left + rect.width - TVP5150_MAX_CROP_LEFT);
Javier Martin963ddc62012-01-31 05:23:46 -03001055
1056 decoder->rect = rect;
1057
1058 return 0;
1059}
1060
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001061static int tvp5150_get_selection(struct v4l2_subdev *sd,
1062 struct v4l2_subdev_pad_config *cfg,
1063 struct v4l2_subdev_selection *sel)
Javier Martin963ddc62012-01-31 05:23:46 -03001064{
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001065 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
Javier Martin963ddc62012-01-31 05:23:46 -03001066 v4l2_std_id std;
1067
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001068 if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE)
Javier Martin963ddc62012-01-31 05:23:46 -03001069 return -EINVAL;
1070
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001071 switch (sel->target) {
1072 case V4L2_SEL_TGT_CROP_BOUNDS:
1073 case V4L2_SEL_TGT_CROP_DEFAULT:
1074 sel->r.left = 0;
1075 sel->r.top = 0;
1076 sel->r.width = TVP5150_H_MAX;
Javier Martin963ddc62012-01-31 05:23:46 -03001077
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001078 /* Calculate height based on current standard */
1079 if (decoder->norm == V4L2_STD_ALL)
1080 std = tvp5150_read_std(sd);
1081 else
1082 std = decoder->norm;
1083 if (std & V4L2_STD_525_60)
1084 sel->r.height = TVP5150_V_MAX_525_60;
1085 else
1086 sel->r.height = TVP5150_V_MAX_OTHERS;
1087 return 0;
1088 case V4L2_SEL_TGT_CROP:
1089 sel->r = decoder->rect;
1090 return 0;
1091 default:
1092 return -EINVAL;
1093 }
Javier Martin963ddc62012-01-31 05:23:46 -03001094}
1095
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -02001096static int tvp5150_g_mbus_config(struct v4l2_subdev *sd,
1097 struct v4l2_mbus_config *cfg)
1098{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001099 struct tvp5150 *decoder = to_tvp5150(sd);
1100
1101 cfg->type = decoder->mbus_type;
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -02001102 cfg->flags = V4L2_MBUS_MASTER | V4L2_MBUS_PCLK_SAMPLE_RISING
1103 | V4L2_MBUS_FIELD_EVEN_LOW | V4L2_MBUS_DATA_ACTIVE_HIGH;
1104
1105 return 0;
1106}
1107
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001108/****************************************************************************
Laurent Pincharte545ac82016-01-26 10:46:24 -02001109 V4L2 subdev pad ops
1110 ****************************************************************************/
Philipp Zabelb440b732018-06-28 12:20:40 -04001111static int tvp5150_init_cfg(struct v4l2_subdev *sd,
1112 struct v4l2_subdev_pad_config *cfg)
1113{
1114 struct tvp5150 *decoder = to_tvp5150(sd);
1115 v4l2_std_id std;
1116
1117 /*
1118 * Reset selection to maximum on subdev_open() if autodetection is on
1119 * and a standard change is detected.
1120 */
1121 if (decoder->norm == V4L2_STD_ALL) {
1122 std = tvp5150_read_std(sd);
1123 if (std != decoder->detected_norm) {
1124 decoder->detected_norm = std;
1125 tvp5150_set_default(std, &decoder->rect);
1126 }
1127 }
1128
1129 return 0;
1130}
1131
Laurent Pincharte545ac82016-01-26 10:46:24 -02001132static int tvp5150_enum_mbus_code(struct v4l2_subdev *sd,
1133 struct v4l2_subdev_pad_config *cfg,
1134 struct v4l2_subdev_mbus_code_enum *code)
1135{
1136 if (code->pad || code->index)
1137 return -EINVAL;
1138
Marco Felsch5cb82942018-06-28 12:20:39 -04001139 code->code = TVP5150_MBUS_FMT;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001140 return 0;
1141}
1142
1143static int tvp5150_enum_frame_size(struct v4l2_subdev *sd,
1144 struct v4l2_subdev_pad_config *cfg,
1145 struct v4l2_subdev_frame_size_enum *fse)
1146{
1147 struct tvp5150 *decoder = to_tvp5150(sd);
1148
Marco Felsch5cb82942018-06-28 12:20:39 -04001149 if (fse->index >= 8 || fse->code != TVP5150_MBUS_FMT)
Laurent Pincharte545ac82016-01-26 10:46:24 -02001150 return -EINVAL;
1151
Marco Felsch5cb82942018-06-28 12:20:39 -04001152 fse->code = TVP5150_MBUS_FMT;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001153 fse->min_width = decoder->rect.width;
1154 fse->max_width = decoder->rect.width;
1155 fse->min_height = decoder->rect.height / 2;
1156 fse->max_height = decoder->rect.height / 2;
1157
1158 return 0;
1159}
1160
1161/****************************************************************************
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001162 Media entity ops
1163 ****************************************************************************/
1164
Laurent Pinchart406ff672016-12-08 20:22:41 -02001165#ifdef CONFIG_MEDIA_CONTROLLER
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001166static int tvp5150_link_setup(struct media_entity *entity,
1167 const struct media_pad *local,
1168 const struct media_pad *remote, u32 flags)
1169{
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001170 struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
1171 struct tvp5150 *decoder = to_tvp5150(sd);
1172 int i;
1173
1174 for (i = 0; i < TVP5150_INPUT_NUM; i++) {
1175 if (remote->entity == &decoder->input_ent[i])
1176 break;
1177 }
1178
1179 /* Do nothing for entities that are not input connectors */
1180 if (i == TVP5150_INPUT_NUM)
1181 return 0;
1182
1183 decoder->input = i;
1184
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001185 tvp5150_selmux(sd);
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001186
1187 return 0;
1188}
1189
1190static const struct media_entity_operations tvp5150_sd_media_ops = {
1191 .link_setup = tvp5150_link_setup,
1192};
Laurent Pinchart406ff672016-12-08 20:22:41 -02001193#endif
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001194
1195/****************************************************************************
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001196 I2C Command
1197 ****************************************************************************/
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001198
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001199static int tvp5150_s_stream(struct v4l2_subdev *sd, int enable)
1200{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001201 struct tvp5150 *decoder = to_tvp5150(sd);
Philipp Zabel8e4c97e2018-06-28 12:20:44 -04001202 unsigned int mask, val = 0, int_val = 0;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001203
Marco Felsch8a7441b2018-06-28 12:20:36 -04001204 mask = TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_SYNC_OE |
1205 TVP5150_MISC_CTL_CLOCK_OE;
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001206
Laurent Pinchart79d62052016-12-09 09:47:19 -02001207 if (enable) {
Philipp Zabel1bb086b2018-06-28 12:20:42 -04001208 tvp5150_enable(sd);
1209
Philipp Zabel62a764e2018-06-28 12:20:45 -04001210 /* Enable outputs if decoder is locked */
1211 val = decoder->lock ? decoder->oe : 0;
Philipp Zabel8e4c97e2018-06-28 12:20:44 -04001212 int_val = TVP5150_INT_A_LOCK;
Philipp Zabel2f0a5c62018-06-28 12:20:46 -04001213 v4l2_subdev_notify_event(&decoder->sd, &tvp5150_ev_fmt);
Laurent Pinchart79d62052016-12-09 09:47:19 -02001214 }
1215
Marco Felsch8a7441b2018-06-28 12:20:36 -04001216 regmap_update_bits(decoder->regmap, TVP5150_MISC_CTL, mask, val);
Philipp Zabel8e4c97e2018-06-28 12:20:44 -04001217 if (decoder->irq)
1218 /* Enable / Disable lock interrupt */
1219 regmap_update_bits(decoder->regmap, TVP5150_INT_ENABLE_REG_A,
1220 TVP5150_INT_A_LOCK, int_val);
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001221
1222 return 0;
1223}
1224
Hans Verkuil5325b422009-04-02 11:26:22 -03001225static int tvp5150_s_routing(struct v4l2_subdev *sd,
1226 u32 input, u32 output, u32 config)
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001227{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001228 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001229
Hans Verkuil5325b422009-04-02 11:26:22 -03001230 decoder->input = input;
1231 decoder->output = output;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001232
1233 if (output == TVP5150_BLACK_SCREEN)
1234 decoder->enable = false;
1235 else
1236 decoder->enable = true;
1237
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001238 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001239 return 0;
1240}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001241
Hans Verkuild37dad42010-03-14 10:59:16 -03001242static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001243{
Philipp Zabel28b9e222018-06-28 12:20:35 -04001244 struct tvp5150 *decoder = to_tvp5150(sd);
1245
Nasser Afshin9bfd8f82018-04-02 18:23:18 -04001246 /*
1247 * this is for capturing 36 raw vbi lines
1248 * if there's a way to cut off the beginning 2 vbi lines
1249 * with the tvp5150 then the vbi line count could be lowered
1250 * to 17 lines/field again, although I couldn't find a register
1251 * which could do that cropping
1252 */
1253
Hans Verkuild37dad42010-03-14 10:59:16 -03001254 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
Philipp Zabel28b9e222018-06-28 12:20:35 -04001255 regmap_write(decoder->regmap, TVP5150_LUMA_PROC_CTL_1, 0x70);
Hans Verkuild37dad42010-03-14 10:59:16 -03001256 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
Philipp Zabel28b9e222018-06-28 12:20:35 -04001257 regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_START,
1258 0x00);
1259 regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_STOP, 0x01);
Hans Verkuild37dad42010-03-14 10:59:16 -03001260 }
1261 return 0;
1262}
1263
1264static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1265{
Philipp Zabel28b9e222018-06-28 12:20:35 -04001266 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001267 int i;
1268
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001269 if (svbi->service_set != 0) {
1270 for (i = 0; i <= 23; i++) {
1271 svbi->service_lines[1][i] = 0;
1272 svbi->service_lines[0][i] =
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -05001273 tvp5150_set_vbi(sd, svbi->service_lines[0][i],
1274 0xf0, i, 3);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001275 }
1276 /* Enables FIFO */
Philipp Zabel28b9e222018-06-28 12:20:35 -04001277 regmap_write(decoder->regmap, TVP5150_FIFO_OUT_CTRL, 1);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001278 } else {
1279 /* Disables FIFO*/
Philipp Zabel28b9e222018-06-28 12:20:35 -04001280 regmap_write(decoder->regmap, TVP5150_FIFO_OUT_CTRL, 0);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001281
1282 /* Disable Full Field */
Philipp Zabel28b9e222018-06-28 12:20:35 -04001283 regmap_write(decoder->regmap, TVP5150_FULL_FIELD_ENA, 0);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001284
1285 /* Disable Line modes */
1286 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
Philipp Zabel28b9e222018-06-28 12:20:35 -04001287 regmap_write(decoder->regmap, i, 0xff);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001288 }
1289 return 0;
1290}
1291
Hans Verkuild37dad42010-03-14 10:59:16 -03001292static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1293{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001294 int i, mask = 0;
1295
Hans Verkuil30634e82012-09-05 10:38:10 -03001296 memset(svbi->service_lines, 0, sizeof(svbi->service_lines));
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001297
1298 for (i = 0; i <= 23; i++) {
1299 svbi->service_lines[0][i] =
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -05001300 tvp5150_get_vbi(sd, i);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001301 mask |= svbi->service_lines[0][i];
1302 }
1303 svbi->service_set = mask;
1304 return 0;
1305}
1306
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001307#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001308static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001309{
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001310 int res;
1311
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001312 res = tvp5150_read(sd, reg->reg & 0xff);
1313 if (res < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001314 dev_err(sd->dev, "%s: failed with error = %d\n", __func__, res);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001315 return res;
1316 }
1317
1318 reg->val = res;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001319 reg->size = 1;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001320 return 0;
1321}
1322
Hans Verkuil977ba3b12013-03-24 08:28:46 -03001323static int tvp5150_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001324{
Philipp Zabel28b9e222018-06-28 12:20:35 -04001325 struct tvp5150 *decoder = to_tvp5150(sd);
1326
1327 return regmap_write(decoder->regmap, reg->reg & 0xff, reg->val & 0xff);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001328}
1329#endif
1330
1331static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1332{
1333 int status = tvp5150_read(sd, 0x88);
1334
1335 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
1336 return 0;
1337}
1338
Javier Martinez Canillas5a08bc02016-08-11 13:28:15 -03001339static int tvp5150_registered(struct v4l2_subdev *sd)
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001340{
1341#ifdef CONFIG_MEDIA_CONTROLLER
1342 struct tvp5150 *decoder = to_tvp5150(sd);
1343 int ret = 0;
1344 int i;
1345
1346 for (i = 0; i < TVP5150_INPUT_NUM; i++) {
1347 struct media_entity *input = &decoder->input_ent[i];
1348 struct media_pad *pad = &decoder->input_pad[i];
1349
1350 if (!input->name)
1351 continue;
1352
1353 decoder->input_pad[i].flags = MEDIA_PAD_FL_SOURCE;
1354
1355 ret = media_entity_pads_init(input, 1, pad);
1356 if (ret < 0)
1357 return ret;
1358
1359 ret = media_device_register_entity(sd->v4l2_dev->mdev, input);
1360 if (ret < 0)
1361 return ret;
1362
1363 ret = media_create_pad_link(input, 0, &sd->entity,
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -04001364 TVP5150_PAD_IF_INPUT, 0);
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001365 if (ret < 0) {
1366 media_device_unregister_entity(input);
1367 return ret;
1368 }
1369 }
1370#endif
1371
1372 return 0;
1373}
1374
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001375/* ----------------------------------------------------------------------- */
1376
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001377static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
1378 .s_ctrl = tvp5150_s_ctrl,
1379};
1380
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001381static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1382 .log_status = tvp5150_log_status,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001383 .reset = tvp5150_reset,
1384#ifdef CONFIG_VIDEO_ADV_DEBUG
1385 .g_register = tvp5150_g_register,
1386 .s_register = tvp5150_s_register,
1387#endif
1388};
1389
1390static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001391 .g_tuner = tvp5150_g_tuner,
1392};
1393
1394static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001395 .s_std = tvp5150_s_std,
Marco Felsch0db87cc2018-06-28 12:20:49 -04001396 .g_std = tvp5150_g_std,
Philipp Zabelee9a6ff2018-06-28 12:20:48 -04001397 .querystd = tvp5150_querystd,
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001398 .s_stream = tvp5150_s_stream,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001399 .s_routing = tvp5150_s_routing,
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -02001400 .g_mbus_config = tvp5150_g_mbus_config,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001401};
1402
1403static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001404 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
Hans Verkuild37dad42010-03-14 10:59:16 -03001405 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1406 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1407 .s_raw_fmt = tvp5150_s_raw_fmt,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001408};
1409
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001410static const struct v4l2_subdev_pad_ops tvp5150_pad_ops = {
Philipp Zabelb440b732018-06-28 12:20:40 -04001411 .init_cfg = tvp5150_init_cfg,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001412 .enum_mbus_code = tvp5150_enum_mbus_code,
Laurent Pincharte545ac82016-01-26 10:46:24 -02001413 .enum_frame_size = tvp5150_enum_frame_size,
Hans Verkuilda298c62015-04-09 04:02:34 -03001414 .set_fmt = tvp5150_fill_fmt,
1415 .get_fmt = tvp5150_fill_fmt,
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001416 .get_selection = tvp5150_get_selection,
1417 .set_selection = tvp5150_set_selection,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001418};
1419
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001420static const struct v4l2_subdev_ops tvp5150_ops = {
1421 .core = &tvp5150_core_ops,
1422 .tuner = &tvp5150_tuner_ops,
1423 .video = &tvp5150_video_ops,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001424 .vbi = &tvp5150_vbi_ops,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001425 .pad = &tvp5150_pad_ops,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001426};
1427
Javier Martinez Canillas5a08bc02016-08-11 13:28:15 -03001428static const struct v4l2_subdev_internal_ops tvp5150_internal_ops = {
1429 .registered = tvp5150_registered,
1430};
1431
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001432/****************************************************************************
1433 I2C Client & Driver
1434 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001435
Philipp Zabel28b9e222018-06-28 12:20:35 -04001436static const struct regmap_range tvp5150_readable_ranges[] = {
1437 {
1438 .range_min = TVP5150_VD_IN_SRC_SEL_1,
1439 .range_max = TVP5150_AUTOSW_MSK,
1440 }, {
1441 .range_min = TVP5150_COLOR_KIL_THSH_CTL,
1442 .range_max = TVP5150_CONF_SHARED_PIN,
1443 }, {
1444 .range_min = TVP5150_ACT_VD_CROP_ST_MSB,
1445 .range_max = TVP5150_HORIZ_SYNC_START,
1446 }, {
1447 .range_min = TVP5150_VERT_BLANKING_START,
1448 .range_max = TVP5150_INTT_CONFIG_REG_B,
1449 }, {
1450 .range_min = TVP5150_VIDEO_STD,
1451 .range_max = TVP5150_VIDEO_STD,
1452 }, {
1453 .range_min = TVP5150_CB_GAIN_FACT,
1454 .range_max = TVP5150_REV_SELECT,
1455 }, {
1456 .range_min = TVP5150_MSB_DEV_ID,
1457 .range_max = TVP5150_STATUS_REG_5,
1458 }, {
1459 .range_min = TVP5150_CC_DATA_INI,
1460 .range_max = TVP5150_TELETEXT_FIL_ENA,
1461 }, {
1462 .range_min = TVP5150_INT_STATUS_REG_A,
1463 .range_max = TVP5150_FIFO_OUT_CTRL,
1464 }, {
1465 .range_min = TVP5150_FULL_FIELD_ENA,
1466 .range_max = TVP5150_FULL_FIELD_MODE_REG,
1467 },
1468};
1469
1470bool tvp5150_volatile_reg(struct device *dev, unsigned int reg)
1471{
1472 switch (reg) {
1473 case TVP5150_VERT_LN_COUNT_MSB:
1474 case TVP5150_VERT_LN_COUNT_LSB:
1475 case TVP5150_INT_STATUS_REG_A:
1476 case TVP5150_INT_STATUS_REG_B:
1477 case TVP5150_INT_ACTIVE_REG_B:
1478 case TVP5150_STATUS_REG_1:
1479 case TVP5150_STATUS_REG_2:
1480 case TVP5150_STATUS_REG_3:
1481 case TVP5150_STATUS_REG_4:
1482 case TVP5150_STATUS_REG_5:
1483 /* CC, WSS, VPS, VITC data? */
1484 case TVP5150_VBI_FIFO_READ_DATA:
1485 case TVP5150_VDP_STATUS_REG:
1486 case TVP5150_FIFO_WORD_COUNT:
1487 return true;
1488 default:
1489 return false;
1490 }
1491}
1492
1493static const struct regmap_access_table tvp5150_readable_table = {
1494 .yes_ranges = tvp5150_readable_ranges,
1495 .n_yes_ranges = ARRAY_SIZE(tvp5150_readable_ranges),
1496};
1497
1498static struct regmap_config tvp5150_config = {
1499 .reg_bits = 8,
1500 .val_bits = 8,
1501 .max_register = 0xff,
1502
1503 .cache_type = REGCACHE_RBTREE,
1504
1505 .rd_table = &tvp5150_readable_table,
1506 .volatile_reg = tvp5150_volatile_reg,
1507};
1508
Laurent Pinchart78715972016-01-07 10:46:41 -02001509static int tvp5150_detect_version(struct tvp5150 *core)
1510{
1511 struct v4l2_subdev *sd = &core->sd;
1512 struct i2c_client *c = v4l2_get_subdevdata(sd);
Laurent Pinchart78715972016-01-07 10:46:41 -02001513 u8 regs[4];
1514 int res;
1515
1516 /*
1517 * Read consequent registers - TVP5150_MSB_DEV_ID, TVP5150_LSB_DEV_ID,
1518 * TVP5150_ROM_MAJOR_VER, TVP5150_ROM_MINOR_VER
1519 */
Philipp Zabel28b9e222018-06-28 12:20:35 -04001520 res = regmap_bulk_read(core->regmap, TVP5150_MSB_DEV_ID, regs, 4);
1521 if (res < 0) {
1522 dev_err(&c->dev, "reading ID registers failed: %d\n", res);
1523 return res;
Laurent Pinchart78715972016-01-07 10:46:41 -02001524 }
1525
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001526 core->dev_id = (regs[0] << 8) | regs[1];
1527 core->rom_ver = (regs[2] << 8) | regs[3];
Laurent Pinchart78715972016-01-07 10:46:41 -02001528
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001529 dev_info(sd->dev, "tvp%04x (%u.%u) chip found @ 0x%02x (%s)\n",
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001530 core->dev_id, regs[2], regs[3], c->addr << 1,
1531 c->adapter->name);
Laurent Pinchart78715972016-01-07 10:46:41 -02001532
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001533 if (core->dev_id == 0x5150 && core->rom_ver == 0x0321) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001534 dev_info(sd->dev, "tvp5150a detected.\n");
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001535 } else if (core->dev_id == 0x5150 && core->rom_ver == 0x0400) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001536 dev_info(sd->dev, "tvp5150am1 detected.\n");
Laurent Pinchart78715972016-01-07 10:46:41 -02001537
1538 /* ITU-T BT.656.4 timing */
Philipp Zabel28b9e222018-06-28 12:20:35 -04001539 regmap_write(core->regmap, TVP5150_REV_SELECT, 0);
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001540 } else if (core->dev_id == 0x5151 && core->rom_ver == 0x0100) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001541 dev_info(sd->dev, "tvp5151 detected.\n");
Laurent Pinchart78715972016-01-07 10:46:41 -02001542 } else {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001543 dev_info(sd->dev, "*** unknown tvp%04x chip detected.\n",
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001544 core->dev_id);
Laurent Pinchart78715972016-01-07 10:46:41 -02001545 }
1546
1547 return 0;
1548}
1549
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02001550static int tvp5150_init(struct i2c_client *c)
1551{
1552 struct gpio_desc *pdn_gpio;
1553 struct gpio_desc *reset_gpio;
1554
1555 pdn_gpio = devm_gpiod_get_optional(&c->dev, "pdn", GPIOD_OUT_HIGH);
1556 if (IS_ERR(pdn_gpio))
1557 return PTR_ERR(pdn_gpio);
1558
1559 if (pdn_gpio) {
1560 gpiod_set_value_cansleep(pdn_gpio, 0);
1561 /* Delay time between power supplies active and reset */
1562 msleep(20);
1563 }
1564
1565 reset_gpio = devm_gpiod_get_optional(&c->dev, "reset", GPIOD_OUT_HIGH);
1566 if (IS_ERR(reset_gpio))
1567 return PTR_ERR(reset_gpio);
1568
1569 if (reset_gpio) {
1570 /* RESETB pulse duration */
1571 ndelay(500);
1572 gpiod_set_value_cansleep(reset_gpio, 0);
1573 /* Delay time between end of reset to I2C active */
1574 usleep_range(200, 250);
1575 }
1576
1577 return 0;
1578}
1579
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001580static int tvp5150_parse_dt(struct tvp5150 *decoder, struct device_node *np)
1581{
Sakari Ailus859969b2016-08-26 20:17:25 -03001582 struct v4l2_fwnode_endpoint bus_cfg;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001583 struct device_node *ep;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001584#ifdef CONFIG_MEDIA_CONTROLLER
1585 struct device_node *connectors, *child;
1586 struct media_entity *input;
1587 const char *name;
1588 u32 input_type;
1589#endif
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001590 unsigned int flags;
1591 int ret = 0;
1592
1593 ep = of_graph_get_next_endpoint(np, NULL);
1594 if (!ep)
1595 return -EINVAL;
1596
Sakari Ailus859969b2016-08-26 20:17:25 -03001597 ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(ep), &bus_cfg);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001598 if (ret)
1599 goto err;
1600
1601 flags = bus_cfg.bus.parallel.flags;
1602
1603 if (bus_cfg.bus_type == V4L2_MBUS_PARALLEL &&
1604 !(flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH &&
1605 flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH &&
Javier Martinez Canillas2bd5e432016-02-05 17:09:53 -02001606 flags & V4L2_MBUS_FIELD_EVEN_LOW)) {
1607 ret = -EINVAL;
1608 goto err;
1609 }
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001610
1611 decoder->mbus_type = bus_cfg.bus_type;
1612
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001613#ifdef CONFIG_MEDIA_CONTROLLER
1614 connectors = of_get_child_by_name(np, "connectors");
1615
1616 if (!connectors)
1617 goto err;
1618
1619 for_each_available_child_of_node(connectors, child) {
1620 ret = of_property_read_u32(child, "input", &input_type);
1621 if (ret) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001622 dev_err(decoder->sd.dev,
Rob Herringf764e6d2018-08-27 21:52:29 -04001623 "missing type property in node %pOFn\n",
1624 child);
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001625 goto err_connector;
1626 }
1627
Mauro Carvalho Chehab60ad7682016-02-19 15:02:30 -02001628 if (input_type >= TVP5150_INPUT_NUM) {
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001629 ret = -EINVAL;
1630 goto err_connector;
1631 }
1632
1633 input = &decoder->input_ent[input_type];
1634
1635 /* Each input connector can only be defined once */
1636 if (input->name) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001637 dev_err(decoder->sd.dev,
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001638 "input %s with same type already exists\n",
1639 input->name);
1640 ret = -EINVAL;
1641 goto err_connector;
1642 }
1643
1644 switch (input_type) {
1645 case TVP5150_COMPOSITE0:
1646 case TVP5150_COMPOSITE1:
1647 input->function = MEDIA_ENT_F_CONN_COMPOSITE;
1648 break;
1649 case TVP5150_SVIDEO:
1650 input->function = MEDIA_ENT_F_CONN_SVIDEO;
1651 break;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001652 }
1653
1654 input->flags = MEDIA_ENT_FL_CONNECTOR;
1655
1656 ret = of_property_read_string(child, "label", &name);
1657 if (ret < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001658 dev_err(decoder->sd.dev,
Rob Herringf764e6d2018-08-27 21:52:29 -04001659 "missing label property in node %pOFn\n",
1660 child);
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001661 goto err_connector;
1662 }
1663
1664 input->name = name;
1665 }
1666
1667err_connector:
1668 of_node_put(connectors);
1669#endif
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001670err:
1671 of_node_put(ep);
1672 return ret;
1673}
1674
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001675static const char * const tvp5150_test_patterns[2] = {
1676 "Disabled",
1677 "Black screen"
1678};
1679
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001680static int tvp5150_probe(struct i2c_client *c,
1681 const struct i2c_device_id *id)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001682{
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001683 struct tvp5150 *core;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001684 struct v4l2_subdev *sd;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001685 struct device_node *np = c->dev.of_node;
Philipp Zabel28b9e222018-06-28 12:20:35 -04001686 struct regmap *map;
Laurent Pinchart78715972016-01-07 10:46:41 -02001687 int res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001688
1689 /* Check if the adapter supports the needed features */
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001690 if (!i2c_check_functionality(c->adapter,
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001691 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001692 return -EIO;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001693
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02001694 res = tvp5150_init(c);
1695 if (res)
1696 return res;
1697
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001698 core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL);
1699 if (!core)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001700 return -ENOMEM;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001701
Philipp Zabel28b9e222018-06-28 12:20:35 -04001702 map = devm_regmap_init_i2c(c, &tvp5150_config);
1703 if (IS_ERR(map))
1704 return PTR_ERR(map);
1705
1706 core->regmap = map;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001707 sd = &core->sd;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001708
1709 if (IS_ENABLED(CONFIG_OF) && np) {
1710 res = tvp5150_parse_dt(core, np);
1711 if (res) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001712 dev_err(sd->dev, "DT parsing error: %d\n", res);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001713 return res;
1714 }
1715 } else {
1716 /* Default to BT.656 embedded sync */
1717 core->mbus_type = V4L2_MBUS_BT656;
1718 }
1719
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001720 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
Javier Martinez Canillas5a08bc02016-08-11 13:28:15 -03001721 sd->internal_ops = &tvp5150_internal_ops;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001722 sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1723
1724#if defined(CONFIG_MEDIA_CONTROLLER)
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -04001725 core->pads[TVP5150_PAD_IF_INPUT].flags = MEDIA_PAD_FL_SINK;
1726 core->pads[TVP5150_PAD_IF_INPUT].sig_type = PAD_SIGNAL_ANALOG;
1727 core->pads[TVP5150_PAD_VID_OUT].flags = MEDIA_PAD_FL_SOURCE;
1728 core->pads[TVP5150_PAD_VID_OUT].sig_type = PAD_SIGNAL_DV;
Mauro Carvalho Chehabf92c70a2016-01-27 15:09:15 -02001729
1730 sd->entity.function = MEDIA_ENT_F_ATV_DECODER;
1731
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -04001732 res = media_entity_pads_init(&sd->entity, TVP5150_NUM_PADS, core->pads);
Laurent Pincharte545ac82016-01-26 10:46:24 -02001733 if (res < 0)
1734 return res;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001735
1736 sd->entity.ops = &tvp5150_sd_media_ops;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001737#endif
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001738
Laurent Pinchart78715972016-01-07 10:46:41 -02001739 res = tvp5150_detect_version(core);
1740 if (res < 0)
1741 return res;
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001742
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -02001743 core->norm = V4L2_STD_ALL; /* Default is autodetect */
Philipp Zabelb440b732018-06-28 12:20:40 -04001744 core->detected_norm = V4L2_STD_UNKNOWN;
Hans Verkuil5325b422009-04-02 11:26:22 -03001745 core->input = TVP5150_COMPOSITE1;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001746 core->enable = true;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001747
Laurent Pinchartb1950b82016-01-07 10:46:44 -02001748 v4l2_ctrl_handler_init(&core->hdl, 5);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001749 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1750 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
1751 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1752 V4L2_CID_CONTRAST, 0, 255, 1, 128);
1753 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1754 V4L2_CID_SATURATION, 0, 255, 1, 128);
1755 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1756 V4L2_CID_HUE, -128, 127, 1, 0);
Laurent Pinchartb1950b82016-01-07 10:46:44 -02001757 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1758 V4L2_CID_PIXEL_RATE, 27000000,
1759 27000000, 1, 27000000);
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001760 v4l2_ctrl_new_std_menu_items(&core->hdl, &tvp5150_ctrl_ops,
1761 V4L2_CID_TEST_PATTERN,
Mauro Carvalho Chehab5c4c4502018-09-13 16:49:51 -04001762 ARRAY_SIZE(tvp5150_test_patterns) - 1,
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001763 0, 0, tvp5150_test_patterns);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001764 sd->ctrl_handler = &core->hdl;
1765 if (core->hdl.error) {
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001766 res = core->hdl.error;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001767 goto err;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001768 }
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001769
Marco Felsch5cb82942018-06-28 12:20:39 -04001770 tvp5150_set_default(tvp5150_read_std(sd), &core->rect);
Javier Martin963ddc62012-01-31 05:23:46 -03001771
Philipp Zabel8e4c97e2018-06-28 12:20:44 -04001772 core->irq = c->irq;
Laurent Pinchartaff808e2016-12-09 09:47:17 -02001773 tvp5150_reset(sd, 0); /* Calls v4l2_ctrl_handler_setup() */
Philipp Zabel8e4c97e2018-06-28 12:20:44 -04001774 if (c->irq) {
1775 res = devm_request_threaded_irq(&c->dev, c->irq, NULL,
1776 tvp5150_isr, IRQF_TRIGGER_HIGH |
1777 IRQF_ONESHOT, "tvp5150", core);
1778 if (res)
1779 return res;
1780 } else {
1781 core->lock = true;
1782 }
Laurent Pinchartaff808e2016-12-09 09:47:17 -02001783
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001784 res = v4l2_async_register_subdev(sd);
1785 if (res < 0)
1786 goto err;
1787
Markus Rechbergerf1e5ee42006-02-07 04:01:19 +01001788 if (debug > 1)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001789 tvp5150_log_status(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001790 return 0;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001791
1792err:
1793 v4l2_ctrl_handler_free(&core->hdl);
1794 return res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001795}
1796
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001797static int tvp5150_remove(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001798{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001799 struct v4l2_subdev *sd = i2c_get_clientdata(c);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001800 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001801
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001802 dev_dbg_lvl(sd->dev, 1, debug,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -02001803 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1804 c->addr << 1);
1805
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001806 v4l2_async_unregister_subdev(sd);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001807 v4l2_ctrl_handler_free(&decoder->hdl);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001808 return 0;
1809}
1810
1811/* ----------------------------------------------------------------------- */
1812
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001813static const struct i2c_device_id tvp5150_id[] = {
1814 { "tvp5150", 0 },
1815 { }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001816};
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001817MODULE_DEVICE_TABLE(i2c, tvp5150_id);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001818
Eduard Gavin7ef930a2016-01-07 10:46:48 -02001819#if IS_ENABLED(CONFIG_OF)
1820static const struct of_device_id tvp5150_of_match[] = {
1821 { .compatible = "ti,tvp5150", },
1822 { /* sentinel */ },
1823};
1824MODULE_DEVICE_TABLE(of, tvp5150_of_match);
1825#endif
1826
Hans Verkuilc7711452010-09-15 15:45:20 -03001827static struct i2c_driver tvp5150_driver = {
1828 .driver = {
Eduard Gavin7ef930a2016-01-07 10:46:48 -02001829 .of_match_table = of_match_ptr(tvp5150_of_match),
Hans Verkuilc7711452010-09-15 15:45:20 -03001830 .name = "tvp5150",
1831 },
1832 .probe = tvp5150_probe,
1833 .remove = tvp5150_remove,
1834 .id_table = tvp5150_id,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001835};
Hans Verkuilc7711452010-09-15 15:45:20 -03001836
Axel Linc6e8d862012-02-12 06:56:32 -03001837module_i2c_driver(tvp5150_driver);