blob: 59aa4dafb60b0d0951b57e6bdf2413d9a7769b9c [file] [log] [blame]
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001/*
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02002 * tvp5150 - Texas Instruments TVP5150A/AM1 and TVP5151 video decoder driver
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08003 *
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -02004 * Copyright (c) 2005,2006 Mauro Carvalho Chehab (mchehab@infradead.org)
5 * This code is placed under the terms of the GNU General Public License v2
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08006 */
7
Javier Martinez Canillasb802fb92016-02-05 17:09:56 -02008#include <dt-bindings/media/tvp5150.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08009#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Hans Verkuil33b687c2008-07-25 05:32:50 -030011#include <linux/videodev2.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080012#include <linux/delay.h>
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -020013#include <linux/gpio/consumer.h>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040014#include <linux/module.h>
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -030015#include <media/v4l2-async.h>
Hans Verkuil6b8fe022008-12-18 11:17:25 -030016#include <media/v4l2-device.h>
Hans Verkuil6c45ec72010-12-12 08:45:43 -030017#include <media/v4l2-ctrls.h>
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020018#include <media/v4l2-of.h>
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020019#include <media/v4l2-mc.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080020
21#include "tvp5150_reg.h"
22
Philipp Zabel785a3de2014-02-27 13:44:47 -030023#define TVP5150_H_MAX 720U
24#define TVP5150_V_MAX_525_60 480U
25#define TVP5150_V_MAX_OTHERS 576U
Javier Martin963ddc62012-01-31 05:23:46 -030026#define TVP5150_MAX_CROP_LEFT 511
27#define TVP5150_MAX_CROP_TOP 127
28#define TVP5150_CROP_SHIFT 2
29
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -020030MODULE_DESCRIPTION("Texas Instruments TVP5150A/TVP5150AM1/TVP5151 video decoder driver");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080031MODULE_AUTHOR("Mauro Carvalho Chehab");
32MODULE_LICENSE("GPL");
33
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080034
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030035static int debug;
Philipp Zabel2a0489d2014-02-27 13:44:48 -030036module_param(debug, int, 0644);
Hans Verkuil6b8fe022008-12-18 11:17:25 -030037MODULE_PARM_DESC(debug, "Debug level (0-2)");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080038
39struct tvp5150 {
Hans Verkuil6b8fe022008-12-18 11:17:25 -030040 struct v4l2_subdev sd;
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020041#ifdef CONFIG_MEDIA_CONTROLLER
42 struct media_pad pads[DEMOD_NUM_PADS];
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -020043 struct media_entity input_ent[TVP5150_INPUT_NUM];
44 struct media_pad input_pad[TVP5150_INPUT_NUM];
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -020045#endif
Hans Verkuil6c45ec72010-12-12 08:45:43 -030046 struct v4l2_ctrl_handler hdl;
Javier Martin963ddc62012-01-31 05:23:46 -030047 struct v4l2_rect rect;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080048
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020049 v4l2_std_id norm; /* Current set standard */
Hans Verkuil5325b422009-04-02 11:26:22 -030050 u32 input;
51 u32 output;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080052 int enable;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020053
Javier Martinez Canillas82275132016-02-05 17:09:54 -020054 u16 dev_id;
55 u16 rom_ver;
56
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -020057 enum v4l2_mbus_type mbus_type;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080058};
59
Hans Verkuil6b8fe022008-12-18 11:17:25 -030060static inline struct tvp5150 *to_tvp5150(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080061{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030062 return container_of(sd, struct tvp5150, sd);
63}
64
Hans Verkuil6c45ec72010-12-12 08:45:43 -030065static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
66{
67 return &container_of(ctrl->handler, struct tvp5150, hdl)->sd;
68}
69
Hans Verkuil6b8fe022008-12-18 11:17:25 -030070static int tvp5150_read(struct v4l2_subdev *sd, unsigned char addr)
71{
72 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080073 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080074
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030075 rc = i2c_smbus_read_byte_data(c, addr);
76 if (rc < 0) {
77 v4l2_err(sd, "i2c i/o error: rc == %d\n", rc);
78 return rc;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -030079 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -020080
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030081 v4l2_dbg(2, debug, sd, "tvp5150: read 0x%02x = 0x%02x\n", addr, rc);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080082
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030083 return rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080084}
85
Javier Martinez Canillascacdd6a2016-04-14 22:00:07 -030086static int tvp5150_write(struct v4l2_subdev *sd, unsigned char addr,
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080087 unsigned char value)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080088{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030089 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080090 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080091
Laurent Pincharte35ce2e2014-05-26 16:31:28 -030092 v4l2_dbg(2, debug, sd, "tvp5150: writing 0x%02x 0x%02x\n", addr, value);
93 rc = i2c_smbus_write_byte_data(c, addr, value);
94 if (rc < 0)
Javier Martinez Canillascacdd6a2016-04-14 22:00:07 -030095 v4l2_err(sd, "i2c i/o error: rc == %d\n", rc);
96
97 return rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080098}
99
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300100static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
101 const u8 end, int max_line)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200102{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300103 int i = 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200104
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300105 while (init != (u8)(end + 1)) {
106 if ((i % max_line) == 0) {
107 if (i > 0)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200108 printk("\n");
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300109 printk("tvp5150: %s reg 0x%02x = ", s, init);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200110 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300111 printk("%02x ", tvp5150_read(sd, init));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200112
113 init++;
114 i++;
115 }
116 printk("\n");
117}
118
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300119static int tvp5150_log_status(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800120{
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800121 printk("tvp5150: Video input source selection #1 = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300122 tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800123 printk("tvp5150: Analog channel controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300124 tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800125 printk("tvp5150: Operation mode controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300126 tvp5150_read(sd, TVP5150_OP_MODE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800127 printk("tvp5150: Miscellaneous controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300128 tvp5150_read(sd, TVP5150_MISC_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200129 printk("tvp5150: Autoswitch mask= 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300130 tvp5150_read(sd, TVP5150_AUTOSW_MSK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800131 printk("tvp5150: Color killer threshold control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300132 tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200133 printk("tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300134 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
135 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
136 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800137 printk("tvp5150: Brightness control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300138 tvp5150_read(sd, TVP5150_BRIGHT_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800139 printk("tvp5150: Color saturation control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300140 tvp5150_read(sd, TVP5150_SATURATION_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800141 printk("tvp5150: Hue control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300142 tvp5150_read(sd, TVP5150_HUE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800143 printk("tvp5150: Contrast control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300144 tvp5150_read(sd, TVP5150_CONTRAST_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800145 printk("tvp5150: Outputs and data rates select = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300146 tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800147 printk("tvp5150: Configuration shared pins = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300148 tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200149 printk("tvp5150: Active video cropping start = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300150 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
151 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200152 printk("tvp5150: Active video cropping stop = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300153 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
154 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800155 printk("tvp5150: Genlock/RTC = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300156 tvp5150_read(sd, TVP5150_GENLOCK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800157 printk("tvp5150: Horizontal sync start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300158 tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800159 printk("tvp5150: Vertical blanking start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300160 tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800161 printk("tvp5150: Vertical blanking stop = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300162 tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200163 printk("tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300164 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
165 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800166 printk("tvp5150: Interrupt reset register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300167 tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800168 printk("tvp5150: Interrupt enable register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300169 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800170 printk("tvp5150: Interrupt configuration register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300171 tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800172 printk("tvp5150: Video standard = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300173 tvp5150_read(sd, TVP5150_VIDEO_STD));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200174 printk("tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300175 tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
176 tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800177 printk("tvp5150: Macrovision on counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300178 tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800179 printk("tvp5150: Macrovision off counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300180 tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200181 printk("tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300182 (tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200183 printk("tvp5150: Device ID = %02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300184 tvp5150_read(sd, TVP5150_MSB_DEV_ID),
185 tvp5150_read(sd, TVP5150_LSB_DEV_ID));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200186 printk("tvp5150: ROM version = (hex) %02x.%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300187 tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
188 tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200189 printk("tvp5150: Vertical line count = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300190 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
191 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800192 printk("tvp5150: Interrupt status register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300193 tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800194 printk("tvp5150: Interrupt active register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300195 tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200196 printk("tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300197 tvp5150_read(sd, TVP5150_STATUS_REG_1),
198 tvp5150_read(sd, TVP5150_STATUS_REG_2),
199 tvp5150_read(sd, TVP5150_STATUS_REG_3),
200 tvp5150_read(sd, TVP5150_STATUS_REG_4),
201 tvp5150_read(sd, TVP5150_STATUS_REG_5));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200202
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300203 dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
204 TVP5150_TELETEXT_FIL1_END, 8);
205 dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
206 TVP5150_TELETEXT_FIL2_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200207
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800208 printk("tvp5150: Teletext filter enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300209 tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800210 printk("tvp5150: Interrupt status register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300211 tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800212 printk("tvp5150: Interrupt enable register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300213 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800214 printk("tvp5150: Interrupt configuration = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300215 tvp5150_read(sd, TVP5150_INT_CONF));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800216 printk("tvp5150: VDP status register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300217 tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800218 printk("tvp5150: FIFO word count = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300219 tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800220 printk("tvp5150: FIFO interrupt threshold = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300221 tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800222 printk("tvp5150: FIFO reset = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300223 tvp5150_read(sd, TVP5150_FIFO_RESET));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800224 printk("tvp5150: Line number interrupt = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300225 tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200226 printk("tvp5150: Pixel alignment register = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300227 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
228 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800229 printk("tvp5150: FIFO output control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300230 tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200231 printk("tvp5150: Full field enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300232 tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800233 printk("tvp5150: Full field mode register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300234 tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200235
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300236 dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
237 TVP5150_CC_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200238
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300239 dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
240 TVP5150_WSS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200241
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300242 dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
243 TVP5150_VPS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200244
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300245 dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
246 TVP5150_VITC_DATA_END, 10);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200247
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300248 dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
249 TVP5150_LINE_MODE_END, 8);
250 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800251}
252
253/****************************************************************************
254 Basic functions
255 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800256
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300257static inline void tvp5150_selmux(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800258{
Paul Walmsley2962fc02010-10-09 01:31:40 -0300259 int opmode = 0;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300260 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300261 int input = 0;
Dan Carpenterafcc8e82012-07-12 10:47:28 -0300262 int val;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800263
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200264 /* Only tvp5150am1 and tvp5151 have signal generator support */
265 if ((decoder->dev_id == 0x5150 && decoder->rom_ver == 0x0400) ||
266 (decoder->dev_id == 0x5151 && decoder->rom_ver == 0x0100)) {
267 if (!decoder->enable)
268 input = 8;
269 }
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800270
Hans Verkuil5325b422009-04-02 11:26:22 -0300271 switch (decoder->input) {
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300272 case TVP5150_COMPOSITE1:
273 input |= 2;
274 /* fall through */
275 case TVP5150_COMPOSITE0:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200276 break;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300277 case TVP5150_SVIDEO:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200278 default:
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300279 input |= 1;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200280 break;
281 }
282
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300283 v4l2_dbg(1, debug, sd, "Selecting video route: route input=%i, output=%i "
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300284 "=> tvp5150 input=%i, opmode=%i\n",
Hans Verkuil5325b422009-04-02 11:26:22 -0300285 decoder->input, decoder->output,
286 input, opmode);
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300287
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300288 tvp5150_write(sd, TVP5150_OP_MODE_CTL, opmode);
289 tvp5150_write(sd, TVP5150_VD_IN_SRC_SEL_1, input);
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300290
Laurent Pinchart11e50152016-12-09 09:47:18 -0200291 /*
292 * Setup the FID/GLCO/VLK/HVLK and INTREQ/GPCL/VBLK output signals. For
293 * S-Video we output the vertical lock (VLK) signal on FID/GLCO/VLK/HVLK
294 * and set INTREQ/GPCL/VBLK to logic 0. For composite we output the
295 * field indicator (FID) signal on FID/GLCO/VLK/HVLK and set
296 * INTREQ/GPCL/VBLK to logic 1.
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300297 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300298 val = tvp5150_read(sd, TVP5150_MISC_CTL);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300299 if (val < 0) {
300 v4l2_err(sd, "%s: failed with error = %d\n", __func__, val);
301 return;
302 }
303
Hans Verkuil5325b422009-04-02 11:26:22 -0300304 if (decoder->input == TVP5150_SVIDEO)
Laurent Pinchart11e50152016-12-09 09:47:18 -0200305 val = (val & ~TVP5150_MISC_CTL_GPCL) | TVP5150_MISC_CTL_HVLK;
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300306 else
Laurent Pinchart11e50152016-12-09 09:47:18 -0200307 val = (val & ~TVP5150_MISC_CTL_HVLK) | TVP5150_MISC_CTL_GPCL;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300308 tvp5150_write(sd, TVP5150_MISC_CTL, val);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800309};
310
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200311struct i2c_reg_value {
312 unsigned char reg;
313 unsigned char value;
314};
315
316/* Default values as sugested at TVP5150AM1 datasheet */
317static const struct i2c_reg_value tvp5150_init_default[] = {
318 { /* 0x00 */
319 TVP5150_VD_IN_SRC_SEL_1,0x00
320 },
321 { /* 0x01 */
322 TVP5150_ANAL_CHL_CTL,0x15
323 },
324 { /* 0x02 */
325 TVP5150_OP_MODE_CTL,0x00
326 },
327 { /* 0x03 */
328 TVP5150_MISC_CTL,0x01
329 },
330 { /* 0x06 */
331 TVP5150_COLOR_KIL_THSH_CTL,0x10
332 },
333 { /* 0x07 */
334 TVP5150_LUMA_PROC_CTL_1,0x60
335 },
336 { /* 0x08 */
337 TVP5150_LUMA_PROC_CTL_2,0x00
338 },
339 { /* 0x09 */
340 TVP5150_BRIGHT_CTL,0x80
341 },
342 { /* 0x0a */
343 TVP5150_SATURATION_CTL,0x80
344 },
345 { /* 0x0b */
346 TVP5150_HUE_CTL,0x00
347 },
348 { /* 0x0c */
349 TVP5150_CONTRAST_CTL,0x80
350 },
351 { /* 0x0d */
352 TVP5150_DATA_RATE_SEL,0x47
353 },
354 { /* 0x0e */
355 TVP5150_LUMA_PROC_CTL_3,0x00
356 },
357 { /* 0x0f */
358 TVP5150_CONF_SHARED_PIN,0x08
359 },
360 { /* 0x11 */
361 TVP5150_ACT_VD_CROP_ST_MSB,0x00
362 },
363 { /* 0x12 */
364 TVP5150_ACT_VD_CROP_ST_LSB,0x00
365 },
366 { /* 0x13 */
367 TVP5150_ACT_VD_CROP_STP_MSB,0x00
368 },
369 { /* 0x14 */
370 TVP5150_ACT_VD_CROP_STP_LSB,0x00
371 },
372 { /* 0x15 */
373 TVP5150_GENLOCK,0x01
374 },
375 { /* 0x16 */
376 TVP5150_HORIZ_SYNC_START,0x80
377 },
378 { /* 0x18 */
379 TVP5150_VERT_BLANKING_START,0x00
380 },
381 { /* 0x19 */
382 TVP5150_VERT_BLANKING_STOP,0x00
383 },
384 { /* 0x1a */
385 TVP5150_CHROMA_PROC_CTL_1,0x0c
386 },
387 { /* 0x1b */
388 TVP5150_CHROMA_PROC_CTL_2,0x14
389 },
390 { /* 0x1c */
391 TVP5150_INT_RESET_REG_B,0x00
392 },
393 { /* 0x1d */
394 TVP5150_INT_ENABLE_REG_B,0x00
395 },
396 { /* 0x1e */
397 TVP5150_INTT_CONFIG_REG_B,0x00
398 },
399 { /* 0x28 */
400 TVP5150_VIDEO_STD,0x00
401 },
402 { /* 0x2e */
403 TVP5150_MACROVISION_ON_CTR,0x0f
404 },
405 { /* 0x2f */
406 TVP5150_MACROVISION_OFF_CTR,0x01
407 },
408 { /* 0xbb */
409 TVP5150_TELETEXT_FIL_ENA,0x00
410 },
411 { /* 0xc0 */
412 TVP5150_INT_STATUS_REG_A,0x00
413 },
414 { /* 0xc1 */
415 TVP5150_INT_ENABLE_REG_A,0x00
416 },
417 { /* 0xc2 */
418 TVP5150_INT_CONF,0x04
419 },
420 { /* 0xc8 */
421 TVP5150_FIFO_INT_THRESHOLD,0x80
422 },
423 { /* 0xc9 */
424 TVP5150_FIFO_RESET,0x00
425 },
426 { /* 0xca */
427 TVP5150_LINE_NUMBER_INT,0x00
428 },
429 { /* 0xcb */
430 TVP5150_PIX_ALIGN_REG_LOW,0x4e
431 },
432 { /* 0xcc */
433 TVP5150_PIX_ALIGN_REG_HIGH,0x00
434 },
435 { /* 0xcd */
436 TVP5150_FIFO_OUT_CTRL,0x01
437 },
438 { /* 0xcf */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200439 TVP5150_FULL_FIELD_ENA,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200440 },
441 { /* 0xd0 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200442 TVP5150_LINE_MODE_INI,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200443 },
444 { /* 0xfc */
445 TVP5150_FULL_FIELD_MODE_REG,0x7f
446 },
447 { /* end of data */
448 0xff,0xff
449 }
450};
451
452/* Default values as sugested at TVP5150AM1 datasheet */
453static const struct i2c_reg_value tvp5150_init_enable[] = {
454 {
455 TVP5150_CONF_SHARED_PIN, 2
456 },{ /* Automatic offset and AGC enabled */
457 TVP5150_ANAL_CHL_CTL, 0x15
458 },{ /* Activate YCrCb output 0x9 or 0xd ? */
Laurent Pinchart11e50152016-12-09 09:47:18 -0200459 TVP5150_MISC_CTL, TVP5150_MISC_CTL_GPCL |
460 TVP5150_MISC_CTL_INTREQ_OE |
461 TVP5150_MISC_CTL_YCBCR_OE |
462 TVP5150_MISC_CTL_SYNC_OE |
463 TVP5150_MISC_CTL_VBLANK |
464 TVP5150_MISC_CTL_CLOCK_OE,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200465 },{ /* Activates video std autodetection for all standards */
466 TVP5150_AUTOSW_MSK, 0x0
467 },{ /* Default format: 0x47. For 4:2:2: 0x40 */
468 TVP5150_DATA_RATE_SEL, 0x47
469 },{
470 TVP5150_CHROMA_PROC_CTL_1, 0x0c
471 },{
472 TVP5150_CHROMA_PROC_CTL_2, 0x54
473 },{ /* Non documented, but initialized on WinTV USB2 */
474 0x27, 0x20
475 },{
476 0xff,0xff
477 }
478};
479
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200480struct tvp5150_vbi_type {
481 unsigned int vbi_type;
482 unsigned int ini_line;
483 unsigned int end_line;
484 unsigned int by_field :1;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200485};
486
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200487struct i2c_vbi_ram_value {
488 u16 reg;
489 struct tvp5150_vbi_type type;
490 unsigned char values[16];
491};
492
493/* This struct have the values for each supported VBI Standard
494 * by
495 tvp5150_vbi_types should follow the same order as vbi_ram_default
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200496 * value 0 means rom position 0x10, value 1 means rom position 0x30
497 * and so on. There are 16 possible locations from 0 to 15.
498 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200499
Adrian Bunka9cff902006-01-15 06:56:15 -0200500static struct i2c_vbi_ram_value vbi_ram_default[] =
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200501{
Hans Verkuil9bc74002006-03-29 18:02:51 -0300502 /* FIXME: Current api doesn't handle all VBI types, those not
503 yet supported are placed under #if 0 */
504#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200505 {0x010, /* Teletext, SECAM, WST System A */
506 {V4L2_SLICED_TELETEXT_SECAM,6,23,1},
507 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
508 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200509 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300510#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200511 {0x030, /* Teletext, PAL, WST System B */
Hans Verkuil9bc74002006-03-29 18:02:51 -0300512 {V4L2_SLICED_TELETEXT_B,6,22,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200513 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
514 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200515 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300516#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200517 {0x050, /* Teletext, PAL, WST System C */
518 {V4L2_SLICED_TELETEXT_PAL_C,6,22,1},
519 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
520 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200521 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200522 {0x070, /* Teletext, NTSC, WST System B */
523 {V4L2_SLICED_TELETEXT_NTSC_B,10,21,1},
524 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
525 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200526 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200527 {0x090, /* Tetetext, NTSC NABTS System C */
528 {V4L2_SLICED_TELETEXT_NTSC_C,10,21,1},
529 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
530 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200531 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200532 {0x0b0, /* Teletext, NTSC-J, NABTS System D */
533 {V4L2_SLICED_TELETEXT_NTSC_D,10,21,1},
534 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
535 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200536 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200537 {0x0d0, /* Closed Caption, PAL/SECAM */
538 {V4L2_SLICED_CAPTION_625,22,22,1},
539 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
540 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200541 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300542#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200543 {0x0f0, /* Closed Caption, NTSC */
544 {V4L2_SLICED_CAPTION_525,21,21,1},
545 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
546 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200547 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200548 {0x110, /* Wide Screen Signal, PAL/SECAM */
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200549 {V4L2_SLICED_WSS_625,23,23,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200550 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
551 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200552 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300553#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200554 {0x130, /* Wide Screen Signal, NTSC C */
555 {V4L2_SLICED_WSS_525,20,20,1},
556 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
557 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200558 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200559 {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
560 {V4l2_SLICED_VITC_625,6,22,0},
561 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
562 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200563 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200564 {0x170, /* Vertical Interval Timecode (VITC), NTSC */
565 {V4l2_SLICED_VITC_525,10,20,0},
566 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
567 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200568 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300569#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200570 {0x190, /* Video Program System (VPS), PAL */
571 {V4L2_SLICED_VPS,16,16,0},
572 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
573 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200574 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200575 /* 0x1d0 User programmable */
576
577 /* End of struct */
578 { (u16)-1 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200579};
580
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300581static int tvp5150_write_inittab(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200582 const struct i2c_reg_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200583{
584 while (regs->reg != 0xff) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300585 tvp5150_write(sd, regs->reg, regs->value);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200586 regs++;
587 }
588 return 0;
589}
590
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300591static int tvp5150_vdp_init(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200592 const struct i2c_vbi_ram_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200593{
594 unsigned int i;
595
596 /* Disable Full Field */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300597 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200598
599 /* Before programming, Line mode should be at 0xff */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300600 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
601 tvp5150_write(sd, i, 0xff);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200602
603 /* Load Ram Table */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300604 while (regs->reg != (u16)-1) {
605 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
606 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200607
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300608 for (i = 0; i < 16; i++)
609 tvp5150_write(sd, TVP5150_VDP_CONF_RAM_DATA, regs->values[i]);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200610
611 regs++;
612 }
613 return 0;
614}
615
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200616/* Fills VBI capabilities based on i2c_vbi_ram_value struct */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300617static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200618 struct v4l2_sliced_vbi_cap *cap)
619{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300620 const struct i2c_vbi_ram_value *regs = vbi_ram_default;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200621 int line;
622
Hans Verkuilbccfa442009-03-30 06:55:27 -0300623 v4l2_dbg(1, debug, sd, "g_sliced_vbi_cap\n");
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200624 memset(cap, 0, sizeof *cap);
625
626 while (regs->reg != (u16)-1 ) {
627 for (line=regs->type.ini_line;line<=regs->type.end_line;line++) {
628 cap->service_lines[0][line] |= regs->type.vbi_type;
629 }
630 cap->service_set |= regs->type.vbi_type;
631
632 regs++;
633 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300634 return 0;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200635}
636
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200637/* Set vbi processing
638 * type - one of tvp5150_vbi_types
639 * line - line to gather data
640 * fields: bit 0 field1, bit 1, field2
641 * flags (default=0xf0) is a bitmask, were set means:
642 * bit 7: enable filtering null bytes on CC
643 * bit 6: send data also to FIFO
644 * bit 5: don't allow data with errors on FIFO
645 * bit 4: enable ECC when possible
646 * pix_align = pix alignment:
647 * LSB = field1
648 * MSB = field2
649 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300650static int tvp5150_set_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200651 const struct i2c_vbi_ram_value *regs,
652 unsigned int type,u8 flags, int line,
653 const int fields)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200654{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300655 struct tvp5150 *decoder = to_tvp5150(sd);
656 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200657 u8 reg;
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200658 int pos=0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200659
660 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300661 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200662 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300663 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200664 /* Don't follow NTSC Line number convension */
665 line += 3;
666 }
667
668 if (line<6||line>27)
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200669 return 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200670
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200671 while (regs->reg != (u16)-1 ) {
672 if ((type & regs->type.vbi_type) &&
673 (line>=regs->type.ini_line) &&
674 (line<=regs->type.end_line)) {
675 type=regs->type.vbi_type;
676 break;
677 }
678
679 regs++;
680 pos++;
681 }
682 if (regs->reg == (u16)-1)
683 return 0;
684
685 type=pos | (flags & 0xf0);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200686 reg=((line-6)<<1)+TVP5150_LINE_MODE_INI;
687
688 if (fields&1) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300689 tvp5150_write(sd, reg, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200690 }
691
692 if (fields&2) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300693 tvp5150_write(sd, reg+1, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200694 }
695
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200696 return type;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200697}
698
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300699static int tvp5150_get_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200700 const struct i2c_vbi_ram_value *regs, int line)
701{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300702 struct tvp5150 *decoder = to_tvp5150(sd);
703 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200704 u8 reg;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300705 int pos, type = 0;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300706 int i, ret = 0;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200707
708 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300709 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200710 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300711 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200712 /* Don't follow NTSC Line number convension */
713 line += 3;
714 }
715
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300716 if (line < 6 || line > 27)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200717 return 0;
718
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300719 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200720
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300721 for (i = 0; i <= 1; i++) {
722 ret = tvp5150_read(sd, reg + i);
723 if (ret < 0) {
724 v4l2_err(sd, "%s: failed with error = %d\n",
725 __func__, ret);
726 return 0;
727 }
728 pos = ret & 0x0f;
729 if (pos < 0x0f)
730 type |= regs[pos].type.vbi_type;
731 }
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200732
733 return type;
734}
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800735
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300736static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
737{
738 struct tvp5150 *decoder = to_tvp5150(sd);
739 int fmt = 0;
740
741 decoder->norm = std;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800742
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200743 /* First tests should be against specific std */
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800744
Hans Verkuil26811ae2013-05-29 10:19:06 -0300745 if (std == V4L2_STD_NTSC_443) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300746 fmt = VIDEO_STD_NTSC_4_43_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300747 } else if (std == V4L2_STD_PAL_M) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300748 fmt = VIDEO_STD_PAL_M_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300749 } else if (std == V4L2_STD_PAL_N || std == V4L2_STD_PAL_Nc) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300750 fmt = VIDEO_STD_PAL_COMBINATION_N_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200751 } else {
752 /* Then, test against generic ones */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300753 if (std & V4L2_STD_NTSC)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300754 fmt = VIDEO_STD_NTSC_MJ_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300755 else if (std & V4L2_STD_PAL)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300756 fmt = VIDEO_STD_PAL_BDGHIN_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300757 else if (std & V4L2_STD_SECAM)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300758 fmt = VIDEO_STD_SECAM_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200759 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800760
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300761 v4l2_dbg(1, debug, sd, "Set video std register to %d.\n", fmt);
762 tvp5150_write(sd, TVP5150_VIDEO_STD, fmt);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200763 return 0;
764}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800765
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300766static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200767{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300768 struct tvp5150 *decoder = to_tvp5150(sd);
769
770 if (decoder->norm == std)
771 return 0;
772
Javier Martin963ddc62012-01-31 05:23:46 -0300773 /* Change cropping height limits */
774 if (std & V4L2_STD_525_60)
775 decoder->rect.height = TVP5150_V_MAX_525_60;
776 else
777 decoder->rect.height = TVP5150_V_MAX_OTHERS;
778
779
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300780 return tvp5150_set_std(sd, std);
781}
782
783static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
784{
785 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200786
787 /* Initializes TVP5150 to its default values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300788 tvp5150_write_inittab(sd, tvp5150_init_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200789
790 /* Initializes VDP registers */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300791 tvp5150_vdp_init(sd, vbi_ram_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200792
793 /* Selects decoder input */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300794 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800795
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200796 /* Initializes TVP5150 to stream enabled values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300797 tvp5150_write_inittab(sd, tvp5150_init_enable);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800798
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200799 /* Initialize image preferences */
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300800 v4l2_ctrl_handler_setup(&decoder->hdl);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200801
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300802 tvp5150_set_std(sd, decoder->norm);
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200803
804 if (decoder->mbus_type == V4L2_MBUS_PARALLEL)
805 tvp5150_write(sd, TVP5150_DATA_RATE_SEL, 0x40);
806
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300807 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800808};
809
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300810static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800811{
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300812 struct v4l2_subdev *sd = to_sd(ctrl);
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200813 struct tvp5150 *decoder = to_tvp5150(sd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800814
815 switch (ctrl->id) {
816 case V4L2_CID_BRIGHTNESS:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300817 tvp5150_write(sd, TVP5150_BRIGHT_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800818 return 0;
819 case V4L2_CID_CONTRAST:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300820 tvp5150_write(sd, TVP5150_CONTRAST_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800821 return 0;
822 case V4L2_CID_SATURATION:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300823 tvp5150_write(sd, TVP5150_SATURATION_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800824 return 0;
825 case V4L2_CID_HUE:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300826 tvp5150_write(sd, TVP5150_HUE_CTL, ctrl->val);
Laurent Pincharte5d92c02016-12-08 20:22:43 -0200827 break;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -0200828 case V4L2_CID_TEST_PATTERN:
829 decoder->enable = ctrl->val ? false : true;
830 tvp5150_selmux(sd);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800831 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800832 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200833 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800834}
835
Javier Martinec2c4f32012-01-05 10:57:39 -0300836static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd)
837{
838 int val = tvp5150_read(sd, TVP5150_STATUS_REG_5);
839
840 switch (val & 0x0F) {
841 case 0x01:
842 return V4L2_STD_NTSC;
843 case 0x03:
844 return V4L2_STD_PAL;
845 case 0x05:
846 return V4L2_STD_PAL_M;
847 case 0x07:
848 return V4L2_STD_PAL_N | V4L2_STD_PAL_Nc;
849 case 0x09:
850 return V4L2_STD_NTSC_443;
851 case 0xb:
852 return V4L2_STD_SECAM;
853 default:
854 return V4L2_STD_UNKNOWN;
855 }
856}
857
Hans Verkuilda298c62015-04-09 04:02:34 -0300858static int tvp5150_fill_fmt(struct v4l2_subdev *sd,
859 struct v4l2_subdev_pad_config *cfg,
860 struct v4l2_subdev_format *format)
Javier Martinec2c4f32012-01-05 10:57:39 -0300861{
Hans Verkuilda298c62015-04-09 04:02:34 -0300862 struct v4l2_mbus_framefmt *f;
Javier Martinec2c4f32012-01-05 10:57:39 -0300863 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martinec2c4f32012-01-05 10:57:39 -0300864
Hans Verkuilda298c62015-04-09 04:02:34 -0300865 if (!format || format->pad)
Javier Martinec2c4f32012-01-05 10:57:39 -0300866 return -EINVAL;
867
Hans Verkuilda298c62015-04-09 04:02:34 -0300868 f = &format->format;
869
Javier Martin963ddc62012-01-31 05:23:46 -0300870 f->width = decoder->rect.width;
Laurent Pinchart4f57d272016-01-26 10:46:23 -0200871 f->height = decoder->rect.height / 2;
Javier Martinec2c4f32012-01-05 10:57:39 -0300872
Boris BREZILLONf5fe58f2014-11-10 14:28:29 -0300873 f->code = MEDIA_BUS_FMT_UYVY8_2X8;
Laurent Pinchart4f57d272016-01-26 10:46:23 -0200874 f->field = V4L2_FIELD_ALTERNATE;
Javier Martinec2c4f32012-01-05 10:57:39 -0300875 f->colorspace = V4L2_COLORSPACE_SMPTE170M;
876
877 v4l2_dbg(1, debug, sd, "width = %d, height = %d\n", f->width,
878 f->height);
879 return 0;
880}
881
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200882static int tvp5150_set_selection(struct v4l2_subdev *sd,
883 struct v4l2_subdev_pad_config *cfg,
884 struct v4l2_subdev_selection *sel)
Javier Martin963ddc62012-01-31 05:23:46 -0300885{
Javier Martin963ddc62012-01-31 05:23:46 -0300886 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200887 struct v4l2_rect rect = sel->r;
Javier Martin963ddc62012-01-31 05:23:46 -0300888 v4l2_std_id std;
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200889 int hmax;
890
891 if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE ||
892 sel->target != V4L2_SEL_TGT_CROP)
893 return -EINVAL;
Javier Martin963ddc62012-01-31 05:23:46 -0300894
895 v4l2_dbg(1, debug, sd, "%s left=%d, top=%d, width=%d, height=%d\n",
896 __func__, rect.left, rect.top, rect.width, rect.height);
897
Javier Martin963ddc62012-01-31 05:23:46 -0300898 /* tvp5150 has some special limits */
899 rect.left = clamp(rect.left, 0, TVP5150_MAX_CROP_LEFT);
Ricardo Ribaldaf90580c2013-11-26 05:31:42 -0300900 rect.width = clamp_t(unsigned int, rect.width,
901 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect.left,
902 TVP5150_H_MAX - rect.left);
Javier Martin963ddc62012-01-31 05:23:46 -0300903 rect.top = clamp(rect.top, 0, TVP5150_MAX_CROP_TOP);
904
905 /* Calculate height based on current standard */
906 if (decoder->norm == V4L2_STD_ALL)
907 std = tvp5150_read_std(sd);
908 else
909 std = decoder->norm;
910
911 if (std & V4L2_STD_525_60)
912 hmax = TVP5150_V_MAX_525_60;
913 else
914 hmax = TVP5150_V_MAX_OTHERS;
915
Ricardo Ribaldaf90580c2013-11-26 05:31:42 -0300916 rect.height = clamp_t(unsigned int, rect.height,
917 hmax - TVP5150_MAX_CROP_TOP - rect.top,
918 hmax - rect.top);
Javier Martin963ddc62012-01-31 05:23:46 -0300919
920 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, rect.top);
921 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP,
922 rect.top + rect.height - hmax);
923 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_MSB,
924 rect.left >> TVP5150_CROP_SHIFT);
925 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_LSB,
926 rect.left | (1 << TVP5150_CROP_SHIFT));
927 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_MSB,
928 (rect.left + rect.width - TVP5150_MAX_CROP_LEFT) >>
929 TVP5150_CROP_SHIFT);
930 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_LSB,
931 rect.left + rect.width - TVP5150_MAX_CROP_LEFT);
932
933 decoder->rect = rect;
934
935 return 0;
936}
937
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200938static int tvp5150_get_selection(struct v4l2_subdev *sd,
939 struct v4l2_subdev_pad_config *cfg,
940 struct v4l2_subdev_selection *sel)
Javier Martin963ddc62012-01-31 05:23:46 -0300941{
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200942 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
Javier Martin963ddc62012-01-31 05:23:46 -0300943 v4l2_std_id std;
944
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200945 if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE)
Javier Martin963ddc62012-01-31 05:23:46 -0300946 return -EINVAL;
947
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200948 switch (sel->target) {
949 case V4L2_SEL_TGT_CROP_BOUNDS:
950 case V4L2_SEL_TGT_CROP_DEFAULT:
951 sel->r.left = 0;
952 sel->r.top = 0;
953 sel->r.width = TVP5150_H_MAX;
Javier Martin963ddc62012-01-31 05:23:46 -0300954
Hans Verkuil10d5509c2015-12-14 08:25:32 -0200955 /* Calculate height based on current standard */
956 if (decoder->norm == V4L2_STD_ALL)
957 std = tvp5150_read_std(sd);
958 else
959 std = decoder->norm;
960 if (std & V4L2_STD_525_60)
961 sel->r.height = TVP5150_V_MAX_525_60;
962 else
963 sel->r.height = TVP5150_V_MAX_OTHERS;
964 return 0;
965 case V4L2_SEL_TGT_CROP:
966 sel->r = decoder->rect;
967 return 0;
968 default:
969 return -EINVAL;
970 }
Javier Martin963ddc62012-01-31 05:23:46 -0300971}
972
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -0200973static int tvp5150_g_mbus_config(struct v4l2_subdev *sd,
974 struct v4l2_mbus_config *cfg)
975{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -0200976 struct tvp5150 *decoder = to_tvp5150(sd);
977
978 cfg->type = decoder->mbus_type;
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -0200979 cfg->flags = V4L2_MBUS_MASTER | V4L2_MBUS_PCLK_SAMPLE_RISING
980 | V4L2_MBUS_FIELD_EVEN_LOW | V4L2_MBUS_DATA_ACTIVE_HIGH;
981
982 return 0;
983}
984
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800985/****************************************************************************
Laurent Pincharte545ac82016-01-26 10:46:24 -0200986 V4L2 subdev pad ops
987 ****************************************************************************/
988static int tvp5150_enum_mbus_code(struct v4l2_subdev *sd,
989 struct v4l2_subdev_pad_config *cfg,
990 struct v4l2_subdev_mbus_code_enum *code)
991{
992 if (code->pad || code->index)
993 return -EINVAL;
994
995 code->code = MEDIA_BUS_FMT_UYVY8_2X8;
996 return 0;
997}
998
999static int tvp5150_enum_frame_size(struct v4l2_subdev *sd,
1000 struct v4l2_subdev_pad_config *cfg,
1001 struct v4l2_subdev_frame_size_enum *fse)
1002{
1003 struct tvp5150 *decoder = to_tvp5150(sd);
1004
1005 if (fse->index >= 8 || fse->code != MEDIA_BUS_FMT_UYVY8_2X8)
1006 return -EINVAL;
1007
1008 fse->code = MEDIA_BUS_FMT_UYVY8_2X8;
1009 fse->min_width = decoder->rect.width;
1010 fse->max_width = decoder->rect.width;
1011 fse->min_height = decoder->rect.height / 2;
1012 fse->max_height = decoder->rect.height / 2;
1013
1014 return 0;
1015}
1016
1017/****************************************************************************
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001018 Media entity ops
1019 ****************************************************************************/
1020
1021static int tvp5150_link_setup(struct media_entity *entity,
1022 const struct media_pad *local,
1023 const struct media_pad *remote, u32 flags)
1024{
1025#ifdef CONFIG_MEDIA_CONTROLLER
1026 struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
1027 struct tvp5150 *decoder = to_tvp5150(sd);
1028 int i;
1029
1030 for (i = 0; i < TVP5150_INPUT_NUM; i++) {
1031 if (remote->entity == &decoder->input_ent[i])
1032 break;
1033 }
1034
1035 /* Do nothing for entities that are not input connectors */
1036 if (i == TVP5150_INPUT_NUM)
1037 return 0;
1038
1039 decoder->input = i;
1040
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001041 tvp5150_selmux(sd);
1042#endif
1043
1044 return 0;
1045}
1046
1047static const struct media_entity_operations tvp5150_sd_media_ops = {
1048 .link_setup = tvp5150_link_setup,
1049};
1050
1051/****************************************************************************
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001052 I2C Command
1053 ****************************************************************************/
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001054
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001055static int tvp5150_s_stream(struct v4l2_subdev *sd, int enable)
1056{
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001057 struct tvp5150 *decoder = to_tvp5150(sd);
Laurent Pinchart1b8ff912016-12-09 09:47:19 -02001058 int val;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001059
Laurent Pinchart1b8ff912016-12-09 09:47:19 -02001060 /* Enable or disable the video output signals. */
1061 val = tvp5150_read(sd, TVP5150_MISC_CTL);
1062 if (val < 0)
1063 return val;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001064
Laurent Pinchart1b8ff912016-12-09 09:47:19 -02001065 val &= ~(TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_SYNC_OE |
1066 TVP5150_MISC_CTL_CLOCK_OE);
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001067
Laurent Pinchart1b8ff912016-12-09 09:47:19 -02001068 if (enable) {
1069 /*
1070 * Enable the YCbCr and clock outputs. In discrete sync mode
1071 * (non-BT.656) additionally enable the the sync outputs.
1072 */
1073 val |= TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_CLOCK_OE;
1074 if (decoder->mbus_type == V4L2_MBUS_PARALLEL)
1075 val |= TVP5150_MISC_CTL_SYNC_OE;
1076 }
1077
1078 tvp5150_write(sd, TVP5150_MISC_CTL, val);
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001079
1080 return 0;
1081}
1082
Hans Verkuil5325b422009-04-02 11:26:22 -03001083static int tvp5150_s_routing(struct v4l2_subdev *sd,
1084 u32 input, u32 output, u32 config)
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001085{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001086 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001087
Hans Verkuil5325b422009-04-02 11:26:22 -03001088 decoder->input = input;
1089 decoder->output = output;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001090
1091 if (output == TVP5150_BLACK_SCREEN)
1092 decoder->enable = false;
1093 else
1094 decoder->enable = true;
1095
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001096 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -08001097 return 0;
1098}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001099
Hans Verkuild37dad42010-03-14 10:59:16 -03001100static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001101{
Hans Verkuild37dad42010-03-14 10:59:16 -03001102 /* this is for capturing 36 raw vbi lines
1103 if there's a way to cut off the beginning 2 vbi lines
1104 with the tvp5150 then the vbi line count could be lowered
1105 to 17 lines/field again, although I couldn't find a register
1106 which could do that cropping */
1107 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
1108 tvp5150_write(sd, TVP5150_LUMA_PROC_CTL_1, 0x70);
1109 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
1110 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, 0x00);
1111 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP, 0x01);
1112 }
1113 return 0;
1114}
1115
1116static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1117{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001118 int i;
1119
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001120 if (svbi->service_set != 0) {
1121 for (i = 0; i <= 23; i++) {
1122 svbi->service_lines[1][i] = 0;
1123 svbi->service_lines[0][i] =
1124 tvp5150_set_vbi(sd, vbi_ram_default,
1125 svbi->service_lines[0][i], 0xf0, i, 3);
1126 }
1127 /* Enables FIFO */
1128 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 1);
1129 } else {
1130 /* Disables FIFO*/
1131 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 0);
1132
1133 /* Disable Full Field */
1134 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
1135
1136 /* Disable Line modes */
1137 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
1138 tvp5150_write(sd, i, 0xff);
1139 }
1140 return 0;
1141}
1142
Hans Verkuild37dad42010-03-14 10:59:16 -03001143static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1144{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001145 int i, mask = 0;
1146
Hans Verkuil30634e82012-09-05 10:38:10 -03001147 memset(svbi->service_lines, 0, sizeof(svbi->service_lines));
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001148
1149 for (i = 0; i <= 23; i++) {
1150 svbi->service_lines[0][i] =
1151 tvp5150_get_vbi(sd, vbi_ram_default, i);
1152 mask |= svbi->service_lines[0][i];
1153 }
1154 svbi->service_set = mask;
1155 return 0;
1156}
1157
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001158#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001159static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001160{
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001161 int res;
1162
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001163 res = tvp5150_read(sd, reg->reg & 0xff);
1164 if (res < 0) {
1165 v4l2_err(sd, "%s: failed with error = %d\n", __func__, res);
1166 return res;
1167 }
1168
1169 reg->val = res;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001170 reg->size = 1;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001171 return 0;
1172}
1173
Hans Verkuil977ba3b2013-03-24 08:28:46 -03001174static int tvp5150_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001175{
Javier Martinez Canillaseca4ca82016-04-14 22:00:08 -03001176 return tvp5150_write(sd, reg->reg & 0xff, reg->val & 0xff);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001177}
1178#endif
1179
1180static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1181{
1182 int status = tvp5150_read(sd, 0x88);
1183
1184 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
1185 return 0;
1186}
1187
Javier Martinez Canillas5a08bc02016-08-11 13:28:15 -03001188static int tvp5150_registered(struct v4l2_subdev *sd)
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001189{
1190#ifdef CONFIG_MEDIA_CONTROLLER
1191 struct tvp5150 *decoder = to_tvp5150(sd);
1192 int ret = 0;
1193 int i;
1194
1195 for (i = 0; i < TVP5150_INPUT_NUM; i++) {
1196 struct media_entity *input = &decoder->input_ent[i];
1197 struct media_pad *pad = &decoder->input_pad[i];
1198
1199 if (!input->name)
1200 continue;
1201
1202 decoder->input_pad[i].flags = MEDIA_PAD_FL_SOURCE;
1203
1204 ret = media_entity_pads_init(input, 1, pad);
1205 if (ret < 0)
1206 return ret;
1207
1208 ret = media_device_register_entity(sd->v4l2_dev->mdev, input);
1209 if (ret < 0)
1210 return ret;
1211
1212 ret = media_create_pad_link(input, 0, &sd->entity,
1213 DEMOD_PAD_IF_INPUT, 0);
1214 if (ret < 0) {
1215 media_device_unregister_entity(input);
1216 return ret;
1217 }
1218 }
1219#endif
1220
1221 return 0;
1222}
1223
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001224/* ----------------------------------------------------------------------- */
1225
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001226static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
1227 .s_ctrl = tvp5150_s_ctrl,
1228};
1229
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001230static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1231 .log_status = tvp5150_log_status,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001232 .reset = tvp5150_reset,
1233#ifdef CONFIG_VIDEO_ADV_DEBUG
1234 .g_register = tvp5150_g_register,
1235 .s_register = tvp5150_s_register,
1236#endif
1237};
1238
1239static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001240 .g_tuner = tvp5150_g_tuner,
1241};
1242
1243static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
Laurent Pinchart8774bed2014-04-28 16:53:01 -03001244 .s_std = tvp5150_s_std,
Laurent Pinchart460b6c02016-01-07 10:46:45 -02001245 .s_stream = tvp5150_s_stream,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001246 .s_routing = tvp5150_s_routing,
Laurent Pinchartdd3a46b2016-01-07 10:46:46 -02001247 .g_mbus_config = tvp5150_g_mbus_config,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001248};
1249
1250static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001251 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
Hans Verkuild37dad42010-03-14 10:59:16 -03001252 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1253 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1254 .s_raw_fmt = tvp5150_s_raw_fmt,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001255};
1256
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001257static const struct v4l2_subdev_pad_ops tvp5150_pad_ops = {
1258 .enum_mbus_code = tvp5150_enum_mbus_code,
Laurent Pincharte545ac82016-01-26 10:46:24 -02001259 .enum_frame_size = tvp5150_enum_frame_size,
Hans Verkuilda298c62015-04-09 04:02:34 -03001260 .set_fmt = tvp5150_fill_fmt,
1261 .get_fmt = tvp5150_fill_fmt,
Hans Verkuil10d5509c2015-12-14 08:25:32 -02001262 .get_selection = tvp5150_get_selection,
1263 .set_selection = tvp5150_set_selection,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001264};
1265
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001266static const struct v4l2_subdev_ops tvp5150_ops = {
1267 .core = &tvp5150_core_ops,
1268 .tuner = &tvp5150_tuner_ops,
1269 .video = &tvp5150_video_ops,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001270 .vbi = &tvp5150_vbi_ops,
Hans Verkuilebcff5f2015-04-09 04:01:33 -03001271 .pad = &tvp5150_pad_ops,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001272};
1273
Javier Martinez Canillas5a08bc02016-08-11 13:28:15 -03001274static const struct v4l2_subdev_internal_ops tvp5150_internal_ops = {
1275 .registered = tvp5150_registered,
1276};
1277
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001278
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001279/****************************************************************************
1280 I2C Client & Driver
1281 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001282
Laurent Pinchart78715972016-01-07 10:46:41 -02001283static int tvp5150_detect_version(struct tvp5150 *core)
1284{
1285 struct v4l2_subdev *sd = &core->sd;
1286 struct i2c_client *c = v4l2_get_subdevdata(sd);
1287 unsigned int i;
Laurent Pinchart78715972016-01-07 10:46:41 -02001288 u8 regs[4];
1289 int res;
1290
1291 /*
1292 * Read consequent registers - TVP5150_MSB_DEV_ID, TVP5150_LSB_DEV_ID,
1293 * TVP5150_ROM_MAJOR_VER, TVP5150_ROM_MINOR_VER
1294 */
1295 for (i = 0; i < 4; i++) {
1296 res = tvp5150_read(sd, TVP5150_MSB_DEV_ID + i);
1297 if (res < 0)
1298 return res;
1299 regs[i] = res;
1300 }
1301
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001302 core->dev_id = (regs[0] << 8) | regs[1];
1303 core->rom_ver = (regs[2] << 8) | regs[3];
Laurent Pinchart78715972016-01-07 10:46:41 -02001304
1305 v4l2_info(sd, "tvp%04x (%u.%u) chip found @ 0x%02x (%s)\n",
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001306 core->dev_id, regs[2], regs[3], c->addr << 1,
1307 c->adapter->name);
Laurent Pinchart78715972016-01-07 10:46:41 -02001308
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001309 if (core->dev_id == 0x5150 && core->rom_ver == 0x0321) {
Laurent Pinchart78715972016-01-07 10:46:41 -02001310 v4l2_info(sd, "tvp5150a detected.\n");
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001311 } else if (core->dev_id == 0x5150 && core->rom_ver == 0x0400) {
Laurent Pinchart78715972016-01-07 10:46:41 -02001312 v4l2_info(sd, "tvp5150am1 detected.\n");
1313
1314 /* ITU-T BT.656.4 timing */
1315 tvp5150_write(sd, TVP5150_REV_SELECT, 0);
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001316 } else if (core->dev_id == 0x5151 && core->rom_ver == 0x0100) {
Laurent Pinchart05676b32016-01-07 10:46:42 -02001317 v4l2_info(sd, "tvp5151 detected.\n");
Laurent Pinchart78715972016-01-07 10:46:41 -02001318 } else {
Javier Martinez Canillas82275132016-02-05 17:09:54 -02001319 v4l2_info(sd, "*** unknown tvp%04x chip detected.\n",
1320 core->dev_id);
Laurent Pinchart78715972016-01-07 10:46:41 -02001321 }
1322
1323 return 0;
1324}
1325
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02001326static int tvp5150_init(struct i2c_client *c)
1327{
1328 struct gpio_desc *pdn_gpio;
1329 struct gpio_desc *reset_gpio;
1330
1331 pdn_gpio = devm_gpiod_get_optional(&c->dev, "pdn", GPIOD_OUT_HIGH);
1332 if (IS_ERR(pdn_gpio))
1333 return PTR_ERR(pdn_gpio);
1334
1335 if (pdn_gpio) {
1336 gpiod_set_value_cansleep(pdn_gpio, 0);
1337 /* Delay time between power supplies active and reset */
1338 msleep(20);
1339 }
1340
1341 reset_gpio = devm_gpiod_get_optional(&c->dev, "reset", GPIOD_OUT_HIGH);
1342 if (IS_ERR(reset_gpio))
1343 return PTR_ERR(reset_gpio);
1344
1345 if (reset_gpio) {
1346 /* RESETB pulse duration */
1347 ndelay(500);
1348 gpiod_set_value_cansleep(reset_gpio, 0);
1349 /* Delay time between end of reset to I2C active */
1350 usleep_range(200, 250);
1351 }
1352
1353 return 0;
1354}
1355
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001356static int tvp5150_parse_dt(struct tvp5150 *decoder, struct device_node *np)
1357{
1358 struct v4l2_of_endpoint bus_cfg;
1359 struct device_node *ep;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001360#ifdef CONFIG_MEDIA_CONTROLLER
1361 struct device_node *connectors, *child;
1362 struct media_entity *input;
1363 const char *name;
1364 u32 input_type;
1365#endif
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001366 unsigned int flags;
1367 int ret = 0;
1368
1369 ep = of_graph_get_next_endpoint(np, NULL);
1370 if (!ep)
1371 return -EINVAL;
1372
1373 ret = v4l2_of_parse_endpoint(ep, &bus_cfg);
1374 if (ret)
1375 goto err;
1376
1377 flags = bus_cfg.bus.parallel.flags;
1378
1379 if (bus_cfg.bus_type == V4L2_MBUS_PARALLEL &&
1380 !(flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH &&
1381 flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH &&
Javier Martinez Canillas2bd5e432016-02-05 17:09:53 -02001382 flags & V4L2_MBUS_FIELD_EVEN_LOW)) {
1383 ret = -EINVAL;
1384 goto err;
1385 }
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001386
1387 decoder->mbus_type = bus_cfg.bus_type;
1388
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001389#ifdef CONFIG_MEDIA_CONTROLLER
1390 connectors = of_get_child_by_name(np, "connectors");
1391
1392 if (!connectors)
1393 goto err;
1394
1395 for_each_available_child_of_node(connectors, child) {
1396 ret = of_property_read_u32(child, "input", &input_type);
1397 if (ret) {
1398 v4l2_err(&decoder->sd,
1399 "missing type property in node %s\n",
1400 child->name);
1401 goto err_connector;
1402 }
1403
Mauro Carvalho Chehab60ad7682016-02-19 15:02:30 -02001404 if (input_type >= TVP5150_INPUT_NUM) {
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001405 ret = -EINVAL;
1406 goto err_connector;
1407 }
1408
1409 input = &decoder->input_ent[input_type];
1410
1411 /* Each input connector can only be defined once */
1412 if (input->name) {
1413 v4l2_err(&decoder->sd,
1414 "input %s with same type already exists\n",
1415 input->name);
1416 ret = -EINVAL;
1417 goto err_connector;
1418 }
1419
1420 switch (input_type) {
1421 case TVP5150_COMPOSITE0:
1422 case TVP5150_COMPOSITE1:
1423 input->function = MEDIA_ENT_F_CONN_COMPOSITE;
1424 break;
1425 case TVP5150_SVIDEO:
1426 input->function = MEDIA_ENT_F_CONN_SVIDEO;
1427 break;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001428 }
1429
1430 input->flags = MEDIA_ENT_FL_CONNECTOR;
1431
1432 ret = of_property_read_string(child, "label", &name);
1433 if (ret < 0) {
1434 v4l2_err(&decoder->sd,
1435 "missing label property in node %s\n",
1436 child->name);
1437 goto err_connector;
1438 }
1439
1440 input->name = name;
1441 }
1442
1443err_connector:
1444 of_node_put(connectors);
1445#endif
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001446err:
1447 of_node_put(ep);
1448 return ret;
1449}
1450
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001451static const char * const tvp5150_test_patterns[2] = {
1452 "Disabled",
1453 "Black screen"
1454};
1455
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001456static int tvp5150_probe(struct i2c_client *c,
1457 const struct i2c_device_id *id)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001458{
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001459 struct tvp5150 *core;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001460 struct v4l2_subdev *sd;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001461 struct device_node *np = c->dev.of_node;
Laurent Pinchart78715972016-01-07 10:46:41 -02001462 int res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001463
1464 /* Check if the adapter supports the needed features */
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001465 if (!i2c_check_functionality(c->adapter,
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001466 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001467 return -EIO;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001468
Javier Martinez Canillas09aa2602016-01-07 10:46:49 -02001469 res = tvp5150_init(c);
1470 if (res)
1471 return res;
1472
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001473 core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL);
1474 if (!core)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001475 return -ENOMEM;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001476
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001477 sd = &core->sd;
Javier Martinez Canillasa2e5f1b2016-01-07 10:46:50 -02001478
1479 if (IS_ENABLED(CONFIG_OF) && np) {
1480 res = tvp5150_parse_dt(core, np);
1481 if (res) {
1482 v4l2_err(sd, "DT parsing error: %d\n", res);
1483 return res;
1484 }
1485 } else {
1486 /* Default to BT.656 embedded sync */
1487 core->mbus_type = V4L2_MBUS_BT656;
1488 }
1489
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001490 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
Javier Martinez Canillas5a08bc02016-08-11 13:28:15 -03001491 sd->internal_ops = &tvp5150_internal_ops;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001492 sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1493
1494#if defined(CONFIG_MEDIA_CONTROLLER)
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -02001495 core->pads[DEMOD_PAD_IF_INPUT].flags = MEDIA_PAD_FL_SINK;
1496 core->pads[DEMOD_PAD_VID_OUT].flags = MEDIA_PAD_FL_SOURCE;
1497 core->pads[DEMOD_PAD_VBI_OUT].flags = MEDIA_PAD_FL_SOURCE;
Mauro Carvalho Chehabf92c70a2016-01-27 15:09:15 -02001498
1499 sd->entity.function = MEDIA_ENT_F_ATV_DECODER;
1500
Mauro Carvalho Chehab55606312016-01-27 12:08:13 -02001501 res = media_entity_pads_init(&sd->entity, DEMOD_NUM_PADS, core->pads);
Laurent Pincharte545ac82016-01-26 10:46:24 -02001502 if (res < 0)
1503 return res;
Javier Martinez Canillasf7b4b542016-02-05 17:09:58 -02001504
1505 sd->entity.ops = &tvp5150_sd_media_ops;
Laurent Pincharte545ac82016-01-26 10:46:24 -02001506#endif
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001507
Laurent Pinchart78715972016-01-07 10:46:41 -02001508 res = tvp5150_detect_version(core);
1509 if (res < 0)
1510 return res;
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001511
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -02001512 core->norm = V4L2_STD_ALL; /* Default is autodetect */
Hans Verkuil5325b422009-04-02 11:26:22 -03001513 core->input = TVP5150_COMPOSITE1;
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001514 core->enable = true;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001515
Laurent Pinchartb1950b82016-01-07 10:46:44 -02001516 v4l2_ctrl_handler_init(&core->hdl, 5);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001517 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1518 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
1519 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1520 V4L2_CID_CONTRAST, 0, 255, 1, 128);
1521 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1522 V4L2_CID_SATURATION, 0, 255, 1, 128);
1523 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1524 V4L2_CID_HUE, -128, 127, 1, 0);
Laurent Pinchartb1950b82016-01-07 10:46:44 -02001525 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1526 V4L2_CID_PIXEL_RATE, 27000000,
1527 27000000, 1, 27000000);
Mauro Carvalho Chehabc43875f2016-02-12 15:42:02 -02001528 v4l2_ctrl_new_std_menu_items(&core->hdl, &tvp5150_ctrl_ops,
1529 V4L2_CID_TEST_PATTERN,
1530 ARRAY_SIZE(tvp5150_test_patterns),
1531 0, 0, tvp5150_test_patterns);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001532 sd->ctrl_handler = &core->hdl;
1533 if (core->hdl.error) {
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001534 res = core->hdl.error;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001535 goto err;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001536 }
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001537
Javier Martin963ddc62012-01-31 05:23:46 -03001538 /* Default is no cropping */
1539 core->rect.top = 0;
1540 if (tvp5150_read_std(sd) & V4L2_STD_525_60)
1541 core->rect.height = TVP5150_V_MAX_525_60;
1542 else
1543 core->rect.height = TVP5150_V_MAX_OTHERS;
1544 core->rect.left = 0;
1545 core->rect.width = TVP5150_H_MAX;
1546
Laurent Pinchartd25f9bf2016-12-09 09:47:17 -02001547 tvp5150_reset(sd, 0); /* Calls v4l2_ctrl_handler_setup() */
1548
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001549 res = v4l2_async_register_subdev(sd);
1550 if (res < 0)
1551 goto err;
1552
Markus Rechbergerf1e5ee42006-02-07 04:01:19 +01001553 if (debug > 1)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001554 tvp5150_log_status(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001555 return 0;
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001556
1557err:
1558 v4l2_ctrl_handler_free(&core->hdl);
1559 return res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001560}
1561
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001562static int tvp5150_remove(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001563{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001564 struct v4l2_subdev *sd = i2c_get_clientdata(c);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001565 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001566
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001567 v4l2_dbg(1, debug, sd,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -02001568 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1569 c->addr << 1);
1570
Javier Martinez Canillasc7d97492015-09-21 08:23:09 -03001571 v4l2_async_unregister_subdev(sd);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001572 v4l2_ctrl_handler_free(&decoder->hdl);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001573 return 0;
1574}
1575
1576/* ----------------------------------------------------------------------- */
1577
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001578static const struct i2c_device_id tvp5150_id[] = {
1579 { "tvp5150", 0 },
1580 { }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001581};
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001582MODULE_DEVICE_TABLE(i2c, tvp5150_id);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001583
Eduard Gavin7ef930a2016-01-07 10:46:48 -02001584#if IS_ENABLED(CONFIG_OF)
1585static const struct of_device_id tvp5150_of_match[] = {
1586 { .compatible = "ti,tvp5150", },
1587 { /* sentinel */ },
1588};
1589MODULE_DEVICE_TABLE(of, tvp5150_of_match);
1590#endif
1591
Hans Verkuilc7711452010-09-15 15:45:20 -03001592static struct i2c_driver tvp5150_driver = {
1593 .driver = {
Eduard Gavin7ef930a2016-01-07 10:46:48 -02001594 .of_match_table = of_match_ptr(tvp5150_of_match),
Hans Verkuilc7711452010-09-15 15:45:20 -03001595 .name = "tvp5150",
1596 },
1597 .probe = tvp5150_probe,
1598 .remove = tvp5150_remove,
1599 .id_table = tvp5150_id,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001600};
Hans Verkuilc7711452010-09-15 15:45:20 -03001601
Axel Linc6e8d862012-02-12 06:56:32 -03001602module_i2c_driver(tvp5150_driver);