]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/i2c/busses/i2c-pnx.c
UBUNTU: Ubuntu-5.3.0-29.31
[mirror_ubuntu-eoan-kernel.git] / drivers / i2c / busses / i2c-pnx.c
CommitLineData
41561f28
VW
1/*
2 * Provides I2C support for Philips PNX010x/PNX4008 boards.
3 *
4 * Authors: Dennis Kovalev <dkovalev@ru.mvista.com>
5 * Vitaly Wool <vwool@ru.mvista.com>
6 *
7 * 2004-2006 (c) MontaVista Software, Inc. This file is licensed under
8 * the terms of the GNU General Public License version 2. This program
9 * is licensed "as is" without any warranty of any kind, whether express
10 * or implied.
11 */
12
13#include <linux/module.h>
14#include <linux/interrupt.h>
15#include <linux/ioport.h>
16#include <linux/delay.h>
17#include <linux/i2c.h>
18#include <linux/timer.h>
19#include <linux/completion.h>
20#include <linux/platform_device.h>
a7d73d8c 21#include <linux/io.h>
0321cb83
RK
22#include <linux/err.h>
23#include <linux/clk.h>
5a0e3ad6 24#include <linux/slab.h>
4edd65e6 25#include <linux/of.h>
0321cb83 26
b41a216d
RS
27#define I2C_PNX_TIMEOUT_DEFAULT 10 /* msec */
28#define I2C_PNX_SPEED_KHZ_DEFAULT 100
29#define I2C_PNX_REGION_SIZE 0x100
41561f28 30
caaccda1
WS
31struct i2c_pnx_mif {
32 int ret; /* Return value */
33 int mode; /* Interface mode */
34 struct completion complete; /* I/O completion */
35 struct timer_list timer; /* Timeout */
36 u8 * buf; /* Data buffer */
37 int len; /* Length of data buffer */
38 int order; /* RX Bytes to order via TX */
39};
40
41struct i2c_pnx_algo_data {
42 void __iomem *ioaddr;
43 struct i2c_pnx_mif mif;
44 int last;
45 struct clk *clk;
46 struct i2c_adapter adapter;
47 int irq;
48 u32 timeout;
49};
50
be460385
RS
51enum {
52 mstatus_tdi = 0x00000001,
53 mstatus_afi = 0x00000002,
54 mstatus_nai = 0x00000004,
55 mstatus_drmi = 0x00000008,
56 mstatus_active = 0x00000020,
57 mstatus_scl = 0x00000040,
58 mstatus_sda = 0x00000080,
59 mstatus_rff = 0x00000100,
60 mstatus_rfe = 0x00000200,
61 mstatus_tff = 0x00000400,
62 mstatus_tfe = 0x00000800,
63};
64
65enum {
66 mcntrl_tdie = 0x00000001,
67 mcntrl_afie = 0x00000002,
68 mcntrl_naie = 0x00000004,
69 mcntrl_drmie = 0x00000008,
b3aafe80
RS
70 mcntrl_drsie = 0x00000010,
71 mcntrl_rffie = 0x00000020,
72 mcntrl_daie = 0x00000040,
be460385
RS
73 mcntrl_tffie = 0x00000080,
74 mcntrl_reset = 0x00000100,
75 mcntrl_cdbmode = 0x00000400,
76};
77
78enum {
79 rw_bit = 1 << 0,
80 start_bit = 1 << 8,
81 stop_bit = 1 << 9,
82};
83
84#define I2C_REG_RX(a) ((a)->ioaddr) /* Rx FIFO reg (RO) */
85#define I2C_REG_TX(a) ((a)->ioaddr) /* Tx FIFO reg (WO) */
86#define I2C_REG_STS(a) ((a)->ioaddr + 0x04) /* Status reg (RO) */
87#define I2C_REG_CTL(a) ((a)->ioaddr + 0x08) /* Ctl reg */
88#define I2C_REG_CKL(a) ((a)->ioaddr + 0x0c) /* Clock divider low */
89#define I2C_REG_CKH(a) ((a)->ioaddr + 0x10) /* Clock divider high */
90#define I2C_REG_ADR(a) ((a)->ioaddr + 0x14) /* I2C address */
91#define I2C_REG_RFL(a) ((a)->ioaddr + 0x18) /* Rx FIFO level (RO) */
92#define I2C_REG_TFL(a) ((a)->ioaddr + 0x1c) /* Tx FIFO level (RO) */
93#define I2C_REG_RXB(a) ((a)->ioaddr + 0x20) /* Num of bytes Rx-ed (RO) */
94#define I2C_REG_TXB(a) ((a)->ioaddr + 0x24) /* Num of bytes Tx-ed (RO) */
95#define I2C_REG_TXS(a) ((a)->ioaddr + 0x28) /* Tx slave FIFO (RO) */
96#define I2C_REG_STFL(a) ((a)->ioaddr + 0x2c) /* Tx slave FIFO level (RO) */
97
b41a216d 98static inline int wait_timeout(struct i2c_pnx_algo_data *data)
41561f28 99{
b41a216d 100 long timeout = data->timeout;
41561f28
VW
101 while (timeout > 0 &&
102 (ioread32(I2C_REG_STS(data)) & mstatus_active)) {
103 mdelay(1);
104 timeout--;
105 }
106 return (timeout <= 0);
107}
108
b41a216d 109static inline int wait_reset(struct i2c_pnx_algo_data *data)
41561f28 110{
b41a216d 111 long timeout = data->timeout;
41561f28
VW
112 while (timeout > 0 &&
113 (ioread32(I2C_REG_CTL(data)) & mcntrl_reset)) {
114 mdelay(1);
115 timeout--;
116 }
117 return (timeout <= 0);
118}
119
81d6724a 120static inline void i2c_pnx_arm_timer(struct i2c_pnx_algo_data *alg_data)
41561f28 121{
81d6724a 122 struct timer_list *timer = &alg_data->mif.timer;
b41a216d 123 unsigned long expires = msecs_to_jiffies(alg_data->timeout);
41561f28 124
b2f125bc
KW
125 if (expires <= 1)
126 expires = 2;
127
41561f28
VW
128 del_timer_sync(timer);
129
eed18b5f 130 dev_dbg(&alg_data->adapter.dev, "Timer armed at %lu plus %lu jiffies.\n",
41561f28
VW
131 jiffies, expires);
132
133 timer->expires = jiffies + expires;
41561f28
VW
134
135 add_timer(timer);
136}
137
138/**
139 * i2c_pnx_start - start a device
140 * @slave_addr: slave address
141 * @adap: pointer to adapter structure
142 *
143 * Generate a START signal in the desired mode.
144 */
81d6724a
RK
145static int i2c_pnx_start(unsigned char slave_addr,
146 struct i2c_pnx_algo_data *alg_data)
41561f28 147{
81d6724a 148 dev_dbg(&alg_data->adapter.dev, "%s(): addr 0x%x mode %d\n", __func__,
41561f28
VW
149 slave_addr, alg_data->mif.mode);
150
151 /* Check for 7 bit slave addresses only */
152 if (slave_addr & ~0x7f) {
4be53dbe
RK
153 dev_err(&alg_data->adapter.dev,
154 "%s: Invalid slave address %x. Only 7-bit addresses are supported\n",
155 alg_data->adapter.name, slave_addr);
41561f28
VW
156 return -EINVAL;
157 }
158
159 /* First, make sure bus is idle */
b41a216d 160 if (wait_timeout(alg_data)) {
41561f28 161 /* Somebody else is monopolizing the bus */
4be53dbe
RK
162 dev_err(&alg_data->adapter.dev,
163 "%s: Bus busy. Slave addr = %02x, cntrl = %x, stat = %x\n",
164 alg_data->adapter.name, slave_addr,
165 ioread32(I2C_REG_CTL(alg_data)),
166 ioread32(I2C_REG_STS(alg_data)));
41561f28
VW
167 return -EBUSY;
168 } else if (ioread32(I2C_REG_STS(alg_data)) & mstatus_afi) {
169 /* Sorry, we lost the bus */
4be53dbe
RK
170 dev_err(&alg_data->adapter.dev,
171 "%s: Arbitration failure. Slave addr = %02x\n",
172 alg_data->adapter.name, slave_addr);
41561f28
VW
173 return -EIO;
174 }
175
176 /*
177 * OK, I2C is enabled and we have the bus.
178 * Clear the current TDI and AFI status flags.
179 */
180 iowrite32(ioread32(I2C_REG_STS(alg_data)) | mstatus_tdi | mstatus_afi,
181 I2C_REG_STS(alg_data));
182
81d6724a 183 dev_dbg(&alg_data->adapter.dev, "%s(): sending %#x\n", __func__,
41561f28
VW
184 (slave_addr << 1) | start_bit | alg_data->mif.mode);
185
186 /* Write the slave address, START bit and R/W bit */
187 iowrite32((slave_addr << 1) | start_bit | alg_data->mif.mode,
188 I2C_REG_TX(alg_data));
189
81d6724a 190 dev_dbg(&alg_data->adapter.dev, "%s(): exit\n", __func__);
41561f28
VW
191
192 return 0;
193}
194
195/**
196 * i2c_pnx_stop - stop a device
197 * @adap: pointer to I2C adapter structure
198 *
199 * Generate a STOP signal to terminate the master transaction.
200 */
81d6724a 201static void i2c_pnx_stop(struct i2c_pnx_algo_data *alg_data)
41561f28 202{
41561f28
VW
203 /* Only 1 msec max timeout due to interrupt context */
204 long timeout = 1000;
205
81d6724a 206 dev_dbg(&alg_data->adapter.dev, "%s(): entering: stat = %04x.\n",
08882d20 207 __func__, ioread32(I2C_REG_STS(alg_data)));
41561f28
VW
208
209 /* Write a STOP bit to TX FIFO */
210 iowrite32(0xff | stop_bit, I2C_REG_TX(alg_data));
211
212 /* Wait until the STOP is seen. */
213 while (timeout > 0 &&
214 (ioread32(I2C_REG_STS(alg_data)) & mstatus_active)) {
215 /* may be called from interrupt context */
216 udelay(1);
217 timeout--;
218 }
219
81d6724a 220 dev_dbg(&alg_data->adapter.dev, "%s(): exiting: stat = %04x.\n",
08882d20 221 __func__, ioread32(I2C_REG_STS(alg_data)));
41561f28
VW
222}
223
224/**
225 * i2c_pnx_master_xmit - transmit data to slave
226 * @adap: pointer to I2C adapter structure
227 *
228 * Sends one byte of data to the slave
229 */
81d6724a 230static int i2c_pnx_master_xmit(struct i2c_pnx_algo_data *alg_data)
41561f28 231{
41561f28
VW
232 u32 val;
233
81d6724a 234 dev_dbg(&alg_data->adapter.dev, "%s(): entering: stat = %04x.\n",
08882d20 235 __func__, ioread32(I2C_REG_STS(alg_data)));
41561f28
VW
236
237 if (alg_data->mif.len > 0) {
238 /* We still have something to talk about... */
239 val = *alg_data->mif.buf++;
240
28ad3321
KW
241 if (alg_data->mif.len == 1)
242 val |= stop_bit;
243
41561f28
VW
244 alg_data->mif.len--;
245 iowrite32(val, I2C_REG_TX(alg_data));
246
4be53dbe
RK
247 dev_dbg(&alg_data->adapter.dev, "%s(): xmit %#x [%d]\n",
248 __func__, val, alg_data->mif.len + 1);
41561f28
VW
249
250 if (alg_data->mif.len == 0) {
251 if (alg_data->last) {
252 /* Wait until the STOP is seen. */
b41a216d 253 if (wait_timeout(alg_data))
4be53dbe
RK
254 dev_err(&alg_data->adapter.dev,
255 "The bus is still active after timeout\n");
41561f28
VW
256 }
257 /* Disable master interrupts */
258 iowrite32(ioread32(I2C_REG_CTL(alg_data)) &
259 ~(mcntrl_afie | mcntrl_naie | mcntrl_drmie),
260 I2C_REG_CTL(alg_data));
261
262 del_timer_sync(&alg_data->mif.timer);
263
4be53dbe
RK
264 dev_dbg(&alg_data->adapter.dev,
265 "%s(): Waking up xfer routine.\n",
08882d20 266 __func__);
41561f28
VW
267
268 complete(&alg_data->mif.complete);
269 }
270 } else if (alg_data->mif.len == 0) {
271 /* zero-sized transfer */
81d6724a 272 i2c_pnx_stop(alg_data);
41561f28
VW
273
274 /* Disable master interrupts. */
275 iowrite32(ioread32(I2C_REG_CTL(alg_data)) &
276 ~(mcntrl_afie | mcntrl_naie | mcntrl_drmie),
277 I2C_REG_CTL(alg_data));
278
279 /* Stop timer. */
280 del_timer_sync(&alg_data->mif.timer);
4be53dbe
RK
281 dev_dbg(&alg_data->adapter.dev,
282 "%s(): Waking up xfer routine after zero-xfer.\n",
283 __func__);
41561f28
VW
284
285 complete(&alg_data->mif.complete);
286 }
287
81d6724a 288 dev_dbg(&alg_data->adapter.dev, "%s(): exiting: stat = %04x.\n",
08882d20 289 __func__, ioread32(I2C_REG_STS(alg_data)));
41561f28
VW
290
291 return 0;
292}
293
294/**
295 * i2c_pnx_master_rcv - receive data from slave
296 * @adap: pointer to I2C adapter structure
297 *
298 * Reads one byte data from the slave
299 */
81d6724a 300static int i2c_pnx_master_rcv(struct i2c_pnx_algo_data *alg_data)
41561f28 301{
41561f28
VW
302 unsigned int val = 0;
303 u32 ctl = 0;
304
81d6724a 305 dev_dbg(&alg_data->adapter.dev, "%s(): entering: stat = %04x.\n",
08882d20 306 __func__, ioread32(I2C_REG_STS(alg_data)));
41561f28
VW
307
308 /* Check, whether there is already data,
309 * or we didn't 'ask' for it yet.
310 */
311 if (ioread32(I2C_REG_STS(alg_data)) & mstatus_rfe) {
c076ada4
RS
312 /* 'Asking' is done asynchronously, e.g. dummy TX of several
313 * bytes is done before the first actual RX arrives in FIFO.
314 * Therefore, ordered bytes (via TX) are counted separately.
315 */
316 if (alg_data->mif.order) {
317 dev_dbg(&alg_data->adapter.dev,
318 "%s(): Write dummy data to fill Rx-fifo...\n",
319 __func__);
41561f28 320
c076ada4
RS
321 if (alg_data->mif.order == 1) {
322 /* Last byte, do not acknowledge next rcv. */
323 val |= stop_bit;
324
325 /*
326 * Enable interrupt RFDAIE (data in Rx fifo),
327 * and disable DRMIE (need data for Tx)
328 */
329 ctl = ioread32(I2C_REG_CTL(alg_data));
330 ctl |= mcntrl_rffie | mcntrl_daie;
331 ctl &= ~mcntrl_drmie;
332 iowrite32(ctl, I2C_REG_CTL(alg_data));
333 }
28ad3321 334
41561f28 335 /*
c076ada4
RS
336 * Now we'll 'ask' for data:
337 * For each byte we want to receive, we must
338 * write a (dummy) byte to the Tx-FIFO.
41561f28 339 */
c076ada4
RS
340 iowrite32(val, I2C_REG_TX(alg_data));
341 alg_data->mif.order--;
41561f28 342 }
41561f28
VW
343 return 0;
344 }
345
346 /* Handle data. */
347 if (alg_data->mif.len > 0) {
348 val = ioread32(I2C_REG_RX(alg_data));
349 *alg_data->mif.buf++ = (u8) (val & 0xff);
4be53dbe
RK
350 dev_dbg(&alg_data->adapter.dev, "%s(): rcv 0x%x [%d]\n",
351 __func__, val, alg_data->mif.len);
41561f28
VW
352
353 alg_data->mif.len--;
354 if (alg_data->mif.len == 0) {
355 if (alg_data->last)
356 /* Wait until the STOP is seen. */
b41a216d 357 if (wait_timeout(alg_data))
4be53dbe
RK
358 dev_err(&alg_data->adapter.dev,
359 "The bus is still active after timeout\n");
41561f28
VW
360
361 /* Disable master interrupts */
362 ctl = ioread32(I2C_REG_CTL(alg_data));
363 ctl &= ~(mcntrl_afie | mcntrl_naie | mcntrl_rffie |
364 mcntrl_drmie | mcntrl_daie);
365 iowrite32(ctl, I2C_REG_CTL(alg_data));
366
367 /* Kill timer. */
368 del_timer_sync(&alg_data->mif.timer);
369 complete(&alg_data->mif.complete);
370 }
371 }
372
81d6724a 373 dev_dbg(&alg_data->adapter.dev, "%s(): exiting: stat = %04x.\n",
08882d20 374 __func__, ioread32(I2C_REG_STS(alg_data)));
41561f28
VW
375
376 return 0;
377}
378
6c566fb7 379static irqreturn_t i2c_pnx_interrupt(int irq, void *dev_id)
41561f28 380{
81d6724a 381 struct i2c_pnx_algo_data *alg_data = dev_id;
41561f28 382 u32 stat, ctl;
41561f28 383
4be53dbe
RK
384 dev_dbg(&alg_data->adapter.dev,
385 "%s(): mstat = %x mctrl = %x, mode = %d\n",
08882d20 386 __func__,
41561f28
VW
387 ioread32(I2C_REG_STS(alg_data)),
388 ioread32(I2C_REG_CTL(alg_data)),
389 alg_data->mif.mode);
390 stat = ioread32(I2C_REG_STS(alg_data));
391
392 /* let's see what kind of event this is */
393 if (stat & mstatus_afi) {
394 /* We lost arbitration in the midst of a transfer */
395 alg_data->mif.ret = -EIO;
396
397 /* Disable master interrupts. */
398 ctl = ioread32(I2C_REG_CTL(alg_data));
399 ctl &= ~(mcntrl_afie | mcntrl_naie | mcntrl_rffie |
400 mcntrl_drmie);
401 iowrite32(ctl, I2C_REG_CTL(alg_data));
402
403 /* Stop timer, to prevent timeout. */
404 del_timer_sync(&alg_data->mif.timer);
405 complete(&alg_data->mif.complete);
406 } else if (stat & mstatus_nai) {
407 /* Slave did not acknowledge, generate a STOP */
4be53dbe
RK
408 dev_dbg(&alg_data->adapter.dev,
409 "%s(): Slave did not acknowledge, generating a STOP.\n",
08882d20 410 __func__);
81d6724a 411 i2c_pnx_stop(alg_data);
41561f28
VW
412
413 /* Disable master interrupts. */
414 ctl = ioread32(I2C_REG_CTL(alg_data));
415 ctl &= ~(mcntrl_afie | mcntrl_naie | mcntrl_rffie |
416 mcntrl_drmie);
417 iowrite32(ctl, I2C_REG_CTL(alg_data));
418
419 /* Our return value. */
420 alg_data->mif.ret = -EIO;
421
422 /* Stop timer, to prevent timeout. */
423 del_timer_sync(&alg_data->mif.timer);
424 complete(&alg_data->mif.complete);
425 } else {
426 /*
427 * Two options:
428 * - Master Tx needs data.
429 * - There is data in the Rx-fifo
430 * The latter is only the case if we have requested for data,
431 * via a dummy write. (See 'i2c_pnx_master_rcv'.)
432 * We therefore check, as a sanity check, whether that interrupt
433 * has been enabled.
434 */
435 if ((stat & mstatus_drmi) || !(stat & mstatus_rfe)) {
436 if (alg_data->mif.mode == I2C_SMBUS_WRITE) {
81d6724a 437 i2c_pnx_master_xmit(alg_data);
41561f28 438 } else if (alg_data->mif.mode == I2C_SMBUS_READ) {
81d6724a 439 i2c_pnx_master_rcv(alg_data);
41561f28
VW
440 }
441 }
442 }
443
444 /* Clear TDI and AFI bits */
445 stat = ioread32(I2C_REG_STS(alg_data));
446 iowrite32(stat | mstatus_tdi | mstatus_afi, I2C_REG_STS(alg_data));
447
4be53dbe
RK
448 dev_dbg(&alg_data->adapter.dev,
449 "%s(): exiting, stat = %x ctrl = %x.\n",
08882d20 450 __func__, ioread32(I2C_REG_STS(alg_data)),
41561f28
VW
451 ioread32(I2C_REG_CTL(alg_data)));
452
453 return IRQ_HANDLED;
454}
455
b9e43e36 456static void i2c_pnx_timeout(struct timer_list *t)
41561f28 457{
b9e43e36 458 struct i2c_pnx_algo_data *alg_data = from_timer(alg_data, t, mif.timer);
41561f28
VW
459 u32 ctl;
460
4be53dbe
RK
461 dev_err(&alg_data->adapter.dev,
462 "Master timed out. stat = %04x, cntrl = %04x. Resetting master...\n",
463 ioread32(I2C_REG_STS(alg_data)),
464 ioread32(I2C_REG_CTL(alg_data)));
41561f28
VW
465
466 /* Reset master and disable interrupts */
467 ctl = ioread32(I2C_REG_CTL(alg_data));
468 ctl &= ~(mcntrl_afie | mcntrl_naie | mcntrl_rffie | mcntrl_drmie);
469 iowrite32(ctl, I2C_REG_CTL(alg_data));
470
471 ctl |= mcntrl_reset;
472 iowrite32(ctl, I2C_REG_CTL(alg_data));
b41a216d 473 wait_reset(alg_data);
41561f28
VW
474 alg_data->mif.ret = -EIO;
475 complete(&alg_data->mif.complete);
476}
477
81d6724a 478static inline void bus_reset_if_active(struct i2c_pnx_algo_data *alg_data)
41561f28 479{
41561f28
VW
480 u32 stat;
481
482 if ((stat = ioread32(I2C_REG_STS(alg_data))) & mstatus_active) {
81d6724a 483 dev_err(&alg_data->adapter.dev,
41561f28 484 "%s: Bus is still active after xfer. Reset it...\n",
4be53dbe 485 alg_data->adapter.name);
41561f28
VW
486 iowrite32(ioread32(I2C_REG_CTL(alg_data)) | mcntrl_reset,
487 I2C_REG_CTL(alg_data));
b41a216d 488 wait_reset(alg_data);
41561f28
VW
489 } else if (!(stat & mstatus_rfe) || !(stat & mstatus_tfe)) {
490 /* If there is data in the fifo's after transfer,
491 * flush fifo's by reset.
492 */
493 iowrite32(ioread32(I2C_REG_CTL(alg_data)) | mcntrl_reset,
494 I2C_REG_CTL(alg_data));
b41a216d 495 wait_reset(alg_data);
41561f28
VW
496 } else if (stat & mstatus_nai) {
497 iowrite32(ioread32(I2C_REG_CTL(alg_data)) | mcntrl_reset,
498 I2C_REG_CTL(alg_data));
b41a216d 499 wait_reset(alg_data);
41561f28
VW
500 }
501}
502
503/**
504 * i2c_pnx_xfer - generic transfer entry point
505 * @adap: pointer to I2C adapter structure
506 * @msgs: array of messages
507 * @num: number of messages
508 *
509 * Initiates the transfer
510 */
511static int
512i2c_pnx_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
513{
514 struct i2c_msg *pmsg;
515 int rc = 0, completed = 0, i;
516 struct i2c_pnx_algo_data *alg_data = adap->algo_data;
77133e1c 517 u32 stat;
41561f28 518
4be53dbe
RK
519 dev_dbg(&alg_data->adapter.dev,
520 "%s(): entering: %d messages, stat = %04x.\n",
08882d20 521 __func__, num, ioread32(I2C_REG_STS(alg_data)));
41561f28 522
81d6724a 523 bus_reset_if_active(alg_data);
41561f28
VW
524
525 /* Process transactions in a loop. */
526 for (i = 0; rc >= 0 && i < num; i++) {
527 u8 addr;
528
529 pmsg = &msgs[i];
530 addr = pmsg->addr;
531
532 if (pmsg->flags & I2C_M_TEN) {
81d6724a 533 dev_err(&alg_data->adapter.dev,
41561f28 534 "%s: 10 bits addr not supported!\n",
81d6724a 535 alg_data->adapter.name);
41561f28
VW
536 rc = -EINVAL;
537 break;
538 }
539
540 alg_data->mif.buf = pmsg->buf;
541 alg_data->mif.len = pmsg->len;
c076ada4 542 alg_data->mif.order = pmsg->len;
41561f28
VW
543 alg_data->mif.mode = (pmsg->flags & I2C_M_RD) ?
544 I2C_SMBUS_READ : I2C_SMBUS_WRITE;
545 alg_data->mif.ret = 0;
546 alg_data->last = (i == num - 1);
547
4be53dbe
RK
548 dev_dbg(&alg_data->adapter.dev, "%s(): mode %d, %d bytes\n",
549 __func__, alg_data->mif.mode, alg_data->mif.len);
41561f28 550
81d6724a 551 i2c_pnx_arm_timer(alg_data);
41561f28
VW
552
553 /* initialize the completion var */
554 init_completion(&alg_data->mif.complete);
555
556 /* Enable master interrupt */
557 iowrite32(ioread32(I2C_REG_CTL(alg_data)) | mcntrl_afie |
558 mcntrl_naie | mcntrl_drmie,
559 I2C_REG_CTL(alg_data));
560
561 /* Put start-code and slave-address on the bus. */
81d6724a 562 rc = i2c_pnx_start(addr, alg_data);
41561f28
VW
563 if (rc < 0)
564 break;
565
566 /* Wait for completion */
567 wait_for_completion(&alg_data->mif.complete);
568
569 if (!(rc = alg_data->mif.ret))
570 completed++;
4be53dbe
RK
571 dev_dbg(&alg_data->adapter.dev,
572 "%s(): Complete, return code = %d.\n",
08882d20 573 __func__, rc);
41561f28
VW
574
575 /* Clear TDI and AFI bits in case they are set. */
576 if ((stat = ioread32(I2C_REG_STS(alg_data))) & mstatus_tdi) {
81d6724a 577 dev_dbg(&alg_data->adapter.dev,
41561f28 578 "%s: TDI still set... clearing now.\n",
81d6724a 579 alg_data->adapter.name);
41561f28
VW
580 iowrite32(stat, I2C_REG_STS(alg_data));
581 }
582 if ((stat = ioread32(I2C_REG_STS(alg_data))) & mstatus_afi) {
81d6724a 583 dev_dbg(&alg_data->adapter.dev,
41561f28 584 "%s: AFI still set... clearing now.\n",
81d6724a 585 alg_data->adapter.name);
41561f28
VW
586 iowrite32(stat, I2C_REG_STS(alg_data));
587 }
588 }
589
81d6724a 590 bus_reset_if_active(alg_data);
41561f28
VW
591
592 /* Cleanup to be sure... */
593 alg_data->mif.buf = NULL;
594 alg_data->mif.len = 0;
c076ada4 595 alg_data->mif.order = 0;
41561f28 596
81d6724a 597 dev_dbg(&alg_data->adapter.dev, "%s(): exiting, stat = %x\n",
08882d20 598 __func__, ioread32(I2C_REG_STS(alg_data)));
41561f28
VW
599
600 if (completed != num)
601 return ((rc < 0) ? rc : -EREMOTEIO);
602
603 return num;
604}
605
606static u32 i2c_pnx_func(struct i2c_adapter *adapter)
607{
608 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
609}
610
ad3caf8a 611static const struct i2c_algorithm pnx_algorithm = {
41561f28
VW
612 .master_xfer = i2c_pnx_xfer,
613 .functionality = i2c_pnx_func,
614};
615
d2f18534 616#ifdef CONFIG_PM_SLEEP
783414ba 617static int i2c_pnx_controller_suspend(struct device *dev)
41561f28 618{
783414ba 619 struct i2c_pnx_algo_data *alg_data = dev_get_drvdata(dev);
0321cb83 620
5dd32eae 621 clk_disable_unprepare(alg_data->clk);
0321cb83
RK
622
623 return 0;
41561f28
VW
624}
625
783414ba 626static int i2c_pnx_controller_resume(struct device *dev)
41561f28 627{
783414ba 628 struct i2c_pnx_algo_data *alg_data = dev_get_drvdata(dev);
0321cb83 629
5dd32eae 630 return clk_prepare_enable(alg_data->clk);
41561f28 631}
783414ba
RW
632
633static SIMPLE_DEV_PM_OPS(i2c_pnx_pm,
634 i2c_pnx_controller_suspend, i2c_pnx_controller_resume);
635#define PNX_I2C_PM (&i2c_pnx_pm)
a0dcf19f 636#else
783414ba 637#define PNX_I2C_PM NULL
a0dcf19f 638#endif
41561f28 639
0b255e92 640static int i2c_pnx_probe(struct platform_device *pdev)
41561f28
VW
641{
642 unsigned long tmp;
643 int ret = 0;
644 struct i2c_pnx_algo_data *alg_data;
6fff3da9 645 unsigned long freq;
1451ba3a 646 struct resource *res;
b41a216d 647 u32 speed = I2C_PNX_SPEED_KHZ_DEFAULT * 1000;
41561f28 648
d1ccc125
JH
649 alg_data = devm_kzalloc(&pdev->dev, sizeof(*alg_data), GFP_KERNEL);
650 if (!alg_data)
651 return -ENOMEM;
44c5d739 652
9d7f7363 653 platform_set_drvdata(pdev, alg_data);
41561f28 654
9d7f7363
RK
655 alg_data->adapter.dev.parent = &pdev->dev;
656 alg_data->adapter.algo = &pnx_algorithm;
657 alg_data->adapter.algo_data = alg_data;
658 alg_data->adapter.nr = pdev->id;
0321cb83 659
b41a216d
RS
660 alg_data->timeout = I2C_PNX_TIMEOUT_DEFAULT;
661#ifdef CONFIG_OF
662 alg_data->adapter.dev.of_node = of_node_get(pdev->dev.of_node);
663 if (pdev->dev.of_node) {
664 of_property_read_u32(pdev->dev.of_node, "clock-frequency",
665 &speed);
666 /*
667 * At this point, it is planned to add an OF timeout property.
668 * As soon as there is a consensus about how to call and handle
669 * this, sth. like the following can be put here:
670 *
671 * of_property_read_u32(pdev->dev.of_node, "timeout",
672 * &alg_data->timeout);
673 */
674 }
675#endif
d1ccc125
JH
676 alg_data->clk = devm_clk_get(&pdev->dev, NULL);
677 if (IS_ERR(alg_data->clk))
678 return PTR_ERR(alg_data->clk);
0321cb83 679
b9e43e36 680 timer_setup(&alg_data->mif.timer, i2c_pnx_timeout, 0);
41561f28 681
1451ba3a
RS
682 snprintf(alg_data->adapter.name, sizeof(alg_data->adapter.name),
683 "%s", pdev->name);
684
41561f28 685 /* Register I/O resource */
1451ba3a 686 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
d1ccc125
JH
687 alg_data->ioaddr = devm_ioremap_resource(&pdev->dev, res);
688 if (IS_ERR(alg_data->ioaddr))
689 return PTR_ERR(alg_data->ioaddr);
41561f28 690
5dd32eae 691 ret = clk_prepare_enable(alg_data->clk);
ebdbbf20 692 if (ret)
d1ccc125 693 return ret;
41561f28 694
6fff3da9
RK
695 freq = clk_get_rate(alg_data->clk);
696
41561f28
VW
697 /*
698 * Clock Divisor High This value is the number of system clocks
699 * the serial clock (SCL) will be high.
700 * For example, if the system clock period is 50 ns and the maximum
701 * desired serial period is 10000 ns (100 kHz), then CLKHI would be
702 * set to 0.5*(f_sys/f_i2c)-2=0.5*(20e6/100e3)-2=98. The actual value
703 * programmed into CLKHI will vary from this slightly due to
704 * variations in the output pad's rise and fall times as well as
705 * the deglitching filter length.
706 */
707
b41a216d 708 tmp = (freq / speed) / 2 - 2;
be80dbaa
KW
709 if (tmp > 0x3FF)
710 tmp = 0x3FF;
41561f28
VW
711 iowrite32(tmp, I2C_REG_CKH(alg_data));
712 iowrite32(tmp, I2C_REG_CKL(alg_data));
713
714 iowrite32(mcntrl_reset, I2C_REG_CTL(alg_data));
b41a216d 715 if (wait_reset(alg_data)) {
41561f28 716 ret = -ENODEV;
ebdbbf20 717 goto out_clock;
41561f28
VW
718 }
719 init_completion(&alg_data->mif.complete);
720
1451ba3a
RS
721 alg_data->irq = platform_get_irq(pdev, 0);
722 if (alg_data->irq < 0) {
723 dev_err(&pdev->dev, "Failed to get IRQ from platform resource\n");
498c0146
WY
724 ret = alg_data->irq;
725 goto out_clock;
1451ba3a 726 }
d1ccc125
JH
727 ret = devm_request_irq(&pdev->dev, alg_data->irq, i2c_pnx_interrupt,
728 0, pdev->name, alg_data);
41561f28
VW
729 if (ret)
730 goto out_clock;
731
732 /* Register this adapter with the I2C subsystem */
9d7f7363 733 ret = i2c_add_numbered_adapter(&alg_data->adapter);
ea734404 734 if (ret < 0)
d1ccc125 735 goto out_clock;
41561f28
VW
736
737 dev_dbg(&pdev->dev, "%s: Master at %#8x, irq %d.\n",
1451ba3a 738 alg_data->adapter.name, res->start, alg_data->irq);
41561f28
VW
739
740 return 0;
741
41561f28 742out_clock:
5dd32eae 743 clk_disable_unprepare(alg_data->clk);
41561f28
VW
744 return ret;
745}
746
0b255e92 747static int i2c_pnx_remove(struct platform_device *pdev)
41561f28 748{
9d7f7363 749 struct i2c_pnx_algo_data *alg_data = platform_get_drvdata(pdev);
41561f28 750
9d7f7363 751 i2c_del_adapter(&alg_data->adapter);
5dd32eae 752 clk_disable_unprepare(alg_data->clk);
41561f28
VW
753
754 return 0;
755}
756
b41a216d
RS
757#ifdef CONFIG_OF
758static const struct of_device_id i2c_pnx_of_match[] = {
759 { .compatible = "nxp,pnx-i2c" },
760 { },
761};
762MODULE_DEVICE_TABLE(of, i2c_pnx_of_match);
763#endif
764
41561f28
VW
765static struct platform_driver i2c_pnx_driver = {
766 .driver = {
767 .name = "pnx-i2c",
b41a216d 768 .of_match_table = of_match_ptr(i2c_pnx_of_match),
783414ba 769 .pm = PNX_I2C_PM,
41561f28
VW
770 },
771 .probe = i2c_pnx_probe,
0b255e92 772 .remove = i2c_pnx_remove,
41561f28
VW
773};
774
775static int __init i2c_adap_pnx_init(void)
776{
777 return platform_driver_register(&i2c_pnx_driver);
778}
779
780static void __exit i2c_adap_pnx_exit(void)
781{
782 platform_driver_unregister(&i2c_pnx_driver);
783}
784
785MODULE_AUTHOR("Vitaly Wool, Dennis Kovalev <source@mvista.com>");
786MODULE_DESCRIPTION("I2C driver for Philips IP3204-based I2C busses");
787MODULE_LICENSE("GPL");
add8eda7 788MODULE_ALIAS("platform:pnx-i2c");
41561f28 789
41561f28
VW
790/* We need to make sure I2C is initialized before USB */
791subsys_initcall(i2c_adap_pnx_init);
41561f28 792module_exit(i2c_adap_pnx_exit);