blob: 07ccbef6cc14e4b9e8b23d0f7411363f3b115c75 [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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Thomas Kavanagha76e7c62012-09-20 20:20:46 -070050static void pca_reset(struct i2c_algo_pca_data *adap)
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +010051{
Thomas Kavanagha76e7c62012-09-20 20:20:46 -070052 if (adap->chip == I2C_PCA_CHIP_9665) {
53 /* Ignore the reset function from the module,
54 * we can use the parallel bus reset.
55 */
56 pca_outw(adap, I2C_PCA_INDPTR, I2C_PCA_IPRESET);
57 pca_outw(adap, I2C_PCA_IND, 0xA5);
58 pca_outw(adap, I2C_PCA_IND, 0x5A);
59 } else {
60 adap->reset_chip(adap->data);
61 }
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +010062}
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
65 * Generate a start condition on the i2c bus.
66 *
Steven Cole44bbe872005-05-03 18:21:25 -060067 * returns after the start condition has occurred
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
Wolfram Sang2378bc02009-03-28 21:34:45 +010069static int pca_start(struct i2c_algo_pca_data *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 int sta = pca_get_con(adap);
72 DEB2("=== START\n");
73 sta |= I2C_PCA_CON_STA;
74 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI);
75 pca_set_con(adap, sta);
Wolfram Sang2378bc02009-03-28 21:34:45 +010076 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*
Tobias Klauser46b615f2005-05-19 22:27:23 +020080 * Generate a repeated start condition on the i2c bus
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 *
Steven Cole44bbe872005-05-03 18:21:25 -060082 * return after the repeated start condition has occurred
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
Wolfram Sang2378bc02009-03-28 21:34:45 +010084static int pca_repeated_start(struct i2c_algo_pca_data *adap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 int sta = pca_get_con(adap);
87 DEB2("=== REPEATED START\n");
88 sta |= I2C_PCA_CON_STA;
89 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI);
90 pca_set_con(adap, sta);
Wolfram Sang2378bc02009-03-28 21:34:45 +010091 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94/*
95 * Generate a stop condition on the i2c bus
96 *
97 * returns after the stop condition has been generated
98 *
99 * STOPs do not generate an interrupt or set the SI flag, since the
Tobias Klauser46b615f2005-05-19 22:27:23 +0200100 * part returns the idle state (0xf8). Hence we don't need to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 * pca_wait here.
102 */
103static void pca_stop(struct i2c_algo_pca_data *adap)
104{
105 int sta = pca_get_con(adap);
106 DEB2("=== STOP\n");
107 sta |= I2C_PCA_CON_STO;
108 sta &= ~(I2C_PCA_CON_STA|I2C_PCA_CON_SI);
109 pca_set_con(adap, sta);
110}
111
112/*
113 * Send the slave address and R/W bit
114 *
115 * returns after the address has been sent
116 */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100117static int pca_address(struct i2c_algo_pca_data *adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200118 struct i2c_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 int sta = pca_get_con(adap);
121 int addr;
122
Farid Hammane2086ca42010-05-21 18:41:00 +0200123 addr = ((0x7f & msg->addr) << 1);
124 if (msg->flags & I2C_M_RD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 addr |= 1;
Wolfram Sang3d438292008-04-22 22:16:46 +0200126 DEB2("=== SLAVE ADDRESS %#04x+%c=%#04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 msg->addr, msg->flags & I2C_M_RD ? 'R' : 'W', addr);
Wolfram Sang3d438292008-04-22 22:16:46 +0200128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 pca_outw(adap, I2C_PCA_DAT, addr);
130
131 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI);
132 pca_set_con(adap, sta);
133
Wolfram Sang2378bc02009-03-28 21:34:45 +0100134 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137/*
138 * Transmit a byte.
139 *
140 * Returns after the byte has been transmitted
141 */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100142static int pca_tx_byte(struct i2c_algo_pca_data *adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200143 __u8 b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 int sta = pca_get_con(adap);
146 DEB2("=== WRITE %#04x\n", b);
147 pca_outw(adap, I2C_PCA_DAT, b);
148
149 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI);
150 pca_set_con(adap, sta);
151
Wolfram Sang2378bc02009-03-28 21:34:45 +0100152 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155/*
156 * Receive a byte
157 *
158 * returns immediately.
159 */
Wolfram Sang3d438292008-04-22 22:16:46 +0200160static void pca_rx_byte(struct i2c_algo_pca_data *adap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 __u8 *b, int ack)
162{
163 *b = pca_inw(adap, I2C_PCA_DAT);
164 DEB2("=== READ %#04x %s\n", *b, ack ? "ACK" : "NACK");
165}
166
Wolfram Sang3d438292008-04-22 22:16:46 +0200167/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * Setup ACK or NACK for next received byte and wait for it to arrive.
169 *
170 * Returns after next byte has arrived.
171 */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100172static int pca_rx_ack(struct i2c_algo_pca_data *adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200173 int ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 int sta = pca_get_con(adap);
176
177 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_STA|I2C_PCA_CON_SI|I2C_PCA_CON_AA);
178
Farid Hammane2086ca42010-05-21 18:41:00 +0200179 if (ack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 sta |= I2C_PCA_CON_AA;
181
182 pca_set_con(adap, sta);
Wolfram Sang2378bc02009-03-28 21:34:45 +0100183 return pca_wait(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static int pca_xfer(struct i2c_adapter *i2c_adap,
Farid Hammane2086ca42010-05-21 18:41:00 +0200187 struct i2c_msg *msgs,
188 int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Farid Hammane2086ca42010-05-21 18:41:00 +0200190 struct i2c_algo_pca_data *adap = i2c_adap->algo_data;
191 struct i2c_msg *msg = NULL;
192 int curmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int numbytes = 0;
194 int state;
195 int ret;
Wolfram Sang2378bc02009-03-28 21:34:45 +0100196 int completed = 1;
Wolfram Sang8e99ada2009-03-28 21:34:45 +0100197 unsigned long timeout = jiffies + i2c_adap->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Jean Delvarec454dee2009-04-13 17:02:13 +0200199 while ((state = pca_status(adap)) != 0xf8) {
Wolfram Sang8e99ada2009-03-28 21:34:45 +0100200 if (time_before(jiffies, timeout)) {
201 msleep(10);
202 } else {
203 dev_dbg(&i2c_adap->dev, "bus is not idle. status is "
204 "%#04x\n", state);
Jean Delvare44039882011-10-30 13:47:25 +0100205 return -EBUSY;
Wolfram Sang8e99ada2009-03-28 21:34:45 +0100206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208
209 DEB1("{{{ XFER %d messages\n", num);
210
Farid Hammane2086ca42010-05-21 18:41:00 +0200211 if (i2c_debug >= 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 for (curmsg = 0; curmsg < num; curmsg++) {
213 int addr, i;
214 msg = &msgs[curmsg];
Wolfram Sang3d438292008-04-22 22:16:46 +0200215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 addr = (0x7f & msg->addr) ;
Wolfram Sang3d438292008-04-22 22:16:46 +0200217
Farid Hammane2086ca42010-05-21 18:41:00 +0200218 if (msg->flags & I2C_M_RD)
Wolfram Sang3d438292008-04-22 22:16:46 +0200219 printk(KERN_INFO " [%02d] RD %d bytes from %#02x [%#02x, ...]\n",
Farid Hammane2086ca42010-05-21 18:41:00 +0200220 curmsg, msg->len, addr, (addr << 1) | 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 else {
Wolfram Sang3d438292008-04-22 22:16:46 +0200222 printk(KERN_INFO " [%02d] WR %d bytes to %#02x [%#02x%s",
Farid Hammane2086ca42010-05-21 18:41:00 +0200223 curmsg, msg->len, addr, addr << 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 msg->len == 0 ? "" : ", ");
Farid Hammane2086ca42010-05-21 18:41:00 +0200225 for (i = 0; i < msg->len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 printk("%#04x%s", msg->buf[i], i == msg->len - 1 ? "" : ", ");
227 printk("]\n");
228 }
229 }
230 }
231
232 curmsg = 0;
Jean Delvare44039882011-10-30 13:47:25 +0100233 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 while (curmsg < num) {
235 state = pca_status(adap);
236
237 DEB3("STATE is 0x%02x\n", state);
238 msg = &msgs[curmsg];
239
240 switch (state) {
241 case 0xf8: /* On reset or stop the bus is idle */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100242 completed = pca_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244
245 case 0x08: /* A START condition has been transmitted */
246 case 0x10: /* A repeated start condition has been transmitted */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100247 completed = pca_address(adap, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 break;
Wolfram Sang3d438292008-04-22 22:16:46 +0200249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 case 0x18: /* SLA+W has been transmitted; ACK has been received */
251 case 0x28: /* Data byte in I2CDAT has been transmitted; ACK has been received */
252 if (numbytes < msg->len) {
Wolfram Sang2378bc02009-03-28 21:34:45 +0100253 completed = pca_tx_byte(adap,
254 msg->buf[numbytes]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 numbytes++;
256 break;
257 }
258 curmsg++; numbytes = 0;
259 if (curmsg == num)
260 pca_stop(adap);
261 else
Wolfram Sang2378bc02009-03-28 21:34:45 +0100262 completed = pca_repeated_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264
265 case 0x20: /* SLA+W has been transmitted; NOT ACK has been received */
266 DEB2("NOT ACK received after SLA+W\n");
267 pca_stop(adap);
Jean Delvare44039882011-10-30 13:47:25 +0100268 ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 goto out;
270
271 case 0x40: /* SLA+R has been transmitted; ACK has been received */
Wolfram Sang2378bc02009-03-28 21:34:45 +0100272 completed = pca_rx_ack(adap, msg->len > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 break;
274
275 case 0x50: /* Data bytes has been received; ACK has been returned */
276 if (numbytes < msg->len) {
277 pca_rx_byte(adap, &msg->buf[numbytes], 1);
278 numbytes++;
Wolfram Sang2378bc02009-03-28 21:34:45 +0100279 completed = pca_rx_ack(adap,
280 numbytes < msg->len - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 break;
282 }
283 curmsg++; numbytes = 0;
284 if (curmsg == num)
285 pca_stop(adap);
286 else
Wolfram Sang2378bc02009-03-28 21:34:45 +0100287 completed = pca_repeated_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 break;
289
290 case 0x48: /* SLA+R has been transmitted; NOT ACK has been received */
291 DEB2("NOT ACK received after SLA+R\n");
292 pca_stop(adap);
Jean Delvare44039882011-10-30 13:47:25 +0100293 ret = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 goto out;
295
296 case 0x30: /* Data byte in I2CDAT has been transmitted; NOT ACK has been received */
297 DEB2("NOT ACK received after data byte\n");
Enrik Berkhan2196d1c2009-05-05 08:39:25 +0200298 pca_stop(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 goto out;
300
301 case 0x38: /* Arbitration lost during SLA+W, SLA+R or data bytes */
302 DEB2("Arbitration lost\n");
Enrik Berkhan2196d1c2009-05-05 08:39:25 +0200303 /*
304 * The PCA9564 data sheet (2006-09-01) says "A
305 * START condition will be transmitted when the
306 * bus becomes free (STOP or SCL and SDA high)"
307 * when the STA bit is set (p. 11).
308 *
309 * In case this won't work, try pca_reset()
310 * instead.
311 */
312 pca_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 goto out;
Wolfram Sang3d438292008-04-22 22:16:46 +0200314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 case 0x58: /* Data byte has been received; NOT ACK has been returned */
Farid Hammane2086ca42010-05-21 18:41:00 +0200316 if (numbytes == msg->len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 pca_rx_byte(adap, &msg->buf[numbytes], 0);
318 curmsg++; numbytes = 0;
319 if (curmsg == num)
320 pca_stop(adap);
321 else
Wolfram Sang2378bc02009-03-28 21:34:45 +0100322 completed = pca_repeated_start(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 } else {
324 DEB2("NOT ACK sent after data byte received. "
325 "Not final byte. numbytes %d. len %d\n",
326 numbytes, msg->len);
327 pca_stop(adap);
328 goto out;
329 }
330 break;
331 case 0x70: /* Bus error - SDA stuck low */
332 DEB2("BUS ERROR - SDA Stuck low\n");
333 pca_reset(adap);
334 goto out;
335 case 0x90: /* Bus error - SCL stuck low */
336 DEB2("BUS ERROR - SCL Stuck low\n");
337 pca_reset(adap);
338 goto out;
339 case 0x00: /* Bus error during master or slave mode due to illegal START or STOP condition */
340 DEB2("BUS ERROR - Illegal START or STOP\n");
341 pca_reset(adap);
342 goto out;
343 default:
Wolfram Sangc01b0832008-04-22 22:16:46 +0200344 dev_err(&i2c_adap->dev, "unhandled SIO state 0x%02x\n", state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 break;
346 }
Wolfram Sang3d438292008-04-22 22:16:46 +0200347
Wolfram Sang2378bc02009-03-28 21:34:45 +0100348 if (!completed)
349 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
352 ret = curmsg;
353 out:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300354 DEB1("}}} transferred %d/%d messages. "
Wolfram Sang3d438292008-04-22 22:16:46 +0200355 "status is %#04x. control is %#04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 curmsg, num, pca_status(adap),
357 pca_get_con(adap));
358 return ret;
359}
360
361static u32 pca_func(struct i2c_adapter *adap)
362{
Farid Hammane2086ca42010-05-21 18:41:00 +0200363 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
Jean Delvare9e11a9f2006-09-03 22:38:52 +0200366static const struct i2c_algorithm pca_algo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 .master_xfer = pca_xfer,
368 .functionality = pca_func,
369};
370
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100371static unsigned int pca_probe_chip(struct i2c_adapter *adap)
372{
373 struct i2c_algo_pca_data *pca_data = adap->algo_data;
374 /* The trick here is to check if there is an indirect register
375 * available. If there is one, we will read the value we first
376 * wrote on I2C_PCA_IADR. Otherwise, we will read the last value
377 * we wrote on I2C_PCA_ADR
378 */
379 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_IADR);
380 pca_outw(pca_data, I2C_PCA_IND, 0xAA);
381 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_ITO);
382 pca_outw(pca_data, I2C_PCA_IND, 0x00);
383 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_IADR);
384 if (pca_inw(pca_data, I2C_PCA_IND) == 0xAA) {
385 printk(KERN_INFO "%s: PCA9665 detected.\n", adap->name);
Thomas Kavanagha76e7c62012-09-20 20:20:46 -0700386 pca_data->chip = I2C_PCA_CHIP_9665;
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100387 } else {
388 printk(KERN_INFO "%s: PCA9564 detected.\n", adap->name);
Thomas Kavanagha76e7c62012-09-20 20:20:46 -0700389 pca_data->chip = I2C_PCA_CHIP_9564;
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100390 }
Thomas Kavanagha76e7c62012-09-20 20:20:46 -0700391 return pca_data->chip;
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100392}
393
Wolfram Sangc01b0832008-04-22 22:16:46 +0200394static int pca_init(struct i2c_adapter *adap)
395{
Wolfram Sangc01b0832008-04-22 22:16:46 +0200396 struct i2c_algo_pca_data *pca_data = adap->algo_data;
397
Wolfram Sangc01b0832008-04-22 22:16:46 +0200398 adap->algo = &pca_algo;
399
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100400 if (pca_probe_chip(adap) == I2C_PCA_CHIP_9564) {
401 static int freqs[] = {330, 288, 217, 146, 88, 59, 44, 36};
402 int clock;
Wolfram Sangc01b0832008-04-22 22:16:46 +0200403
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100404 if (pca_data->i2c_clock > 7) {
405 switch (pca_data->i2c_clock) {
406 case 330000:
407 pca_data->i2c_clock = I2C_PCA_CON_330kHz;
408 break;
409 case 288000:
410 pca_data->i2c_clock = I2C_PCA_CON_288kHz;
411 break;
412 case 217000:
413 pca_data->i2c_clock = I2C_PCA_CON_217kHz;
414 break;
415 case 146000:
416 pca_data->i2c_clock = I2C_PCA_CON_146kHz;
417 break;
418 case 88000:
419 pca_data->i2c_clock = I2C_PCA_CON_88kHz;
420 break;
421 case 59000:
422 pca_data->i2c_clock = I2C_PCA_CON_59kHz;
423 break;
424 case 44000:
425 pca_data->i2c_clock = I2C_PCA_CON_44kHz;
426 break;
427 case 36000:
428 pca_data->i2c_clock = I2C_PCA_CON_36kHz;
429 break;
430 default:
431 printk(KERN_WARNING
432 "%s: Invalid I2C clock speed selected."
433 " Using default 59kHz.\n", adap->name);
434 pca_data->i2c_clock = I2C_PCA_CON_59kHz;
435 }
436 } else {
437 printk(KERN_WARNING "%s: "
438 "Choosing the clock frequency based on "
439 "index is deprecated."
440 " Use the nominal frequency.\n", adap->name);
441 }
Wolfram Sangc01b0832008-04-22 22:16:46 +0200442
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100443 pca_reset(pca_data);
444
445 clock = pca_clock(pca_data);
446 printk(KERN_INFO "%s: Clock frequency is %dkHz\n",
447 adap->name, freqs[clock]);
448
449 pca_set_con(pca_data, I2C_PCA_CON_ENSIO | clock);
450 } else {
451 int clock;
452 int mode;
453 int tlow, thi;
454 /* Values can be found on PCA9665 datasheet section 7.3.2.6 */
455 int min_tlow, min_thi;
456 /* These values are the maximum raise and fall values allowed
457 * by the I2C operation mode (Standard, Fast or Fast+)
458 * They are used (added) below to calculate the clock dividers
459 * of PCA9665. Note that they are slightly different of the
460 * real maximum, to allow the change on mode exactly on the
461 * maximum clock rate for each mode
462 */
463 int raise_fall_time;
464
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100465 if (pca_data->i2c_clock > 1265800) {
466 printk(KERN_WARNING "%s: I2C clock speed too high."
467 " Using 1265.8kHz.\n", adap->name);
468 pca_data->i2c_clock = 1265800;
469 }
470
471 if (pca_data->i2c_clock < 60300) {
472 printk(KERN_WARNING "%s: I2C clock speed too low."
473 " Using 60.3kHz.\n", adap->name);
474 pca_data->i2c_clock = 60300;
475 }
476
477 /* To avoid integer overflow, use clock/100 for calculations */
478 clock = pca_clock(pca_data) / 100;
479
480 if (pca_data->i2c_clock > 10000) {
481 mode = I2C_PCA_MODE_TURBO;
482 min_tlow = 14;
483 min_thi = 5;
484 raise_fall_time = 22; /* Raise 11e-8s, Fall 11e-8s */
485 } else if (pca_data->i2c_clock > 4000) {
486 mode = I2C_PCA_MODE_FASTP;
487 min_tlow = 17;
488 min_thi = 9;
489 raise_fall_time = 22; /* Raise 11e-8s, Fall 11e-8s */
490 } else if (pca_data->i2c_clock > 1000) {
491 mode = I2C_PCA_MODE_FAST;
492 min_tlow = 44;
493 min_thi = 20;
494 raise_fall_time = 58; /* Raise 29e-8s, Fall 29e-8s */
495 } else {
496 mode = I2C_PCA_MODE_STD;
497 min_tlow = 157;
498 min_thi = 134;
499 raise_fall_time = 127; /* Raise 29e-8s, Fall 98e-8s */
500 }
501
502 /* The minimum clock that respects the thi/tlow = 134/157 is
503 * 64800 Hz. Below that, we have to fix the tlow to 255 and
504 * calculate the thi factor.
505 */
506 if (clock < 648) {
507 tlow = 255;
508 thi = 1000000 - clock * raise_fall_time;
509 thi /= (I2C_PCA_OSC_PER * clock) - tlow;
510 } else {
511 tlow = (1000000 - clock * raise_fall_time) * min_tlow;
512 tlow /= I2C_PCA_OSC_PER * clock * (min_thi + min_tlow);
513 thi = tlow * min_thi / min_tlow;
514 }
515
516 pca_reset(pca_data);
517
518 printk(KERN_INFO
519 "%s: Clock frequency is %dHz\n", adap->name, clock * 100);
520
521 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_IMODE);
522 pca_outw(pca_data, I2C_PCA_IND, mode);
523 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_ISCLL);
524 pca_outw(pca_data, I2C_PCA_IND, tlow);
525 pca_outw(pca_data, I2C_PCA_INDPTR, I2C_PCA_ISCLH);
526 pca_outw(pca_data, I2C_PCA_IND, thi);
527
528 pca_set_con(pca_data, I2C_PCA_CON_ENSIO);
529 }
Wolfram Sangc01b0832008-04-22 22:16:46 +0200530 udelay(500); /* 500 us for oscilator to stabilise */
531
532 return 0;
533}
534
Wolfram Sang3d438292008-04-22 22:16:46 +0200535/*
536 * registering functions to load algorithms at runtime
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 */
538int i2c_pca_add_bus(struct i2c_adapter *adap)
539{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 int rval;
541
Wolfram Sangc01b0832008-04-22 22:16:46 +0200542 rval = pca_init(adap);
543 if (rval)
Mark M. Hoffmanb39ad0c2006-07-01 17:16:06 +0200544 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Wolfram Sangc01b0832008-04-22 22:16:46 +0200546 return i2c_add_adapter(adap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548EXPORT_SYMBOL(i2c_pca_add_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Wolfram Sangc01b0832008-04-22 22:16:46 +0200550int i2c_pca_add_numbered_bus(struct i2c_adapter *adap)
551{
552 int rval;
553
554 rval = pca_init(adap);
555 if (rval)
556 return rval;
557
558 return i2c_add_numbered_adapter(adap);
559}
560EXPORT_SYMBOL(i2c_pca_add_numbered_bus);
561
562MODULE_AUTHOR("Ian Campbell <icampbell@arcom.com>, "
563 "Wolfram Sang <w.sang@pengutronix.de>");
Marco Aurelio da Costaeff9ec92009-03-28 21:34:44 +0100564MODULE_DESCRIPTION("I2C-Bus PCA9564/PCA9665 algorithm");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565MODULE_LICENSE("GPL");
566
567module_param(i2c_debug, int, 0);