blob: 907d560dd2b209e1c6f9adb1659baa89458054f2 [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
825 *code = V4L2_MBUS_FMT_YUYV8_2X8;
826 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);
833 v4l2_std_id std;
834
835 if (f == NULL)
836 return -EINVAL;
837
838 tvp5150_reset(sd, 0);
839
840 /* Calculate height and width based on current standard */
841 if (decoder->norm == V4L2_STD_ALL)
842 std = tvp5150_read_std(sd);
843 else
844 std = decoder->norm;
845
Javier Martin963ddc62012-01-31 05:23:46 -0300846 f->width = decoder->rect.width;
847 f->height = decoder->rect.height;
Javier Martinec2c4f32012-01-05 10:57:39 -0300848
849 f->code = V4L2_MBUS_FMT_YUYV8_2X8;
850 f->field = V4L2_FIELD_SEQ_TB;
851 f->colorspace = V4L2_COLORSPACE_SMPTE170M;
852
853 v4l2_dbg(1, debug, sd, "width = %d, height = %d\n", f->width,
854 f->height);
855 return 0;
856}
857
Javier Martin963ddc62012-01-31 05:23:46 -0300858static int tvp5150_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
859{
860 struct v4l2_rect rect = a->c;
861 struct tvp5150 *decoder = to_tvp5150(sd);
862 v4l2_std_id std;
863 int hmax;
864
865 v4l2_dbg(1, debug, sd, "%s left=%d, top=%d, width=%d, height=%d\n",
866 __func__, rect.left, rect.top, rect.width, rect.height);
867
868 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
869 return -EINVAL;
870
871 /* tvp5150 has some special limits */
872 rect.left = clamp(rect.left, 0, TVP5150_MAX_CROP_LEFT);
873 rect.width = clamp(rect.width,
874 TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect.left,
875 TVP5150_H_MAX - rect.left);
876 rect.top = clamp(rect.top, 0, TVP5150_MAX_CROP_TOP);
877
878 /* Calculate height based on current standard */
879 if (decoder->norm == V4L2_STD_ALL)
880 std = tvp5150_read_std(sd);
881 else
882 std = decoder->norm;
883
884 if (std & V4L2_STD_525_60)
885 hmax = TVP5150_V_MAX_525_60;
886 else
887 hmax = TVP5150_V_MAX_OTHERS;
888
889 rect.height = clamp(rect.height,
890 hmax - TVP5150_MAX_CROP_TOP - rect.top,
891 hmax - rect.top);
892
893 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, rect.top);
894 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP,
895 rect.top + rect.height - hmax);
896 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_MSB,
897 rect.left >> TVP5150_CROP_SHIFT);
898 tvp5150_write(sd, TVP5150_ACT_VD_CROP_ST_LSB,
899 rect.left | (1 << TVP5150_CROP_SHIFT));
900 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_MSB,
901 (rect.left + rect.width - TVP5150_MAX_CROP_LEFT) >>
902 TVP5150_CROP_SHIFT);
903 tvp5150_write(sd, TVP5150_ACT_VD_CROP_STP_LSB,
904 rect.left + rect.width - TVP5150_MAX_CROP_LEFT);
905
906 decoder->rect = rect;
907
908 return 0;
909}
910
911static int tvp5150_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
912{
913 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
914
915 a->c = decoder->rect;
916 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
917
918 return 0;
919}
920
921static int tvp5150_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
922{
923 struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
924 v4l2_std_id std;
925
926 if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
927 return -EINVAL;
928
929 a->bounds.left = 0;
930 a->bounds.top = 0;
931 a->bounds.width = TVP5150_H_MAX;
932
933 /* Calculate height based on current standard */
934 if (decoder->norm == V4L2_STD_ALL)
935 std = tvp5150_read_std(sd);
936 else
937 std = decoder->norm;
938
939 if (std & V4L2_STD_525_60)
940 a->bounds.height = TVP5150_V_MAX_525_60;
941 else
942 a->bounds.height = TVP5150_V_MAX_OTHERS;
943
944 a->defrect = a->bounds;
945 a->pixelaspect.numerator = 1;
946 a->pixelaspect.denominator = 1;
947
948 return 0;
949}
950
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800951/****************************************************************************
952 I2C Command
953 ****************************************************************************/
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300954
Hans Verkuil5325b422009-04-02 11:26:22 -0300955static int tvp5150_s_routing(struct v4l2_subdev *sd,
956 u32 input, u32 output, u32 config)
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800957{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300958 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800959
Hans Verkuil5325b422009-04-02 11:26:22 -0300960 decoder->input = input;
961 decoder->output = output;
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300962 tvp5150_selmux(sd);
Mauro Carvalho Chehab84486d52005-11-08 21:36:41 -0800963 return 0;
964}
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -0800965
Hans Verkuild37dad42010-03-14 10:59:16 -0300966static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300967{
Hans Verkuild37dad42010-03-14 10:59:16 -0300968 /* this is for capturing 36 raw vbi lines
969 if there's a way to cut off the beginning 2 vbi lines
970 with the tvp5150 then the vbi line count could be lowered
971 to 17 lines/field again, although I couldn't find a register
972 which could do that cropping */
973 if (fmt->sample_format == V4L2_PIX_FMT_GREY)
974 tvp5150_write(sd, TVP5150_LUMA_PROC_CTL_1, 0x70);
975 if (fmt->count[0] == 18 && fmt->count[1] == 18) {
976 tvp5150_write(sd, TVP5150_VERT_BLANKING_START, 0x00);
977 tvp5150_write(sd, TVP5150_VERT_BLANKING_STOP, 0x01);
978 }
979 return 0;
980}
981
982static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
983{
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300984 int i;
985
Hans Verkuil6b8fe022008-12-18 11:17:25 -0300986 if (svbi->service_set != 0) {
987 for (i = 0; i <= 23; i++) {
988 svbi->service_lines[1][i] = 0;
989 svbi->service_lines[0][i] =
990 tvp5150_set_vbi(sd, vbi_ram_default,
991 svbi->service_lines[0][i], 0xf0, i, 3);
992 }
993 /* Enables FIFO */
994 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 1);
995 } else {
996 /* Disables FIFO*/
997 tvp5150_write(sd, TVP5150_FIFO_OUT_CTRL, 0);
998
999 /* Disable Full Field */
1000 tvp5150_write(sd, TVP5150_FULL_FIELD_ENA, 0);
1001
1002 /* Disable Line modes */
1003 for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
1004 tvp5150_write(sd, i, 0xff);
1005 }
1006 return 0;
1007}
1008
Hans Verkuild37dad42010-03-14 10:59:16 -03001009static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
1010{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001011 int i, mask = 0;
1012
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001013 memset(svbi, 0, sizeof(*svbi));
1014
1015 for (i = 0; i <= 23; i++) {
1016 svbi->service_lines[0][i] =
1017 tvp5150_get_vbi(sd, vbi_ram_default, i);
1018 mask |= svbi->service_lines[0][i];
1019 }
1020 svbi->service_set = mask;
1021 return 0;
1022}
1023
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -03001024static int tvp5150_g_chip_ident(struct v4l2_subdev *sd,
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001025 struct v4l2_dbg_chip_ident *chip)
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -03001026{
1027 int rev;
1028 struct i2c_client *client = v4l2_get_subdevdata(sd);
1029
1030 rev = tvp5150_read(sd, TVP5150_ROM_MAJOR_VER) << 8 |
1031 tvp5150_read(sd, TVP5150_ROM_MINOR_VER);
1032
1033 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_TVP5150,
1034 rev);
1035}
1036
1037
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001038#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001039static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001040{
1041 struct i2c_client *client = v4l2_get_subdevdata(sd);
1042
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001043 if (!v4l2_chip_match_i2c_client(client, &reg->match))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001044 return -EINVAL;
1045 if (!capable(CAP_SYS_ADMIN))
1046 return -EPERM;
1047 reg->val = tvp5150_read(sd, reg->reg & 0xff);
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001048 reg->size = 1;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001049 return 0;
1050}
1051
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001052static int tvp5150_s_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001053{
1054 struct i2c_client *client = v4l2_get_subdevdata(sd);
1055
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001056 if (!v4l2_chip_match_i2c_client(client, &reg->match))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001057 return -EINVAL;
1058 if (!capable(CAP_SYS_ADMIN))
1059 return -EPERM;
1060 tvp5150_write(sd, reg->reg & 0xff, reg->val & 0xff);
1061 return 0;
1062}
1063#endif
1064
1065static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
1066{
1067 int status = tvp5150_read(sd, 0x88);
1068
1069 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
1070 return 0;
1071}
1072
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001073/* ----------------------------------------------------------------------- */
1074
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001075static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
1076 .s_ctrl = tvp5150_s_ctrl,
1077};
1078
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001079static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
1080 .log_status = tvp5150_log_status,
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001081 .g_ext_ctrls = v4l2_subdev_g_ext_ctrls,
1082 .try_ext_ctrls = v4l2_subdev_try_ext_ctrls,
1083 .s_ext_ctrls = v4l2_subdev_s_ext_ctrls,
1084 .g_ctrl = v4l2_subdev_g_ctrl,
1085 .s_ctrl = v4l2_subdev_s_ctrl,
1086 .queryctrl = v4l2_subdev_queryctrl,
1087 .querymenu = v4l2_subdev_querymenu,
Hans Verkuilf41737e2009-04-01 03:52:39 -03001088 .s_std = tvp5150_s_std,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001089 .reset = tvp5150_reset,
Mauro Carvalho Chehabbc974302008-12-22 20:34:18 -03001090 .g_chip_ident = tvp5150_g_chip_ident,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001091#ifdef CONFIG_VIDEO_ADV_DEBUG
1092 .g_register = tvp5150_g_register,
1093 .s_register = tvp5150_s_register,
1094#endif
1095};
1096
1097static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001098 .g_tuner = tvp5150_g_tuner,
1099};
1100
1101static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
1102 .s_routing = tvp5150_s_routing,
Javier Martinec2c4f32012-01-05 10:57:39 -03001103 .enum_mbus_fmt = tvp5150_enum_mbus_fmt,
1104 .s_mbus_fmt = tvp5150_mbus_fmt,
1105 .try_mbus_fmt = tvp5150_mbus_fmt,
Javier Martin963ddc62012-01-31 05:23:46 -03001106 .s_crop = tvp5150_s_crop,
1107 .g_crop = tvp5150_g_crop,
1108 .cropcap = tvp5150_cropcap,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001109};
1110
1111static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001112 .g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
Hans Verkuild37dad42010-03-14 10:59:16 -03001113 .g_sliced_fmt = tvp5150_g_sliced_fmt,
1114 .s_sliced_fmt = tvp5150_s_sliced_fmt,
1115 .s_raw_fmt = tvp5150_s_raw_fmt,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001116};
1117
1118static const struct v4l2_subdev_ops tvp5150_ops = {
1119 .core = &tvp5150_core_ops,
1120 .tuner = &tvp5150_tuner_ops,
1121 .video = &tvp5150_video_ops,
Hans Verkuil32cd5272010-03-14 09:57:30 -03001122 .vbi = &tvp5150_vbi_ops,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001123};
1124
1125
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001126/****************************************************************************
1127 I2C Client & Driver
1128 ****************************************************************************/
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001129
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001130static int tvp5150_probe(struct i2c_client *c,
1131 const struct i2c_device_id *id)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001132{
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001133 struct tvp5150 *core;
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001134 struct v4l2_subdev *sd;
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001135 u8 msb_id, lsb_id, msb_rom, lsb_rom;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001136
1137 /* Check if the adapter supports the needed features */
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001138 if (!i2c_check_functionality(c->adapter,
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001139 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001140 return -EIO;
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001141
Panagiotis Issaris74081872006-01-11 19:40:56 -02001142 core = kzalloc(sizeof(struct tvp5150), GFP_KERNEL);
Al Viro5fa12472008-03-29 03:07:38 +00001143 if (!core) {
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001144 return -ENOMEM;
1145 }
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001146 sd = &core->sd;
1147 v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
1148 v4l_info(c, "chip found @ 0x%02x (%s)\n",
1149 c->addr << 1, c->adapter->name);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001150
Mauro Carvalho Chehab0e09a3c2011-02-22 00:10:22 -03001151 msb_id = tvp5150_read(sd, TVP5150_MSB_DEV_ID);
1152 lsb_id = tvp5150_read(sd, TVP5150_LSB_DEV_ID);
1153 msb_rom = tvp5150_read(sd, TVP5150_ROM_MAJOR_VER);
1154 lsb_rom = tvp5150_read(sd, TVP5150_ROM_MINOR_VER);
1155
1156 if (msb_rom == 4 && lsb_rom == 0) { /* Is TVP5150AM1 */
1157 v4l2_info(sd, "tvp%02x%02xam1 detected.\n", msb_id, lsb_id);
1158
1159 /* ITU-T BT.656.4 timing */
1160 tvp5150_write(sd, TVP5150_REV_SELECT, 0);
1161 } else {
1162 if (msb_rom == 3 || lsb_rom == 0x21) { /* Is TVP5150A */
1163 v4l2_info(sd, "tvp%02x%02xa detected.\n", msb_id, lsb_id);
1164 } else {
1165 v4l2_info(sd, "*** unknown tvp%02x%02x chip detected.\n",
1166 msb_id, lsb_id);
1167 v4l2_info(sd, "*** Rom ver is %d.%d\n", msb_rom, lsb_rom);
1168 }
1169 }
1170
Mauro Carvalho Chehab3ad96832006-01-23 17:11:05 -02001171 core->norm = V4L2_STD_ALL; /* Default is autodetect */
Hans Verkuil5325b422009-04-02 11:26:22 -03001172 core->input = TVP5150_COMPOSITE1;
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001173 core->enable = 1;
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001174
1175 v4l2_ctrl_handler_init(&core->hdl, 4);
1176 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1177 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
1178 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1179 V4L2_CID_CONTRAST, 0, 255, 1, 128);
1180 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1181 V4L2_CID_SATURATION, 0, 255, 1, 128);
1182 v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
1183 V4L2_CID_HUE, -128, 127, 1, 0);
1184 sd->ctrl_handler = &core->hdl;
1185 if (core->hdl.error) {
1186 int err = core->hdl.error;
1187
1188 v4l2_ctrl_handler_free(&core->hdl);
1189 kfree(core);
1190 return err;
1191 }
1192 v4l2_ctrl_handler_setup(&core->hdl);
Mauro Carvalho Chehab4c86f972005-11-08 21:36:43 -08001193
Javier Martin963ddc62012-01-31 05:23:46 -03001194 /* Default is no cropping */
1195 core->rect.top = 0;
1196 if (tvp5150_read_std(sd) & V4L2_STD_525_60)
1197 core->rect.height = TVP5150_V_MAX_525_60;
1198 else
1199 core->rect.height = TVP5150_V_MAX_OTHERS;
1200 core->rect.left = 0;
1201 core->rect.width = TVP5150_H_MAX;
1202
Markus Rechbergerf1e5ee42006-02-07 04:01:19 +01001203 if (debug > 1)
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001204 tvp5150_log_status(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001205 return 0;
1206}
1207
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001208static int tvp5150_remove(struct i2c_client *c)
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001209{
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001210 struct v4l2_subdev *sd = i2c_get_clientdata(c);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001211 struct tvp5150 *decoder = to_tvp5150(sd);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001212
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001213 v4l2_dbg(1, debug, sd,
Mauro Carvalho Chehabe1bc80a2006-01-09 15:25:36 -02001214 "tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
1215 c->addr << 1);
1216
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001217 v4l2_device_unregister_subdev(sd);
Hans Verkuil6c45ec72010-12-12 08:45:43 -03001218 v4l2_ctrl_handler_free(&decoder->hdl);
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001219 kfree(to_tvp5150(sd));
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001220 return 0;
1221}
1222
1223/* ----------------------------------------------------------------------- */
1224
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001225static const struct i2c_device_id tvp5150_id[] = {
1226 { "tvp5150", 0 },
1227 { }
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001228};
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001229MODULE_DEVICE_TABLE(i2c, tvp5150_id);
Mauro Carvalho Chehabcd4665c2005-11-08 21:36:40 -08001230
Hans Verkuilc7711452010-09-15 15:45:20 -03001231static struct i2c_driver tvp5150_driver = {
1232 .driver = {
1233 .owner = THIS_MODULE,
1234 .name = "tvp5150",
1235 },
1236 .probe = tvp5150_probe,
1237 .remove = tvp5150_remove,
1238 .id_table = tvp5150_id,
Hans Verkuil6b8fe022008-12-18 11:17:25 -03001239};
Hans Verkuilc7711452010-09-15 15:45:20 -03001240
Axel Linc6e8d862012-02-12 06:56:32 -03001241module_i2c_driver(tvp5150_driver);