2 * Driver for the Conexant CX23885 PCIe bridge
4 * Copyright (c) 2006 Steven Toth <stoth@hauppauge.com>
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>
30 #include <media/v4l2-common.h>
32 static unsigned int i2c_debug = 0;
33 module_param(i2c_debug, int, 0644);
34 MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]");
36 static unsigned int i2c_scan = 0;
37 module_param(i2c_scan, int, 0444);
38 MODULE_PARM_DESC(i2c_scan, "scan i2c bus at insmod time");
40 #define dprintk(level,fmt, arg...) if (i2c_debug >= level) \
41 printk(KERN_DEBUG "%s: " fmt, dev->name , ## arg)
43 #define I2C_WAIT_DELAY 32
44 #define I2C_WAIT_RETRY 64
46 #define I2C_EXTEND (1 << 3)
47 #define I2C_NOSTOP (1 << 4)
49 static inline int i2c_slave_did_ack(struct i2c_adapter *i2c_adap)
51 struct cx23885_i2c *bus = i2c_adap->algo_data;
52 struct cx23885_dev *dev = bus->dev;
53 return cx_read(bus->reg_stat) & 0x01;
56 static inline int i2c_is_busy(struct i2c_adapter *i2c_adap)
58 struct cx23885_i2c *bus = i2c_adap->algo_data;
59 struct cx23885_dev *dev = bus->dev;
60 return cx_read(bus->reg_stat) & 0x02 ? 1 : 0;
63 static int i2c_wait_done(struct i2c_adapter *i2c_adap)
67 for (count = 0; count < I2C_WAIT_RETRY; count++) {
68 if (!i2c_is_busy(i2c_adap))
70 udelay(I2C_WAIT_DELAY);
73 if (I2C_WAIT_RETRY == count)
79 static int i2c_sendbytes(struct i2c_adapter *i2c_adap,
80 const struct i2c_msg *msg, int last)
82 struct cx23885_i2c *bus = i2c_adap->algo_data;
83 struct cx23885_dev *dev = bus->dev;
84 u32 wdata, addr, ctrl;
87 dprintk(1, "%s()\n", __FUNCTION__);
88 /* Deal with i2c probe functions with zero payload */
90 cx_write(bus->reg_addr, msg->addr << 25);
91 cx_write(bus->reg_ctrl, bus->i2c_period | (1 << 2));
92 if (!i2c_wait_done(i2c_adap))
94 if (!i2c_slave_did_ack(i2c_adap))
97 dprintk(1, "%s() returns 0\n", __FUNCTION__);
102 /* dev, reg + first byte */
103 addr = (msg->addr << 25) | msg->buf[0];
105 ctrl = bus->i2c_period | (1 << 12) | (1 << 2);
108 ctrl |= I2C_NOSTOP | I2C_EXTEND;
110 cx_write(bus->reg_addr, addr);
111 cx_write(bus->reg_wdata, wdata);
112 cx_write(bus->reg_ctrl, ctrl);
114 retval = i2c_wait_done(i2c_adap);
120 printk(" <W %02x %02x", msg->addr << 1, msg->buf[0]);
121 if (!(ctrl & I2C_NOSTOP))
125 for (cnt = 1; cnt < msg->len; cnt++ ) {
126 /* following bytes */
127 wdata = msg->buf[cnt];
128 ctrl = bus->i2c_period | (1 << 12) | (1 << 2);
130 if (cnt < msg->len-1 || !last)
131 ctrl |= I2C_NOSTOP | I2C_EXTEND;
133 cx_write(bus->reg_addr, addr);
134 cx_write(bus->reg_wdata, wdata);
135 cx_write(bus->reg_ctrl, ctrl);
137 retval = i2c_wait_done(i2c_adap);
143 printk(" %02x", msg->buf[cnt]);
144 if (!(ctrl & I2C_NOSTOP))
153 printk(" ERR: %d\n", retval);
157 static int i2c_readbytes(struct i2c_adapter *i2c_adap,
158 const struct i2c_msg *msg, int last)
160 struct cx23885_i2c *bus = i2c_adap->algo_data;
161 struct cx23885_dev *dev = bus->dev;
165 dprintk(1, "%s()\n", __FUNCTION__);
167 /* Deal with i2c probe functions with zero payload */
169 cx_write(bus->reg_addr, msg->addr << 25);
170 cx_write(bus->reg_ctrl, bus->i2c_period | (1 << 2) | 1);
171 if (!i2c_wait_done(i2c_adap))
173 if (!i2c_slave_did_ack(i2c_adap))
177 dprintk(1, "%s() returns 0\n", __FUNCTION__);
181 for(cnt = 0; cnt < msg->len; cnt++) {
183 ctrl = bus->i2c_period | (1 << 12) | (1 << 2) | 1;
185 if (cnt < msg->len-1 || !last)
186 ctrl |= I2C_NOSTOP | I2C_EXTEND;
188 cx_write(bus->reg_addr, msg->addr << 25);
189 cx_write(bus->reg_ctrl, ctrl);
191 retval = i2c_wait_done(i2c_adap);
196 msg->buf[cnt] = cx_read(bus->reg_rdata) & 0xff;
198 if (!(ctrl & I2C_NOSTOP))
199 printk(" <R %02x", (msg->addr << 1) +1);
200 printk(" =%02x", msg->buf[cnt]);
201 if (!(ctrl & I2C_NOSTOP))
210 printk(" ERR: %d\n", retval);
214 static int i2c_xfer(struct i2c_adapter *i2c_adap,
215 struct i2c_msg *msgs, int num)
217 struct cx23885_i2c *bus = i2c_adap->algo_data;
218 struct cx23885_dev *dev = bus->dev;
221 dprintk(1, "%s(num = %d)\n", __FUNCTION__, num);
223 for (i = 0 ; i < num; i++) {
224 dprintk(1, "%s(num = %d) addr = 0x%02x len = 0x%x\n",
225 __FUNCTION__, num, msgs[i].addr, msgs[i].len);
226 if (msgs[i].flags & I2C_M_RD) {
228 retval = i2c_readbytes(i2c_adap, &msgs[i], i+1 == num);
233 retval = i2c_sendbytes(i2c_adap, &msgs[i], i+1 == num);
244 static int attach_inform(struct i2c_client *client)
246 struct cx23885_dev *dev = i2c_get_adapdata(client->adapter);
248 dprintk(1, "%s i2c attach [addr=0x%x,client=%s]\n",
249 client->driver->driver.name, client->addr, client->name);
251 if (!client->driver->command)
257 static int detach_inform(struct i2c_client *client)
259 struct cx23885_dev *dev = i2c_get_adapdata(client->adapter);
261 dprintk(1, "i2c detach [client=%s]\n", client->name);
266 void cx23885_call_i2c_clients(struct cx23885_i2c *bus,
267 unsigned int cmd, void *arg)
269 if (bus->i2c_rc != 0)
272 i2c_clients_command(&bus->i2c_adap, cmd, arg);
275 static u32 cx23885_functionality(struct i2c_adapter *adap)
277 return I2C_FUNC_SMBUS_EMUL | I2C_FUNC_I2C;
280 static struct i2c_algorithm cx23885_i2c_algo_template = {
281 .master_xfer = i2c_xfer,
282 .functionality = cx23885_functionality,
285 /* ----------------------------------------------------------------------- */
287 static struct i2c_adapter cx23885_i2c_adap_template = {
289 .owner = THIS_MODULE,
290 .id = I2C_HW_B_CX23885,
291 .algo = &cx23885_i2c_algo_template,
292 .client_register = attach_inform,
293 .client_unregister = detach_inform,
296 static struct i2c_client cx23885_i2c_client_template = {
297 .name = "cx23885 internal",
300 static char *i2c_devs[128] = {
301 [ 0x1c >> 1 ] = "lgdt3303",
302 [ 0x86 >> 1 ] = "tda9887",
303 [ 0x32 >> 1 ] = "cx24227",
304 [ 0x88 >> 1 ] = "cx25837",
305 [ 0x84 >> 1 ] = "tda8295",
306 [ 0xa0 >> 1 ] = "eeprom",
307 [ 0xc0 >> 1 ] = "tuner/mt2131/tda8275",
308 [ 0xc2 >> 1 ] = "tuner/mt2131/tda8275",
311 static void do_i2c_scan(char *name, struct i2c_client *c)
316 for (i = 0; i < 128; i++) {
318 rc = i2c_master_recv(c, &buf, 0);
321 printk("%s: i2c scan: found device @ 0x%x [%s]\n",
322 name, i << 1, i2c_devs[i] ? i2c_devs[i] : "???");
326 /* init + register i2c algo-bit adapter */
327 int cx23885_i2c_register(struct cx23885_i2c *bus)
329 struct cx23885_dev *dev = bus->dev;
331 dprintk(1, "%s(bus = %d)\n", __FUNCTION__, bus->nr);
333 memcpy(&bus->i2c_adap, &cx23885_i2c_adap_template,
334 sizeof(bus->i2c_adap));
335 memcpy(&bus->i2c_algo, &cx23885_i2c_algo_template,
336 sizeof(bus->i2c_algo));
337 memcpy(&bus->i2c_client, &cx23885_i2c_client_template,
338 sizeof(bus->i2c_client));
340 bus->i2c_adap.dev.parent = &dev->pci->dev;
342 strlcpy(bus->i2c_adap.name, bus->dev->name,
343 sizeof(bus->i2c_adap.name));
345 bus->i2c_algo.data = bus;
346 bus->i2c_adap.algo_data = bus;
347 i2c_add_adapter(&bus->i2c_adap);
349 bus->i2c_client.adapter = &bus->i2c_adap;
351 if (0 == bus->i2c_rc) {
352 printk("%s: i2c bus %d registered\n", dev->name, bus->nr);
354 do_i2c_scan(dev->name, &bus->i2c_client);
356 printk("%s: i2c bus %d register FAILED\n", dev->name, bus->nr);
361 int cx23885_i2c_unregister(struct cx23885_i2c *bus)
363 i2c_del_adapter(&bus->i2c_adap);
367 /* ----------------------------------------------------------------------- */
369 EXPORT_SYMBOL(cx23885_call_i2c_clients);