Merge tag 'pm+acpi-3.14-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafae...
[deliverable/linux.git] / drivers / i2c / busses / i2c-bfin-twi.c
CommitLineData
d24ecfcc 1/*
bd584996 2 * Blackfin On-Chip Two Wire Interface Driver
d24ecfcc 3 *
bd584996 4 * Copyright 2005-2007 Analog Devices Inc.
d24ecfcc 5 *
bd584996 6 * Enter bugs at http://blackfin.uclinux.org/
d24ecfcc 7 *
bd584996 8 * Licensed under the GPL-2 or later.
d24ecfcc
BW
9 */
10
11#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/i2c.h>
5a0e3ad6 15#include <linux/slab.h>
6df263cf 16#include <linux/io.h>
d24ecfcc
BW
17#include <linux/mm.h>
18#include <linux/timer.h>
19#include <linux/spinlock.h>
20#include <linux/completion.h>
21#include <linux/interrupt.h>
22#include <linux/platform_device.h>
540ac555 23#include <linux/delay.h>
d24ecfcc
BW
24
25#include <asm/blackfin.h>
74d362e0 26#include <asm/portmux.h>
d24ecfcc 27#include <asm/irq.h>
c9d87edb 28#include <asm/bfin_twi.h>
d24ecfcc 29
d24ecfcc 30/* SMBus mode*/
4dd39bb1
SZ
31#define TWI_I2C_MODE_STANDARD 1
32#define TWI_I2C_MODE_STANDARDSUB 2
33#define TWI_I2C_MODE_COMBINED 3
34#define TWI_I2C_MODE_REPEAT 4
d24ecfcc 35
5481d075
SZ
36static void bfin_twi_handle_interrupt(struct bfin_twi_iface *iface,
37 unsigned short twi_int_status)
d24ecfcc 38{
aa3d0209 39 unsigned short mast_stat = read_MASTER_STAT(iface);
d24ecfcc
BW
40
41 if (twi_int_status & XMTSERV) {
8419c8de
SZ
42 if (iface->writeNum <= 0) {
43 /* start receive immediately after complete sending in
44 * combine mode.
45 */
46 if (iface->cur_mode == TWI_I2C_MODE_COMBINED)
47 write_MASTER_CTL(iface,
48 read_MASTER_CTL(iface) | MDIR);
49 else if (iface->manual_stop)
50 write_MASTER_CTL(iface,
51 read_MASTER_CTL(iface) | STOP);
52 else if (iface->cur_mode == TWI_I2C_MODE_REPEAT &&
53 iface->cur_msg + 1 < iface->msg_num) {
54 if (iface->pmsg[iface->cur_msg + 1].flags &
55 I2C_M_RD)
56 write_MASTER_CTL(iface,
57 read_MASTER_CTL(iface) |
58 MDIR);
59 else
60 write_MASTER_CTL(iface,
61 read_MASTER_CTL(iface) &
62 ~MDIR);
63 }
64 }
d24ecfcc 65 /* Transmit next data */
8419c8de
SZ
66 while (iface->writeNum > 0 &&
67 (read_FIFO_STAT(iface) & XMTSTAT) != XMT_FULL) {
5481d075 68 SSYNC();
aa3d0209 69 write_XMT_DATA8(iface, *(iface->transPtr++));
d24ecfcc
BW
70 iface->writeNum--;
71 }
d24ecfcc
BW
72 }
73 if (twi_int_status & RCVSERV) {
8419c8de
SZ
74 while (iface->readNum > 0 &&
75 (read_FIFO_STAT(iface) & RCVSTAT)) {
d24ecfcc 76 /* Receive next data */
aa3d0209 77 *(iface->transPtr) = read_RCV_DATA8(iface);
d24ecfcc
BW
78 if (iface->cur_mode == TWI_I2C_MODE_COMBINED) {
79 /* Change combine mode into sub mode after
80 * read first data.
81 */
82 iface->cur_mode = TWI_I2C_MODE_STANDARDSUB;
83 /* Get read number from first byte in block
84 * combine mode.
85 */
86 if (iface->readNum == 1 && iface->manual_stop)
87 iface->readNum = *iface->transPtr + 1;
88 }
89 iface->transPtr++;
90 iface->readNum--;
a20a64d2
SZ
91 }
92
93 if (iface->readNum == 0) {
94 if (iface->manual_stop) {
95 /* Temporary workaround to avoid possible bus stall -
96 * Flush FIFO before issuing the STOP condition
97 */
98 read_RCV_DATA16(iface);
94327d00 99 write_MASTER_CTL(iface,
a20a64d2
SZ
100 read_MASTER_CTL(iface) | STOP);
101 } else if (iface->cur_mode == TWI_I2C_MODE_REPEAT &&
102 iface->cur_msg + 1 < iface->msg_num) {
103 if (iface->pmsg[iface->cur_msg + 1].flags & I2C_M_RD)
104 write_MASTER_CTL(iface,
28a377c7 105 read_MASTER_CTL(iface) | MDIR);
a20a64d2
SZ
106 else
107 write_MASTER_CTL(iface,
28a377c7 108 read_MASTER_CTL(iface) & ~MDIR);
a20a64d2 109 }
d24ecfcc 110 }
d24ecfcc
BW
111 }
112 if (twi_int_status & MERR) {
aa3d0209
BW
113 write_INT_MASK(iface, 0);
114 write_MASTER_STAT(iface, 0x3e);
115 write_MASTER_CTL(iface, 0);
4dd39bb1 116 iface->result = -EIO;
5cfafc18
MH
117
118 if (mast_stat & LOSTARB)
119 dev_dbg(&iface->adap.dev, "Lost Arbitration\n");
120 if (mast_stat & ANAK)
121 dev_dbg(&iface->adap.dev, "Address Not Acknowledged\n");
122 if (mast_stat & DNAK)
123 dev_dbg(&iface->adap.dev, "Data Not Acknowledged\n");
124 if (mast_stat & BUFRDERR)
125 dev_dbg(&iface->adap.dev, "Buffer Read Error\n");
126 if (mast_stat & BUFWRERR)
127 dev_dbg(&iface->adap.dev, "Buffer Write Error\n");
128
540ac555
MH
129 /* Faulty slave devices, may drive SDA low after a transfer
130 * finishes. To release the bus this code generates up to 9
131 * extra clocks until SDA is released.
132 */
133
134 if (read_MASTER_STAT(iface) & SDASEN) {
135 int cnt = 9;
136 do {
137 write_MASTER_CTL(iface, SCLOVR);
138 udelay(6);
139 write_MASTER_CTL(iface, 0);
140 udelay(6);
141 } while ((read_MASTER_STAT(iface) & SDASEN) && cnt--);
142
143 write_MASTER_CTL(iface, SDAOVR | SCLOVR);
144 udelay(6);
145 write_MASTER_CTL(iface, SDAOVR);
146 udelay(6);
147 write_MASTER_CTL(iface, 0);
148 }
149
f0ac131a
SZ
150 /* If it is a quick transfer, only address without data,
151 * not an err, return 1.
d24ecfcc 152 */
f0ac131a
SZ
153 if (iface->cur_mode == TWI_I2C_MODE_STANDARD &&
154 iface->transPtr == NULL &&
155 (twi_int_status & MCOMP) && (mast_stat & DNAK))
156 iface->result = 1;
157
d24ecfcc
BW
158 complete(&iface->complete);
159 return;
160 }
161 if (twi_int_status & MCOMP) {
2ee74eb9
SZ
162 if (twi_int_status & (XMTSERV | RCVSERV) &&
163 (read_MASTER_CTL(iface) & MEN) == 0 &&
4a65163e
SZ
164 (iface->cur_mode == TWI_I2C_MODE_REPEAT ||
165 iface->cur_mode == TWI_I2C_MODE_COMBINED)) {
166 iface->result = -1;
167 write_INT_MASK(iface, 0);
168 write_MASTER_CTL(iface, 0);
169 } else if (iface->cur_mode == TWI_I2C_MODE_COMBINED) {
d24ecfcc
BW
170 if (iface->readNum == 0) {
171 /* set the read number to 1 and ask for manual
172 * stop in block combine mode
173 */
174 iface->readNum = 1;
175 iface->manual_stop = 1;
aa3d0209
BW
176 write_MASTER_CTL(iface,
177 read_MASTER_CTL(iface) | (0xff << 6));
d24ecfcc
BW
178 } else {
179 /* set the readd number in other
180 * combine mode.
181 */
aa3d0209
BW
182 write_MASTER_CTL(iface,
183 (read_MASTER_CTL(iface) &
d24ecfcc 184 (~(0xff << 6))) |
aa3d0209 185 (iface->readNum << 6));
d24ecfcc
BW
186 }
187 /* remove restart bit and enable master receive */
aa3d0209
BW
188 write_MASTER_CTL(iface,
189 read_MASTER_CTL(iface) & ~RSTART);
4dd39bb1 190 } else if (iface->cur_mode == TWI_I2C_MODE_REPEAT &&
28a377c7 191 iface->cur_msg + 1 < iface->msg_num) {
4dd39bb1
SZ
192 iface->cur_msg++;
193 iface->transPtr = iface->pmsg[iface->cur_msg].buf;
194 iface->writeNum = iface->readNum =
195 iface->pmsg[iface->cur_msg].len;
196 /* Set Transmit device address */
aa3d0209 197 write_MASTER_ADDR(iface,
4dd39bb1
SZ
198 iface->pmsg[iface->cur_msg].addr);
199 if (iface->pmsg[iface->cur_msg].flags & I2C_M_RD)
200 iface->read_write = I2C_SMBUS_READ;
201 else {
202 iface->read_write = I2C_SMBUS_WRITE;
203 /* Transmit first data */
204 if (iface->writeNum > 0) {
aa3d0209 205 write_XMT_DATA8(iface,
4dd39bb1
SZ
206 *(iface->transPtr++));
207 iface->writeNum--;
4dd39bb1
SZ
208 }
209 }
210
a20a64d2
SZ
211 if (iface->pmsg[iface->cur_msg].len <= 255) {
212 write_MASTER_CTL(iface,
57a8f32e
SZ
213 (read_MASTER_CTL(iface) &
214 (~(0xff << 6))) |
a20a64d2
SZ
215 (iface->pmsg[iface->cur_msg].len << 6));
216 iface->manual_stop = 0;
217 } else {
57a8f32e
SZ
218 write_MASTER_CTL(iface,
219 (read_MASTER_CTL(iface) |
220 (0xff << 6)));
4dd39bb1
SZ
221 iface->manual_stop = 1;
222 }
28a377c7
SZ
223 /* remove restart bit before last message */
224 if (iface->cur_msg + 1 == iface->msg_num)
225 write_MASTER_CTL(iface,
226 read_MASTER_CTL(iface) & ~RSTART);
d24ecfcc
BW
227 } else {
228 iface->result = 1;
aa3d0209
BW
229 write_INT_MASK(iface, 0);
230 write_MASTER_CTL(iface, 0);
d24ecfcc 231 }
a20a64d2 232 complete(&iface->complete);
d24ecfcc
BW
233 }
234}
235
236/* Interrupt handler */
237static irqreturn_t bfin_twi_interrupt_entry(int irq, void *dev_id)
238{
239 struct bfin_twi_iface *iface = dev_id;
240 unsigned long flags;
5481d075 241 unsigned short twi_int_status;
d24ecfcc
BW
242
243 spin_lock_irqsave(&iface->lock, flags);
5481d075
SZ
244 while (1) {
245 twi_int_status = read_INT_STAT(iface);
246 if (!twi_int_status)
247 break;
248 /* Clear interrupt status */
249 write_INT_STAT(iface, twi_int_status);
250 bfin_twi_handle_interrupt(iface, twi_int_status);
251 SSYNC();
252 }
d24ecfcc
BW
253 spin_unlock_irqrestore(&iface->lock, flags);
254 return IRQ_HANDLED;
255}
256
d24ecfcc 257/*
dd7319a5 258 * One i2c master transfer
d24ecfcc 259 */
dd7319a5 260static int bfin_twi_do_master_xfer(struct i2c_adapter *adap,
d24ecfcc
BW
261 struct i2c_msg *msgs, int num)
262{
263 struct bfin_twi_iface *iface = adap->algo_data;
264 struct i2c_msg *pmsg;
d24ecfcc
BW
265 int rc = 0;
266
aa3d0209 267 if (!(read_CONTROL(iface) & TWI_ENA))
d24ecfcc
BW
268 return -ENXIO;
269
a25733d6
SZ
270 if (read_MASTER_STAT(iface) & BUSBUSY)
271 return -EAGAIN;
d24ecfcc 272
4dd39bb1
SZ
273 iface->pmsg = msgs;
274 iface->msg_num = num;
275 iface->cur_msg = 0;
d24ecfcc 276
4dd39bb1
SZ
277 pmsg = &msgs[0];
278 if (pmsg->flags & I2C_M_TEN) {
279 dev_err(&adap->dev, "10 bits addr not supported!\n");
280 return -EINVAL;
281 }
d24ecfcc 282
28a377c7
SZ
283 if (iface->msg_num > 1)
284 iface->cur_mode = TWI_I2C_MODE_REPEAT;
4dd39bb1
SZ
285 iface->manual_stop = 0;
286 iface->transPtr = pmsg->buf;
287 iface->writeNum = iface->readNum = pmsg->len;
288 iface->result = 0;
afc13b76 289 init_completion(&(iface->complete));
4dd39bb1 290 /* Set Transmit device address */
aa3d0209 291 write_MASTER_ADDR(iface, pmsg->addr);
4dd39bb1
SZ
292
293 /* FIFO Initiation. Data in FIFO should be
294 * discarded before start a new operation.
295 */
aa3d0209 296 write_FIFO_CTL(iface, 0x3);
4dd39bb1 297 SSYNC();
aa3d0209 298 write_FIFO_CTL(iface, 0);
4dd39bb1
SZ
299 SSYNC();
300
301 if (pmsg->flags & I2C_M_RD)
302 iface->read_write = I2C_SMBUS_READ;
303 else {
304 iface->read_write = I2C_SMBUS_WRITE;
305 /* Transmit first data */
306 if (iface->writeNum > 0) {
aa3d0209 307 write_XMT_DATA8(iface, *(iface->transPtr++));
4dd39bb1
SZ
308 iface->writeNum--;
309 SSYNC();
d24ecfcc 310 }
4dd39bb1 311 }
d24ecfcc 312
4dd39bb1 313 /* clear int stat */
aa3d0209 314 write_INT_STAT(iface, MERR | MCOMP | XMTSERV | RCVSERV);
d24ecfcc 315
4dd39bb1 316 /* Interrupt mask . Enable XMT, RCV interrupt */
aa3d0209 317 write_INT_MASK(iface, MCOMP | MERR | RCVSERV | XMTSERV);
4dd39bb1 318 SSYNC();
d24ecfcc 319
4dd39bb1 320 if (pmsg->len <= 255)
aa3d0209 321 write_MASTER_CTL(iface, pmsg->len << 6);
4dd39bb1 322 else {
aa3d0209 323 write_MASTER_CTL(iface, 0xff << 6);
4dd39bb1
SZ
324 iface->manual_stop = 1;
325 }
d24ecfcc 326
4dd39bb1 327 /* Master enable */
aa3d0209 328 write_MASTER_CTL(iface, read_MASTER_CTL(iface) | MEN |
28a377c7 329 (iface->msg_num > 1 ? RSTART : 0) |
4dd39bb1
SZ
330 ((iface->read_write == I2C_SMBUS_READ) ? MDIR : 0) |
331 ((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ > 100) ? FAST : 0));
332 SSYNC();
333
dd7319a5
SZ
334 while (!iface->result) {
335 if (!wait_for_completion_timeout(&iface->complete,
336 adap->timeout)) {
337 iface->result = -1;
338 dev_err(&adap->dev, "master transfer timeout\n");
339 }
340 }
d24ecfcc 341
dd7319a5
SZ
342 if (iface->result == 1)
343 rc = iface->cur_msg + 1;
4dd39bb1 344 else
dd7319a5
SZ
345 rc = iface->result;
346
347 return rc;
d24ecfcc
BW
348}
349
350/*
dd7319a5 351 * Generic i2c master transfer entrypoint
d24ecfcc 352 */
dd7319a5
SZ
353static int bfin_twi_master_xfer(struct i2c_adapter *adap,
354 struct i2c_msg *msgs, int num)
355{
be2f80f0 356 return bfin_twi_do_master_xfer(adap, msgs, num);
dd7319a5
SZ
357}
358
359/*
360 * One I2C SMBus transfer
361 */
362int bfin_twi_do_smbus_xfer(struct i2c_adapter *adap, u16 addr,
d24ecfcc
BW
363 unsigned short flags, char read_write,
364 u8 command, int size, union i2c_smbus_data *data)
365{
366 struct bfin_twi_iface *iface = adap->algo_data;
367 int rc = 0;
368
aa3d0209 369 if (!(read_CONTROL(iface) & TWI_ENA))
d24ecfcc
BW
370 return -ENXIO;
371
a25733d6
SZ
372 if (read_MASTER_STAT(iface) & BUSBUSY)
373 return -EAGAIN;
d24ecfcc
BW
374
375 iface->writeNum = 0;
376 iface->readNum = 0;
377
378 /* Prepare datas & select mode */
379 switch (size) {
380 case I2C_SMBUS_QUICK:
381 iface->transPtr = NULL;
382 iface->cur_mode = TWI_I2C_MODE_STANDARD;
383 break;
384 case I2C_SMBUS_BYTE:
385 if (data == NULL)
386 iface->transPtr = NULL;
387 else {
388 if (read_write == I2C_SMBUS_READ)
389 iface->readNum = 1;
390 else
391 iface->writeNum = 1;
392 iface->transPtr = &data->byte;
393 }
394 iface->cur_mode = TWI_I2C_MODE_STANDARD;
395 break;
396 case I2C_SMBUS_BYTE_DATA:
397 if (read_write == I2C_SMBUS_READ) {
398 iface->readNum = 1;
399 iface->cur_mode = TWI_I2C_MODE_COMBINED;
400 } else {
401 iface->writeNum = 1;
402 iface->cur_mode = TWI_I2C_MODE_STANDARDSUB;
403 }
404 iface->transPtr = &data->byte;
405 break;
406 case I2C_SMBUS_WORD_DATA:
407 if (read_write == I2C_SMBUS_READ) {
408 iface->readNum = 2;
409 iface->cur_mode = TWI_I2C_MODE_COMBINED;
410 } else {
411 iface->writeNum = 2;
412 iface->cur_mode = TWI_I2C_MODE_STANDARDSUB;
413 }
414 iface->transPtr = (u8 *)&data->word;
415 break;
416 case I2C_SMBUS_PROC_CALL:
417 iface->writeNum = 2;
418 iface->readNum = 2;
419 iface->cur_mode = TWI_I2C_MODE_COMBINED;
420 iface->transPtr = (u8 *)&data->word;
421 break;
422 case I2C_SMBUS_BLOCK_DATA:
423 if (read_write == I2C_SMBUS_READ) {
424 iface->readNum = 0;
425 iface->cur_mode = TWI_I2C_MODE_COMBINED;
426 } else {
427 iface->writeNum = data->block[0] + 1;
428 iface->cur_mode = TWI_I2C_MODE_STANDARDSUB;
429 }
430 iface->transPtr = data->block;
431 break;
e0cd2dd5
MH
432 case I2C_SMBUS_I2C_BLOCK_DATA:
433 if (read_write == I2C_SMBUS_READ) {
434 iface->readNum = data->block[0];
435 iface->cur_mode = TWI_I2C_MODE_COMBINED;
436 } else {
437 iface->writeNum = data->block[0];
438 iface->cur_mode = TWI_I2C_MODE_STANDARDSUB;
439 }
440 iface->transPtr = (u8 *)&data->block[1];
441 break;
d24ecfcc
BW
442 default:
443 return -1;
444 }
445
446 iface->result = 0;
447 iface->manual_stop = 0;
448 iface->read_write = read_write;
449 iface->command = command;
afc13b76 450 init_completion(&(iface->complete));
d24ecfcc
BW
451
452 /* FIFO Initiation. Data in FIFO should be discarded before
453 * start a new operation.
454 */
aa3d0209 455 write_FIFO_CTL(iface, 0x3);
d24ecfcc 456 SSYNC();
aa3d0209 457 write_FIFO_CTL(iface, 0);
d24ecfcc
BW
458
459 /* clear int stat */
aa3d0209 460 write_INT_STAT(iface, MERR | MCOMP | XMTSERV | RCVSERV);
d24ecfcc
BW
461
462 /* Set Transmit device address */
aa3d0209 463 write_MASTER_ADDR(iface, addr);
d24ecfcc
BW
464 SSYNC();
465
d24ecfcc
BW
466 switch (iface->cur_mode) {
467 case TWI_I2C_MODE_STANDARDSUB:
aa3d0209
BW
468 write_XMT_DATA8(iface, iface->command);
469 write_INT_MASK(iface, MCOMP | MERR |
d24ecfcc
BW
470 ((iface->read_write == I2C_SMBUS_READ) ?
471 RCVSERV : XMTSERV));
472 SSYNC();
473
474 if (iface->writeNum + 1 <= 255)
aa3d0209 475 write_MASTER_CTL(iface, (iface->writeNum + 1) << 6);
d24ecfcc 476 else {
aa3d0209 477 write_MASTER_CTL(iface, 0xff << 6);
d24ecfcc
BW
478 iface->manual_stop = 1;
479 }
480 /* Master enable */
aa3d0209 481 write_MASTER_CTL(iface, read_MASTER_CTL(iface) | MEN |
d24ecfcc
BW
482 ((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ>100) ? FAST : 0));
483 break;
484 case TWI_I2C_MODE_COMBINED:
aa3d0209
BW
485 write_XMT_DATA8(iface, iface->command);
486 write_INT_MASK(iface, MCOMP | MERR | RCVSERV | XMTSERV);
d24ecfcc
BW
487 SSYNC();
488
489 if (iface->writeNum > 0)
aa3d0209 490 write_MASTER_CTL(iface, (iface->writeNum + 1) << 6);
d24ecfcc 491 else
aa3d0209 492 write_MASTER_CTL(iface, 0x1 << 6);
d24ecfcc 493 /* Master enable */
28a377c7 494 write_MASTER_CTL(iface, read_MASTER_CTL(iface) | MEN | RSTART |
d24ecfcc
BW
495 ((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ>100) ? FAST : 0));
496 break;
497 default:
aa3d0209 498 write_MASTER_CTL(iface, 0);
d24ecfcc
BW
499 if (size != I2C_SMBUS_QUICK) {
500 /* Don't access xmit data register when this is a
501 * read operation.
502 */
503 if (iface->read_write != I2C_SMBUS_READ) {
504 if (iface->writeNum > 0) {
aa3d0209
BW
505 write_XMT_DATA8(iface,
506 *(iface->transPtr++));
d24ecfcc 507 if (iface->writeNum <= 255)
aa3d0209
BW
508 write_MASTER_CTL(iface,
509 iface->writeNum << 6);
d24ecfcc 510 else {
aa3d0209
BW
511 write_MASTER_CTL(iface,
512 0xff << 6);
d24ecfcc
BW
513 iface->manual_stop = 1;
514 }
515 iface->writeNum--;
516 } else {
aa3d0209
BW
517 write_XMT_DATA8(iface, iface->command);
518 write_MASTER_CTL(iface, 1 << 6);
d24ecfcc
BW
519 }
520 } else {
521 if (iface->readNum > 0 && iface->readNum <= 255)
aa3d0209
BW
522 write_MASTER_CTL(iface,
523 iface->readNum << 6);
d24ecfcc 524 else if (iface->readNum > 255) {
aa3d0209 525 write_MASTER_CTL(iface, 0xff << 6);
d24ecfcc 526 iface->manual_stop = 1;
dd7319a5 527 } else
d24ecfcc 528 break;
d24ecfcc
BW
529 }
530 }
aa3d0209 531 write_INT_MASK(iface, MCOMP | MERR |
d24ecfcc
BW
532 ((iface->read_write == I2C_SMBUS_READ) ?
533 RCVSERV : XMTSERV));
534 SSYNC();
535
536 /* Master enable */
aa3d0209 537 write_MASTER_CTL(iface, read_MASTER_CTL(iface) | MEN |
d24ecfcc
BW
538 ((iface->read_write == I2C_SMBUS_READ) ? MDIR : 0) |
539 ((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ > 100) ? FAST : 0));
540 break;
541 }
542 SSYNC();
543
dd7319a5
SZ
544 while (!iface->result) {
545 if (!wait_for_completion_timeout(&iface->complete,
546 adap->timeout)) {
547 iface->result = -1;
548 dev_err(&adap->dev, "smbus transfer timeout\n");
549 }
550 }
d24ecfcc
BW
551
552 rc = (iface->result >= 0) ? 0 : -1;
553
d24ecfcc
BW
554 return rc;
555}
556
dd7319a5
SZ
557/*
558 * Generic I2C SMBus transfer entrypoint
559 */
560int bfin_twi_smbus_xfer(struct i2c_adapter *adap, u16 addr,
561 unsigned short flags, char read_write,
562 u8 command, int size, union i2c_smbus_data *data)
563{
be2f80f0 564 return bfin_twi_do_smbus_xfer(adap, addr, flags,
dd7319a5 565 read_write, command, size, data);
dd7319a5
SZ
566}
567
d24ecfcc
BW
568/*
569 * Return what the adapter supports
570 */
571static u32 bfin_twi_functionality(struct i2c_adapter *adap)
572{
573 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
574 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
575 I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_PROC_CALL |
e0cd2dd5 576 I2C_FUNC_I2C | I2C_FUNC_SMBUS_I2C_BLOCK;
d24ecfcc
BW
577}
578
d24ecfcc
BW
579static struct i2c_algorithm bfin_twi_algorithm = {
580 .master_xfer = bfin_twi_master_xfer,
581 .smbus_xfer = bfin_twi_smbus_xfer,
582 .functionality = bfin_twi_functionality,
583};
584
2fb9ac0c 585#ifdef CONFIG_PM_SLEEP
85777ad2 586static int i2c_bfin_twi_suspend(struct device *dev)
d24ecfcc 587{
85777ad2 588 struct bfin_twi_iface *iface = dev_get_drvdata(dev);
958585f5
MH
589
590 iface->saved_clkdiv = read_CLKDIV(iface);
591 iface->saved_control = read_CONTROL(iface);
592
593 free_irq(iface->irq, iface);
d24ecfcc
BW
594
595 /* Disable TWI */
958585f5 596 write_CONTROL(iface, iface->saved_control & ~TWI_ENA);
d24ecfcc
BW
597
598 return 0;
599}
600
85777ad2 601static int i2c_bfin_twi_resume(struct device *dev)
d24ecfcc 602{
85777ad2 603 struct bfin_twi_iface *iface = dev_get_drvdata(dev);
d24ecfcc 604
958585f5 605 int rc = request_irq(iface->irq, bfin_twi_interrupt_entry,
85777ad2 606 0, to_platform_device(dev)->name, iface);
958585f5 607 if (rc) {
85777ad2 608 dev_err(dev, "Can't get IRQ %d !\n", iface->irq);
958585f5
MH
609 return -ENODEV;
610 }
611
612 /* Resume TWI interface clock as specified */
613 write_CLKDIV(iface, iface->saved_clkdiv);
614
615 /* Resume TWI */
616 write_CONTROL(iface, iface->saved_control);
d24ecfcc
BW
617
618 return 0;
619}
620
85777ad2
RW
621static SIMPLE_DEV_PM_OPS(i2c_bfin_twi_pm,
622 i2c_bfin_twi_suspend, i2c_bfin_twi_resume);
2fb9ac0c
JH
623#define I2C_BFIN_TWI_PM_OPS (&i2c_bfin_twi_pm)
624#else
625#define I2C_BFIN_TWI_PM_OPS NULL
626#endif
85777ad2 627
aa3d0209 628static int i2c_bfin_twi_probe(struct platform_device *pdev)
d24ecfcc 629{
aa3d0209 630 struct bfin_twi_iface *iface;
d24ecfcc 631 struct i2c_adapter *p_adap;
aa3d0209 632 struct resource *res;
d24ecfcc 633 int rc;
9528d1c7 634 unsigned int clkhilow;
d24ecfcc 635
aa3d0209
BW
636 iface = kzalloc(sizeof(struct bfin_twi_iface), GFP_KERNEL);
637 if (!iface) {
638 dev_err(&pdev->dev, "Cannot allocate memory\n");
639 rc = -ENOMEM;
640 goto out_error_nomem;
641 }
642
d24ecfcc 643 spin_lock_init(&(iface->lock));
aa3d0209
BW
644
645 /* Find and map our resources */
646 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
647 if (res == NULL) {
648 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
649 rc = -ENOENT;
650 goto out_error_get_res;
651 }
652
c6ffddea 653 iface->regs_base = ioremap(res->start, resource_size(res));
aa3d0209
BW
654 if (iface->regs_base == NULL) {
655 dev_err(&pdev->dev, "Cannot map IO\n");
656 rc = -ENXIO;
657 goto out_error_ioremap;
658 }
659
660 iface->irq = platform_get_irq(pdev, 0);
661 if (iface->irq < 0) {
662 dev_err(&pdev->dev, "No IRQ specified\n");
663 rc = -ENOENT;
664 goto out_error_no_irq;
665 }
d24ecfcc 666
d24ecfcc 667 p_adap = &iface->adap;
aa3d0209
BW
668 p_adap->nr = pdev->id;
669 strlcpy(p_adap->name, pdev->name, sizeof(p_adap->name));
d24ecfcc
BW
670 p_adap->algo = &bfin_twi_algorithm;
671 p_adap->algo_data = iface;
e1995f65 672 p_adap->class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
aa3d0209 673 p_adap->dev.parent = &pdev->dev;
dd7319a5
SZ
674 p_adap->timeout = 5 * HZ;
675 p_adap->retries = 3;
d24ecfcc 676
6d4028c6 677 rc = peripheral_request_list(
3c41aa71 678 dev_get_platdata(&pdev->dev),
6d4028c6 679 "i2c-bfin-twi");
74d362e0
BW
680 if (rc) {
681 dev_err(&pdev->dev, "Can't setup pin mux!\n");
682 goto out_error_pin_mux;
683 }
684
d24ecfcc 685 rc = request_irq(iface->irq, bfin_twi_interrupt_entry,
4311051c 686 0, pdev->name, iface);
d24ecfcc 687 if (rc) {
aa3d0209
BW
688 dev_err(&pdev->dev, "Can't get IRQ %d !\n", iface->irq);
689 rc = -ENODEV;
690 goto out_error_req_irq;
d24ecfcc
BW
691 }
692
693 /* Set TWI internal clock as 10MHz */
ac07fb4d 694 write_CONTROL(iface, ((get_sclk() / 1000 / 1000 + 5) / 10) & 0x7F);
d24ecfcc 695
9528d1c7
MH
696 /*
697 * We will not end up with a CLKDIV=0 because no one will specify
ac07fb4d 698 * 20kHz SCL or less in Kconfig now. (5 * 1000 / 20 = 250)
9528d1c7 699 */
ac07fb4d 700 clkhilow = ((10 * 1000 / CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ) + 1) / 2;
9528d1c7 701
d24ecfcc 702 /* Set Twi interface clock as specified */
9528d1c7 703 write_CLKDIV(iface, (clkhilow << 8) | clkhilow);
d24ecfcc
BW
704
705 /* Enable TWI */
aa3d0209 706 write_CONTROL(iface, read_CONTROL(iface) | TWI_ENA);
d24ecfcc
BW
707 SSYNC();
708
991dee59 709 rc = i2c_add_numbered_adapter(p_adap);
aa3d0209
BW
710 if (rc < 0) {
711 dev_err(&pdev->dev, "Can't add i2c adapter!\n");
712 goto out_error_add_adapter;
713 }
714
715 platform_set_drvdata(pdev, iface);
d24ecfcc 716
fa6ad222
BW
717 dev_info(&pdev->dev, "Blackfin BF5xx on-chip I2C TWI Contoller, "
718 "regs_base@%p\n", iface->regs_base);
aa3d0209
BW
719
720 return 0;
721
722out_error_add_adapter:
723 free_irq(iface->irq, iface);
724out_error_req_irq:
725out_error_no_irq:
3c41aa71 726 peripheral_free_list(dev_get_platdata(&pdev->dev));
74d362e0 727out_error_pin_mux:
aa3d0209
BW
728 iounmap(iface->regs_base);
729out_error_ioremap:
730out_error_get_res:
731 kfree(iface);
732out_error_nomem:
d24ecfcc
BW
733 return rc;
734}
735
736static int i2c_bfin_twi_remove(struct platform_device *pdev)
737{
738 struct bfin_twi_iface *iface = platform_get_drvdata(pdev);
739
d24ecfcc
BW
740 i2c_del_adapter(&(iface->adap));
741 free_irq(iface->irq, iface);
3c41aa71 742 peripheral_free_list(dev_get_platdata(&pdev->dev));
aa3d0209
BW
743 iounmap(iface->regs_base);
744 kfree(iface);
d24ecfcc
BW
745
746 return 0;
747}
748
749static struct platform_driver i2c_bfin_twi_driver = {
750 .probe = i2c_bfin_twi_probe,
751 .remove = i2c_bfin_twi_remove,
d24ecfcc
BW
752 .driver = {
753 .name = "i2c-bfin-twi",
754 .owner = THIS_MODULE,
2fb9ac0c 755 .pm = I2C_BFIN_TWI_PM_OPS,
d24ecfcc
BW
756 },
757};
758
759static int __init i2c_bfin_twi_init(void)
760{
d24ecfcc
BW
761 return platform_driver_register(&i2c_bfin_twi_driver);
762}
763
764static void __exit i2c_bfin_twi_exit(void)
765{
766 platform_driver_unregister(&i2c_bfin_twi_driver);
767}
768
74f56c4a 769subsys_initcall(i2c_bfin_twi_init);
d24ecfcc 770module_exit(i2c_bfin_twi_exit);
fa6ad222
BW
771
772MODULE_AUTHOR("Bryan Wu, Sonic Zhang");
773MODULE_DESCRIPTION("Blackfin BF5xx on-chip I2C TWI Contoller Driver");
774MODULE_LICENSE("GPL");
add8eda7 775MODULE_ALIAS("platform:i2c-bfin-twi");
This page took 0.552996 seconds and 5 git commands to generate.