blob: b7867427e5c4a03673789ed80b9ac67643cbfa7e [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;
64 if (1 != (rc = i2c_master_send(c, buffer, 1)))
Hans Verkuil6b8fe022008-12-18 11:17:25 -030065 v4l2_dbg(0, debug, sd, "i2c i/o error: rc == %d (should be 1)\n", rc);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080066
67 msleep(10);
68
69 if (1 != (rc = i2c_master_recv(c, buffer, 1)))
Hans Verkuil6b8fe022008-12-18 11:17:25 -030070 v4l2_dbg(0, debug, sd, "i2c i/o error: rc == %d (should be 1)\n", rc);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -020071
Hans Verkuil6b8fe022008-12-18 11:17:25 -030072 v4l2_dbg(2, debug, sd, "tvp5150: read 0x%02x = 0x%02x\n", addr, buffer[0]);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080073
74 return (buffer[0]);
75}
76
Hans Verkuil6b8fe022008-12-18 11:17:25 -030077static inline void tvp5150_write(struct v4l2_subdev *sd, unsigned char addr,
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080078 unsigned char value)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080079{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030080 struct i2c_client *c = v4l2_get_subdevdata(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080081 unsigned char buffer[2];
82 int rc;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080083
84 buffer[0] = addr;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -080085 buffer[1] = value;
Hans Verkuil6b8fe022008-12-18 11:17:25 -030086 v4l2_dbg(2, debug, sd, "tvp5150: writing 0x%02x 0x%02x\n", buffer[0], buffer[1]);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080087 if (2 != (rc = i2c_master_send(c, buffer, 2)))
Hans Verkuil6b8fe022008-12-18 11:17:25 -030088 v4l2_dbg(0, debug, sd, "i2c i/o error: rc == %d (should be 2)\n", rc);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -080089}
90
Hans Verkuil6b8fe022008-12-18 11:17:25 -030091static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
92 const u8 end, int max_line)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020093{
Hans Verkuil6b8fe022008-12-18 11:17:25 -030094 int i = 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020095
Hans Verkuil6b8fe022008-12-18 11:17:25 -030096 while (init != (u8)(end + 1)) {
97 if ((i % max_line) == 0) {
98 if (i > 0)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -020099 printk("\n");
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300100 printk("tvp5150: %s reg 0x%02x = ", s, init);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200101 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300102 printk("%02x ", tvp5150_read(sd, init));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200103
104 init++;
105 i++;
106 }
107 printk("\n");
108}
109
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300110static int tvp5150_log_status(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800111{
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800112 printk("tvp5150: Video input source selection #1 = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300113 tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800114 printk("tvp5150: Analog channel controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300115 tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800116 printk("tvp5150: Operation mode controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300117 tvp5150_read(sd, TVP5150_OP_MODE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800118 printk("tvp5150: Miscellaneous controls = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300119 tvp5150_read(sd, TVP5150_MISC_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200120 printk("tvp5150: Autoswitch mask= 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300121 tvp5150_read(sd, TVP5150_AUTOSW_MSK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800122 printk("tvp5150: Color killer threshold control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300123 tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200124 printk("tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300125 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
126 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
127 tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800128 printk("tvp5150: Brightness control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300129 tvp5150_read(sd, TVP5150_BRIGHT_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800130 printk("tvp5150: Color saturation control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300131 tvp5150_read(sd, TVP5150_SATURATION_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800132 printk("tvp5150: Hue control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300133 tvp5150_read(sd, TVP5150_HUE_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800134 printk("tvp5150: Contrast control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300135 tvp5150_read(sd, TVP5150_CONTRAST_CTL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800136 printk("tvp5150: Outputs and data rates select = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300137 tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800138 printk("tvp5150: Configuration shared pins = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300139 tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200140 printk("tvp5150: Active video cropping start = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300141 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
142 tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200143 printk("tvp5150: Active video cropping stop = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300144 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
145 tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800146 printk("tvp5150: Genlock/RTC = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300147 tvp5150_read(sd, TVP5150_GENLOCK));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800148 printk("tvp5150: Horizontal sync start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300149 tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800150 printk("tvp5150: Vertical blanking start = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300151 tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800152 printk("tvp5150: Vertical blanking stop = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300153 tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200154 printk("tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300155 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
156 tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800157 printk("tvp5150: Interrupt reset register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300158 tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800159 printk("tvp5150: Interrupt enable register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300160 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800161 printk("tvp5150: Interrupt configuration register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300162 tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800163 printk("tvp5150: Video standard = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300164 tvp5150_read(sd, TVP5150_VIDEO_STD));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200165 printk("tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300166 tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
167 tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800168 printk("tvp5150: Macrovision on counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300169 tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800170 printk("tvp5150: Macrovision off counter = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300171 tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200172 printk("tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300173 (tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200174 printk("tvp5150: Device ID = %02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300175 tvp5150_read(sd, TVP5150_MSB_DEV_ID),
176 tvp5150_read(sd, TVP5150_LSB_DEV_ID));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200177 printk("tvp5150: ROM version = (hex) %02x.%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300178 tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
179 tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200180 printk("tvp5150: Vertical line count = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300181 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
182 tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800183 printk("tvp5150: Interrupt status register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300184 tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800185 printk("tvp5150: Interrupt active register B = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300186 tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200187 printk("tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300188 tvp5150_read(sd, TVP5150_STATUS_REG_1),
189 tvp5150_read(sd, TVP5150_STATUS_REG_2),
190 tvp5150_read(sd, TVP5150_STATUS_REG_3),
191 tvp5150_read(sd, TVP5150_STATUS_REG_4),
192 tvp5150_read(sd, TVP5150_STATUS_REG_5));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200193
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300194 dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
195 TVP5150_TELETEXT_FIL1_END, 8);
196 dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
197 TVP5150_TELETEXT_FIL2_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200198
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800199 printk("tvp5150: Teletext filter enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300200 tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800201 printk("tvp5150: Interrupt status register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300202 tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800203 printk("tvp5150: Interrupt enable register A = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300204 tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800205 printk("tvp5150: Interrupt configuration = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300206 tvp5150_read(sd, TVP5150_INT_CONF));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800207 printk("tvp5150: VDP status register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300208 tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800209 printk("tvp5150: FIFO word count = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300210 tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800211 printk("tvp5150: FIFO interrupt threshold = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300212 tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800213 printk("tvp5150: FIFO reset = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300214 tvp5150_read(sd, TVP5150_FIFO_RESET));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800215 printk("tvp5150: Line number interrupt = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300216 tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200217 printk("tvp5150: Pixel alignment register = 0x%02x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300218 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
219 tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800220 printk("tvp5150: FIFO output control = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300221 tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200222 printk("tvp5150: Full field enable = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300223 tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800224 printk("tvp5150: Full field mode register = 0x%02x\n",
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300225 tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200226
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300227 dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
228 TVP5150_CC_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200229
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300230 dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
231 TVP5150_WSS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200232
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300233 dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
234 TVP5150_VPS_DATA_END, 8);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200235
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300236 dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
237 TVP5150_VITC_DATA_END, 10);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200238
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300239 dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
240 TVP5150_LINE_MODE_END, 8);
241 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800242}
243
244/****************************************************************************
245 Basic functions
246 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800247
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300248static inline void tvp5150_selmux(struct v4l2_subdev *sd)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800249{
Paul Walmsley2962fc02010-10-09 01:31:40 -0300250 int opmode = 0;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300251 struct tvp5150 *decoder = to_tvp5150(sd);
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300252 int input = 0;
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300253 unsigned char val;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800254
Hans Verkuil5325b422009-04-02 11:26:22 -0300255 if ((decoder->output & TVP5150_BLACK_SCREEN) || !decoder->enable)
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300256 input = 8;
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800257
Hans Verkuil5325b422009-04-02 11:26:22 -0300258 switch (decoder->input) {
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300259 case TVP5150_COMPOSITE1:
260 input |= 2;
261 /* fall through */
262 case TVP5150_COMPOSITE0:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200263 break;
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300264 case TVP5150_SVIDEO:
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200265 default:
Hans Verkuilc7c0b342006-04-02 13:35:00 -0300266 input |= 1;
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200267 break;
268 }
269
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300270 v4l2_dbg(1, debug, sd, "Selecting video route: route input=%i, output=%i "
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300271 "=> tvp5150 input=%i, opmode=%i\n",
Hans Verkuil5325b422009-04-02 11:26:22 -0300272 decoder->input, decoder->output,
273 input, opmode);
Mauro Carvalho Chehab12500f02006-08-18 07:31:10 -0300274
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300275 tvp5150_write(sd, TVP5150_OP_MODE_CTL, opmode);
276 tvp5150_write(sd, TVP5150_VD_IN_SRC_SEL_1, input);
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300277
278 /* Svideo should enable YCrCb output and disable GPCL output
279 * For Composite and TV, it should be the reverse
280 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300281 val = tvp5150_read(sd, TVP5150_MISC_CTL);
Hans Verkuil5325b422009-04-02 11:26:22 -0300282 if (decoder->input == TVP5150_SVIDEO)
Mauro Carvalho Chehabf4b8b3a2007-11-03 22:40:24 -0300283 val = (val & ~0x40) | 0x10;
284 else
285 val = (val & ~0x10) | 0x40;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300286 tvp5150_write(sd, TVP5150_MISC_CTL, val);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800287};
288
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200289struct i2c_reg_value {
290 unsigned char reg;
291 unsigned char value;
292};
293
294/* Default values as sugested at TVP5150AM1 datasheet */
295static const struct i2c_reg_value tvp5150_init_default[] = {
296 { /* 0x00 */
297 TVP5150_VD_IN_SRC_SEL_1,0x00
298 },
299 { /* 0x01 */
300 TVP5150_ANAL_CHL_CTL,0x15
301 },
302 { /* 0x02 */
303 TVP5150_OP_MODE_CTL,0x00
304 },
305 { /* 0x03 */
306 TVP5150_MISC_CTL,0x01
307 },
308 { /* 0x06 */
309 TVP5150_COLOR_KIL_THSH_CTL,0x10
310 },
311 { /* 0x07 */
312 TVP5150_LUMA_PROC_CTL_1,0x60
313 },
314 { /* 0x08 */
315 TVP5150_LUMA_PROC_CTL_2,0x00
316 },
317 { /* 0x09 */
318 TVP5150_BRIGHT_CTL,0x80
319 },
320 { /* 0x0a */
321 TVP5150_SATURATION_CTL,0x80
322 },
323 { /* 0x0b */
324 TVP5150_HUE_CTL,0x00
325 },
326 { /* 0x0c */
327 TVP5150_CONTRAST_CTL,0x80
328 },
329 { /* 0x0d */
330 TVP5150_DATA_RATE_SEL,0x47
331 },
332 { /* 0x0e */
333 TVP5150_LUMA_PROC_CTL_3,0x00
334 },
335 { /* 0x0f */
336 TVP5150_CONF_SHARED_PIN,0x08
337 },
338 { /* 0x11 */
339 TVP5150_ACT_VD_CROP_ST_MSB,0x00
340 },
341 { /* 0x12 */
342 TVP5150_ACT_VD_CROP_ST_LSB,0x00
343 },
344 { /* 0x13 */
345 TVP5150_ACT_VD_CROP_STP_MSB,0x00
346 },
347 { /* 0x14 */
348 TVP5150_ACT_VD_CROP_STP_LSB,0x00
349 },
350 { /* 0x15 */
351 TVP5150_GENLOCK,0x01
352 },
353 { /* 0x16 */
354 TVP5150_HORIZ_SYNC_START,0x80
355 },
356 { /* 0x18 */
357 TVP5150_VERT_BLANKING_START,0x00
358 },
359 { /* 0x19 */
360 TVP5150_VERT_BLANKING_STOP,0x00
361 },
362 { /* 0x1a */
363 TVP5150_CHROMA_PROC_CTL_1,0x0c
364 },
365 { /* 0x1b */
366 TVP5150_CHROMA_PROC_CTL_2,0x14
367 },
368 { /* 0x1c */
369 TVP5150_INT_RESET_REG_B,0x00
370 },
371 { /* 0x1d */
372 TVP5150_INT_ENABLE_REG_B,0x00
373 },
374 { /* 0x1e */
375 TVP5150_INTT_CONFIG_REG_B,0x00
376 },
377 { /* 0x28 */
378 TVP5150_VIDEO_STD,0x00
379 },
380 { /* 0x2e */
381 TVP5150_MACROVISION_ON_CTR,0x0f
382 },
383 { /* 0x2f */
384 TVP5150_MACROVISION_OFF_CTR,0x01
385 },
386 { /* 0xbb */
387 TVP5150_TELETEXT_FIL_ENA,0x00
388 },
389 { /* 0xc0 */
390 TVP5150_INT_STATUS_REG_A,0x00
391 },
392 { /* 0xc1 */
393 TVP5150_INT_ENABLE_REG_A,0x00
394 },
395 { /* 0xc2 */
396 TVP5150_INT_CONF,0x04
397 },
398 { /* 0xc8 */
399 TVP5150_FIFO_INT_THRESHOLD,0x80
400 },
401 { /* 0xc9 */
402 TVP5150_FIFO_RESET,0x00
403 },
404 { /* 0xca */
405 TVP5150_LINE_NUMBER_INT,0x00
406 },
407 { /* 0xcb */
408 TVP5150_PIX_ALIGN_REG_LOW,0x4e
409 },
410 { /* 0xcc */
411 TVP5150_PIX_ALIGN_REG_HIGH,0x00
412 },
413 { /* 0xcd */
414 TVP5150_FIFO_OUT_CTRL,0x01
415 },
416 { /* 0xcf */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200417 TVP5150_FULL_FIELD_ENA,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200418 },
419 { /* 0xd0 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200420 TVP5150_LINE_MODE_INI,0x00
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200421 },
422 { /* 0xfc */
423 TVP5150_FULL_FIELD_MODE_REG,0x7f
424 },
425 { /* end of data */
426 0xff,0xff
427 }
428};
429
430/* Default values as sugested at TVP5150AM1 datasheet */
431static const struct i2c_reg_value tvp5150_init_enable[] = {
432 {
433 TVP5150_CONF_SHARED_PIN, 2
434 },{ /* Automatic offset and AGC enabled */
435 TVP5150_ANAL_CHL_CTL, 0x15
436 },{ /* Activate YCrCb output 0x9 or 0xd ? */
437 TVP5150_MISC_CTL, 0x6f
438 },{ /* Activates video std autodetection for all standards */
439 TVP5150_AUTOSW_MSK, 0x0
440 },{ /* Default format: 0x47. For 4:2:2: 0x40 */
441 TVP5150_DATA_RATE_SEL, 0x47
442 },{
443 TVP5150_CHROMA_PROC_CTL_1, 0x0c
444 },{
445 TVP5150_CHROMA_PROC_CTL_2, 0x54
446 },{ /* Non documented, but initialized on WinTV USB2 */
447 0x27, 0x20
448 },{
449 0xff,0xff
450 }
451};
452
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200453struct tvp5150_vbi_type {
454 unsigned int vbi_type;
455 unsigned int ini_line;
456 unsigned int end_line;
457 unsigned int by_field :1;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200458};
459
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200460struct i2c_vbi_ram_value {
461 u16 reg;
462 struct tvp5150_vbi_type type;
463 unsigned char values[16];
464};
465
466/* This struct have the values for each supported VBI Standard
467 * by
468 tvp5150_vbi_types should follow the same order as vbi_ram_default
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200469 * value 0 means rom position 0x10, value 1 means rom position 0x30
470 * and so on. There are 16 possible locations from 0 to 15.
471 */
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200472
Adrian Bunka9cff902006-01-15 06:56:15 -0200473static struct i2c_vbi_ram_value vbi_ram_default[] =
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200474{
Hans Verkuil9bc74002006-03-29 18:02:51 -0300475 /* FIXME: Current api doesn't handle all VBI types, those not
476 yet supported are placed under #if 0 */
477#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200478 {0x010, /* Teletext, SECAM, WST System A */
479 {V4L2_SLICED_TELETEXT_SECAM,6,23,1},
480 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
481 0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200482 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300483#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200484 {0x030, /* Teletext, PAL, WST System B */
Hans Verkuil9bc74002006-03-29 18:02:51 -0300485 {V4L2_SLICED_TELETEXT_B,6,22,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200486 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
487 0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200488 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300489#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200490 {0x050, /* Teletext, PAL, WST System C */
491 {V4L2_SLICED_TELETEXT_PAL_C,6,22,1},
492 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
493 0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200494 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200495 {0x070, /* Teletext, NTSC, WST System B */
496 {V4L2_SLICED_TELETEXT_NTSC_B,10,21,1},
497 { 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
498 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200499 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200500 {0x090, /* Tetetext, NTSC NABTS System C */
501 {V4L2_SLICED_TELETEXT_NTSC_C,10,21,1},
502 { 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
503 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200504 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200505 {0x0b0, /* Teletext, NTSC-J, NABTS System D */
506 {V4L2_SLICED_TELETEXT_NTSC_D,10,21,1},
507 { 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
508 0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200509 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200510 {0x0d0, /* Closed Caption, PAL/SECAM */
511 {V4L2_SLICED_CAPTION_625,22,22,1},
512 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
513 0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200514 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300515#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200516 {0x0f0, /* Closed Caption, NTSC */
517 {V4L2_SLICED_CAPTION_525,21,21,1},
518 { 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
519 0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200520 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200521 {0x110, /* Wide Screen Signal, PAL/SECAM */
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200522 {V4L2_SLICED_WSS_625,23,23,1},
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200523 { 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
524 0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200525 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300526#if 0
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200527 {0x130, /* Wide Screen Signal, NTSC C */
528 {V4L2_SLICED_WSS_525,20,20,1},
529 { 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
530 0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200531 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200532 {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
533 {V4l2_SLICED_VITC_625,6,22,0},
534 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
535 0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200536 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200537 {0x170, /* Vertical Interval Timecode (VITC), NTSC */
538 {V4l2_SLICED_VITC_525,10,20,0},
539 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
540 0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200541 },
Hans Verkuil9bc74002006-03-29 18:02:51 -0300542#endif
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200543 {0x190, /* Video Program System (VPS), PAL */
544 {V4L2_SLICED_VPS,16,16,0},
545 { 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
546 0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200547 },
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200548 /* 0x1d0 User programmable */
549
550 /* End of struct */
551 { (u16)-1 }
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200552};
553
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300554static int tvp5150_write_inittab(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200555 const struct i2c_reg_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200556{
557 while (regs->reg != 0xff) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300558 tvp5150_write(sd, regs->reg, regs->value);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200559 regs++;
560 }
561 return 0;
562}
563
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300564static int tvp5150_vdp_init(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200565 const struct i2c_vbi_ram_value *regs)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200566{
567 unsigned int i;
568
569 /* Disable Full Field */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300570 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200571
572 /* Before programming, Line mode should be at 0xff */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300573 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
574 tvp5150_write(sd, i, 0xff);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200575
576 /* Load Ram Table */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300577 while (regs->reg != (u16)-1) {
578 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
579 tvp5150_write(sd, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200580
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300581 for (i = 0; i < 16; i++)
582 tvp5150_write(sd, TVP5150_VDP_CONF_RAM_DATA, regs->values[i]);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200583
584 regs++;
585 }
586 return 0;
587}
588
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200589/* Fills VBI capabilities based on i2c_vbi_ram_value struct */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300590static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200591 struct v4l2_sliced_vbi_cap *cap)
592{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300593 const struct i2c_vbi_ram_value *regs = vbi_ram_default;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200594 int line;
595
Hans Verkuilbccfa442009-03-30 06:55:27 -0300596 v4l2_dbg(1, debug, sd, "g_sliced_vbi_cap\n");
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200597 memset(cap, 0, sizeof *cap);
598
599 while (regs->reg != (u16)-1 ) {
600 for (line=regs->type.ini_line;line<=regs->type.end_line;line++) {
601 cap->service_lines[0][line] |= regs->type.vbi_type;
602 }
603 cap->service_set |= regs->type.vbi_type;
604
605 regs++;
606 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300607 return 0;
Mauro Carvalho Chehab6ac48b42006-01-23 17:11:05 -0200608}
609
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200610/* Set vbi processing
611 * type - one of tvp5150_vbi_types
612 * line - line to gather data
613 * fields: bit 0 field1, bit 1, field2
614 * flags (default=0xf0) is a bitmask, were set means:
615 * bit 7: enable filtering null bytes on CC
616 * bit 6: send data also to FIFO
617 * bit 5: don't allow data with errors on FIFO
618 * bit 4: enable ECC when possible
619 * pix_align = pix alignment:
620 * LSB = field1
621 * MSB = field2
622 */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300623static int tvp5150_set_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200624 const struct i2c_vbi_ram_value *regs,
625 unsigned int type,u8 flags, int line,
626 const int fields)
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200627{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300628 struct tvp5150 *decoder = to_tvp5150(sd);
629 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200630 u8 reg;
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200631 int pos=0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200632
633 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300634 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200635 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300636 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200637 /* Don't follow NTSC Line number convension */
638 line += 3;
639 }
640
641 if (line<6||line>27)
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200642 return 0;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200643
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200644 while (regs->reg != (u16)-1 ) {
645 if ((type & regs->type.vbi_type) &&
646 (line>=regs->type.ini_line) &&
647 (line<=regs->type.end_line)) {
648 type=regs->type.vbi_type;
649 break;
650 }
651
652 regs++;
653 pos++;
654 }
655 if (regs->reg == (u16)-1)
656 return 0;
657
658 type=pos | (flags & 0xf0);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200659 reg=((line-6)<<1)+TVP5150_LINE_MODE_INI;
660
661 if (fields&1) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300662 tvp5150_write(sd, reg, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200663 }
664
665 if (fields&2) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300666 tvp5150_write(sd, reg+1, type);
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200667 }
668
Mauro Carvalho Chehab2701dac2006-01-23 17:11:06 -0200669 return type;
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -0200670}
671
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300672static int tvp5150_get_vbi(struct v4l2_subdev *sd,
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200673 const struct i2c_vbi_ram_value *regs, int line)
674{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300675 struct tvp5150 *decoder = to_tvp5150(sd);
676 v4l2_std_id std = decoder->norm;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200677 u8 reg;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300678 int pos, type = 0;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200679
680 if (std == V4L2_STD_ALL) {
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300681 v4l2_err(sd, "VBI can't be configured without knowing number of lines\n");
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200682 return 0;
Roel Kluin7d5b7b92008-03-09 21:19:13 -0300683 } else if (std & V4L2_STD_625_50) {
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200684 /* Don't follow NTSC Line number convension */
685 line += 3;
686 }
687
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300688 if (line < 6 || line > 27)
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200689 return 0;
690
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300691 reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200692
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300693 pos = tvp5150_read(sd, reg) & 0x0f;
694 if (pos < 0x0f)
695 type = regs[pos].type.vbi_type;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200696
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300697 pos = tvp5150_read(sd, reg + 1) & 0x0f;
698 if (pos < 0x0f)
699 type |= regs[pos].type.vbi_type;
Mauro Carvalho Chehab12db5602006-01-23 17:11:08 -0200700
701 return type;
702}
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -0800703
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300704static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
705{
706 struct tvp5150 *decoder = to_tvp5150(sd);
707 int fmt = 0;
708
709 decoder->norm = std;
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800710
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200711 /* First tests should be against specific std */
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800712
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200713 if (std == V4L2_STD_ALL) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300714 fmt = VIDEO_STD_AUTO_SWITCH_BIT; /* Autodetect mode */
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200715 } else if (std & V4L2_STD_NTSC_443) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300716 fmt = VIDEO_STD_NTSC_4_43_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200717 } else if (std & V4L2_STD_PAL_M) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300718 fmt = VIDEO_STD_PAL_M_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300719 } else if (std & (V4L2_STD_PAL_N | V4L2_STD_PAL_Nc)) {
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300720 fmt = VIDEO_STD_PAL_COMBINATION_N_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200721 } else {
722 /* Then, test against generic ones */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300723 if (std & V4L2_STD_NTSC)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300724 fmt = VIDEO_STD_NTSC_MJ_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300725 else if (std & V4L2_STD_PAL)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300726 fmt = VIDEO_STD_PAL_BDGHIN_BIT;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300727 else if (std & V4L2_STD_SECAM)
Javier Martinez Canillas2da12fc2011-11-04 13:23:21 -0300728 fmt = VIDEO_STD_SECAM_BIT;
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200729 }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800730
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300731 v4l2_dbg(1, debug, sd, "Set video std register to %d.\n", fmt);
732 tvp5150_write(sd, TVP5150_VIDEO_STD, fmt);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200733 return 0;
734}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800735
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300736static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200737{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300738 struct tvp5150 *decoder = to_tvp5150(sd);
739
740 if (decoder->norm == std)
741 return 0;
742
Javier Martin963ddc62012-01-31 05:23:46 -0300743 /* Change cropping height limits */
744 if (std & V4L2_STD_525_60)
745 decoder->rect.height = TVP5150_V_MAX_525_60;
746 else
747 decoder->rect.height = TVP5150_V_MAX_OTHERS;
748
749
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300750 return tvp5150_set_std(sd, std);
751}
752
753static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
754{
755 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200756
757 /* Initializes TVP5150 to its default values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300758 tvp5150_write_inittab(sd, tvp5150_init_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200759
760 /* Initializes VDP registers */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300761 tvp5150_vdp_init(sd, vbi_ram_default);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200762
763 /* Selects decoder input */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300764 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800765
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200766 /* Initializes TVP5150 to stream enabled values */
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300767 tvp5150_write_inittab(sd, tvp5150_init_enable);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800768
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200769 /* Initialize image preferences */
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300770 v4l2_ctrl_handler_setup(&decoder->hdl);
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -0200771
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300772 tvp5150_set_std(sd, decoder->norm);
773 return 0;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800774};
775
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300776static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800777{
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300778 struct v4l2_subdev *sd = to_sd(ctrl);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800779
780 switch (ctrl->id) {
781 case V4L2_CID_BRIGHTNESS:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300782 tvp5150_write(sd, TVP5150_BRIGHT_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800783 return 0;
784 case V4L2_CID_CONTRAST:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300785 tvp5150_write(sd, TVP5150_CONTRAST_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800786 return 0;
787 case V4L2_CID_SATURATION:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300788 tvp5150_write(sd, TVP5150_SATURATION_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800789 return 0;
790 case V4L2_CID_HUE:
Hans Verkuil6c45ec72010-12-12 08:45:43 -0300791 tvp5150_write(sd, TVP5150_HUE_CTL, ctrl->val);
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800792 return 0;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800793 }
Mauro Carvalho Chehabc0477ad2006-01-09 15:25:14 -0200794 return -EINVAL;
akpm@osdl.orga6c2ba22005-11-08 21:37:07 -0800795}
796
Javier Martinec2c4f32012-01-05 10:57:39 -0300797static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd)
798{
799 int val = tvp5150_read(sd, TVP5150_STATUS_REG_5);
800
801 switch (val & 0x0F) {
802 case 0x01:
803 return V4L2_STD_NTSC;
804 case 0x03:
805 return V4L2_STD_PAL;
806 case 0x05:
807 return V4L2_STD_PAL_M;
808 case 0x07:
809 return V4L2_STD_PAL_N | V4L2_STD_PAL_Nc;
810 case 0x09:
811 return V4L2_STD_NTSC_443;
812 case 0xb:
813 return V4L2_STD_SECAM;
814 default:
815 return V4L2_STD_UNKNOWN;
816 }
817}
818
819static int tvp5150_enum_mbus_fmt(struct v4l2_subdev *sd, unsigned index,
820 enum v4l2_mbus_pixelcode *code)
821{
822 if (index)
823 return -EINVAL;
824
Javier Martin002eaf92012-03-26 09:17:46 -0300825 *code = V4L2_MBUS_FMT_UYVY8_2X8;
Javier Martinec2c4f32012-01-05 10:57:39 -0300826 return 0;
827}
828
829static int tvp5150_mbus_fmt(struct v4l2_subdev *sd,
830 struct v4l2_mbus_framefmt *f)
831{
832 struct tvp5150 *decoder = to_tvp5150(sd);
Javier Martinec2c4f32012-01-05 10:57:39 -0300833
834 if (f == NULL)
835 return -EINVAL;
836
837 tvp5150_reset(sd, 0);
838
Javier Martin963ddc62012-01-31 05:23:46 -0300839 f->width = decoder->rect.width;
840 f->height = decoder->rect.height;
Javier Martinec2c4f32012-01-05 10:57:39 -0300841
Javier Martin002eaf92012-03-26 09:17:46 -0300842 f->code = V4L2_MBUS_FMT_UYVY8_2X8;
Javier Martinec2c4f32012-01-05 10:57:39 -0300843 f->field = V4L2_FIELD_SEQ_TB;
844 f->colorspace = V4L2_COLORSPACE_SMPTE170M;
845
846 v4l2_dbg(1, debug, sd, "width = %d, height = %d\n", f->width,
847 f->height);
848 return 0;
849}
850
Javier Martin963ddc62012-01-31 05:23:46 -0300851static int tvp5150_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
852{
853 struct v4l2_rect rect = a->c;
854 struct tvp5150 *decoder = to_tvp5150(sd);
855 v4l2_std_id std;
856 int hmax;
857
858 v4l2_dbg(1, debug, sd, "%s left=%d, top=%d, width=%d, height=%d\n",
859 __func__, rect.left, rect.top, rect.width, rect.height);
860
861 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
862 return -EINVAL;
863
864 /* tvp5150 has some special limits */
865 rect.left = clamp(rect.left, 0, TVP5150_MAX_CROP_LEFT);
866 rect.width = clamp(rect.width,
867 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect.left,
868 TVP5150_H_MAX - rect.left);
869 rect.top = clamp(rect.top, 0, TVP5150_MAX_CROP_TOP);
870
871 /* Calculate height based on current standard */
872 if (decoder->norm == V4L2_STD_ALL)
873 std = tvp5150_read_std(sd);
874 else
875 std = decoder->norm;
876
877 if (std & V4L2_STD_525_60)
878 hmax = TVP5150_V_MAX_525_60;
879 else
880 hmax = TVP5150_V_MAX_OTHERS;
881
882 rect.height = clamp(rect.height,
883 hmax - TVP5150_MAX_CROP_TOP - rect.top,
884 hmax - rect.top);
885
886 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, rect.top);
887 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP,
888 rect.top + rect.height - hmax);
889 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_MSB,
890 rect.left >> TVP5150_CROP_SHIFT);
891 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_LSB,
892 rect.left | (1 << TVP5150_CROP_SHIFT));
893 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_MSB,
894 (rect.left + rect.width - TVP5150_MAX_CROP_LEFT) >>
895 TVP5150_CROP_SHIFT);
896 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_LSB,
897 rect.left + rect.width - TVP5150_MAX_CROP_LEFT);
898
899 decoder->rect = rect;
900
901 return 0;
902}
903
904static int tvp5150_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
905{
906 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
907
908 a->c = decoder->rect;
909 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
910
911 return 0;
912}
913
914static int tvp5150_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
915{
916 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
917 v4l2_std_id std;
918
919 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
920 return -EINVAL;
921
922 a->bounds.left = 0;
923 a->bounds.top = 0;
924 a->bounds.width = TVP5150_H_MAX;
925
926 /* Calculate height based on current standard */
927 if (decoder->norm == V4L2_STD_ALL)
928 std = tvp5150_read_std(sd);
929 else
930 std = decoder->norm;
931
932 if (std & V4L2_STD_525_60)
933 a->bounds.height = TVP5150_V_MAX_525_60;
934 else
935 a->bounds.height = TVP5150_V_MAX_OTHERS;
936
937 a->defrect = a->bounds;
938 a->pixelaspect.numerator = 1;
939 a->pixelaspect.denominator = 1;
940
941 return 0;
942}
943
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800944/****************************************************************************
945 I2C Command
946 ****************************************************************************/
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300947
Hans Verkuil5325b422009-04-02 11:26:22 -0300948static int tvp5150_s_routing(struct v4l2_subdev *sd,
949 u32 input, u32 output, u32 config)
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800950{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300951 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800952
Hans Verkuil5325b422009-04-02 11:26:22 -0300953 decoder->input = input;
954 decoder->output = output;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300955 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800956 return 0;
957}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800958
Hans Verkuild37dad42010-03-14 10:59:16 -0300959static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300960{
Hans Verkuild37dad42010-03-14 10:59:16 -0300961 /* this is for capturing 36 raw vbi lines
962 if there's a way to cut off the beginning 2 vbi lines
963 with the tvp5150 then the vbi line count could be lowered
964 to 17 lines/field again, although I couldn't find a register
965 which could do that cropping */
966 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
967 tvp5150_write(sd, TVP5150_LUMA_PROC_CTL_1, 0x70);
968 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
969 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, 0x00);
970 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP, 0x01);
971 }
972 return 0;
973}
974
975static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
976{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300977 int i;
978
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300979 if (svbi->service_set != 0) {
980 for (i = 0; i <= 23; i++) {
981 svbi->service_lines[1][i] = 0;
982 svbi->service_lines[0][i] =
983 tvp5150_set_vbi(sd, vbi_ram_default,
984 svbi->service_lines[0][i], 0xf0, i, 3);
985 }
986 /* Enables FIFO */
987 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 1);
988 } else {
989 /* Disables FIFO*/
990 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 0);
991
992 /* Disable Full Field */
993 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
994
995 /* Disable Line modes */
996 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
997 tvp5150_write(sd, i, 0xff);
998 }
999 return 0;
1000}
1001
Hans Verkuild37dad42010-03-14 10:59:16 -03001002static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1003{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001004 int i, mask = 0;
1005
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001006 memset(svbi, 0, sizeof(*svbi));
1007
1008 for (i = 0; i <= 23; i++) {
1009 svbi->service_lines[0][i] =
1010 tvp5150_get_vbi(sd, vbi_ram_default, i);
1011 mask |= svbi->service_lines[0][i];
1012 }
1013 svbi->service_set = mask;
1014 return 0;
1015}
1016
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -03001017static int tvp5150_g_chip_ident(struct v4l2_subdev *sd,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001018 struct v4l2_dbg_chip_ident *chip)
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -03001019{
1020 int rev;
1021 struct i2c_client *client = v4l2_get_subdevdata(sd);
1022
1023 rev = tvp5150_read(sd, TVP5150_ROM_MAJOR_VER) << 8 |
1024 tvp5150_read(sd, TVP5150_ROM_MINOR_VER);
1025
1026 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_TVP5150,
1027 rev);
1028}
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{
1034 struct i2c_client *client = v4l2_get_subdevdata(sd);
1035
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001036 if (!v4l2_chip_match_i2c_client(client, &reg->match))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001037 return -EINVAL;
1038 if (!capable(CAP_SYS_ADMIN))
1039 return -EPERM;
1040 reg->val = tvp5150_read(sd, reg->reg & 0xff);
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001041 reg->size = 1;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001042 return 0;
1043}
1044
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001045static int tvp5150_s_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001046{
1047 struct i2c_client *client = v4l2_get_subdevdata(sd);
1048
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001049 if (!v4l2_chip_match_i2c_client(client, &reg->match))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001050 return -EINVAL;
1051 if (!capable(CAP_SYS_ADMIN))
1052 return -EPERM;
1053 tvp5150_write(sd, reg->reg & 0xff, reg->val & 0xff);
1054 return 0;
1055}
1056#endif
1057
1058static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1059{
1060 int status = tvp5150_read(sd, 0x88);
1061
1062 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
1063 return 0;
1064}
1065
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001066/* ----------------------------------------------------------------------- */
1067
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001068static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
1069 .s_ctrl = tvp5150_s_ctrl,
1070};
1071
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001072static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1073 .log_status = tvp5150_log_status,
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001074 .g_ext_ctrls = v4l2_subdev_g_ext_ctrls,
1075 .try_ext_ctrls = v4l2_subdev_try_ext_ctrls,
1076 .s_ext_ctrls = v4l2_subdev_s_ext_ctrls,
1077 .g_ctrl = v4l2_subdev_g_ctrl,
1078 .s_ctrl = v4l2_subdev_s_ctrl,
1079 .queryctrl = v4l2_subdev_queryctrl,
1080 .querymenu = v4l2_subdev_querymenu,
Hans Verkuilf41737e2009-04-01 03:52:39 -03001081 .s_std = tvp5150_s_std,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001082 .reset = tvp5150_reset,
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -03001083 .g_chip_ident = tvp5150_g_chip_ident,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001084#ifdef CONFIG_VIDEO_ADV_DEBUG
1085 .g_register = tvp5150_g_register,
1086 .s_register = tvp5150_s_register,
1087#endif
1088};
1089
1090static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001091 .g_tuner = tvp5150_g_tuner,
1092};
1093
1094static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
1095 .s_routing = tvp5150_s_routing,
Javier Martinec2c4f32012-01-05 10:57:39 -03001096 .enum_mbus_fmt = tvp5150_enum_mbus_fmt,
1097 .s_mbus_fmt = tvp5150_mbus_fmt,
1098 .try_mbus_fmt = tvp5150_mbus_fmt,
Javier Martin0f67a032012-01-31 05:23:47 -03001099 .g_mbus_fmt = tvp5150_mbus_fmt,
Javier Martin963ddc62012-01-31 05:23:46 -03001100 .s_crop = tvp5150_s_crop,
1101 .g_crop = tvp5150_g_crop,
1102 .cropcap = tvp5150_cropcap,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001103};
1104
1105static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001106 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
Hans Verkuild37dad42010-03-14 10:59:16 -03001107 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1108 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1109 .s_raw_fmt = tvp5150_s_raw_fmt,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001110};
1111
1112static const struct v4l2_subdev_ops tvp5150_ops = {
1113 .core = &tvp5150_core_ops,
1114 .tuner = &tvp5150_tuner_ops,
1115 .video = &tvp5150_video_ops,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001116 .vbi = &tvp5150_vbi_ops,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001117};
1118
1119
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001120/****************************************************************************
1121 I2C Client & Driver
1122 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001123
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001124static int tvp5150_probe(struct i2c_client *c,
1125 const struct i2c_device_id *id)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001126{
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001127 struct tvp5150 *core;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001128 struct v4l2_subdev *sd;
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001129 u8 msb_id, lsb_id, msb_rom, lsb_rom;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001130
1131 /* Check if the adapter supports the needed features */
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001132 if (!i2c_check_functionality(c->adapter,
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001133 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001134 return -EIO;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001135
Panagiotis Issaris74081872006-01-11 19:40:56 -02001136 core = kzalloc(sizeof(struct tvp5150), GFP_KERNEL);
Al Viro5fa12472008-03-29 03:07:38 +00001137 if (!core) {
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001138 return -ENOMEM;
1139 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001140 sd = &core->sd;
1141 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
1142 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
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001145 msb_id = tvp5150_read(sd, TVP5150_MSB_DEV_ID);
1146 lsb_id = tvp5150_read(sd, TVP5150_LSB_DEV_ID);
1147 msb_rom = tvp5150_read(sd, TVP5150_ROM_MAJOR_VER);
1148 lsb_rom = tvp5150_read(sd, TVP5150_ROM_MINOR_VER);
1149
1150 if (msb_rom == 4 && lsb_rom == 0) { /* Is TVP5150AM1 */
1151 v4l2_info(sd, "tvp%02x%02xam1 detected.\n", msb_id, lsb_id);
1152
1153 /* ITU-T BT.656.4 timing */
1154 tvp5150_write(sd, TVP5150_REV_SELECT, 0);
1155 } else {
1156 if (msb_rom == 3 || lsb_rom == 0x21) { /* Is TVP5150A */
1157 v4l2_info(sd, "tvp%02x%02xa detected.\n", msb_id, lsb_id);
1158 } else {
1159 v4l2_info(sd, "*** unknown tvp%02x%02x chip detected.\n",
1160 msb_id, lsb_id);
1161 v4l2_info(sd, "*** Rom ver is %d.%d\n", msb_rom, lsb_rom);
1162 }
1163 }
1164
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -02001165 core->norm = V4L2_STD_ALL; /* Default is autodetect */
Hans Verkuil5325b422009-04-02 11:26:22 -03001166 core->input = TVP5150_COMPOSITE1;
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001167 core->enable = 1;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001168
1169 v4l2_ctrl_handler_init(&core->hdl, 4);
1170 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1171 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
1172 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1173 V4L2_CID_CONTRAST, 0, 255, 1, 128);
1174 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1175 V4L2_CID_SATURATION, 0, 255, 1, 128);
1176 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1177 V4L2_CID_HUE, -128, 127, 1, 0);
1178 sd->ctrl_handler = &core->hdl;
1179 if (core->hdl.error) {
1180 int err = core->hdl.error;
1181
1182 v4l2_ctrl_handler_free(&core->hdl);
1183 kfree(core);
1184 return err;
1185 }
1186 v4l2_ctrl_handler_setup(&core->hdl);
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001187
Javier Martin963ddc62012-01-31 05:23:46 -03001188 /* Default is no cropping */
1189 core->rect.top = 0;
1190 if (tvp5150_read_std(sd) & V4L2_STD_525_60)
1191 core->rect.height = TVP5150_V_MAX_525_60;
1192 else
1193 core->rect.height = TVP5150_V_MAX_OTHERS;
1194 core->rect.left = 0;
1195 core->rect.width = TVP5150_H_MAX;
1196
Markus Rechbergerf1e5ee42006-02-07 04:01:19 +01001197 if (debug > 1)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001198 tvp5150_log_status(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001199 return 0;
1200}
1201
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001202static int tvp5150_remove(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001203{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001204 struct v4l2_subdev *sd = i2c_get_clientdata(c);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001205 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001206
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001207 v4l2_dbg(1, debug, sd,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -02001208 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1209 c->addr << 1);
1210
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001211 v4l2_device_unregister_subdev(sd);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001212 v4l2_ctrl_handler_free(&decoder->hdl);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001213 kfree(to_tvp5150(sd));
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001214 return 0;
1215}
1216
1217/* ----------------------------------------------------------------------- */
1218
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001219static const struct i2c_device_id tvp5150_id[] = {
1220 { "tvp5150", 0 },
1221 { }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001222};
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001223MODULE_DEVICE_TABLE(i2c, tvp5150_id);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001224
Hans Verkuilc7711452010-09-15 15:45:20 -03001225static struct i2c_driver tvp5150_driver = {
1226 .driver = {
1227 .owner = THIS_MODULE,
1228 .name = "tvp5150",
1229 },
1230 .probe = tvp5150_probe,
1231 .remove = tvp5150_remove,
1232 .id_table = tvp5150_id,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001233};
Hans Verkuilc7711452010-09-15 15:45:20 -03001234
Axel Linc6e8d862012-02-12 06:56:32 -03001235module_i2c_driver(tvp5150_driver);