blob: 4b16ffcaef98aed38a2a003c5e6fe5e632cfe32e [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>
Marco Felsch73549a62020-03-12 11:31:50 +010016#include <linux/pm_runtime.h>
Philipp Zabel28b9e222018-06-28 12:20:35 -040017#include <linux/regmap.h>
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -030018#include <media/v4l2-async.h>
Hans Verkuil6b8fe022008-12-18 11:17:25 -030019#include <media/v4l2-device.h>
Marco Felsche953c102020-03-12 11:31:51 +010020#include <media/v4l2-event.h>
Hans Verkuil6c45ec72010-12-12 08:45:43 -030021#include <media/v4l2-ctrls.h>
Sakari Ailus859969b2016-08-26 20:17:25 -030022#include <media/v4l2-fwnode.h>
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020023#include <media/v4l2-mc.h>
Marco Felsch46fe6e72020-03-12 11:31:48 +010024#include <media/v4l2-rect.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080025
26#include "tvp5150_reg.h"
27
Philipp Zabel785a3de2014-02-27 13:44:47 -030028#define TVP5150_H_MAX 720U
29#define TVP5150_V_MAX_525_60 480U
30#define TVP5150_V_MAX_OTHERS 576U
Javier Martin963ddc62012-01-31 05:23:46 -030031#define TVP5150_MAX_CROP_LEFT 511
32#define TVP5150_MAX_CROP_TOP 127
33#define TVP5150_CROP_SHIFT 2
Marco Felsch5cb82942018-06-28 12:20:39 -040034#define TVP5150_MBUS_FMT MEDIA_BUS_FMT_UYVY8_2X8
35#define TVP5150_FIELD V4L2_FIELD_ALTERNATE
36#define TVP5150_COLORSPACE V4L2_COLORSPACE_SMPTE170M
Marco Felschbaf17822020-03-12 11:31:55 +010037#define TVP5150_STD_MASK (V4L2_STD_NTSC | \
38 V4L2_STD_NTSC_443 | \
39 V4L2_STD_PAL | \
40 V4L2_STD_PAL_M | \
41 V4L2_STD_PAL_N | \
42 V4L2_STD_PAL_Nc | \
43 V4L2_STD_SECAM)
Javier Martin963ddc62012-01-31 05:23:46 -030044
Marco Felsch0556f1d2020-03-12 11:31:45 +010045#define TVP5150_MAX_CONNECTORS 3 /* Check dt-bindings for more information */
46
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -020047MODULE_DESCRIPTION("Texas Instruments TVP5150A/TVP5150AM1/TVP5151 video decoder driver");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080048MODULE_AUTHOR("Mauro Carvalho Chehab");
Mauro Carvalho Chehab459ee172017-12-01 08:47:12 -050049MODULE_LICENSE("GPL v2");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080050
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080051
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030052static int debug;
Philipp Zabel2a0489d2014-02-27 13:44:48 -030053module_param(debug, int, 0644);
Hans Verkuil6b8fe022008-12-18 11:17:25 -030054MODULE_PARM_DESC(debug, "Debug level (0-2)");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080055
Mauro Carvalho Chehabad0e3742016-11-13 05:34:12 -020056#define dprintk0(__dev, __arg...) dev_dbg_lvl(__dev, 0, 0, __arg)
57
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -040058enum tvp5150_pads {
Marco Felsch0556f1d2020-03-12 11:31:45 +010059 TVP5150_PAD_AIP1A,
60 TVP5150_PAD_AIP1B,
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -040061 TVP5150_PAD_VID_OUT,
62 TVP5150_NUM_PADS
63};
64
Marco Felsch0556f1d2020-03-12 11:31:45 +010065struct tvp5150_connector {
66 struct v4l2_fwnode_connector base;
67 struct media_entity ent;
68 struct media_pad pad;
69};
70
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080071struct tvp5150 {
Hans Verkuil6b8fe022008-12-18 11:17:25 -030072 struct v4l2_subdev sd;
Marco Felsch0556f1d2020-03-12 11:31:45 +010073
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -040074 struct media_pad pads[TVP5150_NUM_PADS];
Marco Felsch0556f1d2020-03-12 11:31:45 +010075 struct tvp5150_connector connectors[TVP5150_MAX_CONNECTORS];
Marco Felschbaf17822020-03-12 11:31:55 +010076 struct tvp5150_connector *cur_connector;
Marco Felsch0556f1d2020-03-12 11:31:45 +010077 unsigned int connectors_num;
78
Hans Verkuil6c45ec72010-12-12 08:45:43 -030079 struct v4l2_ctrl_handler hdl;
Javier Martin963ddc62012-01-31 05:23:46 -030080 struct v4l2_rect rect;
Philipp Zabel28b9e222018-06-28 12:20:35 -040081 struct regmap *regmap;
Philipp Zabel8e4c97e2018-06-28 12:20:44 -040082 int irq;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080083
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020084 v4l2_std_id norm; /* Current set standard */
Philipp Zabelb440b732018-06-28 12:20:40 -040085 v4l2_std_id detected_norm;
Hans Verkuil5325b422009-04-02 11:26:22 -030086 u32 input;
87 u32 output;
Philipp Zabel62a764e2018-06-28 12:20:45 -040088 u32 oe;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080089 int enable;
Philipp Zabel8e4c97e2018-06-28 12:20:44 -040090 bool lock;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020091
Javier Martinez Canillas82275132016-02-05 17:09:54 -020092 u16 dev_id;
93 u16 rom_ver;
94
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020095 enum v4l2_mbus_type mbus_type;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080096};
97
Hans Verkuil6b8fe022008-12-18 11:17:25 -030098static inline struct tvp5150 *to_tvp5150(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080099{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300100 return container_of(sd, struct tvp5150, sd);
101}
102
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300103static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
104{
105 return &container_of(ctrl->handler, struct tvp5150, hdl)->sd;
106}
107
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300108static int tvp5150_read(struct v4l2_subdev *sd, unsigned char addr)
109{
Philipp Zabel28b9e222018-06-28 12:20:35 -0400110 struct tvp5150 *decoder = to_tvp5150(sd);
111 int ret, val;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800112
Philipp Zabel28b9e222018-06-28 12:20:35 -0400113 ret = regmap_read(decoder->regmap, addr, &val);
114 if (ret < 0)
115 return ret;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200116
Philipp Zabel28b9e222018-06-28 12:20:35 -0400117 return val;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800118}
119
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300120static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
121 const u8 end, int max_line)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200122{
Mauro Carvalho Chehabe5134112016-10-20 11:36:42 -0200123 u8 buf[16];
124 int i = 0, j, len;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200125
Mauro Carvalho Chehabe5134112016-10-20 11:36:42 -0200126 if (max_line > 16) {
127 dprintk0(sd->dev, "too much data to dump\n");
128 return;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200129 }
Mauro Carvalho Chehabe5134112016-10-20 11:36:42 -0200130
131 for (i = init; i < end; i += max_line) {
132 len = (end - i > max_line) ? max_line : end - i;
133
134 for (j = 0; j < len; j++)
135 buf[j] = tvp5150_read(sd, i + j);
136
137 dprintk0(sd->dev, "%s reg %02x = %*ph\n", s, i, len, buf);
138 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200139}
140
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300141static int tvp5150_log_status(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800142{
Mauro Carvalho Chehabad0e3742016-11-13 05:34:12 -0200143 dprintk0(sd->dev, "tvp5150: Video input source selection #1 = 0x%02x\n",
144 tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
145 dprintk0(sd->dev, "tvp5150: Analog channel controls = 0x%02x\n",
146 tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
147 dprintk0(sd->dev, "tvp5150: Operation mode controls = 0x%02x\n",
148 tvp5150_read(sd, TVP5150_OP_MODE_CTL));
149 dprintk0(sd->dev, "tvp5150: Miscellaneous controls = 0x%02x\n",
150 tvp5150_read(sd, TVP5150_MISC_CTL));
151 dprintk0(sd->dev, "tvp5150: Autoswitch mask= 0x%02x\n",
152 tvp5150_read(sd, TVP5150_AUTOSW_MSK));
153 dprintk0(sd->dev, "tvp5150: Color killer threshold control = 0x%02x\n",
154 tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
155 dprintk0(sd->dev, "tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
156 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
157 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
158 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
159 dprintk0(sd->dev, "tvp5150: Brightness control = 0x%02x\n",
160 tvp5150_read(sd, TVP5150_BRIGHT_CTL));
161 dprintk0(sd->dev, "tvp5150: Color saturation control = 0x%02x\n",
162 tvp5150_read(sd, TVP5150_SATURATION_CTL));
163 dprintk0(sd->dev, "tvp5150: Hue control = 0x%02x\n",
164 tvp5150_read(sd, TVP5150_HUE_CTL));
165 dprintk0(sd->dev, "tvp5150: Contrast control = 0x%02x\n",
166 tvp5150_read(sd, TVP5150_CONTRAST_CTL));
167 dprintk0(sd->dev, "tvp5150: Outputs and data rates select = 0x%02x\n",
168 tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
169 dprintk0(sd->dev, "tvp5150: Configuration shared pins = 0x%02x\n",
170 tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
171 dprintk0(sd->dev, "tvp5150: Active video cropping start = 0x%02x%02x\n",
172 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
173 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
174 dprintk0(sd->dev, "tvp5150: Active video cropping stop = 0x%02x%02x\n",
175 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
176 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
177 dprintk0(sd->dev, "tvp5150: Genlock/RTC = 0x%02x\n",
178 tvp5150_read(sd, TVP5150_GENLOCK));
179 dprintk0(sd->dev, "tvp5150: Horizontal sync start = 0x%02x\n",
180 tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
181 dprintk0(sd->dev, "tvp5150: Vertical blanking start = 0x%02x\n",
182 tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
183 dprintk0(sd->dev, "tvp5150: Vertical blanking stop = 0x%02x\n",
184 tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
185 dprintk0(sd->dev, "tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
186 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
187 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
188 dprintk0(sd->dev, "tvp5150: Interrupt reset register B = 0x%02x\n",
189 tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
190 dprintk0(sd->dev, "tvp5150: Interrupt enable register B = 0x%02x\n",
191 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
192 dprintk0(sd->dev, "tvp5150: Interrupt configuration register B = 0x%02x\n",
193 tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
194 dprintk0(sd->dev, "tvp5150: Video standard = 0x%02x\n",
195 tvp5150_read(sd, TVP5150_VIDEO_STD));
196 dprintk0(sd->dev, "tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
197 tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
198 tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
199 dprintk0(sd->dev, "tvp5150: Macrovision on counter = 0x%02x\n",
200 tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
201 dprintk0(sd->dev, "tvp5150: Macrovision off counter = 0x%02x\n",
202 tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
203 dprintk0(sd->dev, "tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
204 (tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
205 dprintk0(sd->dev, "tvp5150: Device ID = %02x%02x\n",
206 tvp5150_read(sd, TVP5150_MSB_DEV_ID),
207 tvp5150_read(sd, TVP5150_LSB_DEV_ID));
208 dprintk0(sd->dev, "tvp5150: ROM version = (hex) %02x.%02x\n",
209 tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
210 tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
211 dprintk0(sd->dev, "tvp5150: Vertical line count = 0x%02x%02x\n",
212 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
213 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
214 dprintk0(sd->dev, "tvp5150: Interrupt status register B = 0x%02x\n",
215 tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
216 dprintk0(sd->dev, "tvp5150: Interrupt active register B = 0x%02x\n",
217 tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
218 dprintk0(sd->dev, "tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
219 tvp5150_read(sd, TVP5150_STATUS_REG_1),
220 tvp5150_read(sd, TVP5150_STATUS_REG_2),
221 tvp5150_read(sd, TVP5150_STATUS_REG_3),
222 tvp5150_read(sd, TVP5150_STATUS_REG_4),
223 tvp5150_read(sd, TVP5150_STATUS_REG_5));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200224
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300225 dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
226 TVP5150_TELETEXT_FIL1_END, 8);
227 dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
228 TVP5150_TELETEXT_FIL2_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200229
Mauro Carvalho Chehabad0e3742016-11-13 05:34:12 -0200230 dprintk0(sd->dev, "tvp5150: Teletext filter enable = 0x%02x\n",
231 tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
232 dprintk0(sd->dev, "tvp5150: Interrupt status register A = 0x%02x\n",
233 tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
234 dprintk0(sd->dev, "tvp5150: Interrupt enable register A = 0x%02x\n",
235 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
236 dprintk0(sd->dev, "tvp5150: Interrupt configuration = 0x%02x\n",
237 tvp5150_read(sd, TVP5150_INT_CONF));
238 dprintk0(sd->dev, "tvp5150: VDP status register = 0x%02x\n",
239 tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
240 dprintk0(sd->dev, "tvp5150: FIFO word count = 0x%02x\n",
241 tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
242 dprintk0(sd->dev, "tvp5150: FIFO interrupt threshold = 0x%02x\n",
243 tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
244 dprintk0(sd->dev, "tvp5150: FIFO reset = 0x%02x\n",
245 tvp5150_read(sd, TVP5150_FIFO_RESET));
246 dprintk0(sd->dev, "tvp5150: Line number interrupt = 0x%02x\n",
247 tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
248 dprintk0(sd->dev, "tvp5150: Pixel alignment register = 0x%02x%02x\n",
249 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
250 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
251 dprintk0(sd->dev, "tvp5150: FIFO output control = 0x%02x\n",
252 tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
253 dprintk0(sd->dev, "tvp5150: Full field enable = 0x%02x\n",
254 tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
255 dprintk0(sd->dev, "tvp5150: Full field mode register = 0x%02x\n",
256 tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200257
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300258 dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
259 TVP5150_CC_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200260
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300261 dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
262 TVP5150_WSS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200263
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300264 dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
265 TVP5150_VPS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200266
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300267 dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
268 TVP5150_VITC_DATA_END, 10);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200269
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300270 dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
271 TVP5150_LINE_MODE_END, 8);
272 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800273}
274
275/****************************************************************************
276 Basic functions
277 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800278
Laurent Pinchart6e98bee2016-12-08 20:22:42 -0200279static void tvp5150_selmux(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800280{
Paul Walmsley2962fc02010-10-09 01:31:40 -0300281 int opmode = 0;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300282 struct tvp5150 *decoder = to_tvp5150(sd);
Marco Felsch8a7441b2018-06-28 12:20:36 -0400283 unsigned int mask, val;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300284 int input = 0;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800285
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200286 /* Only tvp5150am1 and tvp5151 have signal generator support */
287 if ((decoder->dev_id == 0x5150 && decoder->rom_ver == 0x0400) ||
288 (decoder->dev_id == 0x5151 && decoder->rom_ver == 0x0100)) {
289 if (!decoder->enable)
290 input = 8;
291 }
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800292
Hans Verkuil5325b422009-04-02 11:26:22 -0300293 switch (decoder->input) {
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300294 case TVP5150_COMPOSITE1:
295 input |= 2;
Gustavo A. R. Silva1771e9f2020-07-25 00:10:14 +0200296 fallthrough;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300297 case TVP5150_COMPOSITE0:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200298 break;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300299 case TVP5150_SVIDEO:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200300 default:
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300301 input |= 1;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200302 break;
303 }
304
Marco Felsch430f35b2020-03-12 11:31:56 +0100305 dev_dbg_lvl(sd->dev, 1, debug,
306 "Selecting video route: route input=%s, output=%s => tvp5150 input=0x%02x, opmode=0x%02x\n",
307 decoder->input == 0 ? "aip1a" :
308 decoder->input == 2 ? "aip1b" : "svideo",
309 decoder->output == 0 ? "normal" : "black-frame-gen",
310 input, opmode);
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300311
Philipp Zabel28b9e222018-06-28 12:20:35 -0400312 regmap_write(decoder->regmap, TVP5150_OP_MODE_CTL, opmode);
313 regmap_write(decoder->regmap, TVP5150_VD_IN_SRC_SEL_1, input);
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300314
Laurent Pinchartb4b2de32016-12-09 09:47:18 -0200315 /*
316 * Setup the FID/GLCO/VLK/HVLK and INTREQ/GPCL/VBLK output signals. For
317 * S-Video we output the vertical lock (VLK) signal on FID/GLCO/VLK/HVLK
318 * and set INTREQ/GPCL/VBLK to logic 0. For composite we output the
319 * field indicator (FID) signal on FID/GLCO/VLK/HVLK and set
320 * INTREQ/GPCL/VBLK to logic 1.
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300321 */
Marco Felsch8a7441b2018-06-28 12:20:36 -0400322 mask = TVP5150_MISC_CTL_GPCL | TVP5150_MISC_CTL_HVLK;
Hans Verkuil5325b422009-04-02 11:26:22 -0300323 if (decoder->input == TVP5150_SVIDEO)
Marco Felsch8a7441b2018-06-28 12:20:36 -0400324 val = TVP5150_MISC_CTL_HVLK;
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300325 else
Marco Felsch8a7441b2018-06-28 12:20:36 -0400326 val = TVP5150_MISC_CTL_GPCL;
327 regmap_update_bits(decoder->regmap, TVP5150_MISC_CTL, mask, val);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800328};
329
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200330struct i2c_reg_value {
331 unsigned char reg;
332 unsigned char value;
333};
334
335/* Default values as sugested at TVP5150AM1 datasheet */
336static const struct i2c_reg_value tvp5150_init_default[] = {
337 { /* 0x00 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400338 TVP5150_VD_IN_SRC_SEL_1, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200339 },
340 { /* 0x01 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400341 TVP5150_ANAL_CHL_CTL, 0x15
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200342 },
343 { /* 0x02 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400344 TVP5150_OP_MODE_CTL, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200345 },
346 { /* 0x03 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400347 TVP5150_MISC_CTL, 0x01
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200348 },
349 { /* 0x06 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400350 TVP5150_COLOR_KIL_THSH_CTL, 0x10
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200351 },
352 { /* 0x07 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400353 TVP5150_LUMA_PROC_CTL_1, 0x60
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200354 },
355 { /* 0x08 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400356 TVP5150_LUMA_PROC_CTL_2, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200357 },
358 { /* 0x09 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400359 TVP5150_BRIGHT_CTL, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200360 },
361 { /* 0x0a */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400362 TVP5150_SATURATION_CTL, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200363 },
364 { /* 0x0b */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400365 TVP5150_HUE_CTL, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200366 },
367 { /* 0x0c */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400368 TVP5150_CONTRAST_CTL, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200369 },
370 { /* 0x0d */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400371 TVP5150_DATA_RATE_SEL, 0x47
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200372 },
373 { /* 0x0e */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400374 TVP5150_LUMA_PROC_CTL_3, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200375 },
376 { /* 0x0f */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400377 TVP5150_CONF_SHARED_PIN, 0x08
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200378 },
379 { /* 0x11 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400380 TVP5150_ACT_VD_CROP_ST_MSB, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200381 },
382 { /* 0x12 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400383 TVP5150_ACT_VD_CROP_ST_LSB, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200384 },
385 { /* 0x13 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400386 TVP5150_ACT_VD_CROP_STP_MSB, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200387 },
388 { /* 0x14 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400389 TVP5150_ACT_VD_CROP_STP_LSB, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200390 },
391 { /* 0x15 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400392 TVP5150_GENLOCK, 0x01
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200393 },
394 { /* 0x16 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400395 TVP5150_HORIZ_SYNC_START, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200396 },
397 { /* 0x18 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400398 TVP5150_VERT_BLANKING_START, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200399 },
400 { /* 0x19 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400401 TVP5150_VERT_BLANKING_STOP, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200402 },
403 { /* 0x1a */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400404 TVP5150_CHROMA_PROC_CTL_1, 0x0c
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200405 },
406 { /* 0x1b */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400407 TVP5150_CHROMA_PROC_CTL_2, 0x14
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200408 },
409 { /* 0x1c */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400410 TVP5150_INT_RESET_REG_B, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200411 },
412 { /* 0x1d */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400413 TVP5150_INT_ENABLE_REG_B, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200414 },
415 { /* 0x1e */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400416 TVP5150_INTT_CONFIG_REG_B, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200417 },
418 { /* 0x28 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400419 TVP5150_VIDEO_STD, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200420 },
421 { /* 0x2e */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400422 TVP5150_MACROVISION_ON_CTR, 0x0f
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200423 },
424 { /* 0x2f */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400425 TVP5150_MACROVISION_OFF_CTR, 0x01
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200426 },
427 { /* 0xbb */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400428 TVP5150_TELETEXT_FIL_ENA, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200429 },
430 { /* 0xc0 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400431 TVP5150_INT_STATUS_REG_A, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200432 },
433 { /* 0xc1 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400434 TVP5150_INT_ENABLE_REG_A, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200435 },
436 { /* 0xc2 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400437 TVP5150_INT_CONF, 0x04
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200438 },
439 { /* 0xc8 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400440 TVP5150_FIFO_INT_THRESHOLD, 0x80
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200441 },
442 { /* 0xc9 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400443 TVP5150_FIFO_RESET, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200444 },
445 { /* 0xca */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400446 TVP5150_LINE_NUMBER_INT, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200447 },
448 { /* 0xcb */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400449 TVP5150_PIX_ALIGN_REG_LOW, 0x4e
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200450 },
451 { /* 0xcc */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400452 TVP5150_PIX_ALIGN_REG_HIGH, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200453 },
454 { /* 0xcd */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400455 TVP5150_FIFO_OUT_CTRL, 0x01
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200456 },
457 { /* 0xcf */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400458 TVP5150_FULL_FIELD_ENA, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200459 },
460 { /* 0xd0 */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400461 TVP5150_LINE_MODE_INI, 0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200462 },
463 { /* 0xfc */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400464 TVP5150_FULL_FIELD_MODE_REG, 0x7f
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200465 },
466 { /* end of data */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400467 0xff, 0xff
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200468 }
469};
470
471/* Default values as sugested at TVP5150AM1 datasheet */
472static const struct i2c_reg_value tvp5150_init_enable[] = {
Philipp Zabel8105e1b2018-06-28 12:20:43 -0400473 { /* Automatic offset and AGC enabled */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200474 TVP5150_ANAL_CHL_CTL, 0x15
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400475 }, { /* Activate YCrCb output 0x9 or 0xd ? */
Laurent Pinchartb4b2de32016-12-09 09:47:18 -0200476 TVP5150_MISC_CTL, TVP5150_MISC_CTL_GPCL |
477 TVP5150_MISC_CTL_INTREQ_OE |
478 TVP5150_MISC_CTL_YCBCR_OE |
479 TVP5150_MISC_CTL_SYNC_OE |
480 TVP5150_MISC_CTL_VBLANK |
481 TVP5150_MISC_CTL_CLOCK_OE,
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400482 }, { /* Activates video std autodetection for all standards */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200483 TVP5150_AUTOSW_MSK, 0x0
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400484 }, { /* Default format: 0x47. For 4:2:2: 0x40 */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200485 TVP5150_DATA_RATE_SEL, 0x47
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400486 }, {
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200487 TVP5150_CHROMA_PROC_CTL_1, 0x0c
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400488 }, {
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200489 TVP5150_CHROMA_PROC_CTL_2, 0x54
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400490 }, { /* Non documented, but initialized on WinTV USB2 */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200491 0x27, 0x20
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400492 }, {
493 0xff, 0xff
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200494 }
495};
496
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200497struct tvp5150_vbi_type {
498 unsigned int vbi_type;
499 unsigned int ini_line;
500 unsigned int end_line;
501 unsigned int by_field :1;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200502};
503
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200504struct i2c_vbi_ram_value {
505 u16 reg;
506 struct tvp5150_vbi_type type;
507 unsigned char values[16];
508};
509
510/* This struct have the values for each supported VBI Standard
511 * by
512 tvp5150_vbi_types should follow the same order as vbi_ram_default
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200513 * value 0 means rom position 0x10, value 1 means rom position 0x30
514 * and so on. There are 16 possible locations from 0 to 15.
515 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200516
Nasser Afshin65dc7602018-04-02 18:23:19 -0400517static struct i2c_vbi_ram_value vbi_ram_default[] = {
518
Nasser Afshin9bfd8f82018-04-02 18:23:18 -0400519 /*
520 * FIXME: Current api doesn't handle all VBI types, those not
521 * yet supported are placed under #if 0
522 */
Hans Verkuil9bc74002006-03-29 18:02:51 -0300523#if 0
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500524 [0] = {0x010, /* Teletext, SECAM, WST System A */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400525 {V4L2_SLICED_TELETEXT_SECAM, 6, 23, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200526 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
527 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200528 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300529#endif
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500530 [1] = {0x030, /* Teletext, PAL, WST System B */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400531 {V4L2_SLICED_TELETEXT_B, 6, 22, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200532 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
533 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200534 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300535#if 0
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500536 [2] = {0x050, /* Teletext, PAL, WST System C */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400537 {V4L2_SLICED_TELETEXT_PAL_C, 6, 22, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200538 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
539 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200540 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500541 [3] = {0x070, /* Teletext, NTSC, WST System B */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400542 {V4L2_SLICED_TELETEXT_NTSC_B, 10, 21, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200543 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
544 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200545 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500546 [4] = {0x090, /* Tetetext, NTSC NABTS System C */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400547 {V4L2_SLICED_TELETEXT_NTSC_C, 10, 21, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200548 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
549 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200550 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500551 [5] = {0x0b0, /* Teletext, NTSC-J, NABTS System D */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400552 {V4L2_SLICED_TELETEXT_NTSC_D, 10, 21, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200553 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
554 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200555 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500556 [6] = {0x0d0, /* Closed Caption, PAL/SECAM */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400557 {V4L2_SLICED_CAPTION_625, 22, 22, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200558 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
559 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200560 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300561#endif
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500562 [7] = {0x0f0, /* Closed Caption, NTSC */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400563 {V4L2_SLICED_CAPTION_525, 21, 21, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200564 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
565 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200566 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500567 [8] = {0x110, /* Wide Screen Signal, PAL/SECAM */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400568 {V4L2_SLICED_WSS_625, 23, 23, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200569 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
570 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200571 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300572#if 0
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500573 [9] = {0x130, /* Wide Screen Signal, NTSC C */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400574 {V4L2_SLICED_WSS_525, 20, 20, 1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200575 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
576 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200577 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500578 [10] = {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400579 {V4l2_SLICED_VITC_625, 6, 22, 0},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200580 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
581 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200582 },
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500583 [11] = {0x170, /* Vertical Interval Timecode (VITC), NTSC */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400584 {V4l2_SLICED_VITC_525, 10, 20, 0},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200585 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
586 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200587 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300588#endif
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500589 [12] = {0x190, /* Video Program System (VPS), PAL */
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400590 {V4L2_SLICED_VPS, 16, 16, 0},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200591 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
592 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200593 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200594 /* 0x1d0 User programmable */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200595};
596
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300597static int tvp5150_write_inittab(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200598 const struct i2c_reg_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200599{
Philipp Zabel28b9e222018-06-28 12:20:35 -0400600 struct tvp5150 *decoder = to_tvp5150(sd);
601
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200602 while (regs->reg != 0xff) {
Philipp Zabel28b9e222018-06-28 12:20:35 -0400603 regmap_write(decoder->regmap, regs->reg, regs->value);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200604 regs++;
605 }
606 return 0;
607}
608
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500609static int tvp5150_vdp_init(struct v4l2_subdev *sd)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200610{
Philipp Zabel28b9e222018-06-28 12:20:35 -0400611 struct tvp5150 *decoder = to_tvp5150(sd);
612 struct regmap *map = decoder->regmap;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200613 unsigned int i;
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500614 int j;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200615
616 /* Disable Full Field */
Philipp Zabel28b9e222018-06-28 12:20:35 -0400617 regmap_write(map, TVP5150_FULL_FIELD_ENA, 0);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200618
619 /* Before programming, Line mode should be at 0xff */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300620 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
Philipp Zabel28b9e222018-06-28 12:20:35 -0400621 regmap_write(map, i, 0xff);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200622
623 /* Load Ram Table */
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500624 for (j = 0; j < ARRAY_SIZE(vbi_ram_default); j++) {
625 const struct i2c_vbi_ram_value *regs = &vbi_ram_default[j];
626
627 if (!regs->type.vbi_type)
628 continue;
629
Philipp Zabel28b9e222018-06-28 12:20:35 -0400630 regmap_write(map, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
631 regmap_write(map, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200632
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300633 for (i = 0; i < 16; i++)
Philipp Zabel28b9e222018-06-28 12:20:35 -0400634 regmap_write(map, TVP5150_VDP_CONF_RAM_DATA,
635 regs->values[i]);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200636 }
637 return 0;
638}
639
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200640/* Fills VBI capabilities based on i2c_vbi_ram_value struct */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300641static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200642 struct v4l2_sliced_vbi_cap *cap)
643{
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500644 int line, i;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200645
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200646 dev_dbg_lvl(sd->dev, 1, debug, "g_sliced_vbi_cap\n");
Nasser Afshinbb7a3682018-04-02 18:23:20 -0400647 memset(cap, 0, sizeof(*cap));
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200648
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500649 for (i = 0; i < ARRAY_SIZE(vbi_ram_default); i++) {
650 const struct i2c_vbi_ram_value *regs = &vbi_ram_default[i];
651
652 if (!regs->type.vbi_type)
653 continue;
654
655 for (line = regs->type.ini_line;
656 line <= regs->type.end_line;
657 line++) {
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200658 cap->service_lines[0][line] |= regs->type.vbi_type;
659 }
660 cap->service_set |= regs->type.vbi_type;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200661 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300662 return 0;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200663}
664
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200665/* Set vbi processing
666 * type - one of tvp5150_vbi_types
667 * line - line to gather data
668 * fields: bit 0 field1, bit 1, field2
669 * flags (default=0xf0) is a bitmask, were set means:
670 * bit 7: enable filtering null bytes on CC
671 * bit 6: send data also to FIFO
672 * bit 5: don't allow data with errors on FIFO
673 * bit 4: enable ECC when possible
674 * pix_align = pix alignment:
675 * LSB = field1
676 * MSB = field2
677 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300678static int tvp5150_set_vbi(struct v4l2_subdev *sd,
Nasser Afshin4efcd5e2018-04-02 18:23:17 -0400679 unsigned int type, u8 flags, int line,
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200680 const int fields)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200681{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300682 struct tvp5150 *decoder = to_tvp5150(sd);
683 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200684 u8 reg;
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500685 int i, pos = 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200686
687 if (std == V4L2_STD_ALL) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200688 dev_err(sd->dev, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200689 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300690 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200691 /* Don't follow NTSC Line number convension */
692 line += 3;
693 }
694
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300695 if (line < 6 || line > 27)
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200696 return 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200697
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500698 for (i = 0; i < ARRAY_SIZE(vbi_ram_default); i++) {
699 const struct i2c_vbi_ram_value *regs = &vbi_ram_default[i];
700
701 if (!regs->type.vbi_type)
702 continue;
703
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200704 if ((type & regs->type.vbi_type) &&
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300705 (line >= regs->type.ini_line) &&
706 (line <= regs->type.end_line))
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200707 break;
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200708 pos++;
709 }
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300710
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300711 type = pos | (flags & 0xf0);
712 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200713
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300714 if (fields & 1)
Philipp Zabel28b9e222018-06-28 12:20:35 -0400715 regmap_write(decoder->regmap, reg, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200716
Gustavo A. R. Silvab3d930aa2017-06-23 19:37:00 -0300717 if (fields & 2)
Philipp Zabel28b9e222018-06-28 12:20:35 -0400718 regmap_write(decoder->regmap, reg + 1, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200719
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200720 return type;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200721}
722
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500723static int tvp5150_get_vbi(struct v4l2_subdev *sd, int line)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200724{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300725 struct tvp5150 *decoder = to_tvp5150(sd);
726 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200727 u8 reg;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300728 int pos, type = 0;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300729 int i, ret = 0;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200730
731 if (std == V4L2_STD_ALL) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200732 dev_err(sd->dev, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200733 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300734 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200735 /* Don't follow NTSC Line number convension */
736 line += 3;
737 }
738
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300739 if (line < 6 || line > 27)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200740 return 0;
741
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300742 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200743
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300744 for (i = 0; i <= 1; i++) {
745 ret = tvp5150_read(sd, reg + i);
746 if (ret < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200747 dev_err(sd->dev, "%s: failed with error = %d\n",
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300748 __func__, ret);
749 return 0;
750 }
751 pos = ret & 0x0f;
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500752 if (pos < ARRAY_SIZE(vbi_ram_default))
753 type |= vbi_ram_default[pos].type.vbi_type;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300754 }
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200755
756 return type;
757}
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800758
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300759static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
760{
761 struct tvp5150 *decoder = to_tvp5150(sd);
762 int fmt = 0;
763
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200764 /* First tests should be against specific std */
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800765
Hans Verkuil26811ae2013-05-29 10:19:06 -0300766 if (std == V4L2_STD_NTSC_443) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300767 fmt = VIDEO_STD_NTSC_4_43_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300768 } else if (std == V4L2_STD_PAL_M) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300769 fmt = VIDEO_STD_PAL_M_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300770 } else if (std == V4L2_STD_PAL_N || std == V4L2_STD_PAL_Nc) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300771 fmt = VIDEO_STD_PAL_COMBINATION_N_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200772 } else {
773 /* Then, test against generic ones */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300774 if (std & V4L2_STD_NTSC)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300775 fmt = VIDEO_STD_NTSC_MJ_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300776 else if (std & V4L2_STD_PAL)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300777 fmt = VIDEO_STD_PAL_BDGHIN_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300778 else if (std & V4L2_STD_SECAM)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300779 fmt = VIDEO_STD_SECAM_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200780 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800781
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -0200782 dev_dbg_lvl(sd->dev, 1, debug, "Set video std register to %d.\n", fmt);
Philipp Zabel28b9e222018-06-28 12:20:35 -0400783 regmap_write(decoder->regmap, TVP5150_VIDEO_STD, fmt);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200784 return 0;
785}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800786
Marco Felsch0db87cc2018-06-28 12:20:49 -0400787static int tvp5150_g_std(struct v4l2_subdev *sd, v4l2_std_id *std)
788{
789 struct tvp5150 *decoder = to_tvp5150(sd);
790
791 *std = decoder->norm;
792
793 return 0;
794}
795
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300796static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200797{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300798 struct tvp5150 *decoder = to_tvp5150(sd);
Marco Felschbaf17822020-03-12 11:31:55 +0100799 struct tvp5150_connector *cur_con = decoder->cur_connector;
800 v4l2_std_id supported_stds;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300801
802 if (decoder->norm == std)
803 return 0;
804
Marco Felschbaf17822020-03-12 11:31:55 +0100805 /* In case of no of-connectors are available no limitations are made */
806 if (!decoder->connectors_num)
807 supported_stds = V4L2_STD_ALL;
808 else
809 supported_stds = cur_con->base.connector.analog.sdtv_stds;
810
811 /*
812 * Check if requested std or group of std's is/are supported by the
813 * connector.
814 */
815 if ((supported_stds & std) == 0)
816 return -EINVAL;
817
Javier Martin963ddc62012-01-31 05:23:46 -0300818 /* Change cropping height limits */
819 if (std & V4L2_STD_525_60)
820 decoder->rect.height = TVP5150_V_MAX_525_60;
821 else
822 decoder->rect.height = TVP5150_V_MAX_OTHERS;
823
Marco Felschbaf17822020-03-12 11:31:55 +0100824 /* Set only the specific supported std in case of group of std's. */
825 decoder->norm = supported_stds & std;
Javier Martin963ddc62012-01-31 05:23:46 -0300826
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300827 return tvp5150_set_std(sd, std);
828}
829
Philipp Zabel15695862018-06-28 12:20:41 -0400830static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd)
831{
832 int val = tvp5150_read(sd, TVP5150_STATUS_REG_5);
833
834 switch (val & 0x0F) {
835 case 0x01:
836 return V4L2_STD_NTSC;
837 case 0x03:
838 return V4L2_STD_PAL;
839 case 0x05:
840 return V4L2_STD_PAL_M;
841 case 0x07:
842 return V4L2_STD_PAL_N | V4L2_STD_PAL_Nc;
843 case 0x09:
844 return V4L2_STD_NTSC_443;
845 case 0xb:
846 return V4L2_STD_SECAM;
847 default:
848 return V4L2_STD_UNKNOWN;
849 }
850}
851
Mauro Carvalho Chehab5bd1d912018-08-01 10:09:24 -0400852static int query_lock(struct v4l2_subdev *sd)
853{
854 struct tvp5150 *decoder = to_tvp5150(sd);
855 int status;
856
857 if (decoder->irq)
858 return decoder->lock;
859
860 regmap_read(decoder->regmap, TVP5150_STATUS_REG_1, &status);
861
862 /* For standard detection, we need the 3 locks */
863 return (status & 0x0e) == 0x0e;
864}
865
Philipp Zabelee9a6ff2018-06-28 12:20:48 -0400866static int tvp5150_querystd(struct v4l2_subdev *sd, v4l2_std_id *std_id)
867{
Mauro Carvalho Chehab5bd1d912018-08-01 10:09:24 -0400868 *std_id = query_lock(sd) ? tvp5150_read_std(sd) : V4L2_STD_UNKNOWN;
Philipp Zabelee9a6ff2018-06-28 12:20:48 -0400869
870 return 0;
871}
872
Philipp Zabel2f0a5c62018-06-28 12:20:46 -0400873static const struct v4l2_event tvp5150_ev_fmt = {
874 .type = V4L2_EVENT_SOURCE_CHANGE,
875 .u.src_change.changes = V4L2_EVENT_SRC_CH_RESOLUTION,
876};
877
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400878static irqreturn_t tvp5150_isr(int irq, void *dev_id)
879{
880 struct tvp5150 *decoder = dev_id;
881 struct regmap *map = decoder->regmap;
Philipp Zabel62a764e2018-06-28 12:20:45 -0400882 unsigned int mask, active = 0, status = 0;
883
884 mask = TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_SYNC_OE |
885 TVP5150_MISC_CTL_CLOCK_OE;
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400886
887 regmap_read(map, TVP5150_INT_STATUS_REG_A, &status);
888 if (status) {
889 regmap_write(map, TVP5150_INT_STATUS_REG_A, status);
890
Philipp Zabel62a764e2018-06-28 12:20:45 -0400891 if (status & TVP5150_INT_A_LOCK) {
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400892 decoder->lock = !!(status & TVP5150_INT_A_LOCK_STATUS);
Philipp Zabel7bb3c332018-06-28 12:20:47 -0400893 dev_dbg_lvl(decoder->sd.dev, 1, debug,
894 "sync lo%s signal\n",
895 decoder->lock ? "ck" : "ss");
Philipp Zabel2f0a5c62018-06-28 12:20:46 -0400896 v4l2_subdev_notify_event(&decoder->sd, &tvp5150_ev_fmt);
Philipp Zabel62a764e2018-06-28 12:20:45 -0400897 regmap_update_bits(map, TVP5150_MISC_CTL, mask,
898 decoder->lock ? decoder->oe : 0);
899 }
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400900
901 return IRQ_HANDLED;
902 }
903
904 regmap_read(map, TVP5150_INT_ACTIVE_REG_B, &active);
905 if (active) {
906 status = 0;
907 regmap_read(map, TVP5150_INT_STATUS_REG_B, &status);
908 if (status)
909 regmap_write(map, TVP5150_INT_RESET_REG_B, status);
910 }
911
912 return IRQ_HANDLED;
913}
914
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300915static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
916{
917 struct tvp5150 *decoder = to_tvp5150(sd);
Philipp Zabel8105e1b2018-06-28 12:20:43 -0400918 struct regmap *map = decoder->regmap;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200919
920 /* Initializes TVP5150 to its default values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300921 tvp5150_write_inittab(sd, tvp5150_init_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200922
Philipp Zabel8e4c97e2018-06-28 12:20:44 -0400923 if (decoder->irq) {
924 /* Configure pins: FID, VSYNC, INTREQ, SCLK */
925 regmap_write(map, TVP5150_CONF_SHARED_PIN, 0x0);
926 /* Set interrupt polarity to active high */
927 regmap_write(map, TVP5150_INT_CONF, TVP5150_VDPOE | 0x1);
928 regmap_write(map, TVP5150_INTT_CONFIG_REG_B, 0x1);
929 } else {
930 /* Configure pins: FID, VSYNC, GPCL/VBLK, SCLK */
931 regmap_write(map, TVP5150_CONF_SHARED_PIN, 0x2);
932 /* Keep interrupt polarity active low */
933 regmap_write(map, TVP5150_INT_CONF, TVP5150_VDPOE);
934 regmap_write(map, TVP5150_INTT_CONFIG_REG_B, 0x0);
935 }
Philipp Zabel8105e1b2018-06-28 12:20:43 -0400936
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200937 /* Initializes VDP registers */
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -0500938 tvp5150_vdp_init(sd);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200939
940 /* Selects decoder input */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300941 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800942
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200943 /* Initialize image preferences */
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300944 v4l2_ctrl_handler_setup(&decoder->hdl);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200945
Philipp Zabel1bb086b2018-06-28 12:20:42 -0400946 return 0;
947}
948
949static int tvp5150_enable(struct v4l2_subdev *sd)
950{
951 struct tvp5150 *decoder = to_tvp5150(sd);
952 v4l2_std_id std;
953
954 /* Initializes TVP5150 to stream enabled values */
955 tvp5150_write_inittab(sd, tvp5150_init_enable);
956
Philipp Zabel15695862018-06-28 12:20:41 -0400957 if (decoder->norm == V4L2_STD_ALL)
958 std = tvp5150_read_std(sd);
959 else
960 std = decoder->norm;
961
962 /* Disable autoswitch mode */
963 tvp5150_set_std(sd, std);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200964
Philipp Zabel62a764e2018-06-28 12:20:45 -0400965 /*
966 * Enable the YCbCr and clock outputs. In discrete sync mode
lijian331ca862021-06-11 08:28:15 +0200967 * (non-BT.656) additionally enable the sync outputs.
Philipp Zabel62a764e2018-06-28 12:20:45 -0400968 */
969 switch (decoder->mbus_type) {
970 case V4L2_MBUS_PARALLEL:
Marco Felsch8a7441b2018-06-28 12:20:36 -0400971 /* 8-bit 4:2:2 YUV with discrete sync output */
972 regmap_update_bits(decoder->regmap, TVP5150_DATA_RATE_SEL,
973 0x7, 0x0);
Philipp Zabel62a764e2018-06-28 12:20:45 -0400974 decoder->oe = TVP5150_MISC_CTL_YCBCR_OE |
975 TVP5150_MISC_CTL_CLOCK_OE |
976 TVP5150_MISC_CTL_SYNC_OE;
977 break;
978 case V4L2_MBUS_BT656:
979 decoder->oe = TVP5150_MISC_CTL_YCBCR_OE |
980 TVP5150_MISC_CTL_CLOCK_OE;
981 break;
982 default:
983 return -EINVAL;
984 }
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200985
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300986 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800987};
988
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300989static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800990{
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300991 struct v4l2_subdev *sd = to_sd(ctrl);
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200992 struct tvp5150 *decoder = to_tvp5150(sd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800993
994 switch (ctrl->id) {
995 case V4L2_CID_BRIGHTNESS:
Philipp Zabel28b9e222018-06-28 12:20:35 -0400996 regmap_write(decoder->regmap, TVP5150_BRIGHT_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800997 return 0;
998 case V4L2_CID_CONTRAST:
Philipp Zabel28b9e222018-06-28 12:20:35 -0400999 regmap_write(decoder->regmap, TVP5150_CONTRAST_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001000 return 0;
1001 case V4L2_CID_SATURATION:
Philipp Zabel28b9e222018-06-28 12:20:35 -04001002 regmap_write(decoder->regmap, TVP5150_SATURATION_CTL,
1003 ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001004 return 0;
1005 case V4L2_CID_HUE:
Philipp Zabel28b9e222018-06-28 12:20:35 -04001006 regmap_write(decoder->regmap, TVP5150_HUE_CTL, ctrl->val);
Marco Felsch2d29bcc2018-06-28 12:20:34 -04001007 return 0;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001008 case V4L2_CID_TEST_PATTERN:
1009 decoder->enable = ctrl->val ? false : true;
1010 tvp5150_selmux(sd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001011 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001012 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -02001013 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -08001014}
1015
Marco Felsch5cb82942018-06-28 12:20:39 -04001016static void tvp5150_set_default(v4l2_std_id std, struct v4l2_rect *crop)
1017{
1018 /* Default is no cropping */
1019 crop->top = 0;
1020 crop->left = 0;
1021 crop->width = TVP5150_H_MAX;
1022 if (std & V4L2_STD_525_60)
1023 crop->height = TVP5150_V_MAX_525_60;
1024 else
1025 crop->height = TVP5150_V_MAX_OTHERS;
1026}
1027
Marco Felsch46fe6e72020-03-12 11:31:48 +01001028static struct v4l2_rect *
1029tvp5150_get_pad_crop(struct tvp5150 *decoder,
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001030 struct v4l2_subdev_state *sd_state, unsigned int pad,
Marco Felsch46fe6e72020-03-12 11:31:48 +01001031 enum v4l2_subdev_format_whence which)
1032{
1033 switch (which) {
1034 case V4L2_SUBDEV_FORMAT_ACTIVE:
1035 return &decoder->rect;
1036 case V4L2_SUBDEV_FORMAT_TRY:
1037#if defined(CONFIG_VIDEO_V4L2_SUBDEV_API)
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001038 return v4l2_subdev_get_try_crop(&decoder->sd, sd_state, pad);
Marco Felsch46fe6e72020-03-12 11:31:48 +01001039#else
1040 return ERR_PTR(-EINVAL);
1041#endif
1042 default:
1043 return ERR_PTR(-EINVAL);
1044 }
1045}
1046
Hans Verkuilda298c62015-04-09 04:02:34 -03001047static int tvp5150_fill_fmt(struct v4l2_subdev *sd,
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001048 struct v4l2_subdev_state *sd_state,
Marco Felsch5cb82942018-06-28 12:20:39 -04001049 struct v4l2_subdev_format *format)
Javier Martinec2c4f32012-01-05 10:57:39 -03001050{
Hans Verkuilda298c62015-04-09 04:02:34 -03001051 struct v4l2_mbus_framefmt *f;
Javier Martinec2c4f32012-01-05 10:57:39 -03001052 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martinec2c4f32012-01-05 10:57:39 -03001053
Mauro Carvalho Chehabbc322c02018-08-01 06:10:05 -04001054 if (!format || (format->pad != TVP5150_PAD_VID_OUT))
Javier Martinec2c4f32012-01-05 10:57:39 -03001055 return -EINVAL;
1056
Hans Verkuilda298c62015-04-09 04:02:34 -03001057 f = &format->format;
1058
Javier Martin963ddc62012-01-31 05:23:46 -03001059 f->width = decoder->rect.width;
Javier Martinez Canillas1831af02018-06-10 16:43:02 -04001060 f->height = decoder->rect.height / 2;
Javier Martinec2c4f32012-01-05 10:57:39 -03001061
Marco Felsch5cb82942018-06-28 12:20:39 -04001062 f->code = TVP5150_MBUS_FMT;
1063 f->field = TVP5150_FIELD;
1064 f->colorspace = TVP5150_COLORSPACE;
Javier Martinec2c4f32012-01-05 10:57:39 -03001065
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001066 dev_dbg_lvl(sd->dev, 1, debug, "width = %d, height = %d\n", f->width,
Marco Felsch5cb82942018-06-28 12:20:39 -04001067 f->height);
Javier Martinec2c4f32012-01-05 10:57:39 -03001068 return 0;
1069}
1070
Marco Felsch46fe6e72020-03-12 11:31:48 +01001071static unsigned int tvp5150_get_hmax(struct v4l2_subdev *sd)
Javier Martin963ddc62012-01-31 05:23:46 -03001072{
Javier Martin963ddc62012-01-31 05:23:46 -03001073 struct tvp5150 *decoder = to_tvp5150(sd);
1074 v4l2_std_id std;
Javier Martin963ddc62012-01-31 05:23:46 -03001075
1076 /* Calculate height based on current standard */
1077 if (decoder->norm == V4L2_STD_ALL)
1078 std = tvp5150_read_std(sd);
1079 else
1080 std = decoder->norm;
1081
Marco Felsch46fe6e72020-03-12 11:31:48 +01001082 return (std & V4L2_STD_525_60) ?
1083 TVP5150_V_MAX_525_60 : TVP5150_V_MAX_OTHERS;
1084}
Javier Martin963ddc62012-01-31 05:23:46 -03001085
Marco Felsch46fe6e72020-03-12 11:31:48 +01001086static void tvp5150_set_hw_selection(struct v4l2_subdev *sd,
1087 struct v4l2_rect *rect)
1088{
1089 struct tvp5150 *decoder = to_tvp5150(sd);
1090 unsigned int hmax = tvp5150_get_hmax(sd);
Javier Martin963ddc62012-01-31 05:23:46 -03001091
Marco Felschb4125e52020-03-12 11:31:47 +01001092 regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_START, rect->top);
Philipp Zabel28b9e222018-06-28 12:20:35 -04001093 regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_STOP,
Marco Felschb4125e52020-03-12 11:31:47 +01001094 rect->top + rect->height - hmax);
Philipp Zabel28b9e222018-06-28 12:20:35 -04001095 regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_ST_MSB,
Marco Felschb4125e52020-03-12 11:31:47 +01001096 rect->left >> TVP5150_CROP_SHIFT);
Philipp Zabel28b9e222018-06-28 12:20:35 -04001097 regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_ST_LSB,
Marco Felschb4125e52020-03-12 11:31:47 +01001098 rect->left | (1 << TVP5150_CROP_SHIFT));
Philipp Zabel28b9e222018-06-28 12:20:35 -04001099 regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_STP_MSB,
Marco Felschb4125e52020-03-12 11:31:47 +01001100 (rect->left + rect->width - TVP5150_MAX_CROP_LEFT) >>
Philipp Zabel28b9e222018-06-28 12:20:35 -04001101 TVP5150_CROP_SHIFT);
1102 regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_STP_LSB,
Marco Felschb4125e52020-03-12 11:31:47 +01001103 rect->left + rect->width - TVP5150_MAX_CROP_LEFT);
Marco Felsch46fe6e72020-03-12 11:31:48 +01001104}
Javier Martin963ddc62012-01-31 05:23:46 -03001105
Marco Felsch46fe6e72020-03-12 11:31:48 +01001106static int tvp5150_set_selection(struct v4l2_subdev *sd,
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001107 struct v4l2_subdev_state *sd_state,
Marco Felsch46fe6e72020-03-12 11:31:48 +01001108 struct v4l2_subdev_selection *sel)
1109{
1110 struct tvp5150 *decoder = to_tvp5150(sd);
1111 struct v4l2_rect *rect = &sel->r;
1112 struct v4l2_rect *crop;
1113 unsigned int hmax;
1114
1115 if (sel->target != V4L2_SEL_TGT_CROP)
1116 return -EINVAL;
1117
1118 dev_dbg_lvl(sd->dev, 1, debug, "%s left=%d, top=%d, width=%d, height=%d\n",
1119 __func__, rect->left, rect->top, rect->width, rect->height);
1120
1121 /* tvp5150 has some special limits */
1122 rect->left = clamp(rect->left, 0, TVP5150_MAX_CROP_LEFT);
1123 rect->top = clamp(rect->top, 0, TVP5150_MAX_CROP_TOP);
1124 hmax = tvp5150_get_hmax(sd);
1125
1126 /*
1127 * alignments:
1128 * - width = 2 due to UYVY colorspace
1129 * - height, image = no special alignment
1130 */
1131 v4l_bound_align_image(&rect->width,
1132 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect->left,
1133 TVP5150_H_MAX - rect->left, 1, &rect->height,
1134 hmax - TVP5150_MAX_CROP_TOP - rect->top,
1135 hmax - rect->top, 0, 0);
1136
1137 if (!IS_ENABLED(CONFIG_VIDEO_V4L2_SUBDEV_API) &&
1138 sel->which == V4L2_SUBDEV_FORMAT_TRY)
1139 return 0;
1140
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001141 crop = tvp5150_get_pad_crop(decoder, sd_state, sel->pad, sel->which);
Marco Felsch46fe6e72020-03-12 11:31:48 +01001142 if (IS_ERR(crop))
1143 return PTR_ERR(crop);
1144
1145 /*
1146 * Update output image size if the selection (crop) rectangle size or
1147 * position has been modified.
1148 */
1149 if (sel->which == V4L2_SUBDEV_FORMAT_ACTIVE &&
1150 !v4l2_rect_equal(rect, crop))
1151 tvp5150_set_hw_selection(sd, rect);
1152
1153 *crop = *rect;
Javier Martin963ddc62012-01-31 05:23:46 -03001154
1155 return 0;
1156}
1157
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001158static int tvp5150_get_selection(struct v4l2_subdev *sd,
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001159 struct v4l2_subdev_state *sd_state,
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001160 struct v4l2_subdev_selection *sel)
Javier Martin963ddc62012-01-31 05:23:46 -03001161{
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001162 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
Marco Felsch46fe6e72020-03-12 11:31:48 +01001163 struct v4l2_rect *crop;
Javier Martin963ddc62012-01-31 05:23:46 -03001164 v4l2_std_id std;
1165
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001166 switch (sel->target) {
1167 case V4L2_SEL_TGT_CROP_BOUNDS:
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001168 sel->r.left = 0;
1169 sel->r.top = 0;
1170 sel->r.width = TVP5150_H_MAX;
Javier Martin963ddc62012-01-31 05:23:46 -03001171
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001172 /* Calculate height based on current standard */
1173 if (decoder->norm == V4L2_STD_ALL)
1174 std = tvp5150_read_std(sd);
1175 else
1176 std = decoder->norm;
1177 if (std & V4L2_STD_525_60)
1178 sel->r.height = TVP5150_V_MAX_525_60;
1179 else
1180 sel->r.height = TVP5150_V_MAX_OTHERS;
1181 return 0;
1182 case V4L2_SEL_TGT_CROP:
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001183 crop = tvp5150_get_pad_crop(decoder, sd_state, sel->pad,
Marco Felsch46fe6e72020-03-12 11:31:48 +01001184 sel->which);
1185 if (IS_ERR(crop))
1186 return PTR_ERR(crop);
1187 sel->r = *crop;
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001188 return 0;
1189 default:
1190 return -EINVAL;
1191 }
Javier Martin963ddc62012-01-31 05:23:46 -03001192}
1193
Jacopo Mondi0c3da522020-07-17 16:53:16 +02001194static int tvp5150_get_mbus_config(struct v4l2_subdev *sd,
1195 unsigned int pad,
1196 struct v4l2_mbus_config *cfg)
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -02001197{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001198 struct tvp5150 *decoder = to_tvp5150(sd);
1199
1200 cfg->type = decoder->mbus_type;
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -02001201 cfg->flags = V4L2_MBUS_MASTER | V4L2_MBUS_PCLK_SAMPLE_RISING
1202 | V4L2_MBUS_FIELD_EVEN_LOW | V4L2_MBUS_DATA_ACTIVE_HIGH;
1203
1204 return 0;
1205}
1206
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001207/****************************************************************************
Laurent Pincharte545ac82016-01-26 10:46:24 -02001208 V4L2 subdev pad ops
1209 ****************************************************************************/
Philipp Zabelb440b732018-06-28 12:20:40 -04001210static int tvp5150_init_cfg(struct v4l2_subdev *sd,
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001211 struct v4l2_subdev_state *sd_state)
Philipp Zabelb440b732018-06-28 12:20:40 -04001212{
1213 struct tvp5150 *decoder = to_tvp5150(sd);
1214 v4l2_std_id std;
1215
1216 /*
1217 * Reset selection to maximum on subdev_open() if autodetection is on
1218 * and a standard change is detected.
1219 */
1220 if (decoder->norm == V4L2_STD_ALL) {
1221 std = tvp5150_read_std(sd);
1222 if (std != decoder->detected_norm) {
1223 decoder->detected_norm = std;
1224 tvp5150_set_default(std, &decoder->rect);
1225 }
1226 }
1227
1228 return 0;
1229}
1230
Laurent Pincharte545ac82016-01-26 10:46:24 -02001231static int tvp5150_enum_mbus_code(struct v4l2_subdev *sd,
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001232 struct v4l2_subdev_state *sd_state,
Laurent Pincharte545ac82016-01-26 10:46:24 -02001233 struct v4l2_subdev_mbus_code_enum *code)
1234{
1235 if (code->pad || code->index)
1236 return -EINVAL;
1237
Marco Felsch5cb82942018-06-28 12:20:39 -04001238 code->code = TVP5150_MBUS_FMT;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001239 return 0;
1240}
1241
1242static int tvp5150_enum_frame_size(struct v4l2_subdev *sd,
Tomi Valkeinen0d346d22021-06-10 17:55:58 +03001243 struct v4l2_subdev_state *sd_state,
Laurent Pincharte545ac82016-01-26 10:46:24 -02001244 struct v4l2_subdev_frame_size_enum *fse)
1245{
1246 struct tvp5150 *decoder = to_tvp5150(sd);
1247
Marco Felsch5cb82942018-06-28 12:20:39 -04001248 if (fse->index >= 8 || fse->code != TVP5150_MBUS_FMT)
Laurent Pincharte545ac82016-01-26 10:46:24 -02001249 return -EINVAL;
1250
Marco Felsch5cb82942018-06-28 12:20:39 -04001251 fse->code = TVP5150_MBUS_FMT;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001252 fse->min_width = decoder->rect.width;
1253 fse->max_width = decoder->rect.width;
1254 fse->min_height = decoder->rect.height / 2;
1255 fse->max_height = decoder->rect.height / 2;
1256
1257 return 0;
1258}
1259
1260/****************************************************************************
Marco Felsch0556f1d2020-03-12 11:31:45 +01001261 * Media entity ops
1262 ****************************************************************************/
1263#if defined(CONFIG_MEDIA_CONTROLLER)
1264static int tvp5150_set_link(struct media_pad *connector_pad,
1265 struct media_pad *tvp5150_pad, u32 flags)
1266{
1267 struct media_link *link;
1268
1269 link = media_entity_find_link(connector_pad, tvp5150_pad);
1270 if (!link)
1271 return -EINVAL;
1272
1273 link->flags = flags;
1274 link->reverse->flags = link->flags;
1275
1276 return 0;
1277}
1278
1279static int tvp5150_disable_all_input_links(struct tvp5150 *decoder)
1280{
1281 struct media_pad *connector_pad;
1282 unsigned int i;
1283 int err;
1284
1285 for (i = 0; i < TVP5150_NUM_PADS - 1; i++) {
1286 connector_pad = media_entity_remote_pad(&decoder->pads[i]);
1287 if (!connector_pad)
1288 continue;
1289
1290 err = tvp5150_set_link(connector_pad, &decoder->pads[i], 0);
1291 if (err)
1292 return err;
1293 }
1294
1295 return 0;
1296}
1297
1298static int tvp5150_s_routing(struct v4l2_subdev *sd, u32 input, u32 output,
1299 u32 config);
1300
1301static int tvp5150_link_setup(struct media_entity *entity,
1302 const struct media_pad *tvp5150_pad,
1303 const struct media_pad *remote, u32 flags)
1304{
1305 struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
1306 struct tvp5150 *decoder = to_tvp5150(sd);
1307 struct media_pad *other_tvp5150_pad =
1308 &decoder->pads[tvp5150_pad->index ^ 1];
1309 struct v4l2_fwnode_connector *v4l2c;
1310 bool is_svideo = false;
1311 unsigned int i;
1312 int err;
1313
1314 /*
1315 * The TVP5150 state is determined by the enabled sink pad link(s).
1316 * Enabling or disabling the source pad link has no effect.
1317 */
1318 if (tvp5150_pad->flags & MEDIA_PAD_FL_SOURCE)
1319 return 0;
1320
1321 /* Check if the svideo connector should be enabled */
1322 for (i = 0; i < decoder->connectors_num; i++) {
1323 if (remote->entity == &decoder->connectors[i].ent) {
1324 v4l2c = &decoder->connectors[i].base;
1325 is_svideo = v4l2c->type == V4L2_CONN_SVIDEO;
1326 break;
1327 }
1328 }
1329
1330 dev_dbg_lvl(sd->dev, 1, debug, "link setup '%s':%d->'%s':%d[%d]",
1331 remote->entity->name, remote->index,
1332 tvp5150_pad->entity->name, tvp5150_pad->index,
1333 flags & MEDIA_LNK_FL_ENABLED);
1334 if (is_svideo)
1335 dev_dbg_lvl(sd->dev, 1, debug,
1336 "link setup '%s':%d->'%s':%d[%d]",
1337 remote->entity->name, remote->index,
1338 other_tvp5150_pad->entity->name,
1339 other_tvp5150_pad->index,
1340 flags & MEDIA_LNK_FL_ENABLED);
1341
1342 /*
1343 * The TVP5150 has an internal mux which allows the following setup:
1344 *
1345 * comp-connector1 --\
1346 * |---> AIP1A
1347 * /
1348 * svideo-connector -|
1349 * \
1350 * |---> AIP1B
1351 * comp-connector2 --/
1352 *
1353 * We can't rely on user space that the current connector gets disabled
1354 * first before enabling the new connector. Disable all active
1355 * connector links to be on the safe side.
1356 */
1357 err = tvp5150_disable_all_input_links(decoder);
1358 if (err)
1359 return err;
1360
1361 tvp5150_s_routing(sd, is_svideo ? TVP5150_SVIDEO : tvp5150_pad->index,
1362 flags & MEDIA_LNK_FL_ENABLED ? TVP5150_NORMAL :
1363 TVP5150_BLACK_SCREEN, 0);
1364
1365 if (flags & MEDIA_LNK_FL_ENABLED) {
Marco Felschbaf17822020-03-12 11:31:55 +01001366 struct v4l2_fwnode_connector_analog *v4l2ca;
1367 u32 new_norm;
1368
Marco Felsch0556f1d2020-03-12 11:31:45 +01001369 /*
1370 * S-Video connector is conneted to both ports AIP1A and AIP1B.
1371 * Both links must be enabled in one-shot regardless which link
1372 * the user requests.
1373 */
1374 if (is_svideo) {
1375 err = tvp5150_set_link((struct media_pad *)remote,
1376 other_tvp5150_pad, flags);
1377 if (err)
1378 return err;
1379 }
Marco Felschbaf17822020-03-12 11:31:55 +01001380
1381 if (!decoder->connectors_num)
1382 return 0;
1383
1384 /* Update the current connector */
1385 decoder->cur_connector =
1386 container_of(remote, struct tvp5150_connector, pad);
1387
1388 /*
1389 * Do nothing if the new connector supports the same tv-norms as
1390 * the old one.
1391 */
1392 v4l2ca = &decoder->cur_connector->base.connector.analog;
1393 new_norm = decoder->norm & v4l2ca->sdtv_stds;
1394 if (decoder->norm == new_norm)
1395 return 0;
1396
1397 /*
1398 * Fallback to the new connector tv-norms if we can't find any
1399 * common between the current tv-norm and the new one.
1400 */
1401 tvp5150_s_std(sd, new_norm ? new_norm : v4l2ca->sdtv_stds);
Marco Felsch0556f1d2020-03-12 11:31:45 +01001402 }
1403
1404 return 0;
1405}
1406
1407static const struct media_entity_operations tvp5150_sd_media_ops = {
1408 .link_setup = tvp5150_link_setup,
1409};
1410#endif
1411/****************************************************************************
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001412 I2C Command
1413 ****************************************************************************/
Marco Felsch73549a62020-03-12 11:31:50 +01001414static int __maybe_unused tvp5150_runtime_suspend(struct device *dev)
1415{
Krzysztof Kozlowski1c891422020-09-21 18:23:42 +02001416 struct v4l2_subdev *sd = dev_get_drvdata(dev);
Marco Felsch73549a62020-03-12 11:31:50 +01001417 struct tvp5150 *decoder = to_tvp5150(sd);
1418
1419 if (decoder->irq)
1420 /* Disable lock interrupt */
1421 return regmap_update_bits(decoder->regmap,
1422 TVP5150_INT_ENABLE_REG_A,
1423 TVP5150_INT_A_LOCK, 0);
1424 return 0;
1425}
1426
1427static int __maybe_unused tvp5150_runtime_resume(struct device *dev)
1428{
Krzysztof Kozlowski1c891422020-09-21 18:23:42 +02001429 struct v4l2_subdev *sd = dev_get_drvdata(dev);
Marco Felsch73549a62020-03-12 11:31:50 +01001430 struct tvp5150 *decoder = to_tvp5150(sd);
1431
1432 if (decoder->irq)
1433 /* Enable lock interrupt */
1434 return regmap_update_bits(decoder->regmap,
1435 TVP5150_INT_ENABLE_REG_A,
1436 TVP5150_INT_A_LOCK,
1437 TVP5150_INT_A_LOCK);
1438 return 0;
1439}
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001440
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001441static int tvp5150_s_stream(struct v4l2_subdev *sd, int enable)
1442{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001443 struct tvp5150 *decoder = to_tvp5150(sd);
Marco Felsch73549a62020-03-12 11:31:50 +01001444 unsigned int mask, val = 0;
1445 int ret;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001446
Marco Felsch8a7441b2018-06-28 12:20:36 -04001447 mask = TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_SYNC_OE |
1448 TVP5150_MISC_CTL_CLOCK_OE;
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001449
Laurent Pinchart79d62052016-12-09 09:47:19 -02001450 if (enable) {
Mauro Carvalho Chehab81f2fe52021-04-23 17:19:17 +02001451 ret = pm_runtime_resume_and_get(sd->dev);
1452 if (ret < 0)
Marco Felsch73549a62020-03-12 11:31:50 +01001453 return ret;
Marco Felsch73549a62020-03-12 11:31:50 +01001454
Philipp Zabel1bb086b2018-06-28 12:20:42 -04001455 tvp5150_enable(sd);
1456
Philipp Zabel62a764e2018-06-28 12:20:45 -04001457 /* Enable outputs if decoder is locked */
Mauro Carvalho Chehab5bd1d912018-08-01 10:09:24 -04001458 if (decoder->irq)
1459 val = decoder->lock ? decoder->oe : 0;
1460 else
1461 val = decoder->oe;
Marco Felsch73549a62020-03-12 11:31:50 +01001462
Philipp Zabel2f0a5c62018-06-28 12:20:46 -04001463 v4l2_subdev_notify_event(&decoder->sd, &tvp5150_ev_fmt);
Marco Felsch73549a62020-03-12 11:31:50 +01001464 } else {
1465 pm_runtime_put(sd->dev);
Laurent Pinchart79d62052016-12-09 09:47:19 -02001466 }
1467
Marco Felsch8a7441b2018-06-28 12:20:36 -04001468 regmap_update_bits(decoder->regmap, TVP5150_MISC_CTL, mask, val);
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001469
1470 return 0;
1471}
1472
Hans Verkuil5325b422009-04-02 11:26:22 -03001473static int tvp5150_s_routing(struct v4l2_subdev *sd,
1474 u32 input, u32 output, u32 config)
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001475{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001476 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001477
Hans Verkuil5325b422009-04-02 11:26:22 -03001478 decoder->input = input;
1479 decoder->output = output;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001480
1481 if (output == TVP5150_BLACK_SCREEN)
1482 decoder->enable = false;
1483 else
1484 decoder->enable = true;
1485
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001486 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001487 return 0;
1488}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001489
Hans Verkuild37dad42010-03-14 10:59:16 -03001490static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001491{
Philipp Zabel28b9e222018-06-28 12:20:35 -04001492 struct tvp5150 *decoder = to_tvp5150(sd);
1493
Nasser Afshin9bfd8f82018-04-02 18:23:18 -04001494 /*
1495 * this is for capturing 36 raw vbi lines
1496 * if there's a way to cut off the beginning 2 vbi lines
1497 * with the tvp5150 then the vbi line count could be lowered
1498 * to 17 lines/field again, although I couldn't find a register
1499 * which could do that cropping
1500 */
1501
Hans Verkuild37dad42010-03-14 10:59:16 -03001502 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
Philipp Zabel28b9e222018-06-28 12:20:35 -04001503 regmap_write(decoder->regmap, TVP5150_LUMA_PROC_CTL_1, 0x70);
Hans Verkuild37dad42010-03-14 10:59:16 -03001504 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
Philipp Zabel28b9e222018-06-28 12:20:35 -04001505 regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_START,
1506 0x00);
1507 regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_STOP, 0x01);
Hans Verkuild37dad42010-03-14 10:59:16 -03001508 }
1509 return 0;
1510}
1511
1512static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1513{
Philipp Zabel28b9e222018-06-28 12:20:35 -04001514 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001515 int i;
1516
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001517 if (svbi->service_set != 0) {
1518 for (i = 0; i <= 23; i++) {
1519 svbi->service_lines[1][i] = 0;
1520 svbi->service_lines[0][i] =
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -05001521 tvp5150_set_vbi(sd, svbi->service_lines[0][i],
1522 0xf0, i, 3);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001523 }
1524 /* Enables FIFO */
Philipp Zabel28b9e222018-06-28 12:20:35 -04001525 regmap_write(decoder->regmap, TVP5150_FIFO_OUT_CTRL, 1);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001526 } else {
1527 /* Disables FIFO*/
Philipp Zabel28b9e222018-06-28 12:20:35 -04001528 regmap_write(decoder->regmap, TVP5150_FIFO_OUT_CTRL, 0);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001529
1530 /* Disable Full Field */
Philipp Zabel28b9e222018-06-28 12:20:35 -04001531 regmap_write(decoder->regmap, TVP5150_FULL_FIELD_ENA, 0);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001532
1533 /* Disable Line modes */
1534 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
Philipp Zabel28b9e222018-06-28 12:20:35 -04001535 regmap_write(decoder->regmap, i, 0xff);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001536 }
1537 return 0;
1538}
1539
Hans Verkuild37dad42010-03-14 10:59:16 -03001540static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1541{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001542 int i, mask = 0;
1543
Hans Verkuil30634e82012-09-05 10:38:10 -03001544 memset(svbi->service_lines, 0, sizeof(svbi->service_lines));
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001545
1546 for (i = 0; i <= 23; i++) {
1547 svbi->service_lines[0][i] =
Mauro Carvalho Chehab3dd6b562018-02-19 13:23:39 -05001548 tvp5150_get_vbi(sd, i);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001549 mask |= svbi->service_lines[0][i];
1550 }
1551 svbi->service_set = mask;
1552 return 0;
1553}
1554
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001555#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001556static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001557{
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001558 int res;
1559
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001560 res = tvp5150_read(sd, reg->reg & 0xff);
1561 if (res < 0) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001562 dev_err(sd->dev, "%s: failed with error = %d\n", __func__, res);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001563 return res;
1564 }
1565
1566 reg->val = res;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001567 reg->size = 1;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001568 return 0;
1569}
1570
Hans Verkuil977ba3b12013-03-24 08:28:46 -03001571static int tvp5150_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001572{
Philipp Zabel28b9e222018-06-28 12:20:35 -04001573 struct tvp5150 *decoder = to_tvp5150(sd);
1574
1575 return regmap_write(decoder->regmap, reg->reg & 0xff, reg->val & 0xff);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001576}
1577#endif
1578
Marco Felsche953c102020-03-12 11:31:51 +01001579static int tvp5150_subscribe_event(struct v4l2_subdev *sd, struct v4l2_fh *fh,
1580 struct v4l2_event_subscription *sub)
1581{
1582 switch (sub->type) {
1583 case V4L2_EVENT_SOURCE_CHANGE:
1584 return v4l2_src_change_event_subdev_subscribe(sd, fh, sub);
1585 case V4L2_EVENT_CTRL:
1586 return v4l2_ctrl_subdev_subscribe_event(sd, fh, sub);
1587 default:
1588 return -EINVAL;
1589 }
1590}
1591
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001592static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1593{
1594 int status = tvp5150_read(sd, 0x88);
1595
1596 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
1597 return 0;
1598}
1599
Marco Felsch0556f1d2020-03-12 11:31:45 +01001600static int tvp5150_registered(struct v4l2_subdev *sd)
1601{
1602#if defined(CONFIG_MEDIA_CONTROLLER)
1603 struct tvp5150 *decoder = to_tvp5150(sd);
1604 unsigned int i;
1605 int ret;
1606
1607 /*
1608 * Setup connector pads and links. Enable the link to the first
1609 * available connector per default.
1610 */
1611 for (i = 0; i < decoder->connectors_num; i++) {
1612 struct media_entity *con = &decoder->connectors[i].ent;
1613 struct media_pad *pad = &decoder->connectors[i].pad;
1614 struct v4l2_fwnode_connector *v4l2c =
1615 &decoder->connectors[i].base;
1616 struct v4l2_connector_link *link =
1617 v4l2_connector_first_link(v4l2c);
1618 unsigned int port = link->fwnode_link.remote_port;
1619 unsigned int flags = i ? 0 : MEDIA_LNK_FL_ENABLED;
1620 bool is_svideo = v4l2c->type == V4L2_CONN_SVIDEO;
1621
1622 pad->flags = MEDIA_PAD_FL_SOURCE;
1623 ret = media_entity_pads_init(con, 1, pad);
1624 if (ret < 0)
1625 goto err;
1626
1627 ret = media_device_register_entity(sd->v4l2_dev->mdev, con);
1628 if (ret < 0)
1629 goto err;
1630
1631 ret = media_create_pad_link(con, 0, &sd->entity, port, flags);
1632 if (ret < 0)
1633 goto err;
1634
1635 if (is_svideo) {
1636 /*
1637 * Check tvp5150_link_setup() comments for more
1638 * information.
1639 */
1640 link = v4l2_connector_last_link(v4l2c);
1641 port = link->fwnode_link.remote_port;
1642 ret = media_create_pad_link(con, 0, &sd->entity, port,
1643 flags);
1644 if (ret < 0)
1645 goto err;
1646 }
1647
1648 /* Enable default input. */
1649 if (flags == MEDIA_LNK_FL_ENABLED) {
1650 decoder->input =
1651 is_svideo ? TVP5150_SVIDEO :
1652 port == 0 ? TVP5150_COMPOSITE0 :
1653 TVP5150_COMPOSITE1;
1654
1655 tvp5150_selmux(sd);
Marco Felschbaf17822020-03-12 11:31:55 +01001656 decoder->cur_connector = &decoder->connectors[i];
1657 tvp5150_s_std(sd, v4l2c->connector.analog.sdtv_stds);
Marco Felsch0556f1d2020-03-12 11:31:45 +01001658 }
1659 }
1660
1661 return 0;
1662
1663err:
Chuhong Yuand000e9b2020-06-06 16:39:18 +02001664 for (i = 0; i < decoder->connectors_num; i++) {
Marco Felsch0556f1d2020-03-12 11:31:45 +01001665 media_device_unregister_entity(&decoder->connectors[i].ent);
Chuhong Yuand000e9b2020-06-06 16:39:18 +02001666 media_entity_cleanup(&decoder->connectors[i].ent);
1667 }
Marco Felsch0556f1d2020-03-12 11:31:45 +01001668 return ret;
1669#endif
1670
1671 return 0;
1672}
1673
Marco Felsch9c8e5092020-03-12 11:31:52 +01001674static int tvp5150_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
1675{
Mauro Carvalho Chehab81f2fe52021-04-23 17:19:17 +02001676 return pm_runtime_resume_and_get(sd->dev);
Marco Felsch9c8e5092020-03-12 11:31:52 +01001677}
1678
1679static int tvp5150_close(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
1680{
1681 pm_runtime_put(sd->dev);
1682
1683 return 0;
1684}
1685
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001686/* ----------------------------------------------------------------------- */
1687
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001688static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
1689 .s_ctrl = tvp5150_s_ctrl,
1690};
1691
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001692static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1693 .log_status = tvp5150_log_status,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001694 .reset = tvp5150_reset,
1695#ifdef CONFIG_VIDEO_ADV_DEBUG
1696 .g_register = tvp5150_g_register,
1697 .s_register = tvp5150_s_register,
1698#endif
Marco Felsche953c102020-03-12 11:31:51 +01001699 .subscribe_event = tvp5150_subscribe_event,
1700 .unsubscribe_event = v4l2_event_subdev_unsubscribe,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001701};
1702
1703static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001704 .g_tuner = tvp5150_g_tuner,
1705};
1706
1707static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001708 .s_std = tvp5150_s_std,
Marco Felsch0db87cc2018-06-28 12:20:49 -04001709 .g_std = tvp5150_g_std,
Philipp Zabelee9a6ff2018-06-28 12:20:48 -04001710 .querystd = tvp5150_querystd,
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001711 .s_stream = tvp5150_s_stream,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001712 .s_routing = tvp5150_s_routing,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001713};
1714
1715static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001716 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
Hans Verkuild37dad42010-03-14 10:59:16 -03001717 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1718 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1719 .s_raw_fmt = tvp5150_s_raw_fmt,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001720};
1721
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001722static const struct v4l2_subdev_pad_ops tvp5150_pad_ops = {
Philipp Zabelb440b732018-06-28 12:20:40 -04001723 .init_cfg = tvp5150_init_cfg,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001724 .enum_mbus_code = tvp5150_enum_mbus_code,
Laurent Pincharte545ac82016-01-26 10:46:24 -02001725 .enum_frame_size = tvp5150_enum_frame_size,
Hans Verkuilda298c62015-04-09 04:02:34 -03001726 .set_fmt = tvp5150_fill_fmt,
1727 .get_fmt = tvp5150_fill_fmt,
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001728 .get_selection = tvp5150_get_selection,
1729 .set_selection = tvp5150_set_selection,
Jacopo Mondi0c3da522020-07-17 16:53:16 +02001730 .get_mbus_config = tvp5150_get_mbus_config,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001731};
1732
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001733static const struct v4l2_subdev_ops tvp5150_ops = {
1734 .core = &tvp5150_core_ops,
1735 .tuner = &tvp5150_tuner_ops,
1736 .video = &tvp5150_video_ops,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001737 .vbi = &tvp5150_vbi_ops,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001738 .pad = &tvp5150_pad_ops,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001739};
1740
Marco Felsch0556f1d2020-03-12 11:31:45 +01001741static const struct v4l2_subdev_internal_ops tvp5150_internal_ops = {
1742 .registered = tvp5150_registered,
Marco Felsch9c8e5092020-03-12 11:31:52 +01001743 .open = tvp5150_open,
1744 .close = tvp5150_close,
Marco Felsch0556f1d2020-03-12 11:31:45 +01001745};
1746
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001747/****************************************************************************
1748 I2C Client & Driver
1749 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001750
Philipp Zabel28b9e222018-06-28 12:20:35 -04001751static const struct regmap_range tvp5150_readable_ranges[] = {
1752 {
1753 .range_min = TVP5150_VD_IN_SRC_SEL_1,
1754 .range_max = TVP5150_AUTOSW_MSK,
1755 }, {
1756 .range_min = TVP5150_COLOR_KIL_THSH_CTL,
1757 .range_max = TVP5150_CONF_SHARED_PIN,
1758 }, {
1759 .range_min = TVP5150_ACT_VD_CROP_ST_MSB,
1760 .range_max = TVP5150_HORIZ_SYNC_START,
1761 }, {
1762 .range_min = TVP5150_VERT_BLANKING_START,
1763 .range_max = TVP5150_INTT_CONFIG_REG_B,
1764 }, {
1765 .range_min = TVP5150_VIDEO_STD,
1766 .range_max = TVP5150_VIDEO_STD,
1767 }, {
1768 .range_min = TVP5150_CB_GAIN_FACT,
1769 .range_max = TVP5150_REV_SELECT,
1770 }, {
1771 .range_min = TVP5150_MSB_DEV_ID,
1772 .range_max = TVP5150_STATUS_REG_5,
1773 }, {
1774 .range_min = TVP5150_CC_DATA_INI,
1775 .range_max = TVP5150_TELETEXT_FIL_ENA,
1776 }, {
1777 .range_min = TVP5150_INT_STATUS_REG_A,
1778 .range_max = TVP5150_FIFO_OUT_CTRL,
1779 }, {
1780 .range_min = TVP5150_FULL_FIELD_ENA,
1781 .range_max = TVP5150_FULL_FIELD_MODE_REG,
1782 },
1783};
1784
Mauro Carvalho Chehabc135e992018-08-01 10:16:48 -04001785static bool tvp5150_volatile_reg(struct device *dev, unsigned int reg)
Philipp Zabel28b9e222018-06-28 12:20:35 -04001786{
1787 switch (reg) {
1788 case TVP5150_VERT_LN_COUNT_MSB:
1789 case TVP5150_VERT_LN_COUNT_LSB:
1790 case TVP5150_INT_STATUS_REG_A:
1791 case TVP5150_INT_STATUS_REG_B:
1792 case TVP5150_INT_ACTIVE_REG_B:
1793 case TVP5150_STATUS_REG_1:
1794 case TVP5150_STATUS_REG_2:
1795 case TVP5150_STATUS_REG_3:
1796 case TVP5150_STATUS_REG_4:
1797 case TVP5150_STATUS_REG_5:
1798 /* CC, WSS, VPS, VITC data? */
1799 case TVP5150_VBI_FIFO_READ_DATA:
1800 case TVP5150_VDP_STATUS_REG:
1801 case TVP5150_FIFO_WORD_COUNT:
1802 return true;
1803 default:
1804 return false;
1805 }
1806}
1807
1808static const struct regmap_access_table tvp5150_readable_table = {
1809 .yes_ranges = tvp5150_readable_ranges,
1810 .n_yes_ranges = ARRAY_SIZE(tvp5150_readable_ranges),
1811};
1812
1813static struct regmap_config tvp5150_config = {
1814 .reg_bits = 8,
1815 .val_bits = 8,
1816 .max_register = 0xff,
1817
1818 .cache_type = REGCACHE_RBTREE,
1819
1820 .rd_table = &tvp5150_readable_table,
1821 .volatile_reg = tvp5150_volatile_reg,
1822};
1823
Laurent Pinchart78715972016-01-07 10:46:41 -02001824static int tvp5150_detect_version(struct tvp5150 *core)
1825{
1826 struct v4l2_subdev *sd = &core->sd;
1827 struct i2c_client *c = v4l2_get_subdevdata(sd);
Laurent Pinchart78715972016-01-07 10:46:41 -02001828 u8 regs[4];
1829 int res;
1830
1831 /*
1832 * Read consequent registers - TVP5150_MSB_DEV_ID, TVP5150_LSB_DEV_ID,
1833 * TVP5150_ROM_MAJOR_VER, TVP5150_ROM_MINOR_VER
1834 */
Philipp Zabel28b9e222018-06-28 12:20:35 -04001835 res = regmap_bulk_read(core->regmap, TVP5150_MSB_DEV_ID, regs, 4);
1836 if (res < 0) {
1837 dev_err(&c->dev, "reading ID registers failed: %d\n", res);
1838 return res;
Laurent Pinchart78715972016-01-07 10:46:41 -02001839 }
1840
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001841 core->dev_id = (regs[0] << 8) | regs[1];
1842 core->rom_ver = (regs[2] << 8) | regs[3];
Laurent Pinchart78715972016-01-07 10:46:41 -02001843
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001844 dev_info(sd->dev, "tvp%04x (%u.%u) chip found @ 0x%02x (%s)\n",
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001845 core->dev_id, regs[2], regs[3], c->addr << 1,
1846 c->adapter->name);
Laurent Pinchart78715972016-01-07 10:46:41 -02001847
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001848 if (core->dev_id == 0x5150 && core->rom_ver == 0x0321) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001849 dev_info(sd->dev, "tvp5150a detected.\n");
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001850 } else if (core->dev_id == 0x5150 && core->rom_ver == 0x0400) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001851 dev_info(sd->dev, "tvp5150am1 detected.\n");
Laurent Pinchart78715972016-01-07 10:46:41 -02001852
1853 /* ITU-T BT.656.4 timing */
Philipp Zabel28b9e222018-06-28 12:20:35 -04001854 regmap_write(core->regmap, TVP5150_REV_SELECT, 0);
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001855 } else if (core->dev_id == 0x5151 && core->rom_ver == 0x0100) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001856 dev_info(sd->dev, "tvp5151 detected.\n");
Laurent Pinchart78715972016-01-07 10:46:41 -02001857 } else {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02001858 dev_info(sd->dev, "*** unknown tvp%04x chip detected.\n",
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001859 core->dev_id);
Laurent Pinchart78715972016-01-07 10:46:41 -02001860 }
1861
1862 return 0;
1863}
1864
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02001865static int tvp5150_init(struct i2c_client *c)
1866{
1867 struct gpio_desc *pdn_gpio;
1868 struct gpio_desc *reset_gpio;
1869
1870 pdn_gpio = devm_gpiod_get_optional(&c->dev, "pdn", GPIOD_OUT_HIGH);
1871 if (IS_ERR(pdn_gpio))
1872 return PTR_ERR(pdn_gpio);
1873
1874 if (pdn_gpio) {
1875 gpiod_set_value_cansleep(pdn_gpio, 0);
1876 /* Delay time between power supplies active and reset */
1877 msleep(20);
1878 }
1879
1880 reset_gpio = devm_gpiod_get_optional(&c->dev, "reset", GPIOD_OUT_HIGH);
1881 if (IS_ERR(reset_gpio))
1882 return PTR_ERR(reset_gpio);
1883
1884 if (reset_gpio) {
1885 /* RESETB pulse duration */
1886 ndelay(500);
1887 gpiod_set_value_cansleep(reset_gpio, 0);
1888 /* Delay time between end of reset to I2C active */
1889 usleep_range(200, 250);
1890 }
1891
1892 return 0;
1893}
1894
Marco Felsch0556f1d2020-03-12 11:31:45 +01001895#if defined(CONFIG_MEDIA_CONTROLLER)
1896static int tvp5150_mc_init(struct tvp5150 *decoder)
1897{
1898 struct v4l2_subdev *sd = &decoder->sd;
1899 unsigned int i;
1900
1901 sd->entity.ops = &tvp5150_sd_media_ops;
1902 sd->entity.function = MEDIA_ENT_F_ATV_DECODER;
1903
1904 for (i = 0; i < TVP5150_NUM_PADS - 1; i++) {
1905 decoder->pads[i].flags = MEDIA_PAD_FL_SINK;
1906 decoder->pads[i].sig_type = PAD_SIGNAL_ANALOG;
1907 }
1908
1909 decoder->pads[i].flags = MEDIA_PAD_FL_SOURCE;
1910 decoder->pads[i].sig_type = PAD_SIGNAL_DV;
1911
1912 return media_entity_pads_init(&sd->entity, TVP5150_NUM_PADS,
1913 decoder->pads);
1914}
1915
1916#else /* !defined(CONFIG_MEDIA_CONTROLLER) */
1917
1918static inline int tvp5150_mc_init(struct tvp5150 *decoder)
1919{
1920 return 0;
1921}
1922#endif /* defined(CONFIG_MEDIA_CONTROLLER) */
1923
1924static int tvp5150_validate_connectors(struct tvp5150 *decoder)
1925{
1926 struct device *dev = decoder->sd.dev;
1927 struct tvp5150_connector *tvpc;
1928 struct v4l2_fwnode_connector *v4l2c;
1929 unsigned int i;
1930
1931 if (!decoder->connectors_num) {
1932 dev_err(dev, "No valid connector found\n");
1933 return -ENODEV;
1934 }
1935
1936 for (i = 0; i < decoder->connectors_num; i++) {
1937 struct v4l2_connector_link *link0 = NULL;
1938 struct v4l2_connector_link *link1;
1939
1940 tvpc = &decoder->connectors[i];
1941 v4l2c = &tvpc->base;
1942
1943 if (v4l2c->type == V4L2_CONN_COMPOSITE) {
1944 if (v4l2c->nr_of_links != 1) {
1945 dev_err(dev, "Composite: connector needs 1 link\n");
1946 return -EINVAL;
1947 }
1948 link0 = v4l2_connector_first_link(v4l2c);
1949 if (!link0) {
1950 dev_err(dev, "Composite: invalid first link\n");
1951 return -EINVAL;
1952 }
1953 if (link0->fwnode_link.remote_id == 1) {
1954 dev_err(dev, "Composite: invalid endpoint id\n");
1955 return -EINVAL;
1956 }
1957 }
1958
1959 if (v4l2c->type == V4L2_CONN_SVIDEO) {
1960 if (v4l2c->nr_of_links != 2) {
1961 dev_err(dev, "SVideo: connector needs 2 links\n");
1962 return -EINVAL;
1963 }
1964 link0 = v4l2_connector_first_link(v4l2c);
1965 if (!link0) {
1966 dev_err(dev, "SVideo: invalid first link\n");
1967 return -EINVAL;
1968 }
1969 link1 = v4l2_connector_last_link(v4l2c);
1970 if (link0->fwnode_link.remote_port ==
1971 link1->fwnode_link.remote_port) {
1972 dev_err(dev, "SVideo: invalid link setup\n");
1973 return -EINVAL;
1974 }
1975 }
Marco Felschbaf17822020-03-12 11:31:55 +01001976
1977 if (!(v4l2c->connector.analog.sdtv_stds & TVP5150_STD_MASK)) {
1978 dev_err(dev, "Unsupported tv-norm on connector %s\n",
1979 v4l2c->name);
1980 return -EINVAL;
1981 }
Marco Felsch0556f1d2020-03-12 11:31:45 +01001982 }
1983
1984 return 0;
1985}
1986
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001987static int tvp5150_parse_dt(struct tvp5150 *decoder, struct device_node *np)
1988{
Marco Felsch0556f1d2020-03-12 11:31:45 +01001989 struct device *dev = decoder->sd.dev;
1990 struct v4l2_fwnode_endpoint bus_cfg = {
1991 .bus_type = V4L2_MBUS_UNKNOWN
1992 };
1993 struct device_node *ep_np;
1994 struct tvp5150_connector *tvpc;
1995 struct v4l2_fwnode_connector *v4l2c;
1996 unsigned int flags, ep_num;
1997 unsigned int i;
1998 int ret;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001999
Marco Felsch0556f1d2020-03-12 11:31:45 +01002000 /* At least 1 output and 1 input */
2001 ep_num = of_graph_get_endpoint_count(np);
2002 if (ep_num < 2 || ep_num > 5) {
2003 dev_err(dev, "At least 1 input and 1 output must be connected to the device.\n");
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002004 return -EINVAL;
Marco Felsch0556f1d2020-03-12 11:31:45 +01002005 }
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002006
Marco Felsch0556f1d2020-03-12 11:31:45 +01002007 /* Layout if all connectors are used:
2008 *
2009 * tvp-5150 port@0 (AIP1A)
2010 * endpoint@0 -----------> Comp0-Con port
2011 * endpoint@1 --------+--> Svideo-Con port
2012 * tvp-5150 port@1 (AIP1B) |
2013 * endpoint@1 --------+
2014 * endpoint@0 -----------> Comp1-Con port
2015 * tvp-5150 port@2
2016 * endpoint (video bitstream output at YOUT[0-7] parallel bus)
2017 */
2018 for_each_endpoint_of_node(np, ep_np) {
2019 struct fwnode_handle *ep_fwnode = of_fwnode_handle(ep_np);
2020 unsigned int next_connector = decoder->connectors_num;
2021 struct of_endpoint ep;
2022
2023 of_graph_parse_endpoint(ep_np, &ep);
2024 if (ep.port > 1 || ep.id > 1) {
2025 dev_dbg(dev, "Ignore connector on port@%u/ep@%u\n",
2026 ep.port, ep.id);
2027 continue;
2028 }
2029
2030 tvpc = &decoder->connectors[next_connector];
2031 v4l2c = &tvpc->base;
2032
2033 if (ep.port == 0 || (ep.port == 1 && ep.id == 0)) {
2034 ret = v4l2_fwnode_connector_parse(ep_fwnode, v4l2c);
2035 if (ret)
2036 goto err_put;
2037 ret = v4l2_fwnode_connector_add_link(ep_fwnode, v4l2c);
2038 if (ret)
2039 goto err_put;
2040 decoder->connectors_num++;
2041 } else {
2042 /* Adding the 2nd svideo link */
2043 for (i = 0; i < TVP5150_MAX_CONNECTORS; i++) {
2044 tvpc = &decoder->connectors[i];
2045 v4l2c = &tvpc->base;
2046 if (v4l2c->type == V4L2_CONN_SVIDEO)
2047 break;
2048 }
2049
2050 ret = v4l2_fwnode_connector_add_link(ep_fwnode, v4l2c);
2051 if (ret)
2052 goto err_put;
2053 }
2054 }
2055
2056 ret = tvp5150_validate_connectors(decoder);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002057 if (ret)
Marco Felsch0556f1d2020-03-12 11:31:45 +01002058 goto err_free;
2059
2060 for (i = 0; i < decoder->connectors_num; i++) {
2061 tvpc = &decoder->connectors[i];
2062 v4l2c = &tvpc->base;
2063 tvpc->ent.flags = MEDIA_ENT_FL_CONNECTOR;
2064 tvpc->ent.function = v4l2c->type == V4L2_CONN_SVIDEO ?
2065 MEDIA_ENT_F_CONN_SVIDEO : MEDIA_ENT_F_CONN_COMPOSITE;
2066 tvpc->ent.name = devm_kasprintf(dev, GFP_KERNEL, "%s %s",
2067 v4l2c->name, v4l2c->label ?
2068 v4l2c->label : "");
2069 }
2070
2071 ep_np = of_graph_get_endpoint_by_regs(np, TVP5150_PAD_VID_OUT, 0);
2072 if (!ep_np) {
Zhang Xiaoxueb08c4812020-11-16 15:18:01 +01002073 ret = -EINVAL;
Marco Felsch0556f1d2020-03-12 11:31:45 +01002074 dev_err(dev, "Error no output endpoint available\n");
2075 goto err_free;
2076 }
2077 ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(ep_np), &bus_cfg);
2078 of_node_put(ep_np);
2079 if (ret)
2080 goto err_free;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002081
2082 flags = bus_cfg.bus.parallel.flags;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002083 if (bus_cfg.bus_type == V4L2_MBUS_PARALLEL &&
2084 !(flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH &&
2085 flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH &&
Javier Martinez Canillas2bd5e432016-02-05 17:09:53 -02002086 flags & V4L2_MBUS_FIELD_EVEN_LOW)) {
2087 ret = -EINVAL;
Marco Felsch0556f1d2020-03-12 11:31:45 +01002088 goto err_free;
Javier Martinez Canillas2bd5e432016-02-05 17:09:53 -02002089 }
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002090
2091 decoder->mbus_type = bus_cfg.bus_type;
2092
Marco Felsch0556f1d2020-03-12 11:31:45 +01002093 return 0;
2094
2095err_put:
2096 of_node_put(ep_np);
2097err_free:
2098 for (i = 0; i < TVP5150_MAX_CONNECTORS; i++)
2099 v4l2_fwnode_connector_free(&decoder->connectors[i].base);
2100
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002101 return ret;
2102}
2103
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02002104static const char * const tvp5150_test_patterns[2] = {
2105 "Disabled",
2106 "Black screen"
2107};
2108
Kieran Binghame6714992019-07-10 18:51:49 -03002109static int tvp5150_probe(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002110{
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002111 struct tvp5150 *core;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002112 struct v4l2_subdev *sd;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002113 struct device_node *np = c->dev.of_node;
Philipp Zabel28b9e222018-06-28 12:20:35 -04002114 struct regmap *map;
Marco Felschbaf17822020-03-12 11:31:55 +01002115 unsigned int i;
Laurent Pinchart78715972016-01-07 10:46:41 -02002116 int res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002117
2118 /* Check if the adapter supports the needed features */
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002119 if (!i2c_check_functionality(c->adapter,
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002120 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002121 return -EIO;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002122
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02002123 res = tvp5150_init(c);
2124 if (res)
2125 return res;
2126
Laurent Pinchartc02b2112013-05-02 08:29:43 -03002127 core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL);
2128 if (!core)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002129 return -ENOMEM;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002130
Philipp Zabel28b9e222018-06-28 12:20:35 -04002131 map = devm_regmap_init_i2c(c, &tvp5150_config);
2132 if (IS_ERR(map))
2133 return PTR_ERR(map);
2134
2135 core->regmap = map;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002136 sd = &core->sd;
Michael Tretter96ca7c42020-03-12 11:31:49 +01002137 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
2138 sd->internal_ops = &tvp5150_internal_ops;
Marco Felsche953c102020-03-12 11:31:51 +01002139 sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE | V4L2_SUBDEV_FL_HAS_EVENTS;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002140
2141 if (IS_ENABLED(CONFIG_OF) && np) {
2142 res = tvp5150_parse_dt(core, np);
2143 if (res) {
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02002144 dev_err(sd->dev, "DT parsing error: %d\n", res);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02002145 return res;
2146 }
2147 } else {
2148 /* Default to BT.656 embedded sync */
2149 core->mbus_type = V4L2_MBUS_BT656;
2150 }
2151
Marco Felsch0556f1d2020-03-12 11:31:45 +01002152 res = tvp5150_mc_init(core);
2153 if (res)
Laurent Pincharte545ac82016-01-26 10:46:24 -02002154 return res;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02002155
Laurent Pinchart78715972016-01-07 10:46:41 -02002156 res = tvp5150_detect_version(core);
2157 if (res < 0)
2158 return res;
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03002159
Marco Felschbaf17822020-03-12 11:31:55 +01002160 /*
2161 * Iterate over all available connectors in case they are supported and
2162 * successfully parsed. Fallback to default autodetect in case they
2163 * aren't supported.
2164 */
2165 for (i = 0; i < core->connectors_num; i++) {
2166 struct v4l2_fwnode_connector *v4l2c;
2167
2168 v4l2c = &core->connectors[i].base;
2169 core->norm |= v4l2c->connector.analog.sdtv_stds;
2170 }
2171
2172 if (!core->connectors_num)
2173 core->norm = V4L2_STD_ALL;
2174
Philipp Zabelb440b732018-06-28 12:20:40 -04002175 core->detected_norm = V4L2_STD_UNKNOWN;
Hans Verkuil5325b422009-04-02 11:26:22 -03002176 core->input = TVP5150_COMPOSITE1;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02002177 core->enable = true;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03002178
Laurent Pinchartb1950b82016-01-07 10:46:44 -02002179 v4l2_ctrl_handler_init(&core->hdl, 5);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03002180 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
2181 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
2182 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
2183 V4L2_CID_CONTRAST, 0, 255, 1, 128);
2184 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
2185 V4L2_CID_SATURATION, 0, 255, 1, 128);
2186 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
2187 V4L2_CID_HUE, -128, 127, 1, 0);
Laurent Pinchartb1950b82016-01-07 10:46:44 -02002188 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
2189 V4L2_CID_PIXEL_RATE, 27000000,
2190 27000000, 1, 27000000);
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02002191 v4l2_ctrl_new_std_menu_items(&core->hdl, &tvp5150_ctrl_ops,
2192 V4L2_CID_TEST_PATTERN,
Mauro Carvalho Chehab5c4c4502018-09-13 16:49:51 -04002193 ARRAY_SIZE(tvp5150_test_patterns) - 1,
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02002194 0, 0, tvp5150_test_patterns);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03002195 sd->ctrl_handler = &core->hdl;
2196 if (core->hdl.error) {
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03002197 res = core->hdl.error;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03002198 goto err;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03002199 }
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08002200
Marco Felsch5cb82942018-06-28 12:20:39 -04002201 tvp5150_set_default(tvp5150_read_std(sd), &core->rect);
Javier Martin963ddc62012-01-31 05:23:46 -03002202
Philipp Zabel8e4c97e2018-06-28 12:20:44 -04002203 core->irq = c->irq;
Laurent Pinchartaff808e2016-12-09 09:47:17 -02002204 tvp5150_reset(sd, 0); /* Calls v4l2_ctrl_handler_setup() */
Philipp Zabel8e4c97e2018-06-28 12:20:44 -04002205 if (c->irq) {
2206 res = devm_request_threaded_irq(&c->dev, c->irq, NULL,
2207 tvp5150_isr, IRQF_TRIGGER_HIGH |
2208 IRQF_ONESHOT, "tvp5150", core);
2209 if (res)
Marco Felsch81fd5fd2018-09-18 09:14:46 -04002210 goto err;
Philipp Zabel8e4c97e2018-06-28 12:20:44 -04002211 }
Laurent Pinchartaff808e2016-12-09 09:47:17 -02002212
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03002213 res = v4l2_async_register_subdev(sd);
2214 if (res < 0)
2215 goto err;
2216
Markus Rechbergerf1e5ee42006-02-07 04:01:19 +01002217 if (debug > 1)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002218 tvp5150_log_status(sd);
Marco Felsch73549a62020-03-12 11:31:50 +01002219
2220 pm_runtime_set_active(&c->dev);
2221 pm_runtime_enable(&c->dev);
2222 pm_runtime_idle(&c->dev);
2223
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002224 return 0;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03002225
2226err:
2227 v4l2_ctrl_handler_free(&core->hdl);
2228 return res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002229}
2230
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002231static int tvp5150_remove(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002232{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002233 struct v4l2_subdev *sd = i2c_get_clientdata(c);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03002234 struct tvp5150 *decoder = to_tvp5150(sd);
Marco Felsch0556f1d2020-03-12 11:31:45 +01002235 unsigned int i;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002236
Mauro Carvalho Chehab257e29f2016-11-16 08:58:05 -02002237 dev_dbg_lvl(sd->dev, 1, debug,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -02002238 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
2239 c->addr << 1);
2240
Marco Felsch0556f1d2020-03-12 11:31:45 +01002241 for (i = 0; i < decoder->connectors_num; i++)
2242 v4l2_fwnode_connector_free(&decoder->connectors[i].base);
Chuhong Yuand000e9b2020-06-06 16:39:18 +02002243 for (i = 0; i < decoder->connectors_num; i++) {
Marco Felsch0556f1d2020-03-12 11:31:45 +01002244 media_device_unregister_entity(&decoder->connectors[i].ent);
Chuhong Yuand000e9b2020-06-06 16:39:18 +02002245 media_entity_cleanup(&decoder->connectors[i].ent);
2246 }
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03002247 v4l2_async_unregister_subdev(sd);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03002248 v4l2_ctrl_handler_free(&decoder->hdl);
Marco Felsch73549a62020-03-12 11:31:50 +01002249 pm_runtime_disable(&c->dev);
2250 pm_runtime_set_suspended(&c->dev);
2251
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002252 return 0;
2253}
2254
2255/* ----------------------------------------------------------------------- */
2256
Marco Felsch73549a62020-03-12 11:31:50 +01002257static const struct dev_pm_ops tvp5150_pm_ops = {
2258 SET_RUNTIME_PM_OPS(tvp5150_runtime_suspend,
2259 tvp5150_runtime_resume,
2260 NULL)
2261};
2262
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002263static const struct i2c_device_id tvp5150_id[] = {
2264 { "tvp5150", 0 },
2265 { }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002266};
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002267MODULE_DEVICE_TABLE(i2c, tvp5150_id);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08002268
Eduard Gavin7ef930a2016-01-07 10:46:48 -02002269#if IS_ENABLED(CONFIG_OF)
2270static const struct of_device_id tvp5150_of_match[] = {
2271 { .compatible = "ti,tvp5150", },
2272 { /* sentinel */ },
2273};
2274MODULE_DEVICE_TABLE(of, tvp5150_of_match);
2275#endif
2276
Hans Verkuilc7711452010-09-15 15:45:20 -03002277static struct i2c_driver tvp5150_driver = {
2278 .driver = {
Eduard Gavin7ef930a2016-01-07 10:46:48 -02002279 .of_match_table = of_match_ptr(tvp5150_of_match),
Hans Verkuilc7711452010-09-15 15:45:20 -03002280 .name = "tvp5150",
Marco Felsch73549a62020-03-12 11:31:50 +01002281 .pm = &tvp5150_pm_ops,
Hans Verkuilc7711452010-09-15 15:45:20 -03002282 },
Kieran Binghame6714992019-07-10 18:51:49 -03002283 .probe_new = tvp5150_probe,
Hans Verkuilc7711452010-09-15 15:45:20 -03002284 .remove = tvp5150_remove,
2285 .id_table = tvp5150_id,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03002286};
Hans Verkuilc7711452010-09-15 15:45:20 -03002287
Axel Linc6e8d862012-02-12 06:56:32 -03002288module_i2c_driver(tvp5150_driver);