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 (c) 2005 Mauro Carvalho Chehab <mchehab@infradead.org>
12 - Multituner support and i2c address binding
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2 of the License, or
17 (at your option) any later version.
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 #include <linux/module.h>
31 #include <linux/moduleparam.h>
32 #include <linux/init.h>
33 #include <linux/delay.h>
36 #include <media/v4l2-common.h>
37 #include <linux/jiffies.h>
40 static struct i2c_algo_bit_data bttv_i2c_algo_bit_template
;
41 static struct i2c_adapter bttv_i2c_adap_sw_template
;
42 static struct i2c_adapter bttv_i2c_adap_hw_template
;
43 static struct i2c_client bttv_i2c_client_template
;
45 static int attach_inform(struct i2c_client
*client
);
50 module_param(i2c_debug
, int, 0644);
51 MODULE_PARM_DESC(i2c_hw
,"configure i2c debug level");
52 module_param(i2c_hw
, int, 0444);
53 MODULE_PARM_DESC(i2c_hw
,"force use of hardware i2c support, "
54 "instead of software bitbang");
55 module_param(i2c_scan
, int, 0444);
56 MODULE_PARM_DESC(i2c_scan
,"scan i2c bus at insmod time");
58 static unsigned int i2c_udelay
= 5;
59 module_param(i2c_udelay
, int, 0444);
60 MODULE_PARM_DESC(i2c_udelay
,"soft i2c delay at insmod time, in usecs "
61 "(should be 5 or higher). Lower value means higher bus speed.");
63 /* ----------------------------------------------------------------------- */
64 /* I2C functions - bitbanging adapter (software i2c) */
66 static void bttv_bit_setscl(void *data
, int state
)
68 struct bttv
*btv
= (struct bttv
*)data
;
71 btv
->i2c_state
|= 0x02;
73 btv
->i2c_state
&= ~0x02;
74 btwrite(btv
->i2c_state
, BT848_I2C
);
78 static void bttv_bit_setsda(void *data
, int state
)
80 struct bttv
*btv
= (struct bttv
*)data
;
83 btv
->i2c_state
|= 0x01;
85 btv
->i2c_state
&= ~0x01;
86 btwrite(btv
->i2c_state
, BT848_I2C
);
90 static int bttv_bit_getscl(void *data
)
92 struct bttv
*btv
= (struct bttv
*)data
;
95 state
= btread(BT848_I2C
) & 0x02 ? 1 : 0;
99 static int bttv_bit_getsda(void *data
)
101 struct bttv
*btv
= (struct bttv
*)data
;
104 state
= btread(BT848_I2C
) & 0x01;
108 static struct i2c_algo_bit_data bttv_i2c_algo_bit_template
= {
109 .setsda
= bttv_bit_setsda
,
110 .setscl
= bttv_bit_setscl
,
111 .getsda
= bttv_bit_getsda
,
112 .getscl
= bttv_bit_getscl
,
117 static struct i2c_adapter bttv_i2c_adap_sw_template
= {
118 .owner
= THIS_MODULE
,
119 .class = I2C_CLASS_TV_ANALOG
,
121 .id
= I2C_HW_B_BT848
,
122 .client_register
= attach_inform
,
125 /* ----------------------------------------------------------------------- */
126 /* I2C functions - hardware i2c */
128 static int algo_control(struct i2c_adapter
*adapter
,
129 unsigned int cmd
, unsigned long arg
)
134 static u32
functionality(struct i2c_adapter
*adap
)
136 return I2C_FUNC_SMBUS_EMUL
;
140 bttv_i2c_wait_done(struct bttv
*btv
)
145 if (wait_event_interruptible_timeout(btv
->i2c_queue
,
146 btv
->i2c_done
, msecs_to_jiffies(85)) == -ERESTARTSYS
)
150 if (btv
->i2c_done
& BT848_INT_RACK
)
156 #define I2C_HW (BT878_I2C_MODE | BT848_I2C_SYNC |\
157 BT848_I2C_SCL | BT848_I2C_SDA)
160 bttv_i2c_sendbytes(struct bttv
*btv
, const struct i2c_msg
*msg
, int last
)
169 /* start, address + first byte */
170 xmit
= (msg
->addr
<< 25) | (msg
->buf
[0] << 16) | I2C_HW
;
171 if (msg
->len
> 1 || !last
)
172 xmit
|= BT878_I2C_NOSTOP
;
173 btwrite(xmit
, BT848_I2C
);
174 retval
= bttv_i2c_wait_done(btv
);
180 printk(" <W %02x %02x", msg
->addr
<< 1, msg
->buf
[0]);
181 if (!(xmit
& BT878_I2C_NOSTOP
))
185 for (cnt
= 1; cnt
< msg
->len
; cnt
++ ) {
186 /* following bytes */
187 xmit
= (msg
->buf
[cnt
] << 24) | I2C_HW
| BT878_I2C_NOSTART
;
188 if (cnt
< msg
->len
-1 || !last
)
189 xmit
|= BT878_I2C_NOSTOP
;
190 btwrite(xmit
, BT848_I2C
);
191 retval
= bttv_i2c_wait_done(btv
);
197 printk(" %02x", msg
->buf
[cnt
]);
198 if (!(xmit
& BT878_I2C_NOSTOP
))
208 printk(" ERR: %d\n",retval
);
213 bttv_i2c_readbytes(struct bttv
*btv
, const struct i2c_msg
*msg
, int last
)
219 for(cnt
= 0; cnt
< msg
->len
; cnt
++) {
220 xmit
= (msg
->addr
<< 25) | (1 << 24) | I2C_HW
;
221 if (cnt
< msg
->len
-1)
222 xmit
|= BT848_I2C_W3B
;
223 if (cnt
< msg
->len
-1 || !last
)
224 xmit
|= BT878_I2C_NOSTOP
;
226 xmit
|= BT878_I2C_NOSTART
;
227 btwrite(xmit
, BT848_I2C
);
228 retval
= bttv_i2c_wait_done(btv
);
233 msg
->buf
[cnt
] = ((u32
)btread(BT848_I2C
) >> 8) & 0xff;
235 if (!(xmit
& BT878_I2C_NOSTART
))
236 printk(" <R %02x", (msg
->addr
<< 1) +1);
237 printk(" =%02x", msg
->buf
[cnt
]);
238 if (!(xmit
& BT878_I2C_NOSTOP
))
248 printk(" ERR: %d\n",retval
);
252 static int bttv_i2c_xfer(struct i2c_adapter
*i2c_adap
, struct i2c_msg
*msgs
, int num
)
254 struct bttv
*btv
= i2c_get_adapdata(i2c_adap
);
260 btwrite(BT848_INT_I2CDONE
|BT848_INT_RACK
, BT848_INT_STAT
);
261 for (i
= 0 ; i
< num
; i
++) {
262 if (msgs
[i
].flags
& I2C_M_RD
) {
264 retval
= bttv_i2c_readbytes(btv
, &msgs
[i
], i
+1 == num
);
269 retval
= bttv_i2c_sendbytes(btv
, &msgs
[i
], i
+1 == num
);
280 static struct i2c_algorithm bttv_algo
= {
281 .master_xfer
= bttv_i2c_xfer
,
282 .algo_control
= algo_control
,
283 .functionality
= functionality
,
286 static struct i2c_adapter bttv_i2c_adap_hw_template
= {
287 .owner
= THIS_MODULE
,
288 .class = I2C_CLASS_TV_ANALOG
,
290 .id
= I2C_HW_B_BT848
/* FIXME */,
292 .client_register
= attach_inform
,
295 /* ----------------------------------------------------------------------- */
296 /* I2C functions - common stuff */
298 static int attach_inform(struct i2c_client
*client
)
300 struct bttv
*btv
= i2c_get_adapdata(client
->adapter
);
304 if (ADDR_UNSET
!= bttv_tvcards
[btv
->c
.type
].tuner_addr
)
305 addr
= bttv_tvcards
[btv
->c
.type
].tuner_addr
;
309 printk(KERN_DEBUG
"bttv%d: %s i2c attach [addr=0x%x,client=%s]\n",
310 btv
->c
.nr
, client
->driver
->driver
.name
, client
->addr
,
312 if (!client
->driver
->command
)
315 if (client
->driver
->id
== I2C_DRIVERID_MSP3400
)
316 btv
->i2c_msp34xx_client
= client
;
317 if (client
->driver
->id
== I2C_DRIVERID_TVAUDIO
)
318 btv
->i2c_tvaudio_client
= client
;
319 if (btv
->tuner_type
!= UNSET
) {
320 struct tuner_setup tun_setup
;
322 if ((addr
==ADDR_UNSET
) ||
323 (addr
==client
->addr
)) {
325 tun_setup
.mode_mask
= T_ANALOG_TV
| T_DIGITAL_TV
| T_RADIO
;
326 tun_setup
.type
= btv
->tuner_type
;
327 tun_setup
.addr
= addr
;
328 bttv_call_i2c_clients(btv
, TUNER_SET_TYPE_ADDR
, &tun_setup
);
336 void bttv_call_i2c_clients(struct bttv
*btv
, unsigned int cmd
, void *arg
)
338 if (0 != btv
->i2c_rc
)
340 i2c_clients_command(&btv
->c
.i2c_adap
, cmd
, arg
);
343 static struct i2c_client bttv_i2c_client_template
= {
344 .name
= "bttv internal",
349 int bttv_I2CRead(struct bttv
*btv
, unsigned char addr
, char *probe_for
)
351 unsigned char buffer
= 0;
353 if (0 != btv
->i2c_rc
)
355 if (bttv_verbose
&& NULL
!= probe_for
)
356 printk(KERN_INFO
"bttv%d: i2c: checking for %s @ 0x%02x... ",
357 btv
->c
.nr
,probe_for
,addr
);
358 btv
->i2c_client
.addr
= addr
>> 1;
359 if (1 != i2c_master_recv(&btv
->i2c_client
, &buffer
, 1)) {
360 if (NULL
!= probe_for
) {
362 printk("not found\n");
364 printk(KERN_WARNING
"bttv%d: i2c read 0x%x: error\n",
368 if (bttv_verbose
&& NULL
!= probe_for
)
374 int bttv_I2CWrite(struct bttv
*btv
, unsigned char addr
, unsigned char b1
,
375 unsigned char b2
, int both
)
377 unsigned char buffer
[2];
378 int bytes
= both
? 2 : 1;
380 if (0 != btv
->i2c_rc
)
382 btv
->i2c_client
.addr
= addr
>> 1;
385 if (bytes
!= i2c_master_send(&btv
->i2c_client
, buffer
, bytes
))
390 /* read EEPROM content */
391 void __devinit
bttv_readee(struct bttv
*btv
, unsigned char *eedata
, int addr
)
393 memset(eedata
, 0, 256);
394 if (0 != btv
->i2c_rc
)
396 btv
->i2c_client
.addr
= addr
>> 1;
397 tveeprom_read(&btv
->i2c_client
, eedata
, 256);
400 static char *i2c_devs
[128] = {
401 [ 0x1c >> 1 ] = "lgdt330x",
402 [ 0x30 >> 1 ] = "IR (hauppauge)",
403 [ 0x80 >> 1 ] = "msp34xx",
404 [ 0x86 >> 1 ] = "tda9887",
405 [ 0xa0 >> 1 ] = "eeprom",
406 [ 0xc0 >> 1 ] = "tuner (analog)",
407 [ 0xc2 >> 1 ] = "tuner (analog)",
410 static void do_i2c_scan(char *name
, struct i2c_client
*c
)
415 for (i
= 0; i
< ARRAY_SIZE(i2c_devs
); i
++) {
417 rc
= i2c_master_recv(c
,&buf
,0);
420 printk("%s: i2c scan: found device @ 0x%x [%s]\n",
421 name
, i
<< 1, i2c_devs
[i
] ? i2c_devs
[i
] : "???");
425 /* init + register i2c algo-bit adapter */
426 int __devinit
init_bttv_i2c(struct bttv
*btv
)
428 memcpy(&btv
->i2c_client
, &bttv_i2c_client_template
,
429 sizeof(bttv_i2c_client_template
));
433 if (btv
->use_i2c_hw
) {
435 memcpy(&btv
->c
.i2c_adap
, &bttv_i2c_adap_hw_template
,
436 sizeof(bttv_i2c_adap_hw_template
));
439 /* Prevents usage of invalid delay values */
442 bttv_i2c_algo_bit_template
.udelay
=i2c_udelay
;
444 memcpy(&btv
->c
.i2c_adap
, &bttv_i2c_adap_sw_template
,
445 sizeof(bttv_i2c_adap_sw_template
));
446 memcpy(&btv
->i2c_algo
, &bttv_i2c_algo_bit_template
,
447 sizeof(bttv_i2c_algo_bit_template
));
448 btv
->i2c_algo
.data
= btv
;
449 btv
->c
.i2c_adap
.algo_data
= &btv
->i2c_algo
;
452 btv
->c
.i2c_adap
.dev
.parent
= &btv
->c
.pci
->dev
;
453 snprintf(btv
->c
.i2c_adap
.name
, sizeof(btv
->c
.i2c_adap
.name
),
454 "bt%d #%d [%s]", btv
->id
, btv
->c
.nr
,
455 btv
->use_i2c_hw
? "hw" : "sw");
457 i2c_set_adapdata(&btv
->c
.i2c_adap
, btv
);
458 btv
->i2c_client
.adapter
= &btv
->c
.i2c_adap
;
460 if (bttv_tvcards
[btv
->c
.type
].no_video
)
461 btv
->c
.i2c_adap
.class &= ~I2C_CLASS_TV_ANALOG
;
462 if (bttv_tvcards
[btv
->c
.type
].has_dvb
)
463 btv
->c
.i2c_adap
.class |= I2C_CLASS_TV_DIGITAL
;
465 if (btv
->use_i2c_hw
) {
466 btv
->i2c_rc
= i2c_add_adapter(&btv
->c
.i2c_adap
);
468 bttv_bit_setscl(btv
,1);
469 bttv_bit_setsda(btv
,1);
470 btv
->i2c_rc
= i2c_bit_add_bus(&btv
->c
.i2c_adap
);
472 if (0 == btv
->i2c_rc
&& i2c_scan
)
473 do_i2c_scan(btv
->c
.name
,&btv
->i2c_client
);
477 int __devexit
fini_bttv_i2c(struct bttv
*btv
)
479 if (0 != btv
->i2c_rc
)
482 return i2c_del_adapter(&btv
->c
.i2c_adap
);