blob: de9db3bf1ebd0febcde8c38893912eaa4a65c8b3 [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>
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -030015#include <media/v4l2-chip-ident.h>
Hans Verkuil6c45ec72010-12-12 08:45:43 -030016#include <media/v4l2-ctrls.h>
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080017
18#include "tvp5150_reg.h"
19
Javier Martin963ddc62012-01-31 05:23:46 -030020#define TVP5150_H_MAX 720
21#define TVP5150_V_MAX_525_60 480
22#define TVP5150_V_MAX_OTHERS 576
23#define TVP5150_MAX_CROP_LEFT 511
24#define TVP5150_MAX_CROP_TOP 127
25#define TVP5150_CROP_SHIFT 2
26
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -020027MODULE_DESCRIPTION("Texas Instruments TVP5150A video decoder driver");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080028MODULE_AUTHOR("Mauro Carvalho Chehab");
29MODULE_LICENSE("GPL");
30
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080031
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030032static int debug;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080033module_param(debug, int, 0);
Hans Verkuil6b8fe022008-12-18 11:17:25 -030034MODULE_PARM_DESC(debug, "Debug level (0-2)");
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080035
36struct tvp5150 {
Hans Verkuil6b8fe022008-12-18 11:17:25 -030037 struct v4l2_subdev sd;
Hans Verkuil6c45ec72010-12-12 08:45:43 -030038 struct v4l2_ctrl_handler hdl;
Javier Martin963ddc62012-01-31 05:23:46 -030039 struct v4l2_rect rect;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080040
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020041 v4l2_std_id norm; /* Current set standard */
Hans Verkuil5325b422009-04-02 11:26:22 -030042 u32 input;
43 u32 output;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080044 int enable;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080045};
46
Hans Verkuil6b8fe022008-12-18 11:17:25 -030047static inline struct tvp5150 *to_tvp5150(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080048{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030049 return container_of(sd, struct tvp5150, sd);
50}
51
Hans Verkuil6c45ec72010-12-12 08:45:43 -030052static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
53{
54 return &container_of(ctrl->handler, struct tvp5150, hdl)->sd;
55}
56
Hans Verkuil6b8fe022008-12-18 11:17:25 -030057static int tvp5150_read(struct v4l2_subdev *sd, unsigned char addr)
58{
59 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080060 unsigned char buffer[1];
61 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080062
63 buffer[0] = addr;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -030064
65 rc = i2c_master_send(c, buffer, 1);
66 if (rc < 0) {
67 v4l2_err(sd, "i2c i/o error: rc == %d (should be 1)\n", rc);
68 return rc;
69 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080070
71 msleep(10);
72
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -030073 rc = i2c_master_recv(c, buffer, 1);
74 if (rc < 0) {
75 v4l2_err(sd, "i2c i/o error: rc == %d (should be 1)\n", rc);
76 return rc;
77 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -020078
Hans Verkuil6b8fe022008-12-18 11:17:25 -030079 v4l2_dbg(2, debug, sd, "tvp5150: read 0x%02x = 0x%02x\n", addr, buffer[0]);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080080
81 return (buffer[0]);
82}
83
Hans Verkuil6b8fe022008-12-18 11:17:25 -030084static inline void tvp5150_write(struct v4l2_subdev *sd, unsigned char addr,
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080085 unsigned char value)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080086{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030087 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080088 unsigned char buffer[2];
89 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080090
91 buffer[0] = addr;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080092 buffer[1] = value;
Hans Verkuil6b8fe022008-12-18 11:17:25 -030093 v4l2_dbg(2, debug, sd, "tvp5150: writing 0x%02x 0x%02x\n", buffer[0], buffer[1]);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080094 if (2 != (rc = i2c_master_send(c, buffer, 2)))
Hans Verkuil6b8fe022008-12-18 11:17:25 -030095 v4l2_dbg(0, debug, sd, "i2c i/o error: rc == %d (should be 2)\n", rc);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080096}
97
Hans Verkuil6b8fe022008-12-18 11:17:25 -030098static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
99 const u8 end, int max_line)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200100{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300101 int i = 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200102
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300103 while (init != (u8)(end + 1)) {
104 if ((i % max_line) == 0) {
105 if (i > 0)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200106 printk("\n");
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300107 printk("tvp5150: %s reg 0x%02x = ", s, init);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200108 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300109 printk("%02x ", tvp5150_read(sd, init));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200110
111 init++;
112 i++;
113 }
114 printk("\n");
115}
116
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300117static int tvp5150_log_status(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800118{
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800119 printk("tvp5150: Video input source selection #1 = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300120 tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800121 printk("tvp5150: Analog channel controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300122 tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800123 printk("tvp5150: Operation mode controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300124 tvp5150_read(sd, TVP5150_OP_MODE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800125 printk("tvp5150: Miscellaneous controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300126 tvp5150_read(sd, TVP5150_MISC_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200127 printk("tvp5150: Autoswitch mask= 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300128 tvp5150_read(sd, TVP5150_AUTOSW_MSK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800129 printk("tvp5150: Color killer threshold control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300130 tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200131 printk("tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300132 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
133 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
134 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800135 printk("tvp5150: Brightness control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300136 tvp5150_read(sd, TVP5150_BRIGHT_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800137 printk("tvp5150: Color saturation control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300138 tvp5150_read(sd, TVP5150_SATURATION_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800139 printk("tvp5150: Hue control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300140 tvp5150_read(sd, TVP5150_HUE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800141 printk("tvp5150: Contrast control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300142 tvp5150_read(sd, TVP5150_CONTRAST_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800143 printk("tvp5150: Outputs and data rates select = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300144 tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800145 printk("tvp5150: Configuration shared pins = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300146 tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200147 printk("tvp5150: Active video cropping start = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300148 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
149 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200150 printk("tvp5150: Active video cropping stop = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300151 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
152 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800153 printk("tvp5150: Genlock/RTC = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300154 tvp5150_read(sd, TVP5150_GENLOCK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800155 printk("tvp5150: Horizontal sync start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300156 tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800157 printk("tvp5150: Vertical blanking start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300158 tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800159 printk("tvp5150: Vertical blanking stop = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300160 tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200161 printk("tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300162 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
163 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800164 printk("tvp5150: Interrupt reset register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300165 tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800166 printk("tvp5150: Interrupt enable register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300167 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800168 printk("tvp5150: Interrupt configuration register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300169 tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800170 printk("tvp5150: Video standard = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300171 tvp5150_read(sd, TVP5150_VIDEO_STD));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200172 printk("tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300173 tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
174 tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800175 printk("tvp5150: Macrovision on counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300176 tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800177 printk("tvp5150: Macrovision off counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300178 tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200179 printk("tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300180 (tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200181 printk("tvp5150: Device ID = %02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300182 tvp5150_read(sd, TVP5150_MSB_DEV_ID),
183 tvp5150_read(sd, TVP5150_LSB_DEV_ID));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200184 printk("tvp5150: ROM version = (hex) %02x.%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300185 tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
186 tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200187 printk("tvp5150: Vertical line count = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300188 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
189 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800190 printk("tvp5150: Interrupt status register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300191 tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800192 printk("tvp5150: Interrupt active register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300193 tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200194 printk("tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300195 tvp5150_read(sd, TVP5150_STATUS_REG_1),
196 tvp5150_read(sd, TVP5150_STATUS_REG_2),
197 tvp5150_read(sd, TVP5150_STATUS_REG_3),
198 tvp5150_read(sd, TVP5150_STATUS_REG_4),
199 tvp5150_read(sd, TVP5150_STATUS_REG_5));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200200
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300201 dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
202 TVP5150_TELETEXT_FIL1_END, 8);
203 dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
204 TVP5150_TELETEXT_FIL2_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200205
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800206 printk("tvp5150: Teletext filter enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300207 tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800208 printk("tvp5150: Interrupt status register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300209 tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800210 printk("tvp5150: Interrupt enable register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300211 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800212 printk("tvp5150: Interrupt configuration = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300213 tvp5150_read(sd, TVP5150_INT_CONF));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800214 printk("tvp5150: VDP status register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300215 tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800216 printk("tvp5150: FIFO word count = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300217 tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800218 printk("tvp5150: FIFO interrupt threshold = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300219 tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800220 printk("tvp5150: FIFO reset = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300221 tvp5150_read(sd, TVP5150_FIFO_RESET));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800222 printk("tvp5150: Line number interrupt = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300223 tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200224 printk("tvp5150: Pixel alignment register = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300225 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
226 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800227 printk("tvp5150: FIFO output control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300228 tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200229 printk("tvp5150: Full field enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300230 tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800231 printk("tvp5150: Full field mode register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300232 tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200233
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300234 dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
235 TVP5150_CC_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200236
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300237 dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
238 TVP5150_WSS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200239
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300240 dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
241 TVP5150_VPS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200242
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300243 dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
244 TVP5150_VITC_DATA_END, 10);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200245
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300246 dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
247 TVP5150_LINE_MODE_END, 8);
248 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800249}
250
251/****************************************************************************
252 Basic functions
253 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800254
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300255static inline void tvp5150_selmux(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800256{
Paul Walmsley2962fc02010-10-09 01:31:40 -0300257 int opmode = 0;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300258 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300259 int input = 0;
Dan Carpenterafcc8e82012-07-12 10:47:28 -0300260 int val;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800261
Hans Verkuil5325b422009-04-02 11:26:22 -0300262 if ((decoder->output & TVP5150_BLACK_SCREEN) || !decoder->enable)
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300263 input = 8;
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800264
Hans Verkuil5325b422009-04-02 11:26:22 -0300265 switch (decoder->input) {
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300266 case TVP5150_COMPOSITE1:
267 input |= 2;
268 /* fall through */
269 case TVP5150_COMPOSITE0:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200270 break;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300271 case TVP5150_SVIDEO:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200272 default:
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300273 input |= 1;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200274 break;
275 }
276
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300277 v4l2_dbg(1, debug, sd, "Selecting video route: route input=%i, output=%i "
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300278 "=> tvp5150 input=%i, opmode=%i\n",
Hans Verkuil5325b422009-04-02 11:26:22 -0300279 decoder->input, decoder->output,
280 input, opmode);
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300281
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300282 tvp5150_write(sd, TVP5150_OP_MODE_CTL, opmode);
283 tvp5150_write(sd, TVP5150_VD_IN_SRC_SEL_1, input);
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300284
285 /* Svideo should enable YCrCb output and disable GPCL output
286 * For Composite and TV, it should be the reverse
287 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300288 val = tvp5150_read(sd, TVP5150_MISC_CTL);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300289 if (val < 0) {
290 v4l2_err(sd, "%s: failed with error = %d\n", __func__, val);
291 return;
292 }
293
Hans Verkuil5325b422009-04-02 11:26:22 -0300294 if (decoder->input == TVP5150_SVIDEO)
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300295 val = (val & ~0x40) | 0x10;
296 else
297 val = (val & ~0x10) | 0x40;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300298 tvp5150_write(sd, TVP5150_MISC_CTL, val);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800299};
300
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200301struct i2c_reg_value {
302 unsigned char reg;
303 unsigned char value;
304};
305
306/* Default values as sugested at TVP5150AM1 datasheet */
307static const struct i2c_reg_value tvp5150_init_default[] = {
308 { /* 0x00 */
309 TVP5150_VD_IN_SRC_SEL_1,0x00
310 },
311 { /* 0x01 */
312 TVP5150_ANAL_CHL_CTL,0x15
313 },
314 { /* 0x02 */
315 TVP5150_OP_MODE_CTL,0x00
316 },
317 { /* 0x03 */
318 TVP5150_MISC_CTL,0x01
319 },
320 { /* 0x06 */
321 TVP5150_COLOR_KIL_THSH_CTL,0x10
322 },
323 { /* 0x07 */
324 TVP5150_LUMA_PROC_CTL_1,0x60
325 },
326 { /* 0x08 */
327 TVP5150_LUMA_PROC_CTL_2,0x00
328 },
329 { /* 0x09 */
330 TVP5150_BRIGHT_CTL,0x80
331 },
332 { /* 0x0a */
333 TVP5150_SATURATION_CTL,0x80
334 },
335 { /* 0x0b */
336 TVP5150_HUE_CTL,0x00
337 },
338 { /* 0x0c */
339 TVP5150_CONTRAST_CTL,0x80
340 },
341 { /* 0x0d */
342 TVP5150_DATA_RATE_SEL,0x47
343 },
344 { /* 0x0e */
345 TVP5150_LUMA_PROC_CTL_3,0x00
346 },
347 { /* 0x0f */
348 TVP5150_CONF_SHARED_PIN,0x08
349 },
350 { /* 0x11 */
351 TVP5150_ACT_VD_CROP_ST_MSB,0x00
352 },
353 { /* 0x12 */
354 TVP5150_ACT_VD_CROP_ST_LSB,0x00
355 },
356 { /* 0x13 */
357 TVP5150_ACT_VD_CROP_STP_MSB,0x00
358 },
359 { /* 0x14 */
360 TVP5150_ACT_VD_CROP_STP_LSB,0x00
361 },
362 { /* 0x15 */
363 TVP5150_GENLOCK,0x01
364 },
365 { /* 0x16 */
366 TVP5150_HORIZ_SYNC_START,0x80
367 },
368 { /* 0x18 */
369 TVP5150_VERT_BLANKING_START,0x00
370 },
371 { /* 0x19 */
372 TVP5150_VERT_BLANKING_STOP,0x00
373 },
374 { /* 0x1a */
375 TVP5150_CHROMA_PROC_CTL_1,0x0c
376 },
377 { /* 0x1b */
378 TVP5150_CHROMA_PROC_CTL_2,0x14
379 },
380 { /* 0x1c */
381 TVP5150_INT_RESET_REG_B,0x00
382 },
383 { /* 0x1d */
384 TVP5150_INT_ENABLE_REG_B,0x00
385 },
386 { /* 0x1e */
387 TVP5150_INTT_CONFIG_REG_B,0x00
388 },
389 { /* 0x28 */
390 TVP5150_VIDEO_STD,0x00
391 },
392 { /* 0x2e */
393 TVP5150_MACROVISION_ON_CTR,0x0f
394 },
395 { /* 0x2f */
396 TVP5150_MACROVISION_OFF_CTR,0x01
397 },
398 { /* 0xbb */
399 TVP5150_TELETEXT_FIL_ENA,0x00
400 },
401 { /* 0xc0 */
402 TVP5150_INT_STATUS_REG_A,0x00
403 },
404 { /* 0xc1 */
405 TVP5150_INT_ENABLE_REG_A,0x00
406 },
407 { /* 0xc2 */
408 TVP5150_INT_CONF,0x04
409 },
410 { /* 0xc8 */
411 TVP5150_FIFO_INT_THRESHOLD,0x80
412 },
413 { /* 0xc9 */
414 TVP5150_FIFO_RESET,0x00
415 },
416 { /* 0xca */
417 TVP5150_LINE_NUMBER_INT,0x00
418 },
419 { /* 0xcb */
420 TVP5150_PIX_ALIGN_REG_LOW,0x4e
421 },
422 { /* 0xcc */
423 TVP5150_PIX_ALIGN_REG_HIGH,0x00
424 },
425 { /* 0xcd */
426 TVP5150_FIFO_OUT_CTRL,0x01
427 },
428 { /* 0xcf */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200429 TVP5150_FULL_FIELD_ENA,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200430 },
431 { /* 0xd0 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200432 TVP5150_LINE_MODE_INI,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200433 },
434 { /* 0xfc */
435 TVP5150_FULL_FIELD_MODE_REG,0x7f
436 },
437 { /* end of data */
438 0xff,0xff
439 }
440};
441
442/* Default values as sugested at TVP5150AM1 datasheet */
443static const struct i2c_reg_value tvp5150_init_enable[] = {
444 {
445 TVP5150_CONF_SHARED_PIN, 2
446 },{ /* Automatic offset and AGC enabled */
447 TVP5150_ANAL_CHL_CTL, 0x15
448 },{ /* Activate YCrCb output 0x9 or 0xd ? */
449 TVP5150_MISC_CTL, 0x6f
450 },{ /* Activates video std autodetection for all standards */
451 TVP5150_AUTOSW_MSK, 0x0
452 },{ /* Default format: 0x47. For 4:2:2: 0x40 */
453 TVP5150_DATA_RATE_SEL, 0x47
454 },{
455 TVP5150_CHROMA_PROC_CTL_1, 0x0c
456 },{
457 TVP5150_CHROMA_PROC_CTL_2, 0x54
458 },{ /* Non documented, but initialized on WinTV USB2 */
459 0x27, 0x20
460 },{
461 0xff,0xff
462 }
463};
464
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200465struct tvp5150_vbi_type {
466 unsigned int vbi_type;
467 unsigned int ini_line;
468 unsigned int end_line;
469 unsigned int by_field :1;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200470};
471
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200472struct i2c_vbi_ram_value {
473 u16 reg;
474 struct tvp5150_vbi_type type;
475 unsigned char values[16];
476};
477
478/* This struct have the values for each supported VBI Standard
479 * by
480 tvp5150_vbi_types should follow the same order as vbi_ram_default
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200481 * value 0 means rom position 0x10, value 1 means rom position 0x30
482 * and so on. There are 16 possible locations from 0 to 15.
483 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200484
Adrian Bunka9cff902006-01-15 06:56:15 -0200485static struct i2c_vbi_ram_value vbi_ram_default[] =
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200486{
Hans Verkuil9bc74002006-03-29 18:02:51 -0300487 /* FIXME: Current api doesn't handle all VBI types, those not
488 yet supported are placed under #if 0 */
489#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200490 {0x010, /* Teletext, SECAM, WST System A */
491 {V4L2_SLICED_TELETEXT_SECAM,6,23,1},
492 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
493 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200494 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300495#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200496 {0x030, /* Teletext, PAL, WST System B */
Hans Verkuil9bc74002006-03-29 18:02:51 -0300497 {V4L2_SLICED_TELETEXT_B,6,22,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200498 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
499 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200500 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300501#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200502 {0x050, /* Teletext, PAL, WST System C */
503 {V4L2_SLICED_TELETEXT_PAL_C,6,22,1},
504 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
505 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200506 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200507 {0x070, /* Teletext, NTSC, WST System B */
508 {V4L2_SLICED_TELETEXT_NTSC_B,10,21,1},
509 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
510 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200511 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200512 {0x090, /* Tetetext, NTSC NABTS System C */
513 {V4L2_SLICED_TELETEXT_NTSC_C,10,21,1},
514 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
515 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200516 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200517 {0x0b0, /* Teletext, NTSC-J, NABTS System D */
518 {V4L2_SLICED_TELETEXT_NTSC_D,10,21,1},
519 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
520 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200521 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200522 {0x0d0, /* Closed Caption, PAL/SECAM */
523 {V4L2_SLICED_CAPTION_625,22,22,1},
524 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
525 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200526 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300527#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200528 {0x0f0, /* Closed Caption, NTSC */
529 {V4L2_SLICED_CAPTION_525,21,21,1},
530 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
531 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200532 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200533 {0x110, /* Wide Screen Signal, PAL/SECAM */
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200534 {V4L2_SLICED_WSS_625,23,23,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200535 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
536 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200537 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300538#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200539 {0x130, /* Wide Screen Signal, NTSC C */
540 {V4L2_SLICED_WSS_525,20,20,1},
541 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
542 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200543 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200544 {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
545 {V4l2_SLICED_VITC_625,6,22,0},
546 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
547 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200548 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200549 {0x170, /* Vertical Interval Timecode (VITC), NTSC */
550 {V4l2_SLICED_VITC_525,10,20,0},
551 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
552 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200553 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300554#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200555 {0x190, /* Video Program System (VPS), PAL */
556 {V4L2_SLICED_VPS,16,16,0},
557 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
558 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200559 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200560 /* 0x1d0 User programmable */
561
562 /* End of struct */
563 { (u16)-1 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200564};
565
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300566static int tvp5150_write_inittab(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200567 const struct i2c_reg_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200568{
569 while (regs->reg != 0xff) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300570 tvp5150_write(sd, regs->reg, regs->value);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200571 regs++;
572 }
573 return 0;
574}
575
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300576static int tvp5150_vdp_init(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200577 const struct i2c_vbi_ram_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200578{
579 unsigned int i;
580
581 /* Disable Full Field */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300582 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200583
584 /* Before programming, Line mode should be at 0xff */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300585 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
586 tvp5150_write(sd, i, 0xff);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200587
588 /* Load Ram Table */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300589 while (regs->reg != (u16)-1) {
590 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
591 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200592
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300593 for (i = 0; i < 16; i++)
594 tvp5150_write(sd, TVP5150_VDP_CONF_RAM_DATA, regs->values[i]);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200595
596 regs++;
597 }
598 return 0;
599}
600
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200601/* Fills VBI capabilities based on i2c_vbi_ram_value struct */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300602static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200603 struct v4l2_sliced_vbi_cap *cap)
604{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300605 const struct i2c_vbi_ram_value *regs = vbi_ram_default;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200606 int line;
607
Hans Verkuilbccfa442009-03-30 06:55:27 -0300608 v4l2_dbg(1, debug, sd, "g_sliced_vbi_cap\n");
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200609 memset(cap, 0, sizeof *cap);
610
611 while (regs->reg != (u16)-1 ) {
612 for (line=regs->type.ini_line;line<=regs->type.end_line;line++) {
613 cap->service_lines[0][line] |= regs->type.vbi_type;
614 }
615 cap->service_set |= regs->type.vbi_type;
616
617 regs++;
618 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300619 return 0;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200620}
621
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200622/* Set vbi processing
623 * type - one of tvp5150_vbi_types
624 * line - line to gather data
625 * fields: bit 0 field1, bit 1, field2
626 * flags (default=0xf0) is a bitmask, were set means:
627 * bit 7: enable filtering null bytes on CC
628 * bit 6: send data also to FIFO
629 * bit 5: don't allow data with errors on FIFO
630 * bit 4: enable ECC when possible
631 * pix_align = pix alignment:
632 * LSB = field1
633 * MSB = field2
634 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300635static int tvp5150_set_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200636 const struct i2c_vbi_ram_value *regs,
637 unsigned int type,u8 flags, int line,
638 const int fields)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200639{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300640 struct tvp5150 *decoder = to_tvp5150(sd);
641 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200642 u8 reg;
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200643 int pos=0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200644
645 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300646 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200647 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300648 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200649 /* Don't follow NTSC Line number convension */
650 line += 3;
651 }
652
653 if (line<6||line>27)
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200654 return 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200655
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200656 while (regs->reg != (u16)-1 ) {
657 if ((type & regs->type.vbi_type) &&
658 (line>=regs->type.ini_line) &&
659 (line<=regs->type.end_line)) {
660 type=regs->type.vbi_type;
661 break;
662 }
663
664 regs++;
665 pos++;
666 }
667 if (regs->reg == (u16)-1)
668 return 0;
669
670 type=pos | (flags & 0xf0);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200671 reg=((line-6)<<1)+TVP5150_LINE_MODE_INI;
672
673 if (fields&1) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300674 tvp5150_write(sd, reg, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200675 }
676
677 if (fields&2) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300678 tvp5150_write(sd, reg+1, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200679 }
680
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200681 return type;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200682}
683
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300684static int tvp5150_get_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200685 const struct i2c_vbi_ram_value *regs, int line)
686{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300687 struct tvp5150 *decoder = to_tvp5150(sd);
688 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200689 u8 reg;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300690 int pos, type = 0;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300691 int i, ret = 0;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200692
693 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300694 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200695 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300696 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200697 /* Don't follow NTSC Line number convension */
698 line += 3;
699 }
700
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300701 if (line < 6 || line > 27)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200702 return 0;
703
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300704 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200705
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -0300706 for (i = 0; i <= 1; i++) {
707 ret = tvp5150_read(sd, reg + i);
708 if (ret < 0) {
709 v4l2_err(sd, "%s: failed with error = %d\n",
710 __func__, ret);
711 return 0;
712 }
713 pos = ret & 0x0f;
714 if (pos < 0x0f)
715 type |= regs[pos].type.vbi_type;
716 }
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200717
718 return type;
719}
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800720
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300721static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
722{
723 struct tvp5150 *decoder = to_tvp5150(sd);
724 int fmt = 0;
725
726 decoder->norm = std;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800727
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200728 /* First tests should be against specific std */
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800729
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200730 if (std == V4L2_STD_ALL) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300731 fmt = VIDEO_STD_AUTO_SWITCH_BIT; /* Autodetect mode */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200732 } else if (std & V4L2_STD_NTSC_443) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300733 fmt = VIDEO_STD_NTSC_4_43_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200734 } else if (std & V4L2_STD_PAL_M) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300735 fmt = VIDEO_STD_PAL_M_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300736 } else if (std & (V4L2_STD_PAL_N | V4L2_STD_PAL_Nc)) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300737 fmt = VIDEO_STD_PAL_COMBINATION_N_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200738 } else {
739 /* Then, test against generic ones */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300740 if (std & V4L2_STD_NTSC)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300741 fmt = VIDEO_STD_NTSC_MJ_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300742 else if (std & V4L2_STD_PAL)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300743 fmt = VIDEO_STD_PAL_BDGHIN_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300744 else if (std & V4L2_STD_SECAM)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300745 fmt = VIDEO_STD_SECAM_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200746 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800747
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300748 v4l2_dbg(1, debug, sd, "Set video std register to %d.\n", fmt);
749 tvp5150_write(sd, TVP5150_VIDEO_STD, fmt);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200750 return 0;
751}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800752
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300753static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200754{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300755 struct tvp5150 *decoder = to_tvp5150(sd);
756
757 if (decoder->norm == std)
758 return 0;
759
Javier Martin963ddc62012-01-31 05:23:46 -0300760 /* Change cropping height limits */
761 if (std & V4L2_STD_525_60)
762 decoder->rect.height = TVP5150_V_MAX_525_60;
763 else
764 decoder->rect.height = TVP5150_V_MAX_OTHERS;
765
766
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300767 return tvp5150_set_std(sd, std);
768}
769
770static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
771{
772 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200773
774 /* Initializes TVP5150 to its default values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300775 tvp5150_write_inittab(sd, tvp5150_init_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200776
777 /* Initializes VDP registers */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300778 tvp5150_vdp_init(sd, vbi_ram_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200779
780 /* Selects decoder input */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300781 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800782
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200783 /* Initializes TVP5150 to stream enabled values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300784 tvp5150_write_inittab(sd, tvp5150_init_enable);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800785
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200786 /* Initialize image preferences */
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300787 v4l2_ctrl_handler_setup(&decoder->hdl);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200788
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300789 tvp5150_set_std(sd, decoder->norm);
790 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800791};
792
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300793static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800794{
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300795 struct v4l2_subdev *sd = to_sd(ctrl);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800796
797 switch (ctrl->id) {
798 case V4L2_CID_BRIGHTNESS:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300799 tvp5150_write(sd, TVP5150_BRIGHT_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800800 return 0;
801 case V4L2_CID_CONTRAST:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300802 tvp5150_write(sd, TVP5150_CONTRAST_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800803 return 0;
804 case V4L2_CID_SATURATION:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300805 tvp5150_write(sd, TVP5150_SATURATION_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800806 return 0;
807 case V4L2_CID_HUE:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300808 tvp5150_write(sd, TVP5150_HUE_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800809 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800810 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200811 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800812}
813
Javier Martinec2c4f32012-01-05 10:57:39 -0300814static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd)
815{
816 int val = tvp5150_read(sd, TVP5150_STATUS_REG_5);
817
818 switch (val & 0x0F) {
819 case 0x01:
820 return V4L2_STD_NTSC;
821 case 0x03:
822 return V4L2_STD_PAL;
823 case 0x05:
824 return V4L2_STD_PAL_M;
825 case 0x07:
826 return V4L2_STD_PAL_N | V4L2_STD_PAL_Nc;
827 case 0x09:
828 return V4L2_STD_NTSC_443;
829 case 0xb:
830 return V4L2_STD_SECAM;
831 default:
832 return V4L2_STD_UNKNOWN;
833 }
834}
835
836static int tvp5150_enum_mbus_fmt(struct v4l2_subdev *sd, unsigned index,
837 enum v4l2_mbus_pixelcode *code)
838{
839 if (index)
840 return -EINVAL;
841
Javier Martin002eaf92012-03-26 09:17:46 -0300842 *code = V4L2_MBUS_FMT_UYVY8_2X8;
Javier Martinec2c4f32012-01-05 10:57:39 -0300843 return 0;
844}
845
846static int tvp5150_mbus_fmt(struct v4l2_subdev *sd,
847 struct v4l2_mbus_framefmt *f)
848{
849 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martinec2c4f32012-01-05 10:57:39 -0300850
851 if (f == NULL)
852 return -EINVAL;
853
854 tvp5150_reset(sd, 0);
855
Javier Martin963ddc62012-01-31 05:23:46 -0300856 f->width = decoder->rect.width;
857 f->height = decoder->rect.height;
Javier Martinec2c4f32012-01-05 10:57:39 -0300858
Javier Martin002eaf92012-03-26 09:17:46 -0300859 f->code = V4L2_MBUS_FMT_UYVY8_2X8;
Javier Martinec2c4f32012-01-05 10:57:39 -0300860 f->field = V4L2_FIELD_SEQ_TB;
861 f->colorspace = V4L2_COLORSPACE_SMPTE170M;
862
863 v4l2_dbg(1, debug, sd, "width = %d, height = %d\n", f->width,
864 f->height);
865 return 0;
866}
867
Hans Verkuil4f996592012-09-05 05:10:48 -0300868static int tvp5150_s_crop(struct v4l2_subdev *sd, const struct v4l2_crop *a)
Javier Martin963ddc62012-01-31 05:23:46 -0300869{
870 struct v4l2_rect rect = a->c;
871 struct tvp5150 *decoder = to_tvp5150(sd);
872 v4l2_std_id std;
873 int hmax;
874
875 v4l2_dbg(1, debug, sd, "%s left=%d, top=%d, width=%d, height=%d\n",
876 __func__, rect.left, rect.top, rect.width, rect.height);
877
878 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
879 return -EINVAL;
880
881 /* tvp5150 has some special limits */
882 rect.left = clamp(rect.left, 0, TVP5150_MAX_CROP_LEFT);
883 rect.width = clamp(rect.width,
884 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect.left,
885 TVP5150_H_MAX - rect.left);
886 rect.top = clamp(rect.top, 0, TVP5150_MAX_CROP_TOP);
887
888 /* Calculate height based on current standard */
889 if (decoder->norm == V4L2_STD_ALL)
890 std = tvp5150_read_std(sd);
891 else
892 std = decoder->norm;
893
894 if (std & V4L2_STD_525_60)
895 hmax = TVP5150_V_MAX_525_60;
896 else
897 hmax = TVP5150_V_MAX_OTHERS;
898
899 rect.height = clamp(rect.height,
900 hmax - TVP5150_MAX_CROP_TOP - rect.top,
901 hmax - rect.top);
902
903 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, rect.top);
904 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP,
905 rect.top + rect.height - hmax);
906 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_MSB,
907 rect.left >> TVP5150_CROP_SHIFT);
908 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_LSB,
909 rect.left | (1 << TVP5150_CROP_SHIFT));
910 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_MSB,
911 (rect.left + rect.width - TVP5150_MAX_CROP_LEFT) >>
912 TVP5150_CROP_SHIFT);
913 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_LSB,
914 rect.left + rect.width - TVP5150_MAX_CROP_LEFT);
915
916 decoder->rect = rect;
917
918 return 0;
919}
920
921static int tvp5150_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
922{
923 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
924
925 a->c = decoder->rect;
926 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
927
928 return 0;
929}
930
931static int tvp5150_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
932{
933 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
934 v4l2_std_id std;
935
936 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
937 return -EINVAL;
938
939 a->bounds.left = 0;
940 a->bounds.top = 0;
941 a->bounds.width = TVP5150_H_MAX;
942
943 /* Calculate height based on current standard */
944 if (decoder->norm == V4L2_STD_ALL)
945 std = tvp5150_read_std(sd);
946 else
947 std = decoder->norm;
948
949 if (std & V4L2_STD_525_60)
950 a->bounds.height = TVP5150_V_MAX_525_60;
951 else
952 a->bounds.height = TVP5150_V_MAX_OTHERS;
953
954 a->defrect = a->bounds;
955 a->pixelaspect.numerator = 1;
956 a->pixelaspect.denominator = 1;
957
958 return 0;
959}
960
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800961/****************************************************************************
962 I2C Command
963 ****************************************************************************/
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300964
Hans Verkuil5325b422009-04-02 11:26:22 -0300965static int tvp5150_s_routing(struct v4l2_subdev *sd,
966 u32 input, u32 output, u32 config)
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800967{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300968 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800969
Hans Verkuil5325b422009-04-02 11:26:22 -0300970 decoder->input = input;
971 decoder->output = output;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300972 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800973 return 0;
974}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800975
Hans Verkuild37dad42010-03-14 10:59:16 -0300976static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300977{
Hans Verkuild37dad42010-03-14 10:59:16 -0300978 /* this is for capturing 36 raw vbi lines
979 if there's a way to cut off the beginning 2 vbi lines
980 with the tvp5150 then the vbi line count could be lowered
981 to 17 lines/field again, although I couldn't find a register
982 which could do that cropping */
983 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
984 tvp5150_write(sd, TVP5150_LUMA_PROC_CTL_1, 0x70);
985 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
986 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, 0x00);
987 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP, 0x01);
988 }
989 return 0;
990}
991
992static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
993{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300994 int i;
995
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300996 if (svbi->service_set != 0) {
997 for (i = 0; i <= 23; i++) {
998 svbi->service_lines[1][i] = 0;
999 svbi->service_lines[0][i] =
1000 tvp5150_set_vbi(sd, vbi_ram_default,
1001 svbi->service_lines[0][i], 0xf0, i, 3);
1002 }
1003 /* Enables FIFO */
1004 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 1);
1005 } else {
1006 /* Disables FIFO*/
1007 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 0);
1008
1009 /* Disable Full Field */
1010 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
1011
1012 /* Disable Line modes */
1013 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
1014 tvp5150_write(sd, i, 0xff);
1015 }
1016 return 0;
1017}
1018
Hans Verkuild37dad42010-03-14 10:59:16 -03001019static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1020{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001021 int i, mask = 0;
1022
Hans Verkuil30634e82012-09-05 10:38:10 -03001023 memset(svbi->service_lines, 0, sizeof(svbi->service_lines));
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001024
1025 for (i = 0; i <= 23; i++) {
1026 svbi->service_lines[0][i] =
1027 tvp5150_get_vbi(sd, vbi_ram_default, i);
1028 mask |= svbi->service_lines[0][i];
1029 }
1030 svbi->service_set = mask;
1031 return 0;
1032}
1033
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -03001034static int tvp5150_g_chip_ident(struct v4l2_subdev *sd,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001035 struct v4l2_dbg_chip_ident *chip)
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -03001036{
1037 int rev;
1038 struct i2c_client *client = v4l2_get_subdevdata(sd);
1039
1040 rev = tvp5150_read(sd, TVP5150_ROM_MAJOR_VER) << 8 |
1041 tvp5150_read(sd, TVP5150_ROM_MINOR_VER);
1042
1043 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_TVP5150,
1044 rev);
1045}
1046
1047
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001048#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001049static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001050{
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001051 int res;
1052
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001053 struct i2c_client *client = v4l2_get_subdevdata(sd);
1054
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001055 if (!v4l2_chip_match_i2c_client(client, &reg->match))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001056 return -EINVAL;
1057 if (!capable(CAP_SYS_ADMIN))
1058 return -EPERM;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001059 res = tvp5150_read(sd, reg->reg & 0xff);
1060 if (res < 0) {
1061 v4l2_err(sd, "%s: failed with error = %d\n", __func__, res);
1062 return res;
1063 }
1064
1065 reg->val = res;
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001066 reg->size = 1;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001067 return 0;
1068}
1069
Hans Verkuil977ba3b2013-03-24 08:28:46 -03001070static int tvp5150_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001071{
1072 struct i2c_client *client = v4l2_get_subdevdata(sd);
1073
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001074 if (!v4l2_chip_match_i2c_client(client, &reg->match))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001075 return -EINVAL;
1076 if (!capable(CAP_SYS_ADMIN))
1077 return -EPERM;
1078 tvp5150_write(sd, reg->reg & 0xff, reg->val & 0xff);
1079 return 0;
1080}
1081#endif
1082
1083static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1084{
1085 int status = tvp5150_read(sd, 0x88);
1086
1087 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
1088 return 0;
1089}
1090
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001091/* ----------------------------------------------------------------------- */
1092
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001093static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
1094 .s_ctrl = tvp5150_s_ctrl,
1095};
1096
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001097static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1098 .log_status = tvp5150_log_status,
Hans Verkuilf41737e2009-04-01 03:52:39 -03001099 .s_std = tvp5150_s_std,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001100 .reset = tvp5150_reset,
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -03001101 .g_chip_ident = tvp5150_g_chip_ident,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001102#ifdef CONFIG_VIDEO_ADV_DEBUG
1103 .g_register = tvp5150_g_register,
1104 .s_register = tvp5150_s_register,
1105#endif
1106};
1107
1108static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001109 .g_tuner = tvp5150_g_tuner,
1110};
1111
1112static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
1113 .s_routing = tvp5150_s_routing,
Javier Martinec2c4f32012-01-05 10:57:39 -03001114 .enum_mbus_fmt = tvp5150_enum_mbus_fmt,
1115 .s_mbus_fmt = tvp5150_mbus_fmt,
1116 .try_mbus_fmt = tvp5150_mbus_fmt,
Javier Martin0f67a032012-01-31 05:23:47 -03001117 .g_mbus_fmt = tvp5150_mbus_fmt,
Javier Martin963ddc62012-01-31 05:23:46 -03001118 .s_crop = tvp5150_s_crop,
1119 .g_crop = tvp5150_g_crop,
1120 .cropcap = tvp5150_cropcap,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001121};
1122
1123static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001124 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
Hans Verkuild37dad42010-03-14 10:59:16 -03001125 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1126 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1127 .s_raw_fmt = tvp5150_s_raw_fmt,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001128};
1129
1130static const struct v4l2_subdev_ops tvp5150_ops = {
1131 .core = &tvp5150_core_ops,
1132 .tuner = &tvp5150_tuner_ops,
1133 .video = &tvp5150_video_ops,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001134 .vbi = &tvp5150_vbi_ops,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001135};
1136
1137
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001138/****************************************************************************
1139 I2C Client & Driver
1140 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001141
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001142static int tvp5150_probe(struct i2c_client *c,
1143 const struct i2c_device_id *id)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001144{
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001145 struct tvp5150 *core;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001146 struct v4l2_subdev *sd;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001147 int tvp5150_id[4];
1148 int i, res;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001149
1150 /* Check if the adapter supports the needed features */
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001151 if (!i2c_check_functionality(c->adapter,
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001152 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001153 return -EIO;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001154
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001155 core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL);
1156 if (!core)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001157 return -ENOMEM;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001158 sd = &core->sd;
1159 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001160
1161 /*
1162 * Read consequent registers - TVP5150_MSB_DEV_ID, TVP5150_LSB_DEV_ID,
1163 * TVP5150_ROM_MAJOR_VER, TVP5150_ROM_MINOR_VER
1164 */
1165 for (i = 0; i < 4; i++) {
1166 res = tvp5150_read(sd, TVP5150_MSB_DEV_ID + i);
1167 if (res < 0)
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001168 return res;
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001169 tvp5150_id[i] = res;
1170 }
1171
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001172 v4l_info(c, "chip found @ 0x%02x (%s)\n",
1173 c->addr << 1, c->adapter->name);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001174
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001175 if (tvp5150_id[2] == 4 && tvp5150_id[3] == 0) { /* Is TVP5150AM1 */
1176 v4l2_info(sd, "tvp%02x%02xam1 detected.\n",
1177 tvp5150_id[0], tvp5150_id[1]);
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001178
1179 /* ITU-T BT.656.4 timing */
1180 tvp5150_write(sd, TVP5150_REV_SELECT, 0);
1181 } else {
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001182 /* Is TVP5150A */
1183 if (tvp5150_id[2] == 3 || tvp5150_id[3] == 0x21) {
1184 v4l2_info(sd, "tvp%02x%02xa detected.\n",
1185 tvp5150_id[2], tvp5150_id[3]);
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001186 } else {
1187 v4l2_info(sd, "*** unknown tvp%02x%02x chip detected.\n",
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001188 tvp5150_id[2], tvp5150_id[3]);
1189 v4l2_info(sd, "*** Rom ver is %d.%d\n",
1190 tvp5150_id[2], tvp5150_id[3]);
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001191 }
1192 }
1193
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -02001194 core->norm = V4L2_STD_ALL; /* Default is autodetect */
Hans Verkuil5325b422009-04-02 11:26:22 -03001195 core->input = TVP5150_COMPOSITE1;
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001196 core->enable = 1;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001197
1198 v4l2_ctrl_handler_init(&core->hdl, 4);
1199 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1200 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
1201 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1202 V4L2_CID_CONTRAST, 0, 255, 1, 128);
1203 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1204 V4L2_CID_SATURATION, 0, 255, 1, 128);
1205 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1206 V4L2_CID_HUE, -128, 127, 1, 0);
1207 sd->ctrl_handler = &core->hdl;
1208 if (core->hdl.error) {
Dmitry Lifshitz8cd0d4c2012-06-13 07:49:30 -03001209 res = core->hdl.error;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001210 v4l2_ctrl_handler_free(&core->hdl);
Laurent Pinchartc02b2112013-05-02 08:29:43 -03001211 return res;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001212 }
1213 v4l2_ctrl_handler_setup(&core->hdl);
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001214
Javier Martin963ddc62012-01-31 05:23:46 -03001215 /* Default is no cropping */
1216 core->rect.top = 0;
1217 if (tvp5150_read_std(sd) & V4L2_STD_525_60)
1218 core->rect.height = TVP5150_V_MAX_525_60;
1219 else
1220 core->rect.height = TVP5150_V_MAX_OTHERS;
1221 core->rect.left = 0;
1222 core->rect.width = TVP5150_H_MAX;
1223
Markus Rechbergerf1e5ee42006-02-07 04:01:19 +01001224 if (debug > 1)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001225 tvp5150_log_status(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001226 return 0;
1227}
1228
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001229static int tvp5150_remove(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001230{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001231 struct v4l2_subdev *sd = i2c_get_clientdata(c);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001232 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001233
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001234 v4l2_dbg(1, debug, sd,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -02001235 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1236 c->addr << 1);
1237
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001238 v4l2_device_unregister_subdev(sd);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001239 v4l2_ctrl_handler_free(&decoder->hdl);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001240 return 0;
1241}
1242
1243/* ----------------------------------------------------------------------- */
1244
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001245static const struct i2c_device_id tvp5150_id[] = {
1246 { "tvp5150", 0 },
1247 { }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001248};
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001249MODULE_DEVICE_TABLE(i2c, tvp5150_id);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001250
Hans Verkuilc7711452010-09-15 15:45:20 -03001251static struct i2c_driver tvp5150_driver = {
1252 .driver = {
1253 .owner = THIS_MODULE,
1254 .name = "tvp5150",
1255 },
1256 .probe = tvp5150_probe,
1257 .remove = tvp5150_remove,
1258 .id_table = tvp5150_id,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001259};
Hans Verkuilc7711452010-09-15 15:45:20 -03001260
Axel Linc6e8d862012-02-12 06:56:32 -03001261module_i2c_driver(tvp5150_driver);