2 * i2c-algo-pca.c i2c driver algorithms for PCA9564 adapters
3 * Copyright (C) 2004 Arcom Control Systems
4 * Copyright (C) 2008 Pengutronix
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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/moduleparam.h>
24 #include <linux/delay.h>
25 #include <linux/init.h>
26 #include <linux/errno.h>
27 #include <linux/i2c.h>
28 #include <linux/i2c-algo-pca.h>
30 #define DEB1(fmt, args...) do { if (i2c_debug >= 1) \
31 printk(KERN_DEBUG fmt, ## args); } while (0)
32 #define DEB2(fmt, args...) do { if (i2c_debug >= 2) \
33 printk(KERN_DEBUG fmt, ## args); } while (0)
34 #define DEB3(fmt, args...) do { if (i2c_debug >= 3) \
35 printk(KERN_DEBUG fmt, ## args); } while (0)
39 #define pca_outw(adap, reg, val) adap->write_byte(adap->data, reg, val)
40 #define pca_inw(adap, reg) adap->read_byte(adap->data, reg)
42 #define pca_status(adap) pca_inw(adap, I2C_PCA_STA)
43 #define pca_clock(adap) adap->i2c_clock
44 #define pca_set_con(adap, val) pca_outw(adap, I2C_PCA_CON, val)
45 #define pca_get_con(adap) pca_inw(adap, I2C_PCA_CON)
46 #define pca_wait(adap) adap->wait_for_completion(adap->data)
47 #define pca_reset(adap) adap->reset_chip(adap->data)
50 * Generate a start condition on the i2c bus.
52 * returns after the start condition has occurred
54 static void pca_start(struct i2c_algo_pca_data *adap)
56 int sta = pca_get_con(adap);
58 sta |= I2C_PCA_CON_STA;
59 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI);
60 pca_set_con(adap, sta);
65 * Generate a repeated start condition on the i2c bus
67 * return after the repeated start condition has occurred
69 static void pca_repeated_start(struct i2c_algo_pca_data *adap)
71 int sta = pca_get_con(adap);
72 DEB2("=== REPEATED START\n");
73 sta |= I2C_PCA_CON_STA;
74 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI);
75 pca_set_con(adap, sta);
80 * Generate a stop condition on the i2c bus
82 * returns after the stop condition has been generated
84 * STOPs do not generate an interrupt or set the SI flag, since the
85 * part returns the idle state (0xf8). Hence we don't need to
88 static void pca_stop(struct i2c_algo_pca_data *adap)
90 int sta = pca_get_con(adap);
92 sta |= I2C_PCA_CON_STO;
93 sta &= ~(I2C_PCA_CON_STA|I2C_PCA_CON_SI);
94 pca_set_con(adap, sta);
98 * Send the slave address and R/W bit
100 * returns after the address has been sent
102 static void pca_address(struct i2c_algo_pca_data *adap,
105 int sta = pca_get_con(adap);
108 addr = ( (0x7f & msg->addr) << 1 );
109 if (msg->flags & I2C_M_RD )
111 DEB2("=== SLAVE ADDRESS %#04x+%c=%#04x\n",
112 msg->addr, msg->flags & I2C_M_RD ? 'R' : 'W', addr);
114 pca_outw(adap, I2C_PCA_DAT, addr);
116 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI);
117 pca_set_con(adap, sta);
125 * Returns after the byte has been transmitted
127 static void pca_tx_byte(struct i2c_algo_pca_data *adap,
130 int sta = pca_get_con(adap);
131 DEB2("=== WRITE %#04x\n", b);
132 pca_outw(adap, I2C_PCA_DAT, b);
134 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI);
135 pca_set_con(adap, sta);
143 * returns immediately.
145 static void pca_rx_byte(struct i2c_algo_pca_data *adap,
148 *b = pca_inw(adap, I2C_PCA_DAT);
149 DEB2("=== READ %#04x %s\n", *b, ack ? "ACK" : "NACK");
153 * Setup ACK or NACK for next received byte and wait for it to arrive.
155 * Returns after next byte has arrived.
157 static void pca_rx_ack(struct i2c_algo_pca_data *adap,
160 int sta = pca_get_con(adap);
162 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI|I2C_PCA_CON_AA);
165 sta |= I2C_PCA_CON_AA;
167 pca_set_con(adap, sta);
171 static int pca_xfer(struct i2c_adapter *i2c_adap,
172 struct i2c_msg *msgs,
175 struct i2c_algo_pca_data *adap = i2c_adap->algo_data;
176 struct i2c_msg *msg = NULL;
181 int timeout = i2c_adap->timeout;
183 while ((state = pca_status(adap)) != 0xf8 && timeout--) {
187 dev_dbg(&i2c_adap->dev, "bus is not idle. status is %#04x\n", state);
191 DEB1("{{{ XFER %d messages\n", num);
194 for (curmsg = 0; curmsg < num; curmsg++) {
198 addr = (0x7f & msg->addr) ;
200 if (msg->flags & I2C_M_RD )
201 printk(KERN_INFO " [%02d] RD %d bytes from %#02x [%#02x, ...]\n",
202 curmsg, msg->len, addr, (addr<<1) | 1);
204 printk(KERN_INFO " [%02d] WR %d bytes to %#02x [%#02x%s",
205 curmsg, msg->len, addr, addr<<1,
206 msg->len == 0 ? "" : ", ");
207 for(i=0; i < msg->len; i++)
208 printk("%#04x%s", msg->buf[i], i == msg->len - 1 ? "" : ", ");
216 while (curmsg < num) {
217 state = pca_status(adap);
219 DEB3("STATE is 0x%02x\n", state);
223 case 0xf8: /* On reset or stop the bus is idle */
227 case 0x08: /* A START condition has been transmitted */
228 case 0x10: /* A repeated start condition has been transmitted */
229 pca_address(adap, msg);
232 case 0x18: /* SLA+W has been transmitted; ACK has been received */
233 case 0x28: /* Data byte in I2CDAT has been transmitted; ACK has been received */
234 if (numbytes < msg->len) {
235 pca_tx_byte(adap, msg->buf[numbytes]);
239 curmsg++; numbytes = 0;
243 pca_repeated_start(adap);
246 case 0x20: /* SLA+W has been transmitted; NOT ACK has been received */
247 DEB2("NOT ACK received after SLA+W\n");
251 case 0x40: /* SLA+R has been transmitted; ACK has been received */
252 pca_rx_ack(adap, msg->len > 1);
255 case 0x50: /* Data bytes has been received; ACK has been returned */
256 if (numbytes < msg->len) {
257 pca_rx_byte(adap, &msg->buf[numbytes], 1);
259 pca_rx_ack(adap, numbytes < msg->len - 1);
262 curmsg++; numbytes = 0;
266 pca_repeated_start(adap);
269 case 0x48: /* SLA+R has been transmitted; NOT ACK has been received */
270 DEB2("NOT ACK received after SLA+R\n");
274 case 0x30: /* Data byte in I2CDAT has been transmitted; NOT ACK has been received */
275 DEB2("NOT ACK received after data byte\n");
278 case 0x38: /* Arbitration lost during SLA+W, SLA+R or data bytes */
279 DEB2("Arbitration lost\n");
282 case 0x58: /* Data byte has been received; NOT ACK has been returned */
283 if ( numbytes == msg->len - 1 ) {
284 pca_rx_byte(adap, &msg->buf[numbytes], 0);
285 curmsg++; numbytes = 0;
289 pca_repeated_start(adap);
291 DEB2("NOT ACK sent after data byte received. "
292 "Not final byte. numbytes %d. len %d\n",
298 case 0x70: /* Bus error - SDA stuck low */
299 DEB2("BUS ERROR - SDA Stuck low\n");
302 case 0x90: /* Bus error - SCL stuck low */
303 DEB2("BUS ERROR - SCL Stuck low\n");
306 case 0x00: /* Bus error during master or slave mode due to illegal START or STOP condition */
307 DEB2("BUS ERROR - Illegal START or STOP\n");
311 dev_err(&i2c_adap->dev, "unhandled SIO state 0x%02x\n", state);
319 DEB1("}}} transfered %d/%d messages. "
320 "status is %#04x. control is %#04x\n",
321 curmsg, num, pca_status(adap),
326 static u32 pca_func(struct i2c_adapter *adap)
328 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
331 static const struct i2c_algorithm pca_algo = {
332 .master_xfer = pca_xfer,
333 .functionality = pca_func,
336 static int pca_init(struct i2c_adapter *adap)
338 static int freqs[] = {330,288,217,146,88,59,44,36};
340 struct i2c_algo_pca_data *pca_data = adap->algo_data;
342 if (pca_data->i2c_clock > 7) {
343 printk(KERN_WARNING "%s: Invalid I2C clock speed selected. Trying default.\n",
345 pca_data->i2c_clock = I2C_PCA_CON_59kHz;
348 adap->algo = &pca_algo;
352 clock = pca_clock(pca_data);
353 printk(KERN_INFO "%s: Clock frequency is %dkHz\n", adap->name,
356 pca_set_con(pca_data, I2C_PCA_CON_ENSIO | clock);
357 udelay(500); /* 500 us for oscilator to stabilise */
363 * registering functions to load algorithms at runtime
365 int i2c_pca_add_bus(struct i2c_adapter *adap)
369 rval = pca_init(adap);
373 return i2c_add_adapter(adap);
375 EXPORT_SYMBOL(i2c_pca_add_bus);
377 int i2c_pca_add_numbered_bus(struct i2c_adapter *adap)
381 rval = pca_init(adap);
385 return i2c_add_numbered_adapter(adap);
387 EXPORT_SYMBOL(i2c_pca_add_numbered_bus);
389 MODULE_AUTHOR("Ian Campbell <icampbell@arcom.com>, "
390 "Wolfram Sang <w.sang@pengutronix.de>");
391 MODULE_DESCRIPTION("I2C-Bus PCA9564 algorithm");
392 MODULE_LICENSE("GPL");
394 module_param(i2c_debug, int, 0);