blob: 89c0b13463b73354b3fa56ce5bcc57b2fe989613 [file] [log] [blame]
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001/*
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -02002 * tvp5150 - Texas Instruments TVP5150A/AM1 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
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>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040012#include <linux/module.h>
Hans Verkuil6b8fe022008-12-18 11:17:25 -030013#include <media/v4l2-device.h>
Hans Verkuilc7c0b342006-04-02 13:35:00 -030014#include <media/tvp5150.h>
Hans Verkuil6c45ec72010-12-12 08:45:43 -030015#include <media/v4l2-ctrls.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080016
17#include "tvp5150_reg.h"
18
Javier Martin963ddc62012-01-31 05:23:46 -030019#define TVP5150_H_MAX 720
20#define TVP5150_V_MAX_525_60 480
21#define TVP5150_V_MAX_OTHERS 576
22#define TVP5150_MAX_CROP_LEFT 511
23#define TVP5150_MAX_CROP_TOP 127
24#define TVP5150_CROP_SHIFT 2
25
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -020026MODULE_DESCRIPTION("Texas Instruments TVP5150A video decoder driver");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080027MODULE_AUTHOR("Mauro Carvalho Chehab");
28MODULE_LICENSE("GPL");
29
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080030
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030031static int debug;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080032module_param(debug, int, 0);
Hans Verkuil6b8fe022008-12-18 11:17:25 -030033MODULE_PARM_DESC(debug, "Debug level (0-2)");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080034
35struct tvp5150 {
Hans Verkuil6b8fe022008-12-18 11:17:25 -030036 struct v4l2_subdev sd;
Hans Verkuil6c45ec72010-12-12 08:45:43 -030037 struct v4l2_ctrl_handler hdl;
Javier Martin963ddc62012-01-31 05:23:46 -030038 struct v4l2_rect rect;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080039
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020040 v4l2_std_id norm; /* Current set standard */
Hans Verkuil5325b422009-04-02 11:26:22 -030041 u32 input;
42 u32 output;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080043 int enable;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080044};
45
Hans Verkuil6b8fe022008-12-18 11:17:25 -030046static inline struct tvp5150 *to_tvp5150(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080047{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030048 return container_of(sd, struct tvp5150, sd);
49}
50
Hans Verkuil6c45ec72010-12-12 08:45:43 -030051static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
52{
53 return &container_of(ctrl->handler, struct tvp5150, hdl)->sd;
54}
55
Hans Verkuil6b8fe022008-12-18 11:17:25 -030056static int tvp5150_read(struct v4l2_subdev *sd, unsigned char addr)
57{
58 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080059 unsigned char buffer[1];
60 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080061
62 buffer[0] = addr;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -030063
64 rc = i2c_master_send(c, buffer, 1);
65 if (rc < 0) {
66 v4l2_err(sd, "i2c i/o error: rc == %d (should be 1)\n", rc);
67 return rc;
68 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080069
70 msleep(10);
71
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -030072 rc = i2c_master_recv(c, buffer, 1);
73 if (rc < 0) {
74 v4l2_err(sd, "i2c i/o error: rc == %d (should be 1)\n", rc);
75 return rc;
76 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -020077
Hans Verkuil6b8fe022008-12-18 11:17:25 -030078 v4l2_dbg(2, debug, sd, "tvp5150: read 0x%02x = 0x%02x\n", addr, buffer[0]);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080079
80 return (buffer[0]);
81}
82
Hans Verkuil6b8fe022008-12-18 11:17:25 -030083static inline void tvp5150_write(struct v4l2_subdev *sd, unsigned char addr,
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080084 unsigned char value)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080085{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030086 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080087 unsigned char buffer[2];
88 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080089
90 buffer[0] = addr;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080091 buffer[1] = value;
Hans Verkuil6b8fe022008-12-18 11:17:25 -030092 v4l2_dbg(2, debug, sd, "tvp5150: writing 0x%02x 0x%02x\n", buffer[0], buffer[1]);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080093 if (2 != (rc = i2c_master_send(c, buffer, 2)))
Hans Verkuil6b8fe022008-12-18 11:17:25 -030094 v4l2_dbg(0, debug, sd, "i2c i/o error: rc == %d (should be 2)\n", rc);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080095}
96
Hans Verkuil6b8fe022008-12-18 11:17:25 -030097static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
98 const u8 end, int max_line)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020099{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300100 int i = 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200101
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300102 while (init != (u8)(end + 1)) {
103 if ((i % max_line) == 0) {
104 if (i > 0)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200105 printk("\n");
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300106 printk("tvp5150: %s reg 0x%02x = ", s, init);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200107 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300108 printk("%02x ", tvp5150_read(sd, init));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200109
110 init++;
111 i++;
112 }
113 printk("\n");
114}
115
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300116static int tvp5150_log_status(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800117{
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800118 printk("tvp5150: Video input source selection #1 = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300119 tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800120 printk("tvp5150: Analog channel controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300121 tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800122 printk("tvp5150: Operation mode controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300123 tvp5150_read(sd, TVP5150_OP_MODE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800124 printk("tvp5150: Miscellaneous controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300125 tvp5150_read(sd, TVP5150_MISC_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200126 printk("tvp5150: Autoswitch mask= 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300127 tvp5150_read(sd, TVP5150_AUTOSW_MSK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800128 printk("tvp5150: Color killer threshold control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300129 tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200130 printk("tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300131 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
132 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
133 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800134 printk("tvp5150: Brightness control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300135 tvp5150_read(sd, TVP5150_BRIGHT_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800136 printk("tvp5150: Color saturation control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300137 tvp5150_read(sd, TVP5150_SATURATION_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800138 printk("tvp5150: Hue control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300139 tvp5150_read(sd, TVP5150_HUE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800140 printk("tvp5150: Contrast control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300141 tvp5150_read(sd, TVP5150_CONTRAST_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800142 printk("tvp5150: Outputs and data rates select = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300143 tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800144 printk("tvp5150: Configuration shared pins = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300145 tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200146 printk("tvp5150: Active video cropping start = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300147 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
148 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200149 printk("tvp5150: Active video cropping stop = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300150 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
151 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800152 printk("tvp5150: Genlock/RTC = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300153 tvp5150_read(sd, TVP5150_GENLOCK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800154 printk("tvp5150: Horizontal sync start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300155 tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800156 printk("tvp5150: Vertical blanking start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300157 tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800158 printk("tvp5150: Vertical blanking stop = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300159 tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200160 printk("tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300161 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
162 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800163 printk("tvp5150: Interrupt reset register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300164 tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800165 printk("tvp5150: Interrupt enable register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300166 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800167 printk("tvp5150: Interrupt configuration register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300168 tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800169 printk("tvp5150: Video standard = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300170 tvp5150_read(sd, TVP5150_VIDEO_STD));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200171 printk("tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300172 tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
173 tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800174 printk("tvp5150: Macrovision on counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300175 tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800176 printk("tvp5150: Macrovision off counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300177 tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200178 printk("tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300179 (tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200180 printk("tvp5150: Device ID = %02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300181 tvp5150_read(sd, TVP5150_MSB_DEV_ID),
182 tvp5150_read(sd, TVP5150_LSB_DEV_ID));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200183 printk("tvp5150: ROM version = (hex) %02x.%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300184 tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
185 tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200186 printk("tvp5150: Vertical line count = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300187 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
188 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800189 printk("tvp5150: Interrupt status register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300190 tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800191 printk("tvp5150: Interrupt active register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300192 tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200193 printk("tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300194 tvp5150_read(sd, TVP5150_STATUS_REG_1),
195 tvp5150_read(sd, TVP5150_STATUS_REG_2),
196 tvp5150_read(sd, TVP5150_STATUS_REG_3),
197 tvp5150_read(sd, TVP5150_STATUS_REG_4),
198 tvp5150_read(sd, TVP5150_STATUS_REG_5));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200199
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300200 dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
201 TVP5150_TELETEXT_FIL1_END, 8);
202 dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
203 TVP5150_TELETEXT_FIL2_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200204
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800205 printk("tvp5150: Teletext filter enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300206 tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800207 printk("tvp5150: Interrupt status register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300208 tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800209 printk("tvp5150: Interrupt enable register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300210 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800211 printk("tvp5150: Interrupt configuration = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300212 tvp5150_read(sd, TVP5150_INT_CONF));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800213 printk("tvp5150: VDP status register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300214 tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800215 printk("tvp5150: FIFO word count = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300216 tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800217 printk("tvp5150: FIFO interrupt threshold = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300218 tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800219 printk("tvp5150: FIFO reset = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300220 tvp5150_read(sd, TVP5150_FIFO_RESET));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800221 printk("tvp5150: Line number interrupt = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300222 tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200223 printk("tvp5150: Pixel alignment register = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300224 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
225 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800226 printk("tvp5150: FIFO output control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300227 tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200228 printk("tvp5150: Full field enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300229 tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800230 printk("tvp5150: Full field mode register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300231 tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200232
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300233 dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
234 TVP5150_CC_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200235
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300236 dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
237 TVP5150_WSS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200238
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300239 dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
240 TVP5150_VPS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200241
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300242 dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
243 TVP5150_VITC_DATA_END, 10);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200244
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300245 dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
246 TVP5150_LINE_MODE_END, 8);
247 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800248}
249
250/****************************************************************************
251 Basic functions
252 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800253
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300254static inline void tvp5150_selmux(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800255{
Paul Walmsley2962fc02010-10-09 01:31:40 -0300256 int opmode = 0;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300257 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300258 int input = 0;
Dan Carpenterafcc8e82012-07-12 10:47:28 -0300259 int val;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800260
Hans Verkuil5325b422009-04-02 11:26:22 -0300261 if ((decoder->output & TVP5150_BLACK_SCREEN) || !decoder->enable)
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300262 input = 8;
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800263
Hans Verkuil5325b422009-04-02 11:26:22 -0300264 switch (decoder->input) {
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300265 case TVP5150_COMPOSITE1:
266 input |= 2;
267 /* fall through */
268 case TVP5150_COMPOSITE0:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200269 break;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300270 case TVP5150_SVIDEO:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200271 default:
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300272 input |= 1;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200273 break;
274 }
275
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300276 v4l2_dbg(1, debug, sd, "Selecting video route: route input=%i, output=%i "
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300277 "=> tvp5150 input=%i, opmode=%i\n",
Hans Verkuil5325b422009-04-02 11:26:22 -0300278 decoder->input, decoder->output,
279 input, opmode);
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300280
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300281 tvp5150_write(sd, TVP5150_OP_MODE_CTL, opmode);
282 tvp5150_write(sd, TVP5150_VD_IN_SRC_SEL_1, input);
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300283
284 /* Svideo should enable YCrCb output and disable GPCL output
285 * For Composite and TV, it should be the reverse
286 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300287 val = tvp5150_read(sd, TVP5150_MISC_CTL);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300288 if (val < 0) {
289 v4l2_err(sd, "%s: failed with error = %d\n", __func__, val);
290 return;
291 }
292
Hans Verkuil5325b422009-04-02 11:26:22 -0300293 if (decoder->input == TVP5150_SVIDEO)
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300294 val = (val & ~0x40) | 0x10;
295 else
296 val = (val & ~0x10) | 0x40;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300297 tvp5150_write(sd, TVP5150_MISC_CTL, val);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800298};
299
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200300struct i2c_reg_value {
301 unsigned char reg;
302 unsigned char value;
303};
304
305/* Default values as sugested at TVP5150AM1 datasheet */
306static const struct i2c_reg_value tvp5150_init_default[] = {
307 { /* 0x00 */
308 TVP5150_VD_IN_SRC_SEL_1,0x00
309 },
310 { /* 0x01 */
311 TVP5150_ANAL_CHL_CTL,0x15
312 },
313 { /* 0x02 */
314 TVP5150_OP_MODE_CTL,0x00
315 },
316 { /* 0x03 */
317 TVP5150_MISC_CTL,0x01
318 },
319 { /* 0x06 */
320 TVP5150_COLOR_KIL_THSH_CTL,0x10
321 },
322 { /* 0x07 */
323 TVP5150_LUMA_PROC_CTL_1,0x60
324 },
325 { /* 0x08 */
326 TVP5150_LUMA_PROC_CTL_2,0x00
327 },
328 { /* 0x09 */
329 TVP5150_BRIGHT_CTL,0x80
330 },
331 { /* 0x0a */
332 TVP5150_SATURATION_CTL,0x80
333 },
334 { /* 0x0b */
335 TVP5150_HUE_CTL,0x00
336 },
337 { /* 0x0c */
338 TVP5150_CONTRAST_CTL,0x80
339 },
340 { /* 0x0d */
341 TVP5150_DATA_RATE_SEL,0x47
342 },
343 { /* 0x0e */
344 TVP5150_LUMA_PROC_CTL_3,0x00
345 },
346 { /* 0x0f */
347 TVP5150_CONF_SHARED_PIN,0x08
348 },
349 { /* 0x11 */
350 TVP5150_ACT_VD_CROP_ST_MSB,0x00
351 },
352 { /* 0x12 */
353 TVP5150_ACT_VD_CROP_ST_LSB,0x00
354 },
355 { /* 0x13 */
356 TVP5150_ACT_VD_CROP_STP_MSB,0x00
357 },
358 { /* 0x14 */
359 TVP5150_ACT_VD_CROP_STP_LSB,0x00
360 },
361 { /* 0x15 */
362 TVP5150_GENLOCK,0x01
363 },
364 { /* 0x16 */
365 TVP5150_HORIZ_SYNC_START,0x80
366 },
367 { /* 0x18 */
368 TVP5150_VERT_BLANKING_START,0x00
369 },
370 { /* 0x19 */
371 TVP5150_VERT_BLANKING_STOP,0x00
372 },
373 { /* 0x1a */
374 TVP5150_CHROMA_PROC_CTL_1,0x0c
375 },
376 { /* 0x1b */
377 TVP5150_CHROMA_PROC_CTL_2,0x14
378 },
379 { /* 0x1c */
380 TVP5150_INT_RESET_REG_B,0x00
381 },
382 { /* 0x1d */
383 TVP5150_INT_ENABLE_REG_B,0x00
384 },
385 { /* 0x1e */
386 TVP5150_INTT_CONFIG_REG_B,0x00
387 },
388 { /* 0x28 */
389 TVP5150_VIDEO_STD,0x00
390 },
391 { /* 0x2e */
392 TVP5150_MACROVISION_ON_CTR,0x0f
393 },
394 { /* 0x2f */
395 TVP5150_MACROVISION_OFF_CTR,0x01
396 },
397 { /* 0xbb */
398 TVP5150_TELETEXT_FIL_ENA,0x00
399 },
400 { /* 0xc0 */
401 TVP5150_INT_STATUS_REG_A,0x00
402 },
403 { /* 0xc1 */
404 TVP5150_INT_ENABLE_REG_A,0x00
405 },
406 { /* 0xc2 */
407 TVP5150_INT_CONF,0x04
408 },
409 { /* 0xc8 */
410 TVP5150_FIFO_INT_THRESHOLD,0x80
411 },
412 { /* 0xc9 */
413 TVP5150_FIFO_RESET,0x00
414 },
415 { /* 0xca */
416 TVP5150_LINE_NUMBER_INT,0x00
417 },
418 { /* 0xcb */
419 TVP5150_PIX_ALIGN_REG_LOW,0x4e
420 },
421 { /* 0xcc */
422 TVP5150_PIX_ALIGN_REG_HIGH,0x00
423 },
424 { /* 0xcd */
425 TVP5150_FIFO_OUT_CTRL,0x01
426 },
427 { /* 0xcf */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200428 TVP5150_FULL_FIELD_ENA,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200429 },
430 { /* 0xd0 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200431 TVP5150_LINE_MODE_INI,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200432 },
433 { /* 0xfc */
434 TVP5150_FULL_FIELD_MODE_REG,0x7f
435 },
436 { /* end of data */
437 0xff,0xff
438 }
439};
440
441/* Default values as sugested at TVP5150AM1 datasheet */
442static const struct i2c_reg_value tvp5150_init_enable[] = {
443 {
444 TVP5150_CONF_SHARED_PIN, 2
445 },{ /* Automatic offset and AGC enabled */
446 TVP5150_ANAL_CHL_CTL, 0x15
447 },{ /* Activate YCrCb output 0x9 or 0xd ? */
448 TVP5150_MISC_CTL, 0x6f
449 },{ /* Activates video std autodetection for all standards */
450 TVP5150_AUTOSW_MSK, 0x0
451 },{ /* Default format: 0x47. For 4:2:2: 0x40 */
452 TVP5150_DATA_RATE_SEL, 0x47
453 },{
454 TVP5150_CHROMA_PROC_CTL_1, 0x0c
455 },{
456 TVP5150_CHROMA_PROC_CTL_2, 0x54
457 },{ /* Non documented, but initialized on WinTV USB2 */
458 0x27, 0x20
459 },{
460 0xff,0xff
461 }
462};
463
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200464struct tvp5150_vbi_type {
465 unsigned int vbi_type;
466 unsigned int ini_line;
467 unsigned int end_line;
468 unsigned int by_field :1;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200469};
470
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200471struct i2c_vbi_ram_value {
472 u16 reg;
473 struct tvp5150_vbi_type type;
474 unsigned char values[16];
475};
476
477/* This struct have the values for each supported VBI Standard
478 * by
479 tvp5150_vbi_types should follow the same order as vbi_ram_default
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200480 * value 0 means rom position 0x10, value 1 means rom position 0x30
481 * and so on. There are 16 possible locations from 0 to 15.
482 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200483
Adrian Bunka9cff902006-01-15 06:56:15 -0200484static struct i2c_vbi_ram_value vbi_ram_default[] =
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200485{
Hans Verkuil9bc74002006-03-29 18:02:51 -0300486 /* FIXME: Current api doesn't handle all VBI types, those not
487 yet supported are placed under #if 0 */
488#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200489 {0x010, /* Teletext, SECAM, WST System A */
490 {V4L2_SLICED_TELETEXT_SECAM,6,23,1},
491 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
492 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200493 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300494#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200495 {0x030, /* Teletext, PAL, WST System B */
Hans Verkuil9bc74002006-03-29 18:02:51 -0300496 {V4L2_SLICED_TELETEXT_B,6,22,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200497 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
498 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200499 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300500#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200501 {0x050, /* Teletext, PAL, WST System C */
502 {V4L2_SLICED_TELETEXT_PAL_C,6,22,1},
503 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
504 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200505 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200506 {0x070, /* Teletext, NTSC, WST System B */
507 {V4L2_SLICED_TELETEXT_NTSC_B,10,21,1},
508 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
509 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200510 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200511 {0x090, /* Tetetext, NTSC NABTS System C */
512 {V4L2_SLICED_TELETEXT_NTSC_C,10,21,1},
513 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
514 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200515 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200516 {0x0b0, /* Teletext, NTSC-J, NABTS System D */
517 {V4L2_SLICED_TELETEXT_NTSC_D,10,21,1},
518 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
519 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200520 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200521 {0x0d0, /* Closed Caption, PAL/SECAM */
522 {V4L2_SLICED_CAPTION_625,22,22,1},
523 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
524 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200525 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300526#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200527 {0x0f0, /* Closed Caption, NTSC */
528 {V4L2_SLICED_CAPTION_525,21,21,1},
529 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
530 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200531 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200532 {0x110, /* Wide Screen Signal, PAL/SECAM */
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200533 {V4L2_SLICED_WSS_625,23,23,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200534 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
535 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200536 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300537#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200538 {0x130, /* Wide Screen Signal, NTSC C */
539 {V4L2_SLICED_WSS_525,20,20,1},
540 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
541 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200542 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200543 {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
544 {V4l2_SLICED_VITC_625,6,22,0},
545 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
546 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200547 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200548 {0x170, /* Vertical Interval Timecode (VITC), NTSC */
549 {V4l2_SLICED_VITC_525,10,20,0},
550 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
551 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200552 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300553#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200554 {0x190, /* Video Program System (VPS), PAL */
555 {V4L2_SLICED_VPS,16,16,0},
556 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
557 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200558 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200559 /* 0x1d0 User programmable */
560
561 /* End of struct */
562 { (u16)-1 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200563};
564
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300565static int tvp5150_write_inittab(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200566 const struct i2c_reg_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200567{
568 while (regs->reg != 0xff) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300569 tvp5150_write(sd, regs->reg, regs->value);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200570 regs++;
571 }
572 return 0;
573}
574
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300575static int tvp5150_vdp_init(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200576 const struct i2c_vbi_ram_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200577{
578 unsigned int i;
579
580 /* Disable Full Field */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300581 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200582
583 /* Before programming, Line mode should be at 0xff */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300584 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
585 tvp5150_write(sd, i, 0xff);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200586
587 /* Load Ram Table */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300588 while (regs->reg != (u16)-1) {
589 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
590 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200591
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300592 for (i = 0; i < 16; i++)
593 tvp5150_write(sd, TVP5150_VDP_CONF_RAM_DATA, regs->values[i]);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200594
595 regs++;
596 }
597 return 0;
598}
599
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200600/* Fills VBI capabilities based on i2c_vbi_ram_value struct */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300601static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200602 struct v4l2_sliced_vbi_cap *cap)
603{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300604 const struct i2c_vbi_ram_value *regs = vbi_ram_default;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200605 int line;
606
Hans Verkuilbccfa442009-03-30 06:55:27 -0300607 v4l2_dbg(1, debug, sd, "g_sliced_vbi_cap\n");
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200608 memset(cap, 0, sizeof *cap);
609
610 while (regs->reg != (u16)-1 ) {
611 for (line=regs->type.ini_line;line<=regs->type.end_line;line++) {
612 cap->service_lines[0][line] |= regs->type.vbi_type;
613 }
614 cap->service_set |= regs->type.vbi_type;
615
616 regs++;
617 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300618 return 0;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200619}
620
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200621/* Set vbi processing
622 * type - one of tvp5150_vbi_types
623 * line - line to gather data
624 * fields: bit 0 field1, bit 1, field2
625 * flags (default=0xf0) is a bitmask, were set means:
626 * bit 7: enable filtering null bytes on CC
627 * bit 6: send data also to FIFO
628 * bit 5: don't allow data with errors on FIFO
629 * bit 4: enable ECC when possible
630 * pix_align = pix alignment:
631 * LSB = field1
632 * MSB = field2
633 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300634static int tvp5150_set_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200635 const struct i2c_vbi_ram_value *regs,
636 unsigned int type,u8 flags, int line,
637 const int fields)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200638{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300639 struct tvp5150 *decoder = to_tvp5150(sd);
640 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200641 u8 reg;
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200642 int pos=0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200643
644 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300645 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200646 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300647 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200648 /* Don't follow NTSC Line number convension */
649 line += 3;
650 }
651
652 if (line<6||line>27)
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200653 return 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200654
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200655 while (regs->reg != (u16)-1 ) {
656 if ((type & regs->type.vbi_type) &&
657 (line>=regs->type.ini_line) &&
658 (line<=regs->type.end_line)) {
659 type=regs->type.vbi_type;
660 break;
661 }
662
663 regs++;
664 pos++;
665 }
666 if (regs->reg == (u16)-1)
667 return 0;
668
669 type=pos | (flags & 0xf0);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200670 reg=((line-6)<<1)+TVP5150_LINE_MODE_INI;
671
672 if (fields&1) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300673 tvp5150_write(sd, reg, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200674 }
675
676 if (fields&2) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300677 tvp5150_write(sd, reg+1, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200678 }
679
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200680 return type;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200681}
682
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300683static int tvp5150_get_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200684 const struct i2c_vbi_ram_value *regs, int line)
685{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300686 struct tvp5150 *decoder = to_tvp5150(sd);
687 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200688 u8 reg;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300689 int pos, type = 0;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300690 int i, ret = 0;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200691
692 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300693 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200694 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300695 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200696 /* Don't follow NTSC Line number convension */
697 line += 3;
698 }
699
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300700 if (line < 6 || line > 27)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200701 return 0;
702
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300703 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200704
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300705 for (i = 0; i <= 1; i++) {
706 ret = tvp5150_read(sd, reg + i);
707 if (ret < 0) {
708 v4l2_err(sd, "%s: failed with error = %d\n",
709 __func__, ret);
710 return 0;
711 }
712 pos = ret & 0x0f;
713 if (pos < 0x0f)
714 type |= regs[pos].type.vbi_type;
715 }
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200716
717 return type;
718}
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800719
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300720static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
721{
722 struct tvp5150 *decoder = to_tvp5150(sd);
723 int fmt = 0;
724
725 decoder->norm = std;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800726
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200727 /* First tests should be against specific std */
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800728
Hans Verkuil26811ae2013-05-29 10:19:06 -0300729 if (std == V4L2_STD_NTSC_443) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300730 fmt = VIDEO_STD_NTSC_4_43_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300731 } else if (std == V4L2_STD_PAL_M) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300732 fmt = VIDEO_STD_PAL_M_BIT;
Hans Verkuil26811ae2013-05-29 10:19:06 -0300733 } else if (std == V4L2_STD_PAL_N || std == V4L2_STD_PAL_Nc) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300734 fmt = VIDEO_STD_PAL_COMBINATION_N_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200735 } else {
736 /* Then, test against generic ones */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300737 if (std & V4L2_STD_NTSC)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300738 fmt = VIDEO_STD_NTSC_MJ_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300739 else if (std & V4L2_STD_PAL)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300740 fmt = VIDEO_STD_PAL_BDGHIN_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300741 else if (std & V4L2_STD_SECAM)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300742 fmt = VIDEO_STD_SECAM_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200743 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800744
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300745 v4l2_dbg(1, debug, sd, "Set video std register to %d.\n", fmt);
746 tvp5150_write(sd, TVP5150_VIDEO_STD, fmt);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200747 return 0;
748}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800749
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300750static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200751{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300752 struct tvp5150 *decoder = to_tvp5150(sd);
753
754 if (decoder->norm == std)
755 return 0;
756
Javier Martin963ddc62012-01-31 05:23:46 -0300757 /* Change cropping height limits */
758 if (std & V4L2_STD_525_60)
759 decoder->rect.height = TVP5150_V_MAX_525_60;
760 else
761 decoder->rect.height = TVP5150_V_MAX_OTHERS;
762
763
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300764 return tvp5150_set_std(sd, std);
765}
766
767static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
768{
769 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200770
771 /* Initializes TVP5150 to its default values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300772 tvp5150_write_inittab(sd, tvp5150_init_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200773
774 /* Initializes VDP registers */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300775 tvp5150_vdp_init(sd, vbi_ram_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200776
777 /* Selects decoder input */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300778 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800779
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200780 /* Initializes TVP5150 to stream enabled values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300781 tvp5150_write_inittab(sd, tvp5150_init_enable);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800782
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200783 /* Initialize image preferences */
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300784 v4l2_ctrl_handler_setup(&decoder->hdl);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200785
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300786 tvp5150_set_std(sd, decoder->norm);
787 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800788};
789
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300790static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800791{
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300792 struct v4l2_subdev *sd = to_sd(ctrl);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800793
794 switch (ctrl->id) {
795 case V4L2_CID_BRIGHTNESS:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300796 tvp5150_write(sd, TVP5150_BRIGHT_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800797 return 0;
798 case V4L2_CID_CONTRAST:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300799 tvp5150_write(sd, TVP5150_CONTRAST_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800800 return 0;
801 case V4L2_CID_SATURATION:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300802 tvp5150_write(sd, TVP5150_SATURATION_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800803 return 0;
804 case V4L2_CID_HUE:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300805 tvp5150_write(sd, TVP5150_HUE_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800806 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800807 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200808 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800809}
810
Javier Martinec2c4f32012-01-05 10:57:39 -0300811static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd)
812{
813 int val = tvp5150_read(sd, TVP5150_STATUS_REG_5);
814
815 switch (val & 0x0F) {
816 case 0x01:
817 return V4L2_STD_NTSC;
818 case 0x03:
819 return V4L2_STD_PAL;
820 case 0x05:
821 return V4L2_STD_PAL_M;
822 case 0x07:
823 return V4L2_STD_PAL_N | V4L2_STD_PAL_Nc;
824 case 0x09:
825 return V4L2_STD_NTSC_443;
826 case 0xb:
827 return V4L2_STD_SECAM;
828 default:
829 return V4L2_STD_UNKNOWN;
830 }
831}
832
833static int tvp5150_enum_mbus_fmt(struct v4l2_subdev *sd, unsigned index,
834 enum v4l2_mbus_pixelcode *code)
835{
836 if (index)
837 return -EINVAL;
838
Javier Martin002eaf92012-03-26 09:17:46 -0300839 *code = V4L2_MBUS_FMT_UYVY8_2X8;
Javier Martinec2c4f32012-01-05 10:57:39 -0300840 return 0;
841}
842
843static int tvp5150_mbus_fmt(struct v4l2_subdev *sd,
844 struct v4l2_mbus_framefmt *f)
845{
846 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martinec2c4f32012-01-05 10:57:39 -0300847
848 if (f == NULL)
849 return -EINVAL;
850
851 tvp5150_reset(sd, 0);
852
Javier Martin963ddc62012-01-31 05:23:46 -0300853 f->width = decoder->rect.width;
854 f->height = decoder->rect.height;
Javier Martinec2c4f32012-01-05 10:57:39 -0300855
Javier Martin002eaf92012-03-26 09:17:46 -0300856 f->code = V4L2_MBUS_FMT_UYVY8_2X8;
Javier Martinec2c4f32012-01-05 10:57:39 -0300857 f->field = V4L2_FIELD_SEQ_TB;
858 f->colorspace = V4L2_COLORSPACE_SMPTE170M;
859
860 v4l2_dbg(1, debug, sd, "width = %d, height = %d\n", f->width,
861 f->height);
862 return 0;
863}
864
Hans Verkuil4f996592012-09-05 05:10:48 -0300865static int tvp5150_s_crop(struct v4l2_subdev *sd, const struct v4l2_crop *a)
Javier Martin963ddc62012-01-31 05:23:46 -0300866{
867 struct v4l2_rect rect = a->c;
868 struct tvp5150 *decoder = to_tvp5150(sd);
869 v4l2_std_id std;
870 int hmax;
871
872 v4l2_dbg(1, debug, sd, "%s left=%d, top=%d, width=%d, height=%d\n",
873 __func__, rect.left, rect.top, rect.width, rect.height);
874
875 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
876 return -EINVAL;
877
878 /* tvp5150 has some special limits */
879 rect.left = clamp(rect.left, 0, TVP5150_MAX_CROP_LEFT);
880 rect.width = clamp(rect.width,
881 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect.left,
882 TVP5150_H_MAX - rect.left);
883 rect.top = clamp(rect.top, 0, TVP5150_MAX_CROP_TOP);
884
885 /* Calculate height based on current standard */
886 if (decoder->norm == V4L2_STD_ALL)
887 std = tvp5150_read_std(sd);
888 else
889 std = decoder->norm;
890
891 if (std & V4L2_STD_525_60)
892 hmax = TVP5150_V_MAX_525_60;
893 else
894 hmax = TVP5150_V_MAX_OTHERS;
895
896 rect.height = clamp(rect.height,
897 hmax - TVP5150_MAX_CROP_TOP - rect.top,
898 hmax - rect.top);
899
900 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, rect.top);
901 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP,
902 rect.top + rect.height - hmax);
903 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_MSB,
904 rect.left >> TVP5150_CROP_SHIFT);
905 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_LSB,
906 rect.left | (1 << TVP5150_CROP_SHIFT));
907 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_MSB,
908 (rect.left + rect.width - TVP5150_MAX_CROP_LEFT) >>
909 TVP5150_CROP_SHIFT);
910 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_LSB,
911 rect.left + rect.width - TVP5150_MAX_CROP_LEFT);
912
913 decoder->rect = rect;
914
915 return 0;
916}
917
918static int tvp5150_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
919{
920 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
921
922 a->c = decoder->rect;
923 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
924
925 return 0;
926}
927
928static int tvp5150_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
929{
930 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
931 v4l2_std_id std;
932
933 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
934 return -EINVAL;
935
936 a->bounds.left = 0;
937 a->bounds.top = 0;
938 a->bounds.width = TVP5150_H_MAX;
939
940 /* Calculate height based on current standard */
941 if (decoder->norm == V4L2_STD_ALL)
942 std = tvp5150_read_std(sd);
943 else
944 std = decoder->norm;
945
946 if (std & V4L2_STD_525_60)
947 a->bounds.height = TVP5150_V_MAX_525_60;
948 else
949 a->bounds.height = TVP5150_V_MAX_OTHERS;
950
951 a->defrect = a->bounds;
952 a->pixelaspect.numerator = 1;
953 a->pixelaspect.denominator = 1;
954
955 return 0;
956}
957
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800958/****************************************************************************
959 I2C Command
960 ****************************************************************************/
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300961
Hans Verkuil5325b422009-04-02 11:26:22 -0300962static int tvp5150_s_routing(struct v4l2_subdev *sd,
963 u32 input, u32 output, u32 config)
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800964{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300965 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800966
Hans Verkuil5325b422009-04-02 11:26:22 -0300967 decoder->input = input;
968 decoder->output = output;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300969 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800970 return 0;
971}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800972
Hans Verkuild37dad42010-03-14 10:59:16 -0300973static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300974{
Hans Verkuild37dad42010-03-14 10:59:16 -0300975 /* this is for capturing 36 raw vbi lines
976 if there's a way to cut off the beginning 2 vbi lines
977 with the tvp5150 then the vbi line count could be lowered
978 to 17 lines/field again, although I couldn't find a register
979 which could do that cropping */
980 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
981 tvp5150_write(sd, TVP5150_LUMA_PROC_CTL_1, 0x70);
982 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
983 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, 0x00);
984 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP, 0x01);
985 }
986 return 0;
987}
988
989static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
990{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300991 int i;
992
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300993 if (svbi->service_set != 0) {
994 for (i = 0; i <= 23; i++) {
995 svbi->service_lines[1][i] = 0;
996 svbi->service_lines[0][i] =
997 tvp5150_set_vbi(sd, vbi_ram_default,
998 svbi->service_lines[0][i], 0xf0, i, 3);
999 }
1000 /* Enables FIFO */
1001 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 1);
1002 } else {
1003 /* Disables FIFO*/
1004 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 0);
1005
1006 /* Disable Full Field */
1007 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
1008
1009 /* Disable Line modes */
1010 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
1011 tvp5150_write(sd, i, 0xff);
1012 }
1013 return 0;
1014}
1015
Hans Verkuild37dad42010-03-14 10:59:16 -03001016static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1017{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001018 int i, mask = 0;
1019
Hans Verkuil30634e82012-09-05 10:38:10 -03001020 memset(svbi->service_lines, 0, sizeof(svbi->service_lines));
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001021
1022 for (i = 0; i <= 23; i++) {
1023 svbi->service_lines[0][i] =
1024 tvp5150_get_vbi(sd, vbi_ram_default, i);
1025 mask |= svbi->service_lines[0][i];
1026 }
1027 svbi->service_set = mask;
1028 return 0;
1029}
1030
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001031#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001032static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001033{
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001034 int res;
1035
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001036 res = tvp5150_read(sd, reg->reg & 0xff);
1037 if (res < 0) {
1038 v4l2_err(sd, "%s: failed with error = %d\n", __func__, res);
1039 return res;
1040 }
1041
1042 reg->val = res;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001043 reg->size = 1;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001044 return 0;
1045}
1046
Hans Verkuil977ba3b2013-03-24 08:28:46 -03001047static int tvp5150_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001048{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001049 tvp5150_write(sd, reg->reg & 0xff, reg->val & 0xff);
1050 return 0;
1051}
1052#endif
1053
1054static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1055{
1056 int status = tvp5150_read(sd, 0x88);
1057
1058 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
1059 return 0;
1060}
1061
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001062/* ----------------------------------------------------------------------- */
1063
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001064static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
1065 .s_ctrl = tvp5150_s_ctrl,
1066};
1067
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001068static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1069 .log_status = tvp5150_log_status,
Hans Verkuilf41737e2009-04-01 03:52:39 -03001070 .s_std = tvp5150_s_std,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001071 .reset = tvp5150_reset,
1072#ifdef CONFIG_VIDEO_ADV_DEBUG
1073 .g_register = tvp5150_g_register,
1074 .s_register = tvp5150_s_register,
1075#endif
1076};
1077
1078static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001079 .g_tuner = tvp5150_g_tuner,
1080};
1081
1082static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
1083 .s_routing = tvp5150_s_routing,
Javier Martinec2c4f32012-01-05 10:57:39 -03001084 .enum_mbus_fmt = tvp5150_enum_mbus_fmt,
1085 .s_mbus_fmt = tvp5150_mbus_fmt,
1086 .try_mbus_fmt = tvp5150_mbus_fmt,
Javier Martin0f67a032012-01-31 05:23:47 -03001087 .g_mbus_fmt = tvp5150_mbus_fmt,
Javier Martin963ddc62012-01-31 05:23:46 -03001088 .s_crop = tvp5150_s_crop,
1089 .g_crop = tvp5150_g_crop,
1090 .cropcap = tvp5150_cropcap,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001091};
1092
1093static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001094 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
Hans Verkuild37dad42010-03-14 10:59:16 -03001095 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1096 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1097 .s_raw_fmt = tvp5150_s_raw_fmt,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001098};
1099
1100static const struct v4l2_subdev_ops tvp5150_ops = {
1101 .core = &tvp5150_core_ops,
1102 .tuner = &tvp5150_tuner_ops,
1103 .video = &tvp5150_video_ops,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001104 .vbi = &tvp5150_vbi_ops,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001105};
1106
1107
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001108/****************************************************************************
1109 I2C Client & Driver
1110 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001111
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001112static int tvp5150_probe(struct i2c_client *c,
1113 const struct i2c_device_id *id)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001114{
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001115 struct tvp5150 *core;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001116 struct v4l2_subdev *sd;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001117 int tvp5150_id[4];
1118 int i, res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001119
1120 /* Check if the adapter supports the needed features */
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001121 if (!i2c_check_functionality(c->adapter,
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001122 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001123 return -EIO;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001124
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001125 core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL);
1126 if (!core)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001127 return -ENOMEM;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001128 sd = &core->sd;
1129 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001130
1131 /*
1132 * Read consequent registers - TVP5150_MSB_DEV_ID, TVP5150_LSB_DEV_ID,
1133 * TVP5150_ROM_MAJOR_VER, TVP5150_ROM_MINOR_VER
1134 */
1135 for (i = 0; i < 4; i++) {
1136 res = tvp5150_read(sd, TVP5150_MSB_DEV_ID + i);
1137 if (res < 0)
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001138 return res;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001139 tvp5150_id[i] = res;
1140 }
1141
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001142 v4l_info(c, "chip found @ 0x%02x (%s)\n",
1143 c->addr << 1, c->adapter->name);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001144
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001145 if (tvp5150_id[2] == 4 && tvp5150_id[3] == 0) { /* Is TVP5150AM1 */
1146 v4l2_info(sd, "tvp%02x%02xam1 detected.\n",
1147 tvp5150_id[0], tvp5150_id[1]);
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001148
1149 /* ITU-T BT.656.4 timing */
1150 tvp5150_write(sd, TVP5150_REV_SELECT, 0);
1151 } else {
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001152 /* Is TVP5150A */
1153 if (tvp5150_id[2] == 3 || tvp5150_id[3] == 0x21) {
1154 v4l2_info(sd, "tvp%02x%02xa detected.\n",
1155 tvp5150_id[2], tvp5150_id[3]);
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001156 } else {
1157 v4l2_info(sd, "*** unknown tvp%02x%02x chip detected.\n",
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001158 tvp5150_id[2], tvp5150_id[3]);
1159 v4l2_info(sd, "*** Rom ver is %d.%d\n",
1160 tvp5150_id[2], tvp5150_id[3]);
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001161 }
1162 }
1163
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -02001164 core->norm = V4L2_STD_ALL; /* Default is autodetect */
Hans Verkuil5325b422009-04-02 11:26:22 -03001165 core->input = TVP5150_COMPOSITE1;
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001166 core->enable = 1;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001167
1168 v4l2_ctrl_handler_init(&core->hdl, 4);
1169 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1170 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
1171 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1172 V4L2_CID_CONTRAST, 0, 255, 1, 128);
1173 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1174 V4L2_CID_SATURATION, 0, 255, 1, 128);
1175 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1176 V4L2_CID_HUE, -128, 127, 1, 0);
1177 sd->ctrl_handler = &core->hdl;
1178 if (core->hdl.error) {
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001179 res = core->hdl.error;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001180 v4l2_ctrl_handler_free(&core->hdl);
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001181 return res;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001182 }
1183 v4l2_ctrl_handler_setup(&core->hdl);
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001184
Javier Martin963ddc62012-01-31 05:23:46 -03001185 /* Default is no cropping */
1186 core->rect.top = 0;
1187 if (tvp5150_read_std(sd) & V4L2_STD_525_60)
1188 core->rect.height = TVP5150_V_MAX_525_60;
1189 else
1190 core->rect.height = TVP5150_V_MAX_OTHERS;
1191 core->rect.left = 0;
1192 core->rect.width = TVP5150_H_MAX;
1193
Markus Rechbergerf1e5ee42006-02-07 04:01:19 +01001194 if (debug > 1)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001195 tvp5150_log_status(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001196 return 0;
1197}
1198
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001199static int tvp5150_remove(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001200{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001201 struct v4l2_subdev *sd = i2c_get_clientdata(c);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001202 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001203
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001204 v4l2_dbg(1, debug, sd,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -02001205 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1206 c->addr << 1);
1207
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001208 v4l2_device_unregister_subdev(sd);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001209 v4l2_ctrl_handler_free(&decoder->hdl);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001210 return 0;
1211}
1212
1213/* ----------------------------------------------------------------------- */
1214
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001215static const struct i2c_device_id tvp5150_id[] = {
1216 { "tvp5150", 0 },
1217 { }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001218};
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001219MODULE_DEVICE_TABLE(i2c, tvp5150_id);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001220
Hans Verkuilc7711452010-09-15 15:45:20 -03001221static struct i2c_driver tvp5150_driver = {
1222 .driver = {
1223 .owner = THIS_MODULE,
1224 .name = "tvp5150",
1225 },
1226 .probe = tvp5150_probe,
1227 .remove = tvp5150_remove,
1228 .id_table = tvp5150_id,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001229};
Hans Verkuilc7711452010-09-15 15:45:20 -03001230
Axel Linc6e8d862012-02-12 06:56:32 -03001231module_i2c_driver(tvp5150_driver);