blob: 318c3053633a03d58d5de21ab32141a2c5272502 [file] [log] [blame]
Mauro Carvalho Chehabd56410e2006-03-25 09:19:53 -03001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * adv7175 - adv7175a video encoder driver version 0.0.3
3 *
4 * Copyright (C) 1998 Dave Perks <dperks@ibm.net>
5 * Copyright (C) 1999 Wolfgang Scherr <scherr@net4you.net>
6 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
7 * - some corrections for Pinnacle Systems Inc. DC10plus card.
8 *
9 * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
10 * - moved over to linux>=2.4.x i2c protocol (9/9/2002)
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 */
26
27#include <linux/module.h>
Mauro Carvalho Chehab18f3fa12007-07-02 15:39:57 -030028#include <linux/types.h>
Hans Verkuilbba0d982008-09-07 07:58:46 -030029#include <linux/ioctl.h>
Mauro Carvalho Chehab18f3fa12007-07-02 15:39:57 -030030#include <asm/uaccess.h>
Hans Verkuilbba0d982008-09-07 07:58:46 -030031#include <linux/i2c.h>
32#include <linux/i2c-id.h>
Hans Verkuil35631dc2009-02-19 14:56:37 -030033#include <linux/videodev2.h>
34#include <media/v4l2-device.h>
35#include <media/v4l2-chip-ident.h>
Hans Verkuilbba0d982008-09-07 07:58:46 -030036#include <media/v4l2-i2c-drv-legacy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38MODULE_DESCRIPTION("Analog Devices ADV7175 video encoder driver");
39MODULE_AUTHOR("Dave Perks");
40MODULE_LICENSE("GPL");
41
Hans Verkuil35631dc2009-02-19 14:56:37 -030042#define I2C_ADV7175 0xd4
43#define I2C_ADV7176 0x54
44
45static unsigned short normal_i2c[] = {
46 I2C_ADV7175 >> 1, (I2C_ADV7175 >> 1) + 1,
47 I2C_ADV7176 >> 1, (I2C_ADV7176 >> 1) + 1,
48 I2C_CLIENT_END
49};
50
51I2C_CLIENT_INSMOD;
52
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030053static int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054module_param(debug, int, 0);
55MODULE_PARM_DESC(debug, "Debug level (0-1)");
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* ----------------------------------------------------------------------- */
58
59struct adv7175 {
Hans Verkuil35631dc2009-02-19 14:56:37 -030060 struct v4l2_subdev sd;
Hans Verkuil107063c2009-02-18 17:26:06 -030061 v4l2_std_id norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 int input;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Hans Verkuil35631dc2009-02-19 14:56:37 -030065static inline struct adv7175 *to_adv7175(struct v4l2_subdev *sd)
66{
67 return container_of(sd, struct adv7175, sd);
68}
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static char *inputs[] = { "pass_through", "play_back", "color_bar" };
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/* ----------------------------------------------------------------------- */
73
Hans Verkuil35631dc2009-02-19 14:56:37 -030074static inline int adv7175_write(struct v4l2_subdev *sd, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Hans Verkuil35631dc2009-02-19 14:56:37 -030076 struct i2c_client *client = v4l2_get_subdevdata(sd);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return i2c_smbus_write_byte_data(client, reg, value);
79}
80
Hans Verkuil35631dc2009-02-19 14:56:37 -030081static inline int adv7175_read(struct v4l2_subdev *sd, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Hans Verkuil35631dc2009-02-19 14:56:37 -030083 struct i2c_client *client = v4l2_get_subdevdata(sd);
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return i2c_smbus_read_byte_data(client, reg);
86}
87
Hans Verkuil35631dc2009-02-19 14:56:37 -030088static int adv7175_write_block(struct v4l2_subdev *sd,
Hans Verkuilbba0d982008-09-07 07:58:46 -030089 const u8 *data, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Hans Verkuil35631dc2009-02-19 14:56:37 -030091 struct i2c_client *client = v4l2_get_subdevdata(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int ret = -1;
93 u8 reg;
94
95 /* the adv7175 has an autoincrement function, use it if
96 * the adapter understands raw I2C */
97 if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
98 /* do raw I2C, not smbus compatible */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 u8 block_data[32];
Jean Delvare9aa45e32006-03-22 03:48:35 -0300100 int block_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 while (len >= 2) {
Jean Delvare9aa45e32006-03-22 03:48:35 -0300103 block_len = 0;
104 block_data[block_len++] = reg = data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 do {
Jean Delvare9aa45e32006-03-22 03:48:35 -0300106 block_data[block_len++] = data[1];
Jean Delvare2467a672006-03-22 03:48:34 -0300107 reg++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 len -= 2;
109 data += 2;
Hans Verkuilbba0d982008-09-07 07:58:46 -0300110 } while (len >= 2 && data[0] == reg && block_len < 32);
111 ret = i2c_master_send(client, block_data, block_len);
112 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 break;
114 }
115 } else {
116 /* do some slow I2C emulation kind of thing */
117 while (len >= 2) {
118 reg = *data++;
Hans Verkuil35631dc2009-02-19 14:56:37 -0300119 ret = adv7175_write(sd, reg, *data++);
Hans Verkuilbba0d982008-09-07 07:58:46 -0300120 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 break;
122 len -= 2;
123 }
124 }
125
126 return ret;
127}
128
Hans Verkuil35631dc2009-02-19 14:56:37 -0300129static void set_subcarrier_freq(struct v4l2_subdev *sd, int pass_through)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 /* for some reason pass_through NTSC needs
132 * a different sub-carrier freq to remain stable. */
Hans Verkuilbba0d982008-09-07 07:58:46 -0300133 if (pass_through)
Hans Verkuil35631dc2009-02-19 14:56:37 -0300134 adv7175_write(sd, 0x02, 0x00);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 else
Hans Verkuil35631dc2009-02-19 14:56:37 -0300136 adv7175_write(sd, 0x02, 0x55);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Hans Verkuil35631dc2009-02-19 14:56:37 -0300138 adv7175_write(sd, 0x03, 0x55);
139 adv7175_write(sd, 0x04, 0x55);
140 adv7175_write(sd, 0x05, 0x25);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* ----------------------------------------------------------------------- */
Hans Verkuilbba0d982008-09-07 07:58:46 -0300144/* Output filter: S-Video Composite */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Hans Verkuilbba0d982008-09-07 07:58:46 -0300146#define MR050 0x11 /* 0x09 */
147#define MR060 0x14 /* 0x0c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Hans Verkuilbba0d982008-09-07 07:58:46 -0300149/* ----------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151#define TR0MODE 0x46
152#define TR0RST 0x80
153
154#define TR1CAPT 0x80
155#define TR1PLAY 0x00
156
157static const unsigned char init_common[] = {
158
159 0x00, MR050, /* MR0, PAL enabled */
160 0x01, 0x00, /* MR1 */
161 0x02, 0x0c, /* subc. freq. */
162 0x03, 0x8c, /* subc. freq. */
163 0x04, 0x79, /* subc. freq. */
164 0x05, 0x26, /* subc. freq. */
165 0x06, 0x40, /* subc. phase */
166
167 0x07, TR0MODE, /* TR0, 16bit */
168 0x08, 0x21, /* */
169 0x09, 0x00, /* */
170 0x0a, 0x00, /* */
171 0x0b, 0x00, /* */
172 0x0c, TR1CAPT, /* TR1 */
173 0x0d, 0x4f, /* MR2 */
174 0x0e, 0x00, /* */
175 0x0f, 0x00, /* */
176 0x10, 0x00, /* */
177 0x11, 0x00, /* */
178};
179
180static const unsigned char init_pal[] = {
181 0x00, MR050, /* MR0, PAL enabled */
182 0x01, 0x00, /* MR1 */
183 0x02, 0x0c, /* subc. freq. */
184 0x03, 0x8c, /* subc. freq. */
185 0x04, 0x79, /* subc. freq. */
186 0x05, 0x26, /* subc. freq. */
187 0x06, 0x40, /* subc. phase */
188};
189
190static const unsigned char init_ntsc[] = {
191 0x00, MR060, /* MR0, NTSC enabled */
192 0x01, 0x00, /* MR1 */
193 0x02, 0x55, /* subc. freq. */
194 0x03, 0x55, /* subc. freq. */
195 0x04, 0x55, /* subc. freq. */
196 0x05, 0x25, /* subc. freq. */
197 0x06, 0x1a, /* subc. phase */
198};
199
Hans Verkuil35631dc2009-02-19 14:56:37 -0300200static int adv7175_init(struct v4l2_subdev *sd, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Hans Verkuil35631dc2009-02-19 14:56:37 -0300202 /* This is just for testing!!! */
203 adv7175_write_block(sd, init_common, sizeof(init_common));
204 adv7175_write(sd, 0x07, TR0MODE | TR0RST);
205 adv7175_write(sd, 0x07, TR0MODE);
206 return 0;
207}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Hans Verkuil35631dc2009-02-19 14:56:37 -0300209static int adv7175_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std)
210{
211 struct adv7175 *encoder = to_adv7175(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Hans Verkuil35631dc2009-02-19 14:56:37 -0300213 if (std & V4L2_STD_NTSC) {
214 adv7175_write_block(sd, init_ntsc, sizeof(init_ntsc));
215 if (encoder->input == 0)
216 adv7175_write(sd, 0x0d, 0x4f); /* Enable genlock */
217 adv7175_write(sd, 0x07, TR0MODE | TR0RST);
218 adv7175_write(sd, 0x07, TR0MODE);
219 } else if (std & V4L2_STD_PAL) {
220 adv7175_write_block(sd, init_pal, sizeof(init_pal));
221 if (encoder->input == 0)
222 adv7175_write(sd, 0x0d, 0x4f); /* Enable genlock */
223 adv7175_write(sd, 0x07, TR0MODE | TR0RST);
224 adv7175_write(sd, 0x07, TR0MODE);
225 } else if (std & V4L2_STD_SECAM) {
226 /* This is an attempt to convert
227 * SECAM->PAL (typically it does not work
228 * due to genlock: when decoder is in SECAM
229 * and encoder in in PAL the subcarrier can
230 * not be syncronized with horizontal
231 * quency) */
232 adv7175_write_block(sd, init_pal, sizeof(init_pal));
233 if (encoder->input == 0)
234 adv7175_write(sd, 0x0d, 0x49); /* Disable genlock */
235 adv7175_write(sd, 0x07, TR0MODE | TR0RST);
236 adv7175_write(sd, 0x07, TR0MODE);
237 } else {
238 v4l2_dbg(1, debug, sd, "illegal norm: %llx\n", std);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return -EINVAL;
240 }
Hans Verkuil35631dc2009-02-19 14:56:37 -0300241 v4l2_dbg(1, debug, sd, "switched to %llx\n", std);
242 encoder->norm = std;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
244}
245
Hans Verkuil35631dc2009-02-19 14:56:37 -0300246static int adv7175_s_routing(struct v4l2_subdev *sd, const struct v4l2_routing *route)
247{
248 struct adv7175 *encoder = to_adv7175(sd);
249
250 /* RJ: route->input = 0: input is from decoder
251 route->input = 1: input is from ZR36060
252 route->input = 2: color bar */
253
254 switch (route->input) {
255 case 0:
256 adv7175_write(sd, 0x01, 0x00);
257
258 if (encoder->norm & V4L2_STD_NTSC)
259 set_subcarrier_freq(sd, 1);
260
261 adv7175_write(sd, 0x0c, TR1CAPT); /* TR1 */
262 if (encoder->norm & V4L2_STD_SECAM)
263 adv7175_write(sd, 0x0d, 0x49); /* Disable genlock */
264 else
265 adv7175_write(sd, 0x0d, 0x4f); /* Enable genlock */
266 adv7175_write(sd, 0x07, TR0MODE | TR0RST);
267 adv7175_write(sd, 0x07, TR0MODE);
268 /*udelay(10);*/
269 break;
270
271 case 1:
272 adv7175_write(sd, 0x01, 0x00);
273
274 if (encoder->norm & V4L2_STD_NTSC)
275 set_subcarrier_freq(sd, 0);
276
277 adv7175_write(sd, 0x0c, TR1PLAY); /* TR1 */
278 adv7175_write(sd, 0x0d, 0x49);
279 adv7175_write(sd, 0x07, TR0MODE | TR0RST);
280 adv7175_write(sd, 0x07, TR0MODE);
281 /* udelay(10); */
282 break;
283
284 case 2:
285 adv7175_write(sd, 0x01, 0x80);
286
287 if (encoder->norm & V4L2_STD_NTSC)
288 set_subcarrier_freq(sd, 0);
289
290 adv7175_write(sd, 0x0d, 0x49);
291 adv7175_write(sd, 0x07, TR0MODE | TR0RST);
292 adv7175_write(sd, 0x07, TR0MODE);
293 /* udelay(10); */
294 break;
295
296 default:
297 v4l2_dbg(1, debug, sd, "illegal input: %d\n", route->input);
298 return -EINVAL;
299 }
300 v4l2_dbg(1, debug, sd, "switched to %s\n", inputs[route->input]);
301 encoder->input = route->input;
302 return 0;
303}
304
305static int adv7175_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
306{
307 struct i2c_client *client = v4l2_get_subdevdata(sd);
308
309 return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_ADV7175, 0);
310}
311
312static int adv7175_command(struct i2c_client *client, unsigned cmd, void *arg)
313{
314 return v4l2_subdev_command(i2c_get_clientdata(client), cmd, arg);
315}
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/* ----------------------------------------------------------------------- */
318
Hans Verkuil35631dc2009-02-19 14:56:37 -0300319static const struct v4l2_subdev_core_ops adv7175_core_ops = {
320 .g_chip_ident = adv7175_g_chip_ident,
321 .init = adv7175_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Hans Verkuil35631dc2009-02-19 14:56:37 -0300324static const struct v4l2_subdev_video_ops adv7175_video_ops = {
325 .s_std_output = adv7175_s_std_output,
326 .s_routing = adv7175_s_routing,
327};
328
329static const struct v4l2_subdev_ops adv7175_ops = {
330 .core = &adv7175_core_ops,
331 .video = &adv7175_video_ops,
332};
333
334/* ----------------------------------------------------------------------- */
Mauro Carvalho Chehabd56410e2006-03-25 09:19:53 -0300335
Hans Verkuilbba0d982008-09-07 07:58:46 -0300336static int adv7175_probe(struct i2c_client *client,
337 const struct i2c_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 struct adv7175 *encoder;
Hans Verkuil35631dc2009-02-19 14:56:37 -0300341 struct v4l2_subdev *sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 /* Check if the adapter supports the needed features */
Hans Verkuilbba0d982008-09-07 07:58:46 -0300344 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
345 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Hans Verkuilbba0d982008-09-07 07:58:46 -0300347 v4l_info(client, "chip found @ 0x%x (%s)\n",
348 client->addr << 1, client->adapter->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Panagiotis Issaris74081872006-01-11 19:40:56 -0200350 encoder = kzalloc(sizeof(struct adv7175), GFP_KERNEL);
Hans Verkuilbba0d982008-09-07 07:58:46 -0300351 if (encoder == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return -ENOMEM;
Hans Verkuil35631dc2009-02-19 14:56:37 -0300353 sd = &encoder->sd;
354 v4l2_i2c_subdev_init(sd, client, &adv7175_ops);
Hans Verkuil107063c2009-02-18 17:26:06 -0300355 encoder->norm = V4L2_STD_NTSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 encoder->input = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Hans Verkuil35631dc2009-02-19 14:56:37 -0300358 i = adv7175_write_block(sd, init_common, sizeof(init_common));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (i >= 0) {
Hans Verkuil35631dc2009-02-19 14:56:37 -0300360 i = adv7175_write(sd, 0x07, TR0MODE | TR0RST);
361 i = adv7175_write(sd, 0x07, TR0MODE);
362 i = adv7175_read(sd, 0x12);
363 v4l2_dbg(1, debug, sd, "revision %d\n", i & 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
Hans Verkuilbba0d982008-09-07 07:58:46 -0300365 if (i < 0)
Hans Verkuil35631dc2009-02-19 14:56:37 -0300366 v4l2_dbg(1, debug, sd, "init error 0x%x\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return 0;
368}
369
Hans Verkuilbba0d982008-09-07 07:58:46 -0300370static int adv7175_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Hans Verkuil35631dc2009-02-19 14:56:37 -0300372 struct v4l2_subdev *sd = i2c_get_clientdata(client);
373
374 v4l2_device_unregister_subdev(sd);
375 kfree(to_adv7175(sd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377}
378
379/* ----------------------------------------------------------------------- */
380
Hans Verkuilbba0d982008-09-07 07:58:46 -0300381static const struct i2c_device_id adv7175_id[] = {
382 { "adv7175", 0 },
383 { "adv7176", 0 },
384 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
Hans Verkuilbba0d982008-09-07 07:58:46 -0300386MODULE_DEVICE_TABLE(i2c, adv7175_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Hans Verkuilbba0d982008-09-07 07:58:46 -0300388static struct v4l2_i2c_driver_data v4l2_i2c_data = {
389 .name = "adv7175",
390 .driverid = I2C_DRIVERID_ADV7175,
391 .command = adv7175_command,
392 .probe = adv7175_probe,
393 .remove = adv7175_remove,
394 .id_table = adv7175_id,
395};