2 * bt856 - BT856A Digital Video Encoder (Rockwell Part)
4 * Copyright (C) 1999 Mike Bernson <mike@mlb.org>
5 * Copyright (C) 1998 Dave Perks <dperks@ibm.net>
7 * Modifications for LML33/DC10plus unified driver
8 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
10 * This code was modify/ported from the saa7111 driver written
13 * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
14 * - moved over to linux>=2.4.x i2c protocol (9/9/2002)
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/pci.h>
41 #include <linux/signal.h>
43 #include <asm/pgtable.h>
45 #include <linux/types.h>
47 #include <linux/videodev.h>
48 #include <asm/uaccess.h>
50 MODULE_DESCRIPTION("Brooktree-856A video encoder driver");
51 MODULE_AUTHOR("Mike Bernson & Dave Perks");
52 MODULE_LICENSE("GPL");
54 #include <linux/i2c.h>
56 #define I2C_NAME(s) (s)->name
58 #include <linux/video_encoder.h>
61 module_param(debug, int, 0);
62 MODULE_PARM_DESC(debug, "Debug level (0-1)");
64 #define dprintk(num, format, args...) \
67 printk(format, ##args); \
70 /* ----------------------------------------------------------------------- */
72 #define REG_OFFSET 0xDA
73 #define BT856_NR_REG 6
76 unsigned char reg[BT856_NR_REG];
82 #define I2C_BT856 0x88
84 /* ----------------------------------------------------------------------- */
87 bt856_write (struct i2c_client *client,
91 struct bt856 *encoder = i2c_get_clientdata(client);
93 encoder->reg[reg - REG_OFFSET] = value;
94 return i2c_smbus_write_byte_data(client, reg, value);
98 bt856_setbit (struct i2c_client *client,
103 struct bt856 *encoder = i2c_get_clientdata(client);
105 return bt856_write(client, reg,
107 reg[reg - REG_OFFSET] & ~(1 << bit)) |
108 (value ? (1 << bit) : 0));
112 bt856_dump (struct i2c_client *client)
115 struct bt856 *encoder = i2c_get_clientdata(client);
117 printk(KERN_INFO "%s: register dump:", I2C_NAME(client));
118 for (i = 0; i < BT856_NR_REG; i += 2)
119 printk(" %02x", encoder->reg[i]);
123 /* ----------------------------------------------------------------------- */
126 bt856_command (struct i2c_client *client,
130 struct bt856 *encoder = i2c_get_clientdata(client);
135 /* This is just for testing!!! */
136 dprintk(1, KERN_INFO "bt856: init\n");
137 bt856_write(client, 0xdc, 0x18);
138 bt856_write(client, 0xda, 0);
139 bt856_write(client, 0xde, 0);
141 bt856_setbit(client, 0xdc, 3, 1);
142 //bt856_setbit(client, 0xdc, 6, 0);
143 bt856_setbit(client, 0xdc, 4, 1);
145 switch (encoder->norm) {
147 case VIDEO_MODE_NTSC:
148 bt856_setbit(client, 0xdc, 2, 0);
152 bt856_setbit(client, 0xdc, 2, 1);
156 bt856_setbit(client, 0xdc, 1, 1);
157 bt856_setbit(client, 0xde, 4, 0);
158 bt856_setbit(client, 0xde, 3, 1);
163 case ENCODER_GET_CAPABILITIES:
165 struct video_encoder_capability *cap = arg;
167 dprintk(1, KERN_INFO "%s: get capabilities\n",
170 cap->flags = VIDEO_ENCODER_PAL |
178 case ENCODER_SET_NORM:
182 dprintk(1, KERN_INFO "%s: set norm %d\n", I2C_NAME(client),
187 case VIDEO_MODE_NTSC:
188 bt856_setbit(client, 0xdc, 2, 0);
192 bt856_setbit(client, 0xdc, 2, 1);
193 bt856_setbit(client, 0xda, 0, 0);
194 //bt856_setbit(client, 0xda, 0, 1);
201 encoder->norm = *iarg;
207 case ENCODER_SET_INPUT:
211 dprintk(1, KERN_INFO "%s: set input %d\n", I2C_NAME(client),
214 /* We only have video bus.
215 * iarg = 0: input is from bt819
216 * iarg = 1: input is from ZR36060 */
221 bt856_setbit(client, 0xde, 4, 0);
222 bt856_setbit(client, 0xde, 3, 1);
223 bt856_setbit(client, 0xdc, 3, 1);
224 bt856_setbit(client, 0xdc, 6, 0);
227 bt856_setbit(client, 0xde, 4, 0);
228 bt856_setbit(client, 0xde, 3, 1);
229 bt856_setbit(client, 0xdc, 3, 1);
230 bt856_setbit(client, 0xdc, 6, 1);
233 bt856_setbit(client, 0xdc, 3, 0);
234 bt856_setbit(client, 0xde, 4, 1);
246 case ENCODER_SET_OUTPUT:
250 dprintk(1, KERN_INFO "%s: set output %d\n", I2C_NAME(client),
253 /* not much choice of outputs */
260 case ENCODER_ENABLE_OUTPUT:
264 encoder->enable = !!*iarg;
266 dprintk(1, KERN_INFO "%s: enable output %d\n",
267 I2C_NAME(client), encoder->enable);
278 /* ----------------------------------------------------------------------- */
282 * concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1'
284 static unsigned short normal_i2c[] = { I2C_BT856 >> 1, I2C_CLIENT_END };
286 static unsigned short ignore = I2C_CLIENT_END;
288 static struct i2c_client_address_data addr_data = {
289 .normal_i2c = normal_i2c,
294 static struct i2c_driver i2c_driver_bt856;
297 bt856_detect_client (struct i2c_adapter *adapter,
302 struct i2c_client *client;
303 struct bt856 *encoder;
307 "bt856.c: detecting bt856 client on address 0x%x\n",
310 /* Check if the adapter supports the needed features */
311 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
314 client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
317 client->addr = address;
318 client->adapter = adapter;
319 client->driver = &i2c_driver_bt856;
320 strlcpy(I2C_NAME(client), "bt856", sizeof(I2C_NAME(client)));
322 encoder = kzalloc(sizeof(struct bt856), GFP_KERNEL);
323 if (encoder == NULL) {
327 encoder->norm = VIDEO_MODE_NTSC;
329 i2c_set_clientdata(client, encoder);
331 i = i2c_attach_client(client);
338 bt856_write(client, 0xdc, 0x18);
339 bt856_write(client, 0xda, 0);
340 bt856_write(client, 0xde, 0);
342 bt856_setbit(client, 0xdc, 3, 1);
343 //bt856_setbit(client, 0xdc, 6, 0);
344 bt856_setbit(client, 0xdc, 4, 1);
346 switch (encoder->norm) {
348 case VIDEO_MODE_NTSC:
349 bt856_setbit(client, 0xdc, 2, 0);
353 bt856_setbit(client, 0xdc, 2, 1);
357 bt856_setbit(client, 0xdc, 1, 1);
358 bt856_setbit(client, 0xde, 4, 0);
359 bt856_setbit(client, 0xde, 3, 1);
364 dprintk(1, KERN_INFO "%s_attach: at address 0x%x\n", I2C_NAME(client),
371 bt856_attach_adapter (struct i2c_adapter *adapter)
375 "bt856.c: starting probe for adapter %s (0x%x)\n",
376 I2C_NAME(adapter), adapter->id);
377 return i2c_probe(adapter, &addr_data, &bt856_detect_client);
381 bt856_detach_client (struct i2c_client *client)
383 struct bt856 *encoder = i2c_get_clientdata(client);
386 err = i2c_detach_client(client);
397 /* ----------------------------------------------------------------------- */
399 static struct i2c_driver i2c_driver_bt856 = {
404 .id = I2C_DRIVERID_BT856,
406 .attach_adapter = bt856_attach_adapter,
407 .detach_client = bt856_detach_client,
408 .command = bt856_command,
414 return i2c_add_driver(&i2c_driver_bt856);
420 i2c_del_driver(&i2c_driver_bt856);
423 module_init(bt856_init);
424 module_exit(bt856_exit);