3 bttv-i2c.c -- all the i2c code is here
5 bttv - Bt848 frame grabber driver
7 Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de)
8 & Marcus Metzler (mocm@thp.uni-koeln.de)
9 (c) 1999-2003 Gerd Knorr <kraxel@bytesex.org>
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 #include <linux/module.h>
28 #include <linux/moduleparam.h>
29 #include <linux/init.h>
30 #include <linux/delay.h>
33 #include <media/v4l2-common.h>
34 #include <linux/jiffies.h>
37 static struct i2c_algo_bit_data bttv_i2c_algo_bit_template;
38 static struct i2c_adapter bttv_i2c_adap_sw_template;
39 static struct i2c_adapter bttv_i2c_adap_hw_template;
40 static struct i2c_client bttv_i2c_client_template;
42 static int attach_inform(struct i2c_client *client);
47 module_param(i2c_debug, int, 0644);
48 module_param(i2c_hw, int, 0444);
49 module_param(i2c_scan, int, 0444);
50 MODULE_PARM_DESC(i2c_scan,"scan i2c bus at insmod time");
52 /* ----------------------------------------------------------------------- */
53 /* I2C functions - bitbanging adapter (software i2c) */
55 static void bttv_bit_setscl(void *data, int state)
57 struct bttv *btv = (struct bttv*)data;
60 btv->i2c_state |= 0x02;
62 btv->i2c_state &= ~0x02;
63 btwrite(btv->i2c_state, BT848_I2C);
67 static void bttv_bit_setsda(void *data, int state)
69 struct bttv *btv = (struct bttv*)data;
72 btv->i2c_state |= 0x01;
74 btv->i2c_state &= ~0x01;
75 btwrite(btv->i2c_state, BT848_I2C);
79 static int bttv_bit_getscl(void *data)
81 struct bttv *btv = (struct bttv*)data;
84 state = btread(BT848_I2C) & 0x02 ? 1 : 0;
88 static int bttv_bit_getsda(void *data)
90 struct bttv *btv = (struct bttv*)data;
93 state = btread(BT848_I2C) & 0x01;
97 static struct i2c_algo_bit_data bttv_i2c_algo_bit_template = {
98 .setsda = bttv_bit_setsda,
99 .setscl = bttv_bit_setscl,
100 .getsda = bttv_bit_getsda,
101 .getscl = bttv_bit_getscl,
107 static struct i2c_adapter bttv_i2c_adap_sw_template = {
108 .owner = THIS_MODULE,
109 .class = I2C_CLASS_TV_ANALOG,
111 .id = I2C_HW_B_BT848,
112 .client_register = attach_inform,
115 /* ----------------------------------------------------------------------- */
116 /* I2C functions - hardware i2c */
118 static int algo_control(struct i2c_adapter *adapter,
119 unsigned int cmd, unsigned long arg)
124 static u32 functionality(struct i2c_adapter *adap)
126 return I2C_FUNC_SMBUS_EMUL;
130 bttv_i2c_wait_done(struct bttv *btv)
135 if (wait_event_interruptible_timeout(btv->i2c_queue,
136 btv->i2c_done, msecs_to_jiffies(85)) == -ERESTARTSYS)
140 if (btv->i2c_done & BT848_INT_RACK)
146 #define I2C_HW (BT878_I2C_MODE | BT848_I2C_SYNC |\
147 BT848_I2C_SCL | BT848_I2C_SDA)
150 bttv_i2c_sendbytes(struct bttv *btv, const struct i2c_msg *msg, int last)
159 /* start, address + first byte */
160 xmit = (msg->addr << 25) | (msg->buf[0] << 16) | I2C_HW;
161 if (msg->len > 1 || !last)
162 xmit |= BT878_I2C_NOSTOP;
163 btwrite(xmit, BT848_I2C);
164 retval = bttv_i2c_wait_done(btv);
170 printk(" <W %02x %02x", msg->addr << 1, msg->buf[0]);
171 if (!(xmit & BT878_I2C_NOSTOP))
175 for (cnt = 1; cnt < msg->len; cnt++ ) {
176 /* following bytes */
177 xmit = (msg->buf[cnt] << 24) | I2C_HW | BT878_I2C_NOSTART;
178 if (cnt < msg->len-1 || !last)
179 xmit |= BT878_I2C_NOSTOP;
180 btwrite(xmit, BT848_I2C);
181 retval = bttv_i2c_wait_done(btv);
187 printk(" %02x", msg->buf[cnt]);
188 if (!(xmit & BT878_I2C_NOSTOP))
198 printk(" ERR: %d\n",retval);
203 bttv_i2c_readbytes(struct bttv *btv, const struct i2c_msg *msg, int last)
209 for(cnt = 0; cnt < msg->len; cnt++) {
210 xmit = (msg->addr << 25) | (1 << 24) | I2C_HW;
211 if (cnt < msg->len-1)
212 xmit |= BT848_I2C_W3B;
213 if (cnt < msg->len-1 || !last)
214 xmit |= BT878_I2C_NOSTOP;
216 xmit |= BT878_I2C_NOSTART;
217 btwrite(xmit, BT848_I2C);
218 retval = bttv_i2c_wait_done(btv);
223 msg->buf[cnt] = ((u32)btread(BT848_I2C) >> 8) & 0xff;
225 if (!(xmit & BT878_I2C_NOSTART))
226 printk(" <R %02x", (msg->addr << 1) +1);
227 printk(" =%02x", msg->buf[cnt]);
228 if (!(xmit & BT878_I2C_NOSTOP))
238 printk(" ERR: %d\n",retval);
242 static int bttv_i2c_xfer(struct i2c_adapter *i2c_adap, struct i2c_msg *msgs, int num)
244 struct bttv *btv = i2c_get_adapdata(i2c_adap);
250 btwrite(BT848_INT_I2CDONE|BT848_INT_RACK, BT848_INT_STAT);
251 for (i = 0 ; i < num; i++) {
252 if (msgs[i].flags & I2C_M_RD) {
254 retval = bttv_i2c_readbytes(btv, &msgs[i], i+1 == num);
259 retval = bttv_i2c_sendbytes(btv, &msgs[i], i+1 == num);
270 static struct i2c_algorithm bttv_algo = {
271 .master_xfer = bttv_i2c_xfer,
272 .algo_control = algo_control,
273 .functionality = functionality,
276 static struct i2c_adapter bttv_i2c_adap_hw_template = {
277 .owner = THIS_MODULE,
278 .class = I2C_CLASS_TV_ANALOG,
280 .id = I2C_HW_B_BT848 /* FIXME */,
282 .client_register = attach_inform,
285 /* ----------------------------------------------------------------------- */
286 /* I2C functions - common stuff */
288 static int attach_inform(struct i2c_client *client)
290 struct bttv *btv = i2c_get_adapdata(client->adapter);
294 if (ADDR_UNSET != bttv_tvcards[btv->c.type].tuner_addr)
295 addr = bttv_tvcards[btv->c.type].tuner_addr;
299 printk(KERN_DEBUG "bttv%d: %s i2c attach [addr=0x%x,client=%s]\n",
300 btv->c.nr, client->driver->driver.name, client->addr,
302 if (!client->driver->command)
305 if (btv->tuner_type != UNSET) {
306 struct tuner_setup tun_setup;
308 if ((addr==ADDR_UNSET) ||
309 (addr==client->addr)) {
311 tun_setup.mode_mask = T_ANALOG_TV | T_DIGITAL_TV | T_RADIO;
312 tun_setup.type = btv->tuner_type;
313 tun_setup.addr = addr;
314 bttv_call_i2c_clients(btv, TUNER_SET_TYPE_ADDR, &tun_setup);
322 void bttv_call_i2c_clients(struct bttv *btv, unsigned int cmd, void *arg)
324 if (0 != btv->i2c_rc)
326 i2c_clients_command(&btv->c.i2c_adap, cmd, arg);
329 static struct i2c_client bttv_i2c_client_template = {
330 .name = "bttv internal",
335 int bttv_I2CRead(struct bttv *btv, unsigned char addr, char *probe_for)
337 unsigned char buffer = 0;
339 if (0 != btv->i2c_rc)
341 if (bttv_verbose && NULL != probe_for)
342 printk(KERN_INFO "bttv%d: i2c: checking for %s @ 0x%02x... ",
343 btv->c.nr,probe_for,addr);
344 btv->i2c_client.addr = addr >> 1;
345 if (1 != i2c_master_recv(&btv->i2c_client, &buffer, 1)) {
346 if (NULL != probe_for) {
348 printk("not found\n");
350 printk(KERN_WARNING "bttv%d: i2c read 0x%x: error\n",
354 if (bttv_verbose && NULL != probe_for)
360 int bttv_I2CWrite(struct bttv *btv, unsigned char addr, unsigned char b1,
361 unsigned char b2, int both)
363 unsigned char buffer[2];
364 int bytes = both ? 2 : 1;
366 if (0 != btv->i2c_rc)
368 btv->i2c_client.addr = addr >> 1;
371 if (bytes != i2c_master_send(&btv->i2c_client, buffer, bytes))
376 /* read EEPROM content */
377 void __devinit bttv_readee(struct bttv *btv, unsigned char *eedata, int addr)
379 memset(eedata, 0, 256);
380 if (0 != btv->i2c_rc)
382 btv->i2c_client.addr = addr >> 1;
383 tveeprom_read(&btv->i2c_client, eedata, 256);
386 static char *i2c_devs[128] = {
387 [ 0x1c >> 1 ] = "lgdt330x",
388 [ 0x30 >> 1 ] = "IR (hauppauge)",
389 [ 0x80 >> 1 ] = "msp34xx",
390 [ 0x86 >> 1 ] = "tda9887",
391 [ 0xa0 >> 1 ] = "eeprom",
392 [ 0xc0 >> 1 ] = "tuner (analog)",
393 [ 0xc2 >> 1 ] = "tuner (analog)",
396 static void do_i2c_scan(char *name, struct i2c_client *c)
401 for (i = 0; i < 128; i++) {
403 rc = i2c_master_recv(c,&buf,0);
406 printk("%s: i2c scan: found device @ 0x%x [%s]\n",
407 name, i << 1, i2c_devs[i] ? i2c_devs[i] : "???");
411 /* init + register i2c algo-bit adapter */
412 int __devinit init_bttv_i2c(struct bttv *btv)
414 memcpy(&btv->i2c_client, &bttv_i2c_client_template,
415 sizeof(bttv_i2c_client_template));
419 if (btv->use_i2c_hw) {
421 memcpy(&btv->c.i2c_adap, &bttv_i2c_adap_hw_template,
422 sizeof(bttv_i2c_adap_hw_template));
425 memcpy(&btv->c.i2c_adap, &bttv_i2c_adap_sw_template,
426 sizeof(bttv_i2c_adap_sw_template));
427 memcpy(&btv->i2c_algo, &bttv_i2c_algo_bit_template,
428 sizeof(bttv_i2c_algo_bit_template));
429 btv->i2c_algo.data = btv;
430 btv->c.i2c_adap.algo_data = &btv->i2c_algo;
433 btv->c.i2c_adap.dev.parent = &btv->c.pci->dev;
434 snprintf(btv->c.i2c_adap.name, sizeof(btv->c.i2c_adap.name),
435 "bt%d #%d [%s]", btv->id, btv->c.nr,
436 btv->use_i2c_hw ? "hw" : "sw");
438 i2c_set_adapdata(&btv->c.i2c_adap, btv);
439 btv->i2c_client.adapter = &btv->c.i2c_adap;
441 if (bttv_tvcards[btv->c.type].no_video)
442 btv->c.i2c_adap.class &= ~I2C_CLASS_TV_ANALOG;
443 if (bttv_tvcards[btv->c.type].has_dvb)
444 btv->c.i2c_adap.class |= I2C_CLASS_TV_DIGITAL;
446 if (btv->use_i2c_hw) {
447 btv->i2c_rc = i2c_add_adapter(&btv->c.i2c_adap);
449 bttv_bit_setscl(btv,1);
450 bttv_bit_setsda(btv,1);
451 btv->i2c_rc = i2c_bit_add_bus(&btv->c.i2c_adap);
453 if (0 == btv->i2c_rc && i2c_scan)
454 do_i2c_scan(btv->c.name,&btv->i2c_client);
458 int __devexit fini_bttv_i2c(struct bttv *btv)
460 if (0 != btv->i2c_rc)
463 if (btv->use_i2c_hw) {
464 return i2c_del_adapter(&btv->c.i2c_adap);
466 return i2c_bit_del_bus(&btv->c.i2c_adap);