blob: beb9ffe2564bc77ffb474ef1346a49c2600c89a5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Wolfram Sang3d438292008-04-22 22:16:46 +02002 * i2c-algo-pca.c i2c driver algorithms for PCA9564 adapters
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 2004 Arcom Control Systems
Wolfram Sangc01b0832008-04-22 22:16:46 +02004 * Copyright (C) 2008 Pengutronix
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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.
10 *
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.
15 *
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.
19 */
20
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/moduleparam.h>
24#include <linux/delay.h>
Wolfram Sang8e99ada2009-03-28 21:34:45 +010025#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/errno.h>
28#include <linux/i2c.h>
29#include <linux/i2c-algo-pca.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Frank Seidelbac3e7c2009-03-28 21:34:44 +010031#define DEB1(fmt, args...) do { if (i2c_debug >= 1) \
32 printk(KERN_DEBUG fmt, ## args); } while (0)
33#define DEB2(fmt, args...) do { if (i2c_debug >= 2) \
34 printk(KERN_DEBUG fmt, ## args); } while (0)
35#define DEB3(fmt, args...) do { if (i2c_debug >= 3) \
36 printk(KERN_DEBUG fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Jean Delvare60507092005-09-25 16:23:07 +020038static int i2c_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Wolfram Sangc01b0832008-04-22 22:16:46 +020040#define pca_outw(adap, reg, val) adap->write_byte(adap->data, reg, val)
41#define pca_inw(adap, reg) adap->read_byte(adap->data, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#define pca_status(adap) pca_inw(adap, I2C_PCA_STA)
Wolfram Sangc01b0832008-04-22 22:16:46 +020044#define pca_clock(adap) adap->i2c_clock
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define pca_set_con(adap, val) pca_outw(adap, I2C_PCA_CON, val)
46#define pca_get_con(adap) pca_inw(adap, I2C_PCA_CON)
Wolfram Sangc01b0832008-04-22 22:16:46 +020047#define pca_wait(adap) adap->wait_for_completion(adap->data)
48#define pca_reset(adap) adap->reset_chip(adap->data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +010050static void pca9665_reset(void *pd)
51{
52 struct i2c_algo_pca_data *adap = pd;
53 pca_outw(adap, I2C_PCA_INDPTR, I2C_PCA_IPRESET);
54 pca_outw(adap, I2C_PCA_IND, 0xA5);
55 pca_outw(adap, I2C_PCA_IND, 0x5A);
56}
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
59 * Generate a start condition on the i2c bus.
60 *
Steven Cole44bbe872005-05-03 18:21:25 -060061 * returns after the start condition has occurred
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 */
Wolfram Sang2378bc02009-03-28 21:34:45 +010063static int pca_start(struct i2c_algo_pca_data *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
65 int sta = pca_get_con(adap);
66 DEB2("=== START\n");
67 sta |= I2C_PCA_CON_STA;
68 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI);
69 pca_set_con(adap, sta);
Wolfram Sang2378bc02009-03-28 21:34:45 +010070 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
73/*
Tobias Klauser46b615f2005-05-19 22:27:23 +020074 * Generate a repeated start condition on the i2c bus
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *
Steven Cole44bbe872005-05-03 18:21:25 -060076 * return after the repeated start condition has occurred
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
Wolfram Sang2378bc02009-03-28 21:34:45 +010078static int pca_repeated_start(struct i2c_algo_pca_data *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 int sta = pca_get_con(adap);
81 DEB2("=== REPEATED START\n");
82 sta |= I2C_PCA_CON_STA;
83 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI);
84 pca_set_con(adap, sta);
Wolfram Sang2378bc02009-03-28 21:34:45 +010085 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88/*
89 * Generate a stop condition on the i2c bus
90 *
91 * returns after the stop condition has been generated
92 *
93 * STOPs do not generate an interrupt or set the SI flag, since the
Tobias Klauser46b615f2005-05-19 22:27:23 +020094 * part returns the idle state (0xf8). Hence we don't need to
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 * pca_wait here.
96 */
97static void pca_stop(struct i2c_algo_pca_data *adap)
98{
99 int sta = pca_get_con(adap);
100 DEB2("=== STOP\n");
101 sta |= I2C_PCA_CON_STO;
102 sta &= ~(I2C_PCA_CON_STA|I2C_PCA_CON_SI);
103 pca_set_con(adap, sta);
104}
105
106/*
107 * Send the slave address and R/W bit
108 *
109 * returns after the address has been sent
110 */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100111static int pca_address(struct i2c_algo_pca_data *adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200112 struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 int sta = pca_get_con(adap);
115 int addr;
116
Farid Hammane2086ca42010-05-21 18:41:00 +0200117 addr = ((0x7f & msg->addr) << 1);
118 if (msg->flags & I2C_M_RD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 addr |= 1;
Wolfram Sang3d438292008-04-22 22:16:46 +0200120 DEB2("=== SLAVE ADDRESS %#04x+%c=%#04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 msg->addr, msg->flags & I2C_M_RD ? 'R' : 'W', addr);
Wolfram Sang3d438292008-04-22 22:16:46 +0200122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 pca_outw(adap, I2C_PCA_DAT, addr);
124
125 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI);
126 pca_set_con(adap, sta);
127
Wolfram Sang2378bc02009-03-28 21:34:45 +0100128 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
131/*
132 * Transmit a byte.
133 *
134 * Returns after the byte has been transmitted
135 */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100136static int pca_tx_byte(struct i2c_algo_pca_data *adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200137 __u8 b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 int sta = pca_get_con(adap);
140 DEB2("=== WRITE %#04x\n", b);
141 pca_outw(adap, I2C_PCA_DAT, b);
142
143 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI);
144 pca_set_con(adap, sta);
145
Wolfram Sang2378bc02009-03-28 21:34:45 +0100146 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149/*
150 * Receive a byte
151 *
152 * returns immediately.
153 */
Wolfram Sang3d438292008-04-22 22:16:46 +0200154static void pca_rx_byte(struct i2c_algo_pca_data *adap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 __u8 *b, int ack)
156{
157 *b = pca_inw(adap, I2C_PCA_DAT);
158 DEB2("=== READ %#04x %s\n", *b, ack ? "ACK" : "NACK");
159}
160
Wolfram Sang3d438292008-04-22 22:16:46 +0200161/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * Setup ACK or NACK for next received byte and wait for it to arrive.
163 *
164 * Returns after next byte has arrived.
165 */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100166static int pca_rx_ack(struct i2c_algo_pca_data *adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200167 int ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 int sta = pca_get_con(adap);
170
171 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI|I2C_PCA_CON_AA);
172
Farid Hammane2086ca42010-05-21 18:41:00 +0200173 if (ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 sta |= I2C_PCA_CON_AA;
175
176 pca_set_con(adap, sta);
Wolfram Sang2378bc02009-03-28 21:34:45 +0100177 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static int pca_xfer(struct i2c_adapter *i2c_adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200181 struct i2c_msg *msgs,
182 int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Farid Hammane2086ca42010-05-21 18:41:00 +0200184 struct i2c_algo_pca_data *adap = i2c_adap->algo_data;
185 struct i2c_msg *msg = NULL;
186 int curmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 int numbytes = 0;
188 int state;
189 int ret;
Wolfram Sang2378bc02009-03-28 21:34:45 +0100190 int completed = 1;
Wolfram Sang8e99ada2009-03-28 21:34:45 +0100191 unsigned long timeout = jiffies + i2c_adap->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Jean Delvarec454dee2009-04-13 17:02:13 +0200193 while ((state = pca_status(adap)) != 0xf8) {
Wolfram Sang8e99ada2009-03-28 21:34:45 +0100194 if (time_before(jiffies, timeout)) {
195 msleep(10);
196 } else {
197 dev_dbg(&i2c_adap->dev, "bus is not idle. status is "
198 "%#04x\n", state);
Jean Delvare44039882011-10-30 13:47:25 +0100199 return -EBUSY;
Wolfram Sang8e99ada2009-03-28 21:34:45 +0100200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202
203 DEB1("{{{ XFER %d messages\n", num);
204
Farid Hammane2086ca42010-05-21 18:41:00 +0200205 if (i2c_debug >= 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 for (curmsg = 0; curmsg < num; curmsg++) {
207 int addr, i;
208 msg = &msgs[curmsg];
Wolfram Sang3d438292008-04-22 22:16:46 +0200209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 addr = (0x7f & msg->addr) ;
Wolfram Sang3d438292008-04-22 22:16:46 +0200211
Farid Hammane2086ca42010-05-21 18:41:00 +0200212 if (msg->flags & I2C_M_RD)
Wolfram Sang3d438292008-04-22 22:16:46 +0200213 printk(KERN_INFO " [%02d] RD %d bytes from %#02x [%#02x, ...]\n",
Farid Hammane2086ca42010-05-21 18:41:00 +0200214 curmsg, msg->len, addr, (addr << 1) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 else {
Wolfram Sang3d438292008-04-22 22:16:46 +0200216 printk(KERN_INFO " [%02d] WR %d bytes to %#02x [%#02x%s",
Farid Hammane2086ca42010-05-21 18:41:00 +0200217 curmsg, msg->len, addr, addr << 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 msg->len == 0 ? "" : ", ");
Farid Hammane2086ca42010-05-21 18:41:00 +0200219 for (i = 0; i < msg->len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 printk("%#04x%s", msg->buf[i], i == msg->len - 1 ? "" : ", ");
221 printk("]\n");
222 }
223 }
224 }
225
226 curmsg = 0;
Jean Delvare44039882011-10-30 13:47:25 +0100227 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 while (curmsg < num) {
229 state = pca_status(adap);
230
231 DEB3("STATE is 0x%02x\n", state);
232 msg = &msgs[curmsg];
233
234 switch (state) {
235 case 0xf8: /* On reset or stop the bus is idle */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100236 completed = pca_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 break;
238
239 case 0x08: /* A START condition has been transmitted */
240 case 0x10: /* A repeated start condition has been transmitted */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100241 completed = pca_address(adap, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
Wolfram Sang3d438292008-04-22 22:16:46 +0200243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 case 0x18: /* SLA+W has been transmitted; ACK has been received */
245 case 0x28: /* Data byte in I2CDAT has been transmitted; ACK has been received */
246 if (numbytes < msg->len) {
Wolfram Sang2378bc02009-03-28 21:34:45 +0100247 completed = pca_tx_byte(adap,
248 msg->buf[numbytes]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 numbytes++;
250 break;
251 }
252 curmsg++; numbytes = 0;
253 if (curmsg == num)
254 pca_stop(adap);
255 else
Wolfram Sang2378bc02009-03-28 21:34:45 +0100256 completed = pca_repeated_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 break;
258
259 case 0x20: /* SLA+W has been transmitted; NOT ACK has been received */
260 DEB2("NOT ACK received after SLA+W\n");
261 pca_stop(adap);
Jean Delvare44039882011-10-30 13:47:25 +0100262 ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 goto out;
264
265 case 0x40: /* SLA+R has been transmitted; ACK has been received */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100266 completed = pca_rx_ack(adap, msg->len > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 break;
268
269 case 0x50: /* Data bytes has been received; ACK has been returned */
270 if (numbytes < msg->len) {
271 pca_rx_byte(adap, &msg->buf[numbytes], 1);
272 numbytes++;
Wolfram Sang2378bc02009-03-28 21:34:45 +0100273 completed = pca_rx_ack(adap,
274 numbytes < msg->len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 break;
276 }
277 curmsg++; numbytes = 0;
278 if (curmsg == num)
279 pca_stop(adap);
280 else
Wolfram Sang2378bc02009-03-28 21:34:45 +0100281 completed = pca_repeated_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 break;
283
284 case 0x48: /* SLA+R has been transmitted; NOT ACK has been received */
285 DEB2("NOT ACK received after SLA+R\n");
286 pca_stop(adap);
Jean Delvare44039882011-10-30 13:47:25 +0100287 ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 goto out;
289
290 case 0x30: /* Data byte in I2CDAT has been transmitted; NOT ACK has been received */
291 DEB2("NOT ACK received after data byte\n");
Enrik Berkhan2196d1c2009-05-05 08:39:25 +0200292 pca_stop(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 goto out;
294
295 case 0x38: /* Arbitration lost during SLA+W, SLA+R or data bytes */
296 DEB2("Arbitration lost\n");
Enrik Berkhan2196d1c2009-05-05 08:39:25 +0200297 /*
298 * The PCA9564 data sheet (2006-09-01) says "A
299 * START condition will be transmitted when the
300 * bus becomes free (STOP or SCL and SDA high)"
301 * when the STA bit is set (p. 11).
302 *
303 * In case this won't work, try pca_reset()
304 * instead.
305 */
306 pca_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 goto out;
Wolfram Sang3d438292008-04-22 22:16:46 +0200308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 case 0x58: /* Data byte has been received; NOT ACK has been returned */
Farid Hammane2086ca42010-05-21 18:41:00 +0200310 if (numbytes == msg->len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 pca_rx_byte(adap, &msg->buf[numbytes], 0);
312 curmsg++; numbytes = 0;
313 if (curmsg == num)
314 pca_stop(adap);
315 else
Wolfram Sang2378bc02009-03-28 21:34:45 +0100316 completed = pca_repeated_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 } else {
318 DEB2("NOT ACK sent after data byte received. "
319 "Not final byte. numbytes %d. len %d\n",
320 numbytes, msg->len);
321 pca_stop(adap);
322 goto out;
323 }
324 break;
325 case 0x70: /* Bus error - SDA stuck low */
326 DEB2("BUS ERROR - SDA Stuck low\n");
327 pca_reset(adap);
328 goto out;
329 case 0x90: /* Bus error - SCL stuck low */
330 DEB2("BUS ERROR - SCL Stuck low\n");
331 pca_reset(adap);
332 goto out;
333 case 0x00: /* Bus error during master or slave mode due to illegal START or STOP condition */
334 DEB2("BUS ERROR - Illegal START or STOP\n");
335 pca_reset(adap);
336 goto out;
337 default:
Wolfram Sangc01b0832008-04-22 22:16:46 +0200338 dev_err(&i2c_adap->dev, "unhandled SIO state 0x%02x\n", state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 break;
340 }
Wolfram Sang3d438292008-04-22 22:16:46 +0200341
Wolfram Sang2378bc02009-03-28 21:34:45 +0100342 if (!completed)
343 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
346 ret = curmsg;
347 out:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300348 DEB1("}}} transferred %d/%d messages. "
Wolfram Sang3d438292008-04-22 22:16:46 +0200349 "status is %#04x. control is %#04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 curmsg, num, pca_status(adap),
351 pca_get_con(adap));
352 return ret;
353}
354
355static u32 pca_func(struct i2c_adapter *adap)
356{
Farid Hammane2086ca42010-05-21 18:41:00 +0200357 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Jean Delvare9e11a9f2006-09-03 22:38:52 +0200360static const struct i2c_algorithm pca_algo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 .master_xfer = pca_xfer,
362 .functionality = pca_func,
363};
364
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100365static unsigned int pca_probe_chip(struct i2c_adapter *adap)
366{
367 struct i2c_algo_pca_data *pca_data = adap->algo_data;
368 /* The trick here is to check if there is an indirect register
369 * available. If there is one, we will read the value we first
370 * wrote on I2C_PCA_IADR. Otherwise, we will read the last value
371 * we wrote on I2C_PCA_ADR
372 */
373 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_IADR);
374 pca_outw(pca_data, I2C_PCA_IND, 0xAA);
375 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_ITO);
376 pca_outw(pca_data, I2C_PCA_IND, 0x00);
377 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_IADR);
378 if (pca_inw(pca_data, I2C_PCA_IND) == 0xAA) {
379 printk(KERN_INFO "%s: PCA9665 detected.\n", adap->name);
380 return I2C_PCA_CHIP_9665;
381 } else {
382 printk(KERN_INFO "%s: PCA9564 detected.\n", adap->name);
383 return I2C_PCA_CHIP_9564;
384 }
385}
386
Wolfram Sangc01b0832008-04-22 22:16:46 +0200387static int pca_init(struct i2c_adapter *adap)
388{
Wolfram Sangc01b0832008-04-22 22:16:46 +0200389 struct i2c_algo_pca_data *pca_data = adap->algo_data;
390
Wolfram Sangc01b0832008-04-22 22:16:46 +0200391 adap->algo = &pca_algo;
392
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100393 if (pca_probe_chip(adap) == I2C_PCA_CHIP_9564) {
394 static int freqs[] = {330, 288, 217, 146, 88, 59, 44, 36};
395 int clock;
Wolfram Sangc01b0832008-04-22 22:16:46 +0200396
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100397 if (pca_data->i2c_clock > 7) {
398 switch (pca_data->i2c_clock) {
399 case 330000:
400 pca_data->i2c_clock = I2C_PCA_CON_330kHz;
401 break;
402 case 288000:
403 pca_data->i2c_clock = I2C_PCA_CON_288kHz;
404 break;
405 case 217000:
406 pca_data->i2c_clock = I2C_PCA_CON_217kHz;
407 break;
408 case 146000:
409 pca_data->i2c_clock = I2C_PCA_CON_146kHz;
410 break;
411 case 88000:
412 pca_data->i2c_clock = I2C_PCA_CON_88kHz;
413 break;
414 case 59000:
415 pca_data->i2c_clock = I2C_PCA_CON_59kHz;
416 break;
417 case 44000:
418 pca_data->i2c_clock = I2C_PCA_CON_44kHz;
419 break;
420 case 36000:
421 pca_data->i2c_clock = I2C_PCA_CON_36kHz;
422 break;
423 default:
424 printk(KERN_WARNING
425 "%s: Invalid I2C clock speed selected."
426 " Using default 59kHz.\n", adap->name);
427 pca_data->i2c_clock = I2C_PCA_CON_59kHz;
428 }
429 } else {
430 printk(KERN_WARNING "%s: "
431 "Choosing the clock frequency based on "
432 "index is deprecated."
433 " Use the nominal frequency.\n", adap->name);
434 }
Wolfram Sangc01b0832008-04-22 22:16:46 +0200435
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100436 pca_reset(pca_data);
437
438 clock = pca_clock(pca_data);
439 printk(KERN_INFO "%s: Clock frequency is %dkHz\n",
440 adap->name, freqs[clock]);
441
442 pca_set_con(pca_data, I2C_PCA_CON_ENSIO | clock);
443 } else {
444 int clock;
445 int mode;
446 int tlow, thi;
447 /* Values can be found on PCA9665 datasheet section 7.3.2.6 */
448 int min_tlow, min_thi;
449 /* These values are the maximum raise and fall values allowed
450 * by the I2C operation mode (Standard, Fast or Fast+)
451 * They are used (added) below to calculate the clock dividers
452 * of PCA9665. Note that they are slightly different of the
453 * real maximum, to allow the change on mode exactly on the
454 * maximum clock rate for each mode
455 */
456 int raise_fall_time;
457
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100458 /* Ignore the reset function from the module,
459 * we can use the parallel bus reset
460 */
461 pca_data->reset_chip = pca9665_reset;
462
463 if (pca_data->i2c_clock > 1265800) {
464 printk(KERN_WARNING "%s: I2C clock speed too high."
465 " Using 1265.8kHz.\n", adap->name);
466 pca_data->i2c_clock = 1265800;
467 }
468
469 if (pca_data->i2c_clock < 60300) {
470 printk(KERN_WARNING "%s: I2C clock speed too low."
471 " Using 60.3kHz.\n", adap->name);
472 pca_data->i2c_clock = 60300;
473 }
474
475 /* To avoid integer overflow, use clock/100 for calculations */
476 clock = pca_clock(pca_data) / 100;
477
478 if (pca_data->i2c_clock > 10000) {
479 mode = I2C_PCA_MODE_TURBO;
480 min_tlow = 14;
481 min_thi = 5;
482 raise_fall_time = 22; /* Raise 11e-8s, Fall 11e-8s */
483 } else if (pca_data->i2c_clock > 4000) {
484 mode = I2C_PCA_MODE_FASTP;
485 min_tlow = 17;
486 min_thi = 9;
487 raise_fall_time = 22; /* Raise 11e-8s, Fall 11e-8s */
488 } else if (pca_data->i2c_clock > 1000) {
489 mode = I2C_PCA_MODE_FAST;
490 min_tlow = 44;
491 min_thi = 20;
492 raise_fall_time = 58; /* Raise 29e-8s, Fall 29e-8s */
493 } else {
494 mode = I2C_PCA_MODE_STD;
495 min_tlow = 157;
496 min_thi = 134;
497 raise_fall_time = 127; /* Raise 29e-8s, Fall 98e-8s */
498 }
499
500 /* The minimum clock that respects the thi/tlow = 134/157 is
501 * 64800 Hz. Below that, we have to fix the tlow to 255 and
502 * calculate the thi factor.
503 */
504 if (clock < 648) {
505 tlow = 255;
506 thi = 1000000 - clock * raise_fall_time;
507 thi /= (I2C_PCA_OSC_PER * clock) - tlow;
508 } else {
509 tlow = (1000000 - clock * raise_fall_time) * min_tlow;
510 tlow /= I2C_PCA_OSC_PER * clock * (min_thi + min_tlow);
511 thi = tlow * min_thi / min_tlow;
512 }
513
514 pca_reset(pca_data);
515
516 printk(KERN_INFO
517 "%s: Clock frequency is %dHz\n", adap->name, clock * 100);
518
519 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_IMODE);
520 pca_outw(pca_data, I2C_PCA_IND, mode);
521 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_ISCLL);
522 pca_outw(pca_data, I2C_PCA_IND, tlow);
523 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_ISCLH);
524 pca_outw(pca_data, I2C_PCA_IND, thi);
525
526 pca_set_con(pca_data, I2C_PCA_CON_ENSIO);
527 }
Wolfram Sangc01b0832008-04-22 22:16:46 +0200528 udelay(500); /* 500 us for oscilator to stabilise */
529
530 return 0;
531}
532
Wolfram Sang3d438292008-04-22 22:16:46 +0200533/*
534 * registering functions to load algorithms at runtime
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
536int i2c_pca_add_bus(struct i2c_adapter *adap)
537{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 int rval;
539
Wolfram Sangc01b0832008-04-22 22:16:46 +0200540 rval = pca_init(adap);
541 if (rval)
Mark M. Hoffmanb39ad0c2006-07-01 17:16:06 +0200542 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Wolfram Sangc01b0832008-04-22 22:16:46 +0200544 return i2c_add_adapter(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546EXPORT_SYMBOL(i2c_pca_add_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Wolfram Sangc01b0832008-04-22 22:16:46 +0200548int i2c_pca_add_numbered_bus(struct i2c_adapter *adap)
549{
550 int rval;
551
552 rval = pca_init(adap);
553 if (rval)
554 return rval;
555
556 return i2c_add_numbered_adapter(adap);
557}
558EXPORT_SYMBOL(i2c_pca_add_numbered_bus);
559
560MODULE_AUTHOR("Ian Campbell <icampbell@arcom.com>, "
561 "Wolfram Sang <w.sang@pengutronix.de>");
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100562MODULE_DESCRIPTION("I2C-Bus PCA9564/PCA9665 algorithm");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563MODULE_LICENSE("GPL");
564
565module_param(i2c_debug, int, 0);