blob: 7913f93979b8ccfe2e5f81f0aedb3704872f1166 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * saa7110 - Philips SAA7110(A) video decoder driver
3 *
4 * Copyright (C) 1998 Pauline Middelink <middelin@polyware.nl>
5 *
6 * Copyright (C) 1999 Wolfgang Scherr <scherr@net4you.net>
7 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
8 * - some corrections for Pinnacle Systems Inc. DC10plus card.
9 *
10 * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
11 * - moved over to linux>=2.4.x i2c protocol (1/1/2003)
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/types.h>
31#include <linux/delay.h>
32#include <linux/slab.h>
33#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
Hans Verkuil85ede692008-09-07 08:00:32 -030035#include <linux/i2c.h>
Hans Verkuile7946842009-02-19 12:24:27 -030036#include <linux/videodev2.h>
37#include <media/v4l2-device.h>
38#include <media/v4l2-chip-ident.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40MODULE_DESCRIPTION("Philips SAA7110 video decoder driver");
41MODULE_AUTHOR("Pauline Middelink");
42MODULE_LICENSE("GPL");
43
Hans Verkuile7946842009-02-19 12:24:27 -030044
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030045static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046module_param(debug, int, 0);
47MODULE_PARM_DESC(debug, "Debug level (0-1)");
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define SAA7110_MAX_INPUT 9 /* 6 CVBS, 3 SVHS */
Jean Delvare8182ff62008-10-24 15:08:28 -030050#define SAA7110_MAX_OUTPUT 1 /* 1 YUV */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define SAA7110_NR_REG 0x35
53
54struct saa7110 {
Hans Verkuile7946842009-02-19 12:24:27 -030055 struct v4l2_subdev sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 u8 reg[SAA7110_NR_REG];
57
Hans Verkuil107063c2009-02-18 17:26:06 -030058 v4l2_std_id norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int input;
60 int enable;
61 int bright;
62 int contrast;
63 int hue;
64 int sat;
65
66 wait_queue_head_t wq;
67};
68
Hans Verkuile7946842009-02-19 12:24:27 -030069static inline struct saa7110 *to_saa7110(struct v4l2_subdev *sd)
70{
71 return container_of(sd, struct saa7110, sd);
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* ----------------------------------------------------------------------- */
75/* I2C support functions */
76/* ----------------------------------------------------------------------- */
77
Hans Verkuile7946842009-02-19 12:24:27 -030078static int saa7110_write(struct v4l2_subdev *sd, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Hans Verkuile7946842009-02-19 12:24:27 -030080 struct i2c_client *client = v4l2_get_subdevdata(sd);
81 struct saa7110 *decoder = to_saa7110(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 decoder->reg[reg] = value;
84 return i2c_smbus_write_byte_data(client, reg, value);
85}
86
Hans Verkuile7946842009-02-19 12:24:27 -030087static int saa7110_write_block(struct v4l2_subdev *sd, const u8 *data, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Hans Verkuile7946842009-02-19 12:24:27 -030089 struct i2c_client *client = v4l2_get_subdevdata(sd);
90 struct saa7110 *decoder = to_saa7110(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int ret = -1;
92 u8 reg = *data; /* first register to write to */
93
94 /* Sanity check */
95 if (reg + (len - 1) > SAA7110_NR_REG)
96 return ret;
97
98 /* the saa7110 has an autoincrement function, use it if
99 * the adapter understands raw I2C */
100 if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
Jean Delvare9aa45e32006-03-22 03:48:35 -0300101 ret = i2c_master_send(client, data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 /* Cache the written data */
104 memcpy(decoder->reg + reg, data + 1, len - 1);
105 } else {
106 for (++data, --len; len; len--) {
Hans Verkuile7946842009-02-19 12:24:27 -0300107 ret = saa7110_write(sd, reg++, *data++);
Hans Verkuil85ede692008-09-07 08:00:32 -0300108 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 break;
110 }
111 }
112
113 return ret;
114}
115
Hans Verkuile7946842009-02-19 12:24:27 -0300116static inline int saa7110_read(struct v4l2_subdev *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Hans Verkuile7946842009-02-19 12:24:27 -0300118 struct i2c_client *client = v4l2_get_subdevdata(sd);
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return i2c_smbus_read_byte(client);
121}
122
123/* ----------------------------------------------------------------------- */
124/* SAA7110 functions */
125/* ----------------------------------------------------------------------- */
126
Hans Verkuile7946842009-02-19 12:24:27 -0300127#define FRESP_06H_COMPST 0x03 /*0x13*/
128#define FRESP_06H_SVIDEO 0x83 /*0xC0*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130
Hans Verkuile7946842009-02-19 12:24:27 -0300131static int saa7110_selmux(struct v4l2_subdev *sd, int chan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 static const unsigned char modes[9][8] = {
134 /* mode 0 */
135 {FRESP_06H_COMPST, 0xD9, 0x17, 0x40, 0x03,
136 0x44, 0x75, 0x16},
137 /* mode 1 */
138 {FRESP_06H_COMPST, 0xD8, 0x17, 0x40, 0x03,
139 0x44, 0x75, 0x16},
140 /* mode 2 */
141 {FRESP_06H_COMPST, 0xBA, 0x07, 0x91, 0x03,
142 0x60, 0xB5, 0x05},
143 /* mode 3 */
144 {FRESP_06H_COMPST, 0xB8, 0x07, 0x91, 0x03,
145 0x60, 0xB5, 0x05},
146 /* mode 4 */
147 {FRESP_06H_COMPST, 0x7C, 0x07, 0xD2, 0x83,
148 0x60, 0xB5, 0x03},
149 /* mode 5 */
150 {FRESP_06H_COMPST, 0x78, 0x07, 0xD2, 0x83,
151 0x60, 0xB5, 0x03},
152 /* mode 6 */
153 {FRESP_06H_SVIDEO, 0x59, 0x17, 0x42, 0xA3,
154 0x44, 0x75, 0x12},
155 /* mode 7 */
156 {FRESP_06H_SVIDEO, 0x9A, 0x17, 0xB1, 0x13,
157 0x60, 0xB5, 0x14},
158 /* mode 8 */
159 {FRESP_06H_SVIDEO, 0x3C, 0x27, 0xC1, 0x23,
160 0x44, 0x75, 0x21}
161 };
Hans Verkuile7946842009-02-19 12:24:27 -0300162 struct saa7110 *decoder = to_saa7110(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 const unsigned char *ptr = modes[chan];
164
Hans Verkuile7946842009-02-19 12:24:27 -0300165 saa7110_write(sd, 0x06, ptr[0]); /* Luminance control */
166 saa7110_write(sd, 0x20, ptr[1]); /* Analog Control #1 */
167 saa7110_write(sd, 0x21, ptr[2]); /* Analog Control #2 */
168 saa7110_write(sd, 0x22, ptr[3]); /* Mixer Control #1 */
169 saa7110_write(sd, 0x2C, ptr[4]); /* Mixer Control #2 */
170 saa7110_write(sd, 0x30, ptr[5]); /* ADCs gain control */
171 saa7110_write(sd, 0x31, ptr[6]); /* Mixer Control #3 */
172 saa7110_write(sd, 0x21, ptr[7]); /* Analog Control #2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 decoder->input = chan;
174
175 return 0;
176}
177
178static const unsigned char initseq[1 + SAA7110_NR_REG] = {
179 0, 0x4C, 0x3C, 0x0D, 0xEF, 0xBD, 0xF2, 0x03, 0x00,
180 /* 0x08 */ 0xF8, 0xF8, 0x60, 0x60, 0x00, 0x86, 0x18, 0x90,
181 /* 0x10 */ 0x00, 0x59, 0x40, 0x46, 0x42, 0x1A, 0xFF, 0xDA,
182 /* 0x18 */ 0xF2, 0x8B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
183 /* 0x20 */ 0xD9, 0x16, 0x40, 0x41, 0x80, 0x41, 0x80, 0x4F,
184 /* 0x28 */ 0xFE, 0x01, 0xCF, 0x0F, 0x03, 0x01, 0x03, 0x0C,
185 /* 0x30 */ 0x44, 0x71, 0x02, 0x8C, 0x02
186};
187
Hans Verkuile7946842009-02-19 12:24:27 -0300188static v4l2_std_id determine_norm(struct v4l2_subdev *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 DEFINE_WAIT(wait);
Hans Verkuile7946842009-02-19 12:24:27 -0300191 struct saa7110 *decoder = to_saa7110(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 int status;
193
194 /* mode changed, start automatic detection */
Hans Verkuile7946842009-02-19 12:24:27 -0300195 saa7110_write_block(sd, initseq, sizeof(initseq));
196 saa7110_selmux(sd, decoder->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 prepare_to_wait(&decoder->wq, &wait, TASK_UNINTERRUPTIBLE);
Mauro Carvalho Chehab09df5cbe2007-07-17 16:25:38 -0300198 schedule_timeout(msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 finish_wait(&decoder->wq, &wait);
Hans Verkuile7946842009-02-19 12:24:27 -0300200 status = saa7110_read(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (status & 0x40) {
Hans Verkuile7946842009-02-19 12:24:27 -0300202 v4l2_dbg(1, debug, sd, "status=0x%02x (no signal)\n", status);
203 return decoder->norm; /* no change*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205 if ((status & 3) == 0) {
Hans Verkuile7946842009-02-19 12:24:27 -0300206 saa7110_write(sd, 0x06, 0x83);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (status & 0x20) {
Hans Verkuile7946842009-02-19 12:24:27 -0300208 v4l2_dbg(1, debug, sd, "status=0x%02x (NTSC/no color)\n", status);
209 /*saa7110_write(sd,0x2E,0x81);*/
Hans Verkuil107063c2009-02-18 17:26:06 -0300210 return V4L2_STD_NTSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
Hans Verkuile7946842009-02-19 12:24:27 -0300212 v4l2_dbg(1, debug, sd, "status=0x%02x (PAL/no color)\n", status);
213 /*saa7110_write(sd,0x2E,0x9A);*/
Hans Verkuil107063c2009-02-18 17:26:06 -0300214 return V4L2_STD_PAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Hans Verkuile7946842009-02-19 12:24:27 -0300216 /*saa7110_write(sd,0x06,0x03);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (status & 0x20) { /* 60Hz */
Hans Verkuile7946842009-02-19 12:24:27 -0300218 v4l2_dbg(1, debug, sd, "status=0x%02x (NTSC)\n", status);
219 saa7110_write(sd, 0x0D, 0x86);
220 saa7110_write(sd, 0x0F, 0x50);
221 saa7110_write(sd, 0x11, 0x2C);
222 /*saa7110_write(sd,0x2E,0x81);*/
Hans Verkuil107063c2009-02-18 17:26:06 -0300223 return V4L2_STD_NTSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225
226 /* 50Hz -> PAL/SECAM */
Hans Verkuile7946842009-02-19 12:24:27 -0300227 saa7110_write(sd, 0x0D, 0x86);
228 saa7110_write(sd, 0x0F, 0x10);
229 saa7110_write(sd, 0x11, 0x59);
230 /*saa7110_write(sd,0x2E,0x9A);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 prepare_to_wait(&decoder->wq, &wait, TASK_UNINTERRUPTIBLE);
Mauro Carvalho Chehab09df5cbe2007-07-17 16:25:38 -0300233 schedule_timeout(msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 finish_wait(&decoder->wq, &wait);
235
Hans Verkuile7946842009-02-19 12:24:27 -0300236 status = saa7110_read(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if ((status & 0x03) == 0x01) {
Hans Verkuile7946842009-02-19 12:24:27 -0300238 v4l2_dbg(1, debug, sd, "status=0x%02x (SECAM)\n", status);
239 saa7110_write(sd, 0x0D, 0x87);
Hans Verkuil107063c2009-02-18 17:26:06 -0300240 return V4L2_STD_SECAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
Hans Verkuile7946842009-02-19 12:24:27 -0300242 v4l2_dbg(1, debug, sd, "status=0x%02x (PAL)\n", status);
Hans Verkuil107063c2009-02-18 17:26:06 -0300243 return V4L2_STD_PAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Hans Verkuile7946842009-02-19 12:24:27 -0300246static int saa7110_g_input_status(struct v4l2_subdev *sd, u32 *pstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Hans Verkuile7946842009-02-19 12:24:27 -0300248 struct saa7110 *decoder = to_saa7110(sd);
249 int res = V4L2_IN_ST_NO_SIGNAL;
250 int status = saa7110_read(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Hans Verkuile7946842009-02-19 12:24:27 -0300252 v4l2_dbg(1, debug, sd, "status=0x%02x norm=%llx\n",
Hans Verkuilcc5cef82009-03-06 10:15:01 -0300253 status, (unsigned long long)decoder->norm);
Hans Verkuile7946842009-02-19 12:24:27 -0300254 if (!(status & 0x40))
255 res = 0;
256 if (!(status & 0x03))
257 res |= V4L2_IN_ST_NO_COLOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Hans Verkuile7946842009-02-19 12:24:27 -0300259 *pstatus = res;
260 return 0;
261}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Hans Verkuile7946842009-02-19 12:24:27 -0300263static int saa7110_querystd(struct v4l2_subdev *sd, v4l2_std_id *std)
264{
265 *(v4l2_std_id *)std = determine_norm(sd);
266 return 0;
267}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Hans Verkuile7946842009-02-19 12:24:27 -0300269static int saa7110_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
270{
271 struct saa7110 *decoder = to_saa7110(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Hans Verkuile7946842009-02-19 12:24:27 -0300273 if (decoder->norm != std) {
274 decoder->norm = std;
275 /*saa7110_write(sd, 0x06, 0x03);*/
276 if (std & V4L2_STD_NTSC) {
277 saa7110_write(sd, 0x0D, 0x86);
278 saa7110_write(sd, 0x0F, 0x50);
279 saa7110_write(sd, 0x11, 0x2C);
280 /*saa7110_write(sd, 0x2E, 0x81);*/
281 v4l2_dbg(1, debug, sd, "switched to NTSC\n");
282 } else if (std & V4L2_STD_PAL) {
283 saa7110_write(sd, 0x0D, 0x86);
284 saa7110_write(sd, 0x0F, 0x10);
285 saa7110_write(sd, 0x11, 0x59);
286 /*saa7110_write(sd, 0x2E, 0x9A);*/
287 v4l2_dbg(1, debug, sd, "switched to PAL\n");
288 } else if (std & V4L2_STD_SECAM) {
289 saa7110_write(sd, 0x0D, 0x87);
290 saa7110_write(sd, 0x0F, 0x10);
291 saa7110_write(sd, 0x11, 0x59);
292 /*saa7110_write(sd, 0x2E, 0x9A);*/
293 v4l2_dbg(1, debug, sd, "switched to SECAM\n");
294 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return -EINVAL;
296 }
Hans Verkuil85ede692008-09-07 08:00:32 -0300297 }
Hans Verkuile7946842009-02-19 12:24:27 -0300298 return 0;
299}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Hans Verkuil5325b422009-04-02 11:26:22 -0300301static int saa7110_s_routing(struct v4l2_subdev *sd,
302 u32 input, u32 output, u32 config)
Hans Verkuile7946842009-02-19 12:24:27 -0300303{
304 struct saa7110 *decoder = to_saa7110(sd);
Hans Verkuil107063c2009-02-18 17:26:06 -0300305
Roel Kluinf14a2972009-10-23 07:59:42 -0300306 if (input >= SAA7110_MAX_INPUT) {
Hans Verkuil5325b422009-04-02 11:26:22 -0300307 v4l2_dbg(1, debug, sd, "input=%d not available\n", input);
Hans Verkuile7946842009-02-19 12:24:27 -0300308 return -EINVAL;
Hans Verkuil107063c2009-02-18 17:26:06 -0300309 }
Hans Verkuil5325b422009-04-02 11:26:22 -0300310 if (decoder->input != input) {
311 saa7110_selmux(sd, input);
312 v4l2_dbg(1, debug, sd, "switched to input=%d\n", input);
Hans Verkuil107063c2009-02-18 17:26:06 -0300313 }
Hans Verkuile7946842009-02-19 12:24:27 -0300314 return 0;
315}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Hans Verkuile7946842009-02-19 12:24:27 -0300317static int saa7110_s_stream(struct v4l2_subdev *sd, int enable)
318{
319 struct saa7110 *decoder = to_saa7110(sd);
320
321 if (decoder->enable != enable) {
322 decoder->enable = enable;
323 saa7110_write(sd, 0x0E, enable ? 0x18 : 0x80);
324 v4l2_dbg(1, debug, sd, "YUV %s\n", enable ? "on" : "off");
325 }
326 return 0;
327}
328
329static int saa7110_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc)
330{
331 switch (qc->id) {
332 case V4L2_CID_BRIGHTNESS:
333 return v4l2_ctrl_query_fill(qc, 0, 255, 1, 128);
334 case V4L2_CID_CONTRAST:
335 case V4L2_CID_SATURATION:
336 return v4l2_ctrl_query_fill(qc, 0, 127, 1, 64);
337 case V4L2_CID_HUE:
338 return v4l2_ctrl_query_fill(qc, -128, 127, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return -EINVAL;
341 }
342 return 0;
343}
344
Hans Verkuile7946842009-02-19 12:24:27 -0300345static int saa7110_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
346{
347 struct saa7110 *decoder = to_saa7110(sd);
348
349 switch (ctrl->id) {
350 case V4L2_CID_BRIGHTNESS:
351 ctrl->value = decoder->bright;
352 break;
353 case V4L2_CID_CONTRAST:
354 ctrl->value = decoder->contrast;
355 break;
356 case V4L2_CID_SATURATION:
357 ctrl->value = decoder->sat;
358 break;
359 case V4L2_CID_HUE:
360 ctrl->value = decoder->hue;
361 break;
362 default:
363 return -EINVAL;
364 }
365 return 0;
366}
367
368static int saa7110_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
369{
370 struct saa7110 *decoder = to_saa7110(sd);
371
372 switch (ctrl->id) {
373 case V4L2_CID_BRIGHTNESS:
374 if (decoder->bright != ctrl->value) {
375 decoder->bright = ctrl->value;
376 saa7110_write(sd, 0x19, decoder->bright);
377 }
378 break;
379 case V4L2_CID_CONTRAST:
380 if (decoder->contrast != ctrl->value) {
381 decoder->contrast = ctrl->value;
382 saa7110_write(sd, 0x13, decoder->contrast);
383 }
384 break;
385 case V4L2_CID_SATURATION:
386 if (decoder->sat != ctrl->value) {
387 decoder->sat = ctrl->value;
388 saa7110_write(sd, 0x12, decoder->sat);
389 }
390 break;
391 case V4L2_CID_HUE:
392 if (decoder->hue != ctrl->value) {
393 decoder->hue = ctrl->value;
394 saa7110_write(sd, 0x07, decoder->hue);
395 }
396 break;
397 default:
398 return -EINVAL;
399 }
400 return 0;
401}
402
403static int saa7110_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
404{
405 struct i2c_client *client = v4l2_get_subdevdata(sd);
406
407 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_SAA7110, 0);
408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/* ----------------------------------------------------------------------- */
411
Hans Verkuile7946842009-02-19 12:24:27 -0300412static const struct v4l2_subdev_core_ops saa7110_core_ops = {
413 .g_chip_ident = saa7110_g_chip_ident,
414 .g_ctrl = saa7110_g_ctrl,
415 .s_ctrl = saa7110_s_ctrl,
416 .queryctrl = saa7110_queryctrl,
Hans Verkuile7946842009-02-19 12:24:27 -0300417 .s_std = saa7110_s_std,
418};
Mauro Carvalho Chehabd56410e2006-03-25 09:19:53 -0300419
Hans Verkuile7946842009-02-19 12:24:27 -0300420static const struct v4l2_subdev_video_ops saa7110_video_ops = {
421 .s_routing = saa7110_s_routing,
422 .s_stream = saa7110_s_stream,
423 .querystd = saa7110_querystd,
424 .g_input_status = saa7110_g_input_status,
425};
426
427static const struct v4l2_subdev_ops saa7110_ops = {
428 .core = &saa7110_core_ops,
Hans Verkuile7946842009-02-19 12:24:27 -0300429 .video = &saa7110_video_ops,
430};
431
432/* ----------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Hans Verkuil85ede692008-09-07 08:00:32 -0300434static int saa7110_probe(struct i2c_client *client,
435 const struct i2c_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 struct saa7110 *decoder;
Hans Verkuile7946842009-02-19 12:24:27 -0300438 struct v4l2_subdev *sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int rv;
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /* Check if the adapter supports the needed features */
Hans Verkuil85ede692008-09-07 08:00:32 -0300442 if (!i2c_check_functionality(client->adapter,
443 I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
444 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Hans Verkuil85ede692008-09-07 08:00:32 -0300446 v4l_info(client, "chip found @ 0x%x (%s)\n",
447 client->addr << 1, client->adapter->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Panagiotis Issaris74081872006-01-11 19:40:56 -0200449 decoder = kzalloc(sizeof(struct saa7110), GFP_KERNEL);
Hans Verkuil85ede692008-09-07 08:00:32 -0300450 if (!decoder)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return -ENOMEM;
Hans Verkuile7946842009-02-19 12:24:27 -0300452 sd = &decoder->sd;
453 v4l2_i2c_subdev_init(sd, client, &saa7110_ops);
Hans Verkuil107063c2009-02-18 17:26:06 -0300454 decoder->norm = V4L2_STD_PAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 decoder->input = 0;
456 decoder->enable = 1;
457 decoder->bright = 32768;
458 decoder->contrast = 32768;
459 decoder->hue = 32768;
460 decoder->sat = 32768;
461 init_waitqueue_head(&decoder->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Hans Verkuile7946842009-02-19 12:24:27 -0300463 rv = saa7110_write_block(sd, initseq, sizeof(initseq));
Hans Verkuil85ede692008-09-07 08:00:32 -0300464 if (rv < 0) {
Hans Verkuile7946842009-02-19 12:24:27 -0300465 v4l2_dbg(1, debug, sd, "init status %d\n", rv);
Hans Verkuil85ede692008-09-07 08:00:32 -0300466 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 int ver, status;
Hans Verkuile7946842009-02-19 12:24:27 -0300468 saa7110_write(sd, 0x21, 0x10);
469 saa7110_write(sd, 0x0e, 0x18);
470 saa7110_write(sd, 0x0D, 0x04);
471 ver = saa7110_read(sd);
472 saa7110_write(sd, 0x0D, 0x06);
473 /*mdelay(150);*/
474 status = saa7110_read(sd);
475 v4l2_dbg(1, debug, sd, "version %x, status=0x%02x\n",
Hans Verkuil85ede692008-09-07 08:00:32 -0300476 ver, status);
Hans Verkuile7946842009-02-19 12:24:27 -0300477 saa7110_write(sd, 0x0D, 0x86);
478 saa7110_write(sd, 0x0F, 0x10);
479 saa7110_write(sd, 0x11, 0x59);
480 /*saa7110_write(sd, 0x2E, 0x9A);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
Hans Verkuile7946842009-02-19 12:24:27 -0300483 /*saa7110_selmux(sd,0);*/
484 /*determine_norm(sd);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /* setup and implicit mode 0 select has been performed */
486
487 return 0;
488}
489
Hans Verkuil85ede692008-09-07 08:00:32 -0300490static int saa7110_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Hans Verkuile7946842009-02-19 12:24:27 -0300492 struct v4l2_subdev *sd = i2c_get_clientdata(client);
493
494 v4l2_device_unregister_subdev(sd);
495 kfree(to_saa7110(sd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return 0;
497}
498
499/* ----------------------------------------------------------------------- */
500
Hans Verkuil85ede692008-09-07 08:00:32 -0300501static const struct i2c_device_id saa7110_id[] = {
502 { "saa7110", 0 },
503 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504};
Hans Verkuil85ede692008-09-07 08:00:32 -0300505MODULE_DEVICE_TABLE(i2c, saa7110_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Hans Verkuilff6e5422010-09-15 15:38:54 -0300507static struct i2c_driver saa7110_driver = {
508 .driver = {
509 .owner = THIS_MODULE,
510 .name = "saa7110",
511 },
512 .probe = saa7110_probe,
513 .remove = saa7110_remove,
514 .id_table = saa7110_id,
Hans Verkuil85ede692008-09-07 08:00:32 -0300515};
Hans Verkuilff6e5422010-09-15 15:38:54 -0300516
517static __init int init_saa7110(void)
518{
519 return i2c_add_driver(&saa7110_driver);
520}
521
522static __exit void exit_saa7110(void)
523{
524 i2c_del_driver(&saa7110_driver);
525}
526
527module_init(init_saa7110);
528module_exit(exit_saa7110);