2 * adv7175 - adv7175a video encoder driver version 0.0.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.
9 * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
10 * - moved over to linux>=2.4.x i2c protocol (9/9/2002)
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.
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.
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.
27 #include <linux/module.h>
28 #include <linux/types.h>
29 #include <linux/ioctl.h>
30 #include <asm/uaccess.h>
31 #include <linux/i2c.h>
32 #include <linux/i2c-id.h>
33 #include <linux/videodev.h>
34 #include <linux/video_encoder.h>
35 #include <media/v4l2-common.h>
36 #include <media/v4l2-i2c-drv-legacy.h>
38 MODULE_DESCRIPTION("Analog Devices ADV7175 video encoder driver");
39 MODULE_AUTHOR("Dave Perks");
40 MODULE_LICENSE("GPL");
43 module_param(debug, int, 0);
44 MODULE_PARM_DESC(debug, "Debug level (0-1)");
46 /* ----------------------------------------------------------------------- */
58 #define I2C_ADV7175 0xd4
59 #define I2C_ADV7176 0x54
61 static char *inputs[] = { "pass_through", "play_back", "color_bar" };
62 static char *norms[] = { "PAL", "NTSC", "SECAM->PAL (may not work!)" };
64 /* ----------------------------------------------------------------------- */
66 static inline int adv7175_write(struct i2c_client *client, u8 reg, u8 value)
68 return i2c_smbus_write_byte_data(client, reg, value);
71 static inline int adv7175_read(struct i2c_client *client, u8 reg)
73 return i2c_smbus_read_byte_data(client, reg);
76 static int adv7175_write_block(struct i2c_client *client,
77 const u8 *data, unsigned int len)
82 /* the adv7175 has an autoincrement function, use it if
83 * the adapter understands raw I2C */
84 if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
85 /* do raw I2C, not smbus compatible */
91 block_data[block_len++] = reg = data[0];
93 block_data[block_len++] = data[1];
97 } while (len >= 2 && data[0] == reg && block_len < 32);
98 ret = i2c_master_send(client, block_data, block_len);
103 /* do some slow I2C emulation kind of thing */
106 ret = adv7175_write(client, reg, *data++);
116 static void set_subcarrier_freq(struct i2c_client *client, int pass_through)
118 /* for some reason pass_through NTSC needs
119 * a different sub-carrier freq to remain stable. */
121 adv7175_write(client, 0x02, 0x00);
123 adv7175_write(client, 0x02, 0x55);
125 adv7175_write(client, 0x03, 0x55);
126 adv7175_write(client, 0x04, 0x55);
127 adv7175_write(client, 0x05, 0x25);
130 /* ----------------------------------------------------------------------- */
131 /* Output filter: S-Video Composite */
133 #define MR050 0x11 /* 0x09 */
134 #define MR060 0x14 /* 0x0c */
136 /* ----------------------------------------------------------------------- */
144 static const unsigned char init_common[] = {
146 0x00, MR050, /* MR0, PAL enabled */
147 0x01, 0x00, /* MR1 */
148 0x02, 0x0c, /* subc. freq. */
149 0x03, 0x8c, /* subc. freq. */
150 0x04, 0x79, /* subc. freq. */
151 0x05, 0x26, /* subc. freq. */
152 0x06, 0x40, /* subc. phase */
154 0x07, TR0MODE, /* TR0, 16bit */
159 0x0c, TR1CAPT, /* TR1 */
160 0x0d, 0x4f, /* MR2 */
167 static const unsigned char init_pal[] = {
168 0x00, MR050, /* MR0, PAL enabled */
169 0x01, 0x00, /* MR1 */
170 0x02, 0x0c, /* subc. freq. */
171 0x03, 0x8c, /* subc. freq. */
172 0x04, 0x79, /* subc. freq. */
173 0x05, 0x26, /* subc. freq. */
174 0x06, 0x40, /* subc. phase */
177 static const unsigned char init_ntsc[] = {
178 0x00, MR060, /* MR0, NTSC enabled */
179 0x01, 0x00, /* MR1 */
180 0x02, 0x55, /* subc. freq. */
181 0x03, 0x55, /* subc. freq. */
182 0x04, 0x55, /* subc. freq. */
183 0x05, 0x25, /* subc. freq. */
184 0x06, 0x1a, /* subc. phase */
187 static int adv7175_command(struct i2c_client *client, unsigned cmd, void *arg)
189 struct adv7175 *encoder = i2c_get_clientdata(client);
193 /* This is just for testing!!! */
194 adv7175_write_block(client, init_common,
195 sizeof(init_common));
196 adv7175_write(client, 0x07, TR0MODE | TR0RST);
197 adv7175_write(client, 0x07, TR0MODE);
200 case ENCODER_GET_CAPABILITIES:
202 struct video_encoder_capability *cap = arg;
204 cap->flags = VIDEO_ENCODER_PAL |
206 VIDEO_ENCODER_SECAM; /* well, hacky */
212 case ENCODER_SET_NORM:
214 int iarg = *(int *) arg;
217 case VIDEO_MODE_NTSC:
218 adv7175_write_block(client, init_ntsc,
220 if (encoder->input == 0)
221 adv7175_write(client, 0x0d, 0x4f); // Enable genlock
222 adv7175_write(client, 0x07, TR0MODE | TR0RST);
223 adv7175_write(client, 0x07, TR0MODE);
227 adv7175_write_block(client, init_pal,
229 if (encoder->input == 0)
230 adv7175_write(client, 0x0d, 0x4f); // Enable genlock
231 adv7175_write(client, 0x07, TR0MODE | TR0RST);
232 adv7175_write(client, 0x07, TR0MODE);
235 case VIDEO_MODE_SECAM: // WARNING! ADV7176 does not support SECAM.
236 /* This is an attempt to convert
237 * SECAM->PAL (typically it does not work
238 * due to genlock: when decoder is in SECAM
239 * and encoder in in PAL the subcarrier can
240 * not be syncronized with horizontal
242 adv7175_write_block(client, init_pal,
244 if (encoder->input == 0)
245 adv7175_write(client, 0x0d, 0x49); // Disable genlock
246 adv7175_write(client, 0x07, TR0MODE | TR0RST);
247 adv7175_write(client, 0x07, TR0MODE);
250 v4l_dbg(1, debug, client, "illegal norm: %d\n", iarg);
253 v4l_dbg(1, debug, client, "switched to %s\n", norms[iarg]);
254 encoder->norm = iarg;
258 case ENCODER_SET_INPUT:
260 int iarg = *(int *) arg;
262 /* RJ: *iarg = 0: input is from SAA7110
263 *iarg = 1: input is from ZR36060
264 *iarg = 2: color bar */
268 adv7175_write(client, 0x01, 0x00);
270 if (encoder->norm == VIDEO_MODE_NTSC)
271 set_subcarrier_freq(client, 1);
273 adv7175_write(client, 0x0c, TR1CAPT); /* TR1 */
274 if (encoder->norm == VIDEO_MODE_SECAM)
275 adv7175_write(client, 0x0d, 0x49); // Disable genlock
277 adv7175_write(client, 0x0d, 0x4f); // Enable genlock
278 adv7175_write(client, 0x07, TR0MODE | TR0RST);
279 adv7175_write(client, 0x07, TR0MODE);
284 adv7175_write(client, 0x01, 0x00);
286 if (encoder->norm == VIDEO_MODE_NTSC)
287 set_subcarrier_freq(client, 0);
289 adv7175_write(client, 0x0c, TR1PLAY); /* TR1 */
290 adv7175_write(client, 0x0d, 0x49);
291 adv7175_write(client, 0x07, TR0MODE | TR0RST);
292 adv7175_write(client, 0x07, TR0MODE);
297 adv7175_write(client, 0x01, 0x80);
299 if (encoder->norm == VIDEO_MODE_NTSC)
300 set_subcarrier_freq(client, 0);
302 adv7175_write(client, 0x0d, 0x49);
303 adv7175_write(client, 0x07, TR0MODE | TR0RST);
304 adv7175_write(client, 0x07, TR0MODE);
309 v4l_dbg(1, debug, client, "illegal input: %d\n", iarg);
312 v4l_dbg(1, debug, client, "switched to %s\n", inputs[iarg]);
313 encoder->input = iarg;
317 case ENCODER_SET_OUTPUT:
321 /* not much choice of outputs */
327 case ENCODER_ENABLE_OUTPUT:
331 encoder->enable = !!*iarg;
342 /* ----------------------------------------------------------------------- */
346 * concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1'
348 static unsigned short normal_i2c[] = {
349 I2C_ADV7175 >> 1, (I2C_ADV7175 >> 1) + 1,
350 I2C_ADV7176 >> 1, (I2C_ADV7176 >> 1) + 1,
356 static int adv7175_probe(struct i2c_client *client,
357 const struct i2c_device_id *id)
360 struct adv7175 *encoder;
362 /* Check if the adapter supports the needed features */
363 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
366 v4l_info(client, "chip found @ 0x%x (%s)\n",
367 client->addr << 1, client->adapter->name);
369 encoder = kzalloc(sizeof(struct adv7175), GFP_KERNEL);
372 encoder->norm = VIDEO_MODE_PAL;
375 i2c_set_clientdata(client, encoder);
377 i = adv7175_write_block(client, init_common, sizeof(init_common));
379 i = adv7175_write(client, 0x07, TR0MODE | TR0RST);
380 i = adv7175_write(client, 0x07, TR0MODE);
381 i = adv7175_read(client, 0x12);
382 v4l_dbg(1, debug, client, "revision %d\n", i & 1);
385 v4l_dbg(1, debug, client, "init error 0x%x\n", i);
389 static int adv7175_remove(struct i2c_client *client)
391 kfree(i2c_get_clientdata(client));
395 /* ----------------------------------------------------------------------- */
397 static const struct i2c_device_id adv7175_id[] = {
402 MODULE_DEVICE_TABLE(i2c, adv7175_id);
404 static struct v4l2_i2c_driver_data v4l2_i2c_data = {
406 .driverid = I2C_DRIVERID_ADV7175,
407 .command = adv7175_command,
408 .probe = adv7175_probe,
409 .remove = adv7175_remove,
410 .id_table = adv7175_id,