1 // SPDX-License-Identifier: GPL-2.0-or-later
4 bttv-i2c.c -- all the i2c code is here
6 bttv - Bt848 frame grabber driver
8 Copyright (C) 1996,97,98 Ralph Metzler (rjkm@thp.uni-koeln.de)
9 & Marcus Metzler (mocm@thp.uni-koeln.de)
10 (c) 1999-2003 Gerd Knorr <kraxel@bytesex.org>
12 (c) 2005 Mauro Carvalho Chehab <mchehab@kernel.org>
13 - Multituner support and i2c address binding
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/delay.h>
25 #include <media/v4l2-common.h>
26 #include <linux/jiffies.h>
32 module_param(i2c_debug
, int, 0644);
33 MODULE_PARM_DESC(i2c_debug
, "configure i2c debug level");
34 module_param(i2c_hw
, int, 0444);
35 MODULE_PARM_DESC(i2c_hw
, "force use of hardware i2c support, instead of software bitbang");
36 module_param(i2c_scan
, int, 0444);
37 MODULE_PARM_DESC(i2c_scan
,"scan i2c bus at insmod time");
39 static unsigned int i2c_udelay
= 5;
40 module_param(i2c_udelay
, int, 0444);
41 MODULE_PARM_DESC(i2c_udelay
, "soft i2c delay at insmod time, in usecs (should be 5 or higher). Lower value means higher bus speed.");
43 /* ----------------------------------------------------------------------- */
44 /* I2C functions - bitbanging adapter (software i2c) */
46 static void bttv_bit_setscl(void *data
, int state
)
48 struct bttv
*btv
= (struct bttv
*)data
;
51 btv
->i2c_state
|= 0x02;
53 btv
->i2c_state
&= ~0x02;
54 btwrite(btv
->i2c_state
, BT848_I2C
);
58 static void bttv_bit_setsda(void *data
, int state
)
60 struct bttv
*btv
= (struct bttv
*)data
;
63 btv
->i2c_state
|= 0x01;
65 btv
->i2c_state
&= ~0x01;
66 btwrite(btv
->i2c_state
, BT848_I2C
);
70 static int bttv_bit_getscl(void *data
)
72 struct bttv
*btv
= (struct bttv
*)data
;
75 state
= btread(BT848_I2C
) & 0x02 ? 1 : 0;
79 static int bttv_bit_getsda(void *data
)
81 struct bttv
*btv
= (struct bttv
*)data
;
84 state
= btread(BT848_I2C
) & 0x01;
88 static const struct i2c_algo_bit_data bttv_i2c_algo_bit_template
= {
89 .setsda
= bttv_bit_setsda
,
90 .setscl
= bttv_bit_setscl
,
91 .getsda
= bttv_bit_getsda
,
92 .getscl
= bttv_bit_getscl
,
97 /* ----------------------------------------------------------------------- */
98 /* I2C functions - hardware i2c */
100 static u32
functionality(struct i2c_adapter
*adap
)
102 return I2C_FUNC_SMBUS_EMUL
;
106 bttv_i2c_wait_done(struct bttv
*btv
)
111 if (wait_event_interruptible_timeout(btv
->i2c_queue
,
112 btv
->i2c_done
, msecs_to_jiffies(85)) == -ERESTARTSYS
)
115 if (btv
->i2c_done
& BT848_INT_RACK
)
121 #define I2C_HW (BT878_I2C_MODE | BT848_I2C_SYNC |\
122 BT848_I2C_SCL | BT848_I2C_SDA)
125 bttv_i2c_sendbytes(struct bttv
*btv
, const struct i2c_msg
*msg
, int last
)
134 /* start, address + first byte */
135 xmit
= (msg
->addr
<< 25) | (msg
->buf
[0] << 16) | I2C_HW
;
136 if (msg
->len
> 1 || !last
)
137 xmit
|= BT878_I2C_NOSTOP
;
138 btwrite(xmit
, BT848_I2C
);
139 retval
= bttv_i2c_wait_done(btv
);
145 pr_cont(" <W %02x %02x", msg
->addr
<< 1, msg
->buf
[0]);
148 for (cnt
= 1; cnt
< msg
->len
; cnt
++ ) {
149 /* following bytes */
150 xmit
= (msg
->buf
[cnt
] << 24) | I2C_HW
| BT878_I2C_NOSTART
;
151 if (cnt
< msg
->len
-1 || !last
)
152 xmit
|= BT878_I2C_NOSTOP
;
153 btwrite(xmit
, BT848_I2C
);
154 retval
= bttv_i2c_wait_done(btv
);
160 pr_cont(" %02x", msg
->buf
[cnt
]);
162 if (i2c_debug
&& !(xmit
& BT878_I2C_NOSTOP
))
170 pr_cont(" ERR: %d\n",retval
);
175 bttv_i2c_readbytes(struct bttv
*btv
, const struct i2c_msg
*msg
, int last
)
181 for (cnt
= 0; cnt
< msg
->len
; cnt
++) {
182 xmit
= (msg
->addr
<< 25) | (1 << 24) | I2C_HW
;
183 if (cnt
< msg
->len
-1)
184 xmit
|= BT848_I2C_W3B
;
185 if (cnt
< msg
->len
-1 || !last
)
186 xmit
|= BT878_I2C_NOSTOP
;
188 xmit
|= BT878_I2C_NOSTART
;
191 if (!(xmit
& BT878_I2C_NOSTART
))
192 pr_cont(" <R %02x", (msg
->addr
<< 1) +1);
195 btwrite(xmit
, BT848_I2C
);
196 retval
= bttv_i2c_wait_done(btv
);
201 msg
->buf
[cnt
] = ((u32
)btread(BT848_I2C
) >> 8) & 0xff;
203 pr_cont(" =%02x", msg
->buf
[cnt
]);
205 if (i2c_debug
&& !(xmit
& BT878_I2C_NOSTOP
))
216 pr_cont(" ERR: %d\n",retval
);
220 static int bttv_i2c_xfer(struct i2c_adapter
*i2c_adap
, struct i2c_msg
*msgs
, int num
)
222 struct v4l2_device
*v4l2_dev
= i2c_get_adapdata(i2c_adap
);
223 struct bttv
*btv
= to_bttv(v4l2_dev
);
230 btwrite(BT848_INT_I2CDONE
|BT848_INT_RACK
, BT848_INT_STAT
);
231 for (i
= 0 ; i
< num
; i
++) {
232 if (msgs
[i
].flags
& I2C_M_RD
) {
234 retval
= bttv_i2c_readbytes(btv
, &msgs
[i
], i
+1 == num
);
239 retval
= bttv_i2c_sendbytes(btv
, &msgs
[i
], i
+1 == num
);
250 static const struct i2c_algorithm bttv_algo
= {
251 .master_xfer
= bttv_i2c_xfer
,
252 .functionality
= functionality
,
255 /* ----------------------------------------------------------------------- */
256 /* I2C functions - common stuff */
259 int bttv_I2CRead(struct bttv
*btv
, unsigned char addr
, char *probe_for
)
261 unsigned char buffer
= 0;
263 if (0 != btv
->i2c_rc
)
265 if (bttv_verbose
&& NULL
!= probe_for
)
266 pr_info("%d: i2c: checking for %s @ 0x%02x... ",
267 btv
->c
.nr
, probe_for
, addr
);
268 btv
->i2c_client
.addr
= addr
>> 1;
269 if (1 != i2c_master_recv(&btv
->i2c_client
, &buffer
, 1)) {
270 if (NULL
!= probe_for
) {
272 pr_cont("not found\n");
274 pr_warn("%d: i2c read 0x%x: error\n",
278 if (bttv_verbose
&& NULL
!= probe_for
)
284 int bttv_I2CWrite(struct bttv
*btv
, unsigned char addr
, unsigned char b1
,
285 unsigned char b2
, int both
)
287 unsigned char buffer
[2];
288 int bytes
= both
? 2 : 1;
290 if (0 != btv
->i2c_rc
)
292 btv
->i2c_client
.addr
= addr
>> 1;
295 if (bytes
!= i2c_master_send(&btv
->i2c_client
, buffer
, bytes
))
300 /* read EEPROM content */
301 void bttv_readee(struct bttv
*btv
, unsigned char *eedata
, int addr
)
303 memset(eedata
, 0, 256);
304 if (0 != btv
->i2c_rc
)
306 btv
->i2c_client
.addr
= addr
>> 1;
307 tveeprom_read(&btv
->i2c_client
, eedata
, 256);
310 static char *i2c_devs
[128] = {
311 [ 0x1c >> 1 ] = "lgdt330x",
312 [ 0x30 >> 1 ] = "IR (hauppauge)",
313 [ 0x80 >> 1 ] = "msp34xx",
314 [ 0x86 >> 1 ] = "tda9887",
315 [ 0xa0 >> 1 ] = "eeprom",
316 [ 0xc0 >> 1 ] = "tuner (analog)",
317 [ 0xc2 >> 1 ] = "tuner (analog)",
320 static void do_i2c_scan(char *name
, struct i2c_client
*c
)
325 for (i
= 0; i
< ARRAY_SIZE(i2c_devs
); i
++) {
327 rc
= i2c_master_recv(c
,&buf
,0);
330 pr_info("%s: i2c scan: found device @ 0x%x [%s]\n",
331 name
, i
<< 1, i2c_devs
[i
] ? i2c_devs
[i
] : "???");
335 /* init + register i2c adapter */
336 int init_bttv_i2c(struct bttv
*btv
)
338 strscpy(btv
->i2c_client
.name
, "bttv internal", I2C_NAME_SIZE
);
342 if (btv
->use_i2c_hw
) {
344 strscpy(btv
->c
.i2c_adap
.name
, "bt878",
345 sizeof(btv
->c
.i2c_adap
.name
));
346 btv
->c
.i2c_adap
.algo
= &bttv_algo
;
349 /* Prevents usage of invalid delay values */
353 strscpy(btv
->c
.i2c_adap
.name
, "bttv",
354 sizeof(btv
->c
.i2c_adap
.name
));
355 btv
->i2c_algo
= bttv_i2c_algo_bit_template
;
356 btv
->i2c_algo
.udelay
= i2c_udelay
;
357 btv
->i2c_algo
.data
= btv
;
358 btv
->c
.i2c_adap
.algo_data
= &btv
->i2c_algo
;
360 btv
->c
.i2c_adap
.owner
= THIS_MODULE
;
362 btv
->c
.i2c_adap
.dev
.parent
= &btv
->c
.pci
->dev
;
363 snprintf(btv
->c
.i2c_adap
.name
, sizeof(btv
->c
.i2c_adap
.name
),
364 "bt%d #%d [%s]", btv
->id
, btv
->c
.nr
,
365 btv
->use_i2c_hw
? "hw" : "sw");
367 i2c_set_adapdata(&btv
->c
.i2c_adap
, &btv
->c
.v4l2_dev
);
368 btv
->i2c_client
.adapter
= &btv
->c
.i2c_adap
;
371 if (btv
->use_i2c_hw
) {
372 btv
->i2c_rc
= i2c_add_adapter(&btv
->c
.i2c_adap
);
374 bttv_bit_setscl(btv
,1);
375 bttv_bit_setsda(btv
,1);
376 btv
->i2c_rc
= i2c_bit_add_bus(&btv
->c
.i2c_adap
);
378 if (0 == btv
->i2c_rc
&& i2c_scan
)
379 do_i2c_scan(btv
->c
.v4l2_dev
.name
, &btv
->i2c_client
);
384 int fini_bttv_i2c(struct bttv
*btv
)
386 if (btv
->i2c_rc
== 0)
387 i2c_del_adapter(&btv
->c
.i2c_adap
);