2 * adv7170 - adv7170, adv7171 video encoder driver version 0.0.1
4 * Copyright (C) 2002 Maxim Yevtyushkin <max@linuxmedialabs.com>
6 * Based on adv7176 driver by:
8 * Copyright (C) 1998 Dave Perks <dperks@ibm.net>
9 * Copyright (C) 1999 Wolfgang Scherr <scherr@net4you.net>
10 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
11 * - some corrections for Pinnacle Systems Inc. DC10plus card.
13 * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
14 * - moved over to linux>=2.4.x i2c protocol (1/1/2003)
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 #include <linux/module.h>
32 #include <linux/init.h>
33 #include <linux/delay.h>
34 #include <linux/errno.h>
36 #include <linux/kernel.h>
37 #include <linux/major.h>
38 #include <linux/slab.h>
40 #include <linux/signal.h>
41 #include <linux/types.h>
42 #include <linux/i2c.h>
44 #include <asm/pgtable.h>
46 #include <asm/uaccess.h>
48 #include <linux/videodev.h>
49 #include <linux/video_encoder.h>
51 MODULE_DESCRIPTION("Analog Devices ADV7170 video encoder driver");
52 MODULE_AUTHOR("Maxim Yevtyushkin");
53 MODULE_LICENSE("GPL");
56 #define I2C_NAME(x) (x)->name
60 module_param(debug, int, 0);
61 MODULE_PARM_DESC(debug, "Debug level (0-1)");
63 #define dprintk(num, format, args...) \
66 printk(format, ##args); \
69 /* ----------------------------------------------------------------------- */
72 unsigned char reg[128];
83 #define I2C_ADV7170 0xd4
84 #define I2C_ADV7171 0x54
86 static char adv7170_name[] = "adv7170";
87 static char adv7171_name[] = "adv7171";
89 static char *inputs[] = { "pass_through", "play_back" };
90 static char *norms[] = { "PAL", "NTSC" };
92 /* ----------------------------------------------------------------------- */
95 adv7170_write (struct i2c_client *client,
99 struct adv7170 *encoder = i2c_get_clientdata(client);
101 encoder->reg[reg] = value;
102 return i2c_smbus_write_byte_data(client, reg, value);
106 adv7170_read (struct i2c_client *client,
109 return i2c_smbus_read_byte_data(client, reg);
113 adv7170_write_block (struct i2c_client *client,
120 /* the adv7170 has an autoincrement function, use it if
121 * the adapter understands raw I2C */
122 if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
123 /* do raw I2C, not smbus compatible */
124 struct adv7170 *encoder = i2c_get_clientdata(client);
130 block_data[block_len++] = reg = data[0];
132 block_data[block_len++] =
133 encoder->reg[reg++] = data[1];
136 } while (len >= 2 && data[0] == reg &&
138 if ((ret = i2c_master_send(client, block_data,
143 /* do some slow I2C emulation kind of thing */
146 if ((ret = adv7170_write(client, reg,
156 /* ----------------------------------------------------------------------- */
157 // Output filter: S-Video Composite
159 #define MR050 0x11 //0x09
160 #define MR060 0x14 //0x0c
162 //---------------------------------------------------------------------------
171 static const unsigned char init_NTSC[] = {
174 0x02, 0x0e, // MR2 RTC control: bits 2 and 1
177 0x05, 0x00, // Reserved
178 0x06, 0x00, // Reserved
179 0x07, TR0MODE, // TM0
180 0x08, TR1CAPT, // TM1
185 0x0d, 0x00, // Subcarrier Phase
186 0x0e, 0x00, // Closed Capt. Ext 0
187 0x0f, 0x00, // Closed Capt. Ext 1
188 0x10, 0x00, // Closed Capt. 0
189 0x11, 0x00, // Closed Capt. 1
190 0x12, 0x00, // Pedestal Ctl 0
191 0x13, 0x00, // Pedestal Ctl 1
192 0x14, 0x00, // Pedestal Ctl 2
193 0x15, 0x00, // Pedestal Ctl 3
194 0x16, 0x00, // CGMS_WSS_0
195 0x17, 0x00, // CGMS_WSS_1
196 0x18, 0x00, // CGMS_WSS_2
197 0x19, 0x00, // Teletext Ctl
200 static const unsigned char init_PAL[] = {
203 0x02, 0x0e, // MR2 RTC control: bits 2 and 1
206 0x05, 0x00, // Reserved
207 0x06, 0x00, // Reserved
208 0x07, TR0MODE, // TM0
209 0x08, TR1CAPT, // TM1
214 0x0d, 0x00, // Subcarrier Phase
215 0x0e, 0x00, // Closed Capt. Ext 0
216 0x0f, 0x00, // Closed Capt. Ext 1
217 0x10, 0x00, // Closed Capt. 0
218 0x11, 0x00, // Closed Capt. 1
219 0x12, 0x00, // Pedestal Ctl 0
220 0x13, 0x00, // Pedestal Ctl 1
221 0x14, 0x00, // Pedestal Ctl 2
222 0x15, 0x00, // Pedestal Ctl 3
223 0x16, 0x00, // CGMS_WSS_0
224 0x17, 0x00, // CGMS_WSS_1
225 0x18, 0x00, // CGMS_WSS_2
226 0x19, 0x00, // Teletext Ctl
231 adv7170_command (struct i2c_client *client,
235 struct adv7170 *encoder = i2c_get_clientdata(client);
241 /* This is just for testing!!! */
242 adv7170_write_block(client, init_common,
243 sizeof(init_common));
244 adv7170_write(client, 0x07, TR0MODE | TR0RST);
245 adv7170_write(client, 0x07, TR0MODE);
249 case ENCODER_GET_CAPABILITIES:
251 struct video_encoder_capability *cap = arg;
253 cap->flags = VIDEO_ENCODER_PAL |
260 case ENCODER_SET_NORM:
262 int iarg = *(int *) arg;
264 dprintk(1, KERN_DEBUG "%s_command: set norm %d",
265 I2C_NAME(client), iarg);
269 case VIDEO_MODE_NTSC:
270 adv7170_write_block(client, init_NTSC,
272 if (encoder->input == 0)
273 adv7170_write(client, 0x02, 0x0e); // Enable genlock
274 adv7170_write(client, 0x07, TR0MODE | TR0RST);
275 adv7170_write(client, 0x07, TR0MODE);
279 adv7170_write_block(client, init_PAL,
281 if (encoder->input == 0)
282 adv7170_write(client, 0x02, 0x0e); // Enable genlock
283 adv7170_write(client, 0x07, TR0MODE | TR0RST);
284 adv7170_write(client, 0x07, TR0MODE);
288 dprintk(1, KERN_ERR "%s: illegal norm: %d\n",
289 I2C_NAME(client), iarg);
293 dprintk(1, KERN_DEBUG "%s: switched to %s\n", I2C_NAME(client),
295 encoder->norm = iarg;
299 case ENCODER_SET_INPUT:
301 int iarg = *(int *) arg;
303 /* RJ: *iarg = 0: input is from decoder
304 *iarg = 1: input is from ZR36060
305 *iarg = 2: color bar */
307 dprintk(1, KERN_DEBUG "%s_command: set input from %s\n",
309 iarg == 0 ? "decoder" : "ZR36060");
314 adv7170_write(client, 0x01, 0x20);
315 adv7170_write(client, 0x08, TR1CAPT); /* TR1 */
316 adv7170_write(client, 0x02, 0x0e); // Enable genlock
317 adv7170_write(client, 0x07, TR0MODE | TR0RST);
318 adv7170_write(client, 0x07, TR0MODE);
323 adv7170_write(client, 0x01, 0x00);
324 adv7170_write(client, 0x08, TR1PLAY); /* TR1 */
325 adv7170_write(client, 0x02, 0x08);
326 adv7170_write(client, 0x07, TR0MODE | TR0RST);
327 adv7170_write(client, 0x07, TR0MODE);
332 dprintk(1, KERN_ERR "%s: illegal input: %d\n",
333 I2C_NAME(client), iarg);
337 dprintk(1, KERN_DEBUG "%s: switched to %s\n", I2C_NAME(client),
339 encoder->input = iarg;
343 case ENCODER_SET_OUTPUT:
347 /* not much choice of outputs */
354 case ENCODER_ENABLE_OUTPUT:
358 encoder->enable = !!*iarg;
369 /* ----------------------------------------------------------------------- */
373 * concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1'
375 static unsigned short normal_i2c[] =
376 { I2C_ADV7170 >> 1, (I2C_ADV7170 >> 1) + 1,
377 I2C_ADV7171 >> 1, (I2C_ADV7171 >> 1) + 1,
381 static unsigned short ignore = I2C_CLIENT_END;
383 static struct i2c_client_address_data addr_data = {
384 .normal_i2c = normal_i2c,
389 static struct i2c_driver i2c_driver_adv7170;
392 adv7170_detect_client (struct i2c_adapter *adapter,
397 struct i2c_client *client;
398 struct adv7170 *encoder;
403 "adv7170.c: detecting adv7170 client on address 0x%x\n",
406 /* Check if the adapter supports the needed features */
407 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
410 client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
413 client->addr = address;
414 client->adapter = adapter;
415 client->driver = &i2c_driver_adv7170;
416 if ((client->addr == I2C_ADV7170 >> 1) ||
417 (client->addr == (I2C_ADV7170 >> 1) + 1)) {
418 dname = adv7170_name;
419 } else if ((client->addr == I2C_ADV7171 >> 1) ||
420 (client->addr == (I2C_ADV7171 >> 1) + 1)) {
421 dname = adv7171_name;
423 /* We should never get here!!! */
427 strlcpy(I2C_NAME(client), dname, sizeof(I2C_NAME(client)));
429 encoder = kzalloc(sizeof(struct adv7170), GFP_KERNEL);
430 if (encoder == NULL) {
434 encoder->norm = VIDEO_MODE_NTSC;
437 i2c_set_clientdata(client, encoder);
439 i = i2c_attach_client(client);
446 i = adv7170_write_block(client, init_NTSC, sizeof(init_NTSC));
448 i = adv7170_write(client, 0x07, TR0MODE | TR0RST);
449 i = adv7170_write(client, 0x07, TR0MODE);
450 i = adv7170_read(client, 0x12);
451 dprintk(1, KERN_INFO "%s_attach: rev. %d at 0x%02x\n",
452 I2C_NAME(client), i & 1, client->addr << 1);
455 dprintk(1, KERN_ERR "%s_attach: init error 0x%x\n",
456 I2C_NAME(client), i);
463 adv7170_attach_adapter (struct i2c_adapter *adapter)
467 "adv7170.c: starting probe for adapter %s (0x%x)\n",
468 I2C_NAME(adapter), adapter->id);
469 return i2c_probe(adapter, &addr_data, &adv7170_detect_client);
473 adv7170_detach_client (struct i2c_client *client)
475 struct adv7170 *encoder = i2c_get_clientdata(client);
478 err = i2c_detach_client(client);
489 /* ----------------------------------------------------------------------- */
491 static struct i2c_driver i2c_driver_adv7170 = {
493 .name = "adv7170", /* name */
496 .id = I2C_DRIVERID_ADV7170,
498 .attach_adapter = adv7170_attach_adapter,
499 .detach_client = adv7170_detach_client,
500 .command = adv7170_command,
506 return i2c_add_driver(&i2c_driver_adv7170);
512 i2c_del_driver(&i2c_driver_adv7170);
515 module_init(adv7170_init);
516 module_exit(adv7170_exit);