2 * Driver for the Auvitek AU0828 USB bridge
4 * Copyright (c) 2008 Steven Toth <stoth@linuxtv.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/module.h>
23 #include <linux/moduleparam.h>
24 #include <linux/init.h>
25 #include <linux/delay.h>
29 #include "media/tuner.h"
30 #include <media/v4l2-common.h>
33 module_param(i2c_scan
, int, 0444);
34 MODULE_PARM_DESC(i2c_scan
, "scan i2c bus at insmod time");
36 #define I2C_WAIT_DELAY 25
37 #define I2C_WAIT_RETRY 1000
39 static inline int i2c_slave_did_write_ack(struct i2c_adapter
*i2c_adap
)
41 struct au0828_dev
*dev
= i2c_adap
->algo_data
;
42 return au0828_read(dev
, AU0828_I2C_STATUS_201
) &
43 AU0828_I2C_STATUS_NO_WRITE_ACK
? 0 : 1;
46 static inline int i2c_slave_did_read_ack(struct i2c_adapter
*i2c_adap
)
48 struct au0828_dev
*dev
= i2c_adap
->algo_data
;
49 return au0828_read(dev
, AU0828_I2C_STATUS_201
) &
50 AU0828_I2C_STATUS_NO_READ_ACK
? 0 : 1;
53 static int i2c_wait_read_ack(struct i2c_adapter
*i2c_adap
)
57 for (count
= 0; count
< I2C_WAIT_RETRY
; count
++) {
58 if (!i2c_slave_did_read_ack(i2c_adap
))
60 udelay(I2C_WAIT_DELAY
);
63 if (I2C_WAIT_RETRY
== count
)
69 static inline int i2c_is_read_busy(struct i2c_adapter
*i2c_adap
)
71 struct au0828_dev
*dev
= i2c_adap
->algo_data
;
72 return au0828_read(dev
, AU0828_I2C_STATUS_201
) &
73 AU0828_I2C_STATUS_READ_DONE
? 0 : 1;
76 static int i2c_wait_read_done(struct i2c_adapter
*i2c_adap
)
80 for (count
= 0; count
< I2C_WAIT_RETRY
; count
++) {
81 if (!i2c_is_read_busy(i2c_adap
))
83 udelay(I2C_WAIT_DELAY
);
86 if (I2C_WAIT_RETRY
== count
)
92 static inline int i2c_is_write_done(struct i2c_adapter
*i2c_adap
)
94 struct au0828_dev
*dev
= i2c_adap
->algo_data
;
95 return au0828_read(dev
, AU0828_I2C_STATUS_201
) &
96 AU0828_I2C_STATUS_WRITE_DONE
? 1 : 0;
99 static int i2c_wait_write_done(struct i2c_adapter
*i2c_adap
)
103 for (count
= 0; count
< I2C_WAIT_RETRY
; count
++) {
104 if (i2c_is_write_done(i2c_adap
))
106 udelay(I2C_WAIT_DELAY
);
109 if (I2C_WAIT_RETRY
== count
)
115 static inline int i2c_is_busy(struct i2c_adapter
*i2c_adap
)
117 struct au0828_dev
*dev
= i2c_adap
->algo_data
;
118 return au0828_read(dev
, AU0828_I2C_STATUS_201
) &
119 AU0828_I2C_STATUS_BUSY
? 1 : 0;
122 static int i2c_wait_done(struct i2c_adapter
*i2c_adap
)
126 for (count
= 0; count
< I2C_WAIT_RETRY
; count
++) {
127 if (!i2c_is_busy(i2c_adap
))
129 udelay(I2C_WAIT_DELAY
);
132 if (I2C_WAIT_RETRY
== count
)
138 /* FIXME: Implement join handling correctly */
139 static int i2c_sendbytes(struct i2c_adapter
*i2c_adap
,
140 const struct i2c_msg
*msg
, int joined_rlen
)
143 struct au0828_dev
*dev
= i2c_adap
->algo_data
;
145 dprintk(4, "%s()\n", __func__
);
147 au0828_write(dev
, AU0828_I2C_MULTIBYTE_MODE_2FF
, 0x01);
149 /* Set the I2C clock */
150 if (((dev
->board
.tuner_type
== TUNER_XC5000
) ||
151 (dev
->board
.tuner_type
== TUNER_XC5000C
)) &&
152 (dev
->board
.tuner_addr
== msg
->addr
) &&
154 /* Hack to speed up firmware load. The xc5000 lets us do up
155 to 400 KHz when in firmware download mode */
156 au0828_write(dev
, AU0828_I2C_CLK_DIVIDER_202
,
157 AU0828_I2C_CLK_250KHZ
);
159 /* Use the i2c clock speed in the board configuration */
160 au0828_write(dev
, AU0828_I2C_CLK_DIVIDER_202
,
161 dev
->board
.i2c_clk_divider
);
164 /* Hardware needs 8 bit addresses */
165 au0828_write(dev
, AU0828_I2C_DEST_ADDR_203
, msg
->addr
<< 1);
167 dprintk(4, "SEND: %02x\n", msg
->addr
);
169 /* Deal with i2c_scan */
171 /* The analog tuner detection code makes use of the SMBUS_QUICK
172 message (which involves a zero length i2c write). To avoid
173 checking the status register when we didn't strobe out any
174 actual bytes to the bus, just do a read check. This is
175 consistent with how I saw i2c device checking done in the
176 USB trace of the Windows driver */
177 au0828_write(dev
, AU0828_I2C_TRIGGER_200
,
178 AU0828_I2C_TRIGGER_READ
);
180 if (!i2c_wait_done(i2c_adap
))
183 if (i2c_wait_read_ack(i2c_adap
))
189 for (i
= 0; i
< msg
->len
;) {
191 dprintk(4, " %02x\n", msg
->buf
[i
]);
193 au0828_write(dev
, AU0828_I2C_WRITE_FIFO_205
, msg
->buf
[i
]);
198 if ((strobe
>= 4) || (i
>= msg
->len
)) {
200 /* Strobe the byte into the bus */
202 au0828_write(dev
, AU0828_I2C_TRIGGER_200
,
203 AU0828_I2C_TRIGGER_WRITE
|
204 AU0828_I2C_TRIGGER_HOLD
);
206 au0828_write(dev
, AU0828_I2C_TRIGGER_200
,
207 AU0828_I2C_TRIGGER_WRITE
);
209 /* Reset strobe trigger */
212 if (!i2c_wait_write_done(i2c_adap
))
218 if (!i2c_wait_done(i2c_adap
))
226 /* FIXME: Implement join handling correctly */
227 static int i2c_readbytes(struct i2c_adapter
*i2c_adap
,
228 const struct i2c_msg
*msg
, int joined
)
230 struct au0828_dev
*dev
= i2c_adap
->algo_data
;
233 dprintk(4, "%s()\n", __func__
);
235 au0828_write(dev
, AU0828_I2C_MULTIBYTE_MODE_2FF
, 0x01);
237 /* Set the I2C clock */
238 au0828_write(dev
, AU0828_I2C_CLK_DIVIDER_202
,
239 dev
->board
.i2c_clk_divider
);
241 /* Hardware needs 8 bit addresses */
242 au0828_write(dev
, AU0828_I2C_DEST_ADDR_203
, msg
->addr
<< 1);
244 dprintk(4, " RECV:\n");
246 /* Deal with i2c_scan */
248 au0828_write(dev
, AU0828_I2C_TRIGGER_200
,
249 AU0828_I2C_TRIGGER_READ
);
251 if (i2c_wait_read_ack(i2c_adap
))
256 for (i
= 0; i
< msg
->len
;) {
261 au0828_write(dev
, AU0828_I2C_TRIGGER_200
,
262 AU0828_I2C_TRIGGER_READ
|
263 AU0828_I2C_TRIGGER_HOLD
);
265 au0828_write(dev
, AU0828_I2C_TRIGGER_200
,
266 AU0828_I2C_TRIGGER_READ
);
268 if (!i2c_wait_read_done(i2c_adap
))
271 msg
->buf
[i
-1] = au0828_read(dev
, AU0828_I2C_READ_FIFO_209
) &
274 dprintk(4, " %02x\n", msg
->buf
[i
-1]);
276 if (!i2c_wait_done(i2c_adap
))
284 static int i2c_xfer(struct i2c_adapter
*i2c_adap
,
285 struct i2c_msg
*msgs
, int num
)
289 dprintk(4, "%s(num = %d)\n", __func__
, num
);
291 for (i
= 0; i
< num
; i
++) {
292 dprintk(4, "%s(num = %d) addr = 0x%02x len = 0x%x\n",
293 __func__
, num
, msgs
[i
].addr
, msgs
[i
].len
);
294 if (msgs
[i
].flags
& I2C_M_RD
) {
296 retval
= i2c_readbytes(i2c_adap
, &msgs
[i
], 0);
297 } else if (i
+ 1 < num
&& (msgs
[i
+ 1].flags
& I2C_M_RD
) &&
298 msgs
[i
].addr
== msgs
[i
+ 1].addr
) {
299 /* write then read from same address */
300 retval
= i2c_sendbytes(i2c_adap
, &msgs
[i
],
305 retval
= i2c_readbytes(i2c_adap
, &msgs
[i
], 1);
308 retval
= i2c_sendbytes(i2c_adap
, &msgs
[i
], 0);
319 static u32
au0828_functionality(struct i2c_adapter
*adap
)
321 return I2C_FUNC_SMBUS_EMUL
| I2C_FUNC_I2C
;
324 static struct i2c_algorithm au0828_i2c_algo_template
= {
325 .master_xfer
= i2c_xfer
,
326 .functionality
= au0828_functionality
,
329 /* ----------------------------------------------------------------------- */
331 static struct i2c_adapter au0828_i2c_adap_template
= {
333 .owner
= THIS_MODULE
,
334 .algo
= &au0828_i2c_algo_template
,
337 static struct i2c_client au0828_i2c_client_template
= {
338 .name
= "au0828 internal",
341 static char *i2c_devs
[128] = {
342 [0x8e >> 1] = "au8522",
343 [0xa0 >> 1] = "eeprom",
344 [0xc2 >> 1] = "tuner/xc5000",
347 static void do_i2c_scan(char *name
, struct i2c_client
*c
)
352 for (i
= 0; i
< 128; i
++) {
354 rc
= i2c_master_recv(c
, &buf
, 0);
357 printk(KERN_INFO
"%s: i2c scan: found device @ 0x%x [%s]\n",
358 name
, i
<< 1, i2c_devs
[i
] ? i2c_devs
[i
] : "???");
362 /* init + register i2c adapter */
363 int au0828_i2c_register(struct au0828_dev
*dev
)
365 dprintk(1, "%s()\n", __func__
);
367 dev
->i2c_adap
= au0828_i2c_adap_template
;
368 dev
->i2c_algo
= au0828_i2c_algo_template
;
369 dev
->i2c_client
= au0828_i2c_client_template
;
371 dev
->i2c_adap
.dev
.parent
= &dev
->usbdev
->dev
;
373 strlcpy(dev
->i2c_adap
.name
, DRIVER_NAME
,
374 sizeof(dev
->i2c_adap
.name
));
376 dev
->i2c_adap
.algo
= &dev
->i2c_algo
;
377 dev
->i2c_adap
.algo_data
= dev
;
378 #ifdef CONFIG_VIDEO_AU0828_V4L2
379 i2c_set_adapdata(&dev
->i2c_adap
, &dev
->v4l2_dev
);
381 i2c_set_adapdata(&dev
->i2c_adap
, dev
);
383 i2c_add_adapter(&dev
->i2c_adap
);
385 dev
->i2c_client
.adapter
= &dev
->i2c_adap
;
387 if (0 == dev
->i2c_rc
) {
388 printk(KERN_INFO
"%s: i2c bus registered\n", DRIVER_NAME
);
390 do_i2c_scan(DRIVER_NAME
, &dev
->i2c_client
);
392 printk(KERN_INFO
"%s: i2c bus register FAILED\n", DRIVER_NAME
);
397 int au0828_i2c_unregister(struct au0828_dev
*dev
)
399 i2c_del_adapter(&dev
->i2c_adap
);