blob: 73133b1063f012416d2a957f3fc2432ace395439 [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
Jean Delvare5694f8a2012-03-26 21:47:19 +020018 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 * MA 02110-1301 USA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/delay.h>
Wolfram Sang8e99ada2009-03-28 21:34:45 +010026#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
28#include <linux/errno.h>
29#include <linux/i2c.h>
30#include <linux/i2c-algo-pca.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Frank Seidelbac3e7c2009-03-28 21:34:44 +010032#define DEB1(fmt, args...) do { if (i2c_debug >= 1) \
33 printk(KERN_DEBUG fmt, ## args); } while (0)
34#define DEB2(fmt, args...) do { if (i2c_debug >= 2) \
35 printk(KERN_DEBUG fmt, ## args); } while (0)
36#define DEB3(fmt, args...) do { if (i2c_debug >= 3) \
37 printk(KERN_DEBUG fmt, ## args); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Jean Delvare60507092005-09-25 16:23:07 +020039static int i2c_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Wolfram Sangc01b0832008-04-22 22:16:46 +020041#define pca_outw(adap, reg, val) adap->write_byte(adap->data, reg, val)
42#define pca_inw(adap, reg) adap->read_byte(adap->data, reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#define pca_status(adap) pca_inw(adap, I2C_PCA_STA)
Wolfram Sangc01b0832008-04-22 22:16:46 +020045#define pca_clock(adap) adap->i2c_clock
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define pca_set_con(adap, val) pca_outw(adap, I2C_PCA_CON, val)
47#define pca_get_con(adap) pca_inw(adap, I2C_PCA_CON)
Wolfram Sangc01b0832008-04-22 22:16:46 +020048#define pca_wait(adap) adap->wait_for_completion(adap->data)
49#define pca_reset(adap) adap->reset_chip(adap->data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +010051static void pca9665_reset(void *pd)
52{
53 struct i2c_algo_pca_data *adap = pd;
54 pca_outw(adap, I2C_PCA_INDPTR, I2C_PCA_IPRESET);
55 pca_outw(adap, I2C_PCA_IND, 0xA5);
56 pca_outw(adap, I2C_PCA_IND, 0x5A);
57}
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
60 * Generate a start condition on the i2c bus.
61 *
Steven Cole44bbe872005-05-03 18:21:25 -060062 * returns after the start condition has occurred
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 */
Wolfram Sang2378bc02009-03-28 21:34:45 +010064static int pca_start(struct i2c_algo_pca_data *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 int sta = pca_get_con(adap);
67 DEB2("=== START\n");
68 sta |= I2C_PCA_CON_STA;
69 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI);
70 pca_set_con(adap, sta);
Wolfram Sang2378bc02009-03-28 21:34:45 +010071 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
74/*
Tobias Klauser46b615f2005-05-19 22:27:23 +020075 * Generate a repeated start condition on the i2c bus
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 *
Steven Cole44bbe872005-05-03 18:21:25 -060077 * return after the repeated start condition has occurred
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 */
Wolfram Sang2378bc02009-03-28 21:34:45 +010079static int pca_repeated_start(struct i2c_algo_pca_data *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 int sta = pca_get_con(adap);
82 DEB2("=== REPEATED START\n");
83 sta |= I2C_PCA_CON_STA;
84 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI);
85 pca_set_con(adap, sta);
Wolfram Sang2378bc02009-03-28 21:34:45 +010086 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89/*
90 * Generate a stop condition on the i2c bus
91 *
92 * returns after the stop condition has been generated
93 *
94 * STOPs do not generate an interrupt or set the SI flag, since the
Tobias Klauser46b615f2005-05-19 22:27:23 +020095 * part returns the idle state (0xf8). Hence we don't need to
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 * pca_wait here.
97 */
98static void pca_stop(struct i2c_algo_pca_data *adap)
99{
100 int sta = pca_get_con(adap);
101 DEB2("=== STOP\n");
102 sta |= I2C_PCA_CON_STO;
103 sta &= ~(I2C_PCA_CON_STA|I2C_PCA_CON_SI);
104 pca_set_con(adap, sta);
105}
106
107/*
108 * Send the slave address and R/W bit
109 *
110 * returns after the address has been sent
111 */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100112static int pca_address(struct i2c_algo_pca_data *adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200113 struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 int sta = pca_get_con(adap);
116 int addr;
117
Farid Hammane2086ca42010-05-21 18:41:00 +0200118 addr = ((0x7f & msg->addr) << 1);
119 if (msg->flags & I2C_M_RD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 addr |= 1;
Wolfram Sang3d438292008-04-22 22:16:46 +0200121 DEB2("=== SLAVE ADDRESS %#04x+%c=%#04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 msg->addr, msg->flags & I2C_M_RD ? 'R' : 'W', addr);
Wolfram Sang3d438292008-04-22 22:16:46 +0200123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 pca_outw(adap, I2C_PCA_DAT, addr);
125
126 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI);
127 pca_set_con(adap, sta);
128
Wolfram Sang2378bc02009-03-28 21:34:45 +0100129 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132/*
133 * Transmit a byte.
134 *
135 * Returns after the byte has been transmitted
136 */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100137static int pca_tx_byte(struct i2c_algo_pca_data *adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200138 __u8 b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 int sta = pca_get_con(adap);
141 DEB2("=== WRITE %#04x\n", b);
142 pca_outw(adap, I2C_PCA_DAT, b);
143
144 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI);
145 pca_set_con(adap, sta);
146
Wolfram Sang2378bc02009-03-28 21:34:45 +0100147 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150/*
151 * Receive a byte
152 *
153 * returns immediately.
154 */
Wolfram Sang3d438292008-04-22 22:16:46 +0200155static void pca_rx_byte(struct i2c_algo_pca_data *adap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 __u8 *b, int ack)
157{
158 *b = pca_inw(adap, I2C_PCA_DAT);
159 DEB2("=== READ %#04x %s\n", *b, ack ? "ACK" : "NACK");
160}
161
Wolfram Sang3d438292008-04-22 22:16:46 +0200162/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 * Setup ACK or NACK for next received byte and wait for it to arrive.
164 *
165 * Returns after next byte has arrived.
166 */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100167static int pca_rx_ack(struct i2c_algo_pca_data *adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200168 int ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 int sta = pca_get_con(adap);
171
172 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI|I2C_PCA_CON_AA);
173
Farid Hammane2086ca42010-05-21 18:41:00 +0200174 if (ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 sta |= I2C_PCA_CON_AA;
176
177 pca_set_con(adap, sta);
Wolfram Sang2378bc02009-03-28 21:34:45 +0100178 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static int pca_xfer(struct i2c_adapter *i2c_adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200182 struct i2c_msg *msgs,
183 int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Farid Hammane2086ca42010-05-21 18:41:00 +0200185 struct i2c_algo_pca_data *adap = i2c_adap->algo_data;
186 struct i2c_msg *msg = NULL;
187 int curmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 int numbytes = 0;
189 int state;
190 int ret;
Wolfram Sang2378bc02009-03-28 21:34:45 +0100191 int completed = 1;
Wolfram Sang8e99ada2009-03-28 21:34:45 +0100192 unsigned long timeout = jiffies + i2c_adap->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Jean Delvarec454dee2009-04-13 17:02:13 +0200194 while ((state = pca_status(adap)) != 0xf8) {
Wolfram Sang8e99ada2009-03-28 21:34:45 +0100195 if (time_before(jiffies, timeout)) {
196 msleep(10);
197 } else {
198 dev_dbg(&i2c_adap->dev, "bus is not idle. status is "
199 "%#04x\n", state);
Jean Delvare44039882011-10-30 13:47:25 +0100200 return -EBUSY;
Wolfram Sang8e99ada2009-03-28 21:34:45 +0100201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
204 DEB1("{{{ XFER %d messages\n", num);
205
Farid Hammane2086ca42010-05-21 18:41:00 +0200206 if (i2c_debug >= 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 for (curmsg = 0; curmsg < num; curmsg++) {
208 int addr, i;
209 msg = &msgs[curmsg];
Wolfram Sang3d438292008-04-22 22:16:46 +0200210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 addr = (0x7f & msg->addr) ;
Wolfram Sang3d438292008-04-22 22:16:46 +0200212
Farid Hammane2086ca42010-05-21 18:41:00 +0200213 if (msg->flags & I2C_M_RD)
Wolfram Sang3d438292008-04-22 22:16:46 +0200214 printk(KERN_INFO " [%02d] RD %d bytes from %#02x [%#02x, ...]\n",
Farid Hammane2086ca42010-05-21 18:41:00 +0200215 curmsg, msg->len, addr, (addr << 1) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 else {
Wolfram Sang3d438292008-04-22 22:16:46 +0200217 printk(KERN_INFO " [%02d] WR %d bytes to %#02x [%#02x%s",
Farid Hammane2086ca42010-05-21 18:41:00 +0200218 curmsg, msg->len, addr, addr << 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 msg->len == 0 ? "" : ", ");
Farid Hammane2086ca42010-05-21 18:41:00 +0200220 for (i = 0; i < msg->len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 printk("%#04x%s", msg->buf[i], i == msg->len - 1 ? "" : ", ");
222 printk("]\n");
223 }
224 }
225 }
226
227 curmsg = 0;
Jean Delvare44039882011-10-30 13:47:25 +0100228 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 while (curmsg < num) {
230 state = pca_status(adap);
231
232 DEB3("STATE is 0x%02x\n", state);
233 msg = &msgs[curmsg];
234
235 switch (state) {
236 case 0xf8: /* On reset or stop the bus is idle */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100237 completed = pca_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
239
240 case 0x08: /* A START condition has been transmitted */
241 case 0x10: /* A repeated start condition has been transmitted */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100242 completed = pca_address(adap, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
Wolfram Sang3d438292008-04-22 22:16:46 +0200244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 case 0x18: /* SLA+W has been transmitted; ACK has been received */
246 case 0x28: /* Data byte in I2CDAT has been transmitted; ACK has been received */
247 if (numbytes < msg->len) {
Wolfram Sang2378bc02009-03-28 21:34:45 +0100248 completed = pca_tx_byte(adap,
249 msg->buf[numbytes]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 numbytes++;
251 break;
252 }
253 curmsg++; numbytes = 0;
254 if (curmsg == num)
255 pca_stop(adap);
256 else
Wolfram Sang2378bc02009-03-28 21:34:45 +0100257 completed = pca_repeated_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 break;
259
260 case 0x20: /* SLA+W has been transmitted; NOT ACK has been received */
261 DEB2("NOT ACK received after SLA+W\n");
262 pca_stop(adap);
Jean Delvare44039882011-10-30 13:47:25 +0100263 ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 goto out;
265
266 case 0x40: /* SLA+R has been transmitted; ACK has been received */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100267 completed = pca_rx_ack(adap, msg->len > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 break;
269
270 case 0x50: /* Data bytes has been received; ACK has been returned */
271 if (numbytes < msg->len) {
272 pca_rx_byte(adap, &msg->buf[numbytes], 1);
273 numbytes++;
Wolfram Sang2378bc02009-03-28 21:34:45 +0100274 completed = pca_rx_ack(adap,
275 numbytes < msg->len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 break;
277 }
278 curmsg++; numbytes = 0;
279 if (curmsg == num)
280 pca_stop(adap);
281 else
Wolfram Sang2378bc02009-03-28 21:34:45 +0100282 completed = pca_repeated_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 break;
284
285 case 0x48: /* SLA+R has been transmitted; NOT ACK has been received */
286 DEB2("NOT ACK received after SLA+R\n");
287 pca_stop(adap);
Jean Delvare44039882011-10-30 13:47:25 +0100288 ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 goto out;
290
291 case 0x30: /* Data byte in I2CDAT has been transmitted; NOT ACK has been received */
292 DEB2("NOT ACK received after data byte\n");
Enrik Berkhan2196d1c2009-05-05 08:39:25 +0200293 pca_stop(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 goto out;
295
296 case 0x38: /* Arbitration lost during SLA+W, SLA+R or data bytes */
297 DEB2("Arbitration lost\n");
Enrik Berkhan2196d1c2009-05-05 08:39:25 +0200298 /*
299 * The PCA9564 data sheet (2006-09-01) says "A
300 * START condition will be transmitted when the
301 * bus becomes free (STOP or SCL and SDA high)"
302 * when the STA bit is set (p. 11).
303 *
304 * In case this won't work, try pca_reset()
305 * instead.
306 */
307 pca_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 goto out;
Wolfram Sang3d438292008-04-22 22:16:46 +0200309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 case 0x58: /* Data byte has been received; NOT ACK has been returned */
Farid Hammane2086ca42010-05-21 18:41:00 +0200311 if (numbytes == msg->len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 pca_rx_byte(adap, &msg->buf[numbytes], 0);
313 curmsg++; numbytes = 0;
314 if (curmsg == num)
315 pca_stop(adap);
316 else
Wolfram Sang2378bc02009-03-28 21:34:45 +0100317 completed = pca_repeated_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 } else {
319 DEB2("NOT ACK sent after data byte received. "
320 "Not final byte. numbytes %d. len %d\n",
321 numbytes, msg->len);
322 pca_stop(adap);
323 goto out;
324 }
325 break;
326 case 0x70: /* Bus error - SDA stuck low */
327 DEB2("BUS ERROR - SDA Stuck low\n");
328 pca_reset(adap);
329 goto out;
330 case 0x90: /* Bus error - SCL stuck low */
331 DEB2("BUS ERROR - SCL Stuck low\n");
332 pca_reset(adap);
333 goto out;
334 case 0x00: /* Bus error during master or slave mode due to illegal START or STOP condition */
335 DEB2("BUS ERROR - Illegal START or STOP\n");
336 pca_reset(adap);
337 goto out;
338 default:
Wolfram Sangc01b0832008-04-22 22:16:46 +0200339 dev_err(&i2c_adap->dev, "unhandled SIO state 0x%02x\n", state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 break;
341 }
Wolfram Sang3d438292008-04-22 22:16:46 +0200342
Wolfram Sang2378bc02009-03-28 21:34:45 +0100343 if (!completed)
344 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
347 ret = curmsg;
348 out:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300349 DEB1("}}} transferred %d/%d messages. "
Wolfram Sang3d438292008-04-22 22:16:46 +0200350 "status is %#04x. control is %#04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 curmsg, num, pca_status(adap),
352 pca_get_con(adap));
353 return ret;
354}
355
356static u32 pca_func(struct i2c_adapter *adap)
357{
Farid Hammane2086ca42010-05-21 18:41:00 +0200358 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Jean Delvare9e11a9f2006-09-03 22:38:52 +0200361static const struct i2c_algorithm pca_algo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 .master_xfer = pca_xfer,
363 .functionality = pca_func,
364};
365
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100366static unsigned int pca_probe_chip(struct i2c_adapter *adap)
367{
368 struct i2c_algo_pca_data *pca_data = adap->algo_data;
369 /* The trick here is to check if there is an indirect register
370 * available. If there is one, we will read the value we first
371 * wrote on I2C_PCA_IADR. Otherwise, we will read the last value
372 * we wrote on I2C_PCA_ADR
373 */
374 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_IADR);
375 pca_outw(pca_data, I2C_PCA_IND, 0xAA);
376 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_ITO);
377 pca_outw(pca_data, I2C_PCA_IND, 0x00);
378 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_IADR);
379 if (pca_inw(pca_data, I2C_PCA_IND) == 0xAA) {
380 printk(KERN_INFO "%s: PCA9665 detected.\n", adap->name);
381 return I2C_PCA_CHIP_9665;
382 } else {
383 printk(KERN_INFO "%s: PCA9564 detected.\n", adap->name);
384 return I2C_PCA_CHIP_9564;
385 }
386}
387
Wolfram Sangc01b0832008-04-22 22:16:46 +0200388static int pca_init(struct i2c_adapter *adap)
389{
Wolfram Sangc01b0832008-04-22 22:16:46 +0200390 struct i2c_algo_pca_data *pca_data = adap->algo_data;
391
Wolfram Sangc01b0832008-04-22 22:16:46 +0200392 adap->algo = &pca_algo;
393
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100394 if (pca_probe_chip(adap) == I2C_PCA_CHIP_9564) {
395 static int freqs[] = {330, 288, 217, 146, 88, 59, 44, 36};
396 int clock;
Wolfram Sangc01b0832008-04-22 22:16:46 +0200397
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100398 if (pca_data->i2c_clock > 7) {
399 switch (pca_data->i2c_clock) {
400 case 330000:
401 pca_data->i2c_clock = I2C_PCA_CON_330kHz;
402 break;
403 case 288000:
404 pca_data->i2c_clock = I2C_PCA_CON_288kHz;
405 break;
406 case 217000:
407 pca_data->i2c_clock = I2C_PCA_CON_217kHz;
408 break;
409 case 146000:
410 pca_data->i2c_clock = I2C_PCA_CON_146kHz;
411 break;
412 case 88000:
413 pca_data->i2c_clock = I2C_PCA_CON_88kHz;
414 break;
415 case 59000:
416 pca_data->i2c_clock = I2C_PCA_CON_59kHz;
417 break;
418 case 44000:
419 pca_data->i2c_clock = I2C_PCA_CON_44kHz;
420 break;
421 case 36000:
422 pca_data->i2c_clock = I2C_PCA_CON_36kHz;
423 break;
424 default:
425 printk(KERN_WARNING
426 "%s: Invalid I2C clock speed selected."
427 " Using default 59kHz.\n", adap->name);
428 pca_data->i2c_clock = I2C_PCA_CON_59kHz;
429 }
430 } else {
431 printk(KERN_WARNING "%s: "
432 "Choosing the clock frequency based on "
433 "index is deprecated."
434 " Use the nominal frequency.\n", adap->name);
435 }
Wolfram Sangc01b0832008-04-22 22:16:46 +0200436
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100437 pca_reset(pca_data);
438
439 clock = pca_clock(pca_data);
440 printk(KERN_INFO "%s: Clock frequency is %dkHz\n",
441 adap->name, freqs[clock]);
442
443 pca_set_con(pca_data, I2C_PCA_CON_ENSIO | clock);
444 } else {
445 int clock;
446 int mode;
447 int tlow, thi;
448 /* Values can be found on PCA9665 datasheet section 7.3.2.6 */
449 int min_tlow, min_thi;
450 /* These values are the maximum raise and fall values allowed
451 * by the I2C operation mode (Standard, Fast or Fast+)
452 * They are used (added) below to calculate the clock dividers
453 * of PCA9665. Note that they are slightly different of the
454 * real maximum, to allow the change on mode exactly on the
455 * maximum clock rate for each mode
456 */
457 int raise_fall_time;
458
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100459 /* Ignore the reset function from the module,
460 * we can use the parallel bus reset
461 */
462 pca_data->reset_chip = pca9665_reset;
463
464 if (pca_data->i2c_clock > 1265800) {
465 printk(KERN_WARNING "%s: I2C clock speed too high."
466 " Using 1265.8kHz.\n", adap->name);
467 pca_data->i2c_clock = 1265800;
468 }
469
470 if (pca_data->i2c_clock < 60300) {
471 printk(KERN_WARNING "%s: I2C clock speed too low."
472 " Using 60.3kHz.\n", adap->name);
473 pca_data->i2c_clock = 60300;
474 }
475
476 /* To avoid integer overflow, use clock/100 for calculations */
477 clock = pca_clock(pca_data) / 100;
478
479 if (pca_data->i2c_clock > 10000) {
480 mode = I2C_PCA_MODE_TURBO;
481 min_tlow = 14;
482 min_thi = 5;
483 raise_fall_time = 22; /* Raise 11e-8s, Fall 11e-8s */
484 } else if (pca_data->i2c_clock > 4000) {
485 mode = I2C_PCA_MODE_FASTP;
486 min_tlow = 17;
487 min_thi = 9;
488 raise_fall_time = 22; /* Raise 11e-8s, Fall 11e-8s */
489 } else if (pca_data->i2c_clock > 1000) {
490 mode = I2C_PCA_MODE_FAST;
491 min_tlow = 44;
492 min_thi = 20;
493 raise_fall_time = 58; /* Raise 29e-8s, Fall 29e-8s */
494 } else {
495 mode = I2C_PCA_MODE_STD;
496 min_tlow = 157;
497 min_thi = 134;
498 raise_fall_time = 127; /* Raise 29e-8s, Fall 98e-8s */
499 }
500
501 /* The minimum clock that respects the thi/tlow = 134/157 is
502 * 64800 Hz. Below that, we have to fix the tlow to 255 and
503 * calculate the thi factor.
504 */
505 if (clock < 648) {
506 tlow = 255;
507 thi = 1000000 - clock * raise_fall_time;
508 thi /= (I2C_PCA_OSC_PER * clock) - tlow;
509 } else {
510 tlow = (1000000 - clock * raise_fall_time) * min_tlow;
511 tlow /= I2C_PCA_OSC_PER * clock * (min_thi + min_tlow);
512 thi = tlow * min_thi / min_tlow;
513 }
514
515 pca_reset(pca_data);
516
517 printk(KERN_INFO
518 "%s: Clock frequency is %dHz\n", adap->name, clock * 100);
519
520 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_IMODE);
521 pca_outw(pca_data, I2C_PCA_IND, mode);
522 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_ISCLL);
523 pca_outw(pca_data, I2C_PCA_IND, tlow);
524 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_ISCLH);
525 pca_outw(pca_data, I2C_PCA_IND, thi);
526
527 pca_set_con(pca_data, I2C_PCA_CON_ENSIO);
528 }
Wolfram Sangc01b0832008-04-22 22:16:46 +0200529 udelay(500); /* 500 us for oscilator to stabilise */
530
531 return 0;
532}
533
Wolfram Sang3d438292008-04-22 22:16:46 +0200534/*
535 * registering functions to load algorithms at runtime
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 */
537int i2c_pca_add_bus(struct i2c_adapter *adap)
538{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 int rval;
540
Wolfram Sangc01b0832008-04-22 22:16:46 +0200541 rval = pca_init(adap);
542 if (rval)
Mark M. Hoffmanb39ad0c2006-07-01 17:16:06 +0200543 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Wolfram Sangc01b0832008-04-22 22:16:46 +0200545 return i2c_add_adapter(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547EXPORT_SYMBOL(i2c_pca_add_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Wolfram Sangc01b0832008-04-22 22:16:46 +0200549int i2c_pca_add_numbered_bus(struct i2c_adapter *adap)
550{
551 int rval;
552
553 rval = pca_init(adap);
554 if (rval)
555 return rval;
556
557 return i2c_add_numbered_adapter(adap);
558}
559EXPORT_SYMBOL(i2c_pca_add_numbered_bus);
560
561MODULE_AUTHOR("Ian Campbell <icampbell@arcom.com>, "
562 "Wolfram Sang <w.sang@pengutronix.de>");
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100563MODULE_DESCRIPTION("I2C-Bus PCA9564/PCA9665 algorithm");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564MODULE_LICENSE("GPL");
565
566module_param(i2c_debug, int, 0);