]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/i2c/busses/i2c-rcar.c
i2c: rcar: use adapter default for timeout
[mirror_ubuntu-zesty-kernel.git] / drivers / i2c / busses / i2c-rcar.c
CommitLineData
6ccbe607 1/*
3d99beab 2 * Driver for the Renesas RCar I2C unit
6ccbe607 3 *
3d99beab
WS
4 * Copyright (C) 2014 Wolfram Sang <wsa@sang-engineering.com>
5 *
6 * Copyright (C) 2012-14 Renesas Solutions Corp.
6ccbe607
KM
7 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
8 *
9 * This file is based on the drivers/i2c/busses/i2c-sh7760.c
10 * (c) 2005-2008 MSC Vertriebsges.m.b.H, Manuel Lauss <mlau@msc-ge.com>
11 *
12 * This file used out-of-tree driver i2c-rcar.c
13 * Copyright (C) 2011-2012 Renesas Electronics Corporation
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
3d99beab 17 * the Free Software Foundation; version 2 of the License.
6ccbe607
KM
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
6ccbe607
KM
23 */
24#include <linux/clk.h>
25#include <linux/delay.h>
26#include <linux/err.h>
6ccbe607
KM
27#include <linux/interrupt.h>
28#include <linux/io.h>
29#include <linux/i2c.h>
30#include <linux/i2c/i2c-rcar.h>
31#include <linux/kernel.h>
32#include <linux/module.h>
7679c0e1 33#include <linux/of_device.h>
6ccbe607
KM
34#include <linux/platform_device.h>
35#include <linux/pm_runtime.h>
36#include <linux/slab.h>
91bfe298 37#include <linux/spinlock.h>
6ccbe607
KM
38
39/* register offsets */
40#define ICSCR 0x00 /* slave ctrl */
41#define ICMCR 0x04 /* master ctrl */
42#define ICSSR 0x08 /* slave status */
43#define ICMSR 0x0C /* master status */
44#define ICSIER 0x10 /* slave irq enable */
45#define ICMIER 0x14 /* master irq enable */
46#define ICCCR 0x18 /* clock dividers */
47#define ICSAR 0x1C /* slave address */
48#define ICMAR 0x20 /* master address */
49#define ICRXTX 0x24 /* data port */
50
de20d185
WS
51/* ICSCR */
52#define SDBS (1 << 3) /* slave data buffer select */
53#define SIE (1 << 2) /* slave interface enable */
54#define GCAE (1 << 1) /* general call address enable */
55#define FNA (1 << 0) /* forced non acknowledgment */
56
6ccbe607
KM
57/* ICMCR */
58#define MDBS (1 << 7) /* non-fifo mode switch */
59#define FSCL (1 << 6) /* override SCL pin */
60#define FSDA (1 << 5) /* override SDA pin */
61#define OBPC (1 << 4) /* override pins */
62#define MIE (1 << 3) /* master if enable */
63#define TSBE (1 << 2)
64#define FSB (1 << 1) /* force stop bit */
65#define ESG (1 << 0) /* en startbit gen */
66
de20d185
WS
67/* ICSSR (also for ICSIER) */
68#define GCAR (1 << 6) /* general call received */
69#define STM (1 << 5) /* slave transmit mode */
70#define SSR (1 << 4) /* stop received */
71#define SDE (1 << 3) /* slave data empty */
72#define SDT (1 << 2) /* slave data transmitted */
73#define SDR (1 << 1) /* slave data received */
74#define SAR (1 << 0) /* slave addr received */
75
3e3aabac 76/* ICMSR (also for ICMIE) */
6ccbe607
KM
77#define MNR (1 << 6) /* nack received */
78#define MAL (1 << 5) /* arbitration lost */
79#define MST (1 << 4) /* sent a stop */
80#define MDE (1 << 3)
81#define MDT (1 << 2)
82#define MDR (1 << 1)
83#define MAT (1 << 0) /* slave addr xfer done */
84
6ccbe607 85
4f443a8a
WS
86#define RCAR_BUS_PHASE_START (MDBS | MIE | ESG)
87#define RCAR_BUS_PHASE_DATA (MDBS | MIE)
88#define RCAR_BUS_PHASE_STOP (MDBS | MIE | FSB)
6ccbe607 89
3e3aabac
WS
90#define RCAR_IRQ_SEND (MNR | MAL | MST | MAT | MDE)
91#define RCAR_IRQ_RECV (MNR | MAL | MST | MAT | MDR)
92#define RCAR_IRQ_STOP (MST)
6ccbe607 93
938916fb
SS
94#define RCAR_IRQ_ACK_SEND (~(MAT | MDE) & 0xFF)
95#define RCAR_IRQ_ACK_RECV (~(MAT | MDR) & 0xFF)
3c95de67 96
6ccbe607
KM
97#define ID_LAST_MSG (1 << 0)
98#define ID_IOERROR (1 << 1)
99#define ID_DONE (1 << 2)
100#define ID_ARBLOST (1 << 3)
101#define ID_NACK (1 << 4)
102
b720423a 103enum rcar_i2c_type {
043a3f11
KM
104 I2C_RCAR_GEN1,
105 I2C_RCAR_GEN2,
b720423a
NVD
106};
107
6ccbe607
KM
108struct rcar_i2c_priv {
109 void __iomem *io;
110 struct i2c_adapter adap;
111 struct i2c_msg *msg;
bc8120f1 112 struct clk *clk;
6ccbe607 113
91bfe298 114 spinlock_t lock;
6ccbe607
KM
115 wait_queue_head_t wait;
116
117 int pos;
6ccbe607
KM
118 u32 icccr;
119 u32 flags;
51371cdc 120 enum rcar_i2c_type devtype;
de20d185 121 struct i2c_client *slave;
6ccbe607
KM
122};
123
124#define rcar_i2c_priv_to_dev(p) ((p)->adap.dev.parent)
125#define rcar_i2c_is_recv(p) ((p)->msg->flags & I2C_M_RD)
126
127#define rcar_i2c_flags_set(p, f) ((p)->flags |= (f))
128#define rcar_i2c_flags_has(p, f) ((p)->flags & (f))
129
130#define LOOP_TIMEOUT 1024
131
51371cdc 132
6ccbe607
KM
133static void rcar_i2c_write(struct rcar_i2c_priv *priv, int reg, u32 val)
134{
135 writel(val, priv->io + reg);
136}
137
138static u32 rcar_i2c_read(struct rcar_i2c_priv *priv, int reg)
139{
140 return readl(priv->io + reg);
141}
142
143static void rcar_i2c_init(struct rcar_i2c_priv *priv)
144{
6ccbe607
KM
145 /* reset master mode */
146 rcar_i2c_write(priv, ICMIER, 0);
147 rcar_i2c_write(priv, ICMCR, 0);
148 rcar_i2c_write(priv, ICMSR, 0);
149 rcar_i2c_write(priv, ICMAR, 0);
150}
151
6ccbe607
KM
152static int rcar_i2c_bus_barrier(struct rcar_i2c_priv *priv)
153{
154 int i;
155
156 for (i = 0; i < LOOP_TIMEOUT; i++) {
157 /* make sure that bus is not busy */
158 if (!(rcar_i2c_read(priv, ICMCR) & FSDA))
159 return 0;
160 udelay(1);
161 }
162
163 return -EBUSY;
164}
165
6ccbe607
KM
166static int rcar_i2c_clock_calculate(struct rcar_i2c_priv *priv,
167 u32 bus_speed,
168 struct device *dev)
169{
6ccbe607
KM
170 u32 scgd, cdf;
171 u32 round, ick;
172 u32 scl;
b720423a 173 u32 cdf_width;
8d049403 174 unsigned long rate;
6ccbe607 175
b720423a 176 switch (priv->devtype) {
043a3f11 177 case I2C_RCAR_GEN1:
b720423a
NVD
178 cdf_width = 2;
179 break;
043a3f11 180 case I2C_RCAR_GEN2:
b720423a
NVD
181 cdf_width = 3;
182 break;
183 default:
184 dev_err(dev, "device type error\n");
185 return -EIO;
186 }
187
6ccbe607
KM
188 /*
189 * calculate SCL clock
190 * see
191 * ICCCR
192 *
193 * ick = clkp / (1 + CDF)
194 * SCL = ick / (20 + SCGD * 8 + F[(ticf + tr + intd) * ick])
195 *
196 * ick : I2C internal clock < 20 MHz
197 * ticf : I2C SCL falling time = 35 ns here
198 * tr : I2C SCL rising time = 200 ns here
199 * intd : LSI internal delay = 50 ns here
200 * clkp : peripheral_clk
201 * F[] : integer up-valuation
202 */
bc8120f1 203 rate = clk_get_rate(priv->clk);
8d049403 204 cdf = rate / 20000000;
22762ccb 205 if (cdf >= 1U << cdf_width) {
8d049403
GL
206 dev_err(dev, "Input clock %lu too high\n", rate);
207 return -EIO;
6ccbe607 208 }
8d049403 209 ick = rate / (cdf + 1);
6ccbe607 210
6ccbe607
KM
211 /*
212 * it is impossible to calculate large scale
213 * number on u32. separate it
214 *
215 * F[(ticf + tr + intd) * ick]
216 * = F[(35 + 200 + 50)ns * ick]
217 * = F[285 * ick / 1000000000]
218 * = F[(ick / 1000000) * 285 / 1000]
219 */
220 round = (ick + 500000) / 1000000 * 285;
221 round = (round + 500) / 1000;
222
223 /*
224 * SCL = ick / (20 + SCGD * 8 + F[(ticf + tr + intd) * ick])
225 *
226 * Calculation result (= SCL) should be less than
227 * bus_speed for hardware safety
8d049403
GL
228 *
229 * We could use something along the lines of
230 * div = ick / (bus_speed + 1) + 1;
231 * scgd = (div - 20 - round + 7) / 8;
232 * scl = ick / (20 + (scgd * 8) + round);
233 * (not fully verified) but that would get pretty involved
6ccbe607
KM
234 */
235 for (scgd = 0; scgd < 0x40; scgd++) {
236 scl = ick / (20 + (scgd * 8) + round);
237 if (scl <= bus_speed)
238 goto scgd_find;
239 }
240 dev_err(dev, "it is impossible to calculate best SCL\n");
241 return -EIO;
242
243scgd_find:
244 dev_dbg(dev, "clk %d/%d(%lu), round %u, CDF:0x%x, SCGD: 0x%x\n",
bc8120f1 245 scl, bus_speed, clk_get_rate(priv->clk), round, cdf, scgd);
6ccbe607
KM
246
247 /*
248 * keep icccr value
249 */
14d32f17 250 priv->icccr = scgd << cdf_width | cdf;
6ccbe607
KM
251
252 return 0;
253}
254
7c7117ff 255static void rcar_i2c_prepare_msg(struct rcar_i2c_priv *priv)
6ccbe607 256{
386babf8 257 int read = !!rcar_i2c_is_recv(priv);
6ccbe607 258
386babf8 259 rcar_i2c_write(priv, ICMAR, (priv->msg->addr << 1) | read);
3c95de67 260 rcar_i2c_write(priv, ICMSR, 0);
4f443a8a 261 rcar_i2c_write(priv, ICMCR, RCAR_BUS_PHASE_START);
386babf8 262 rcar_i2c_write(priv, ICMIER, read ? RCAR_IRQ_RECV : RCAR_IRQ_SEND);
6ccbe607
KM
263}
264
6ccbe607
KM
265/*
266 * interrupt functions
267 */
268static int rcar_i2c_irq_send(struct rcar_i2c_priv *priv, u32 msr)
269{
270 struct i2c_msg *msg = priv->msg;
271
272 /*
273 * FIXME
274 * sometimes, unknown interrupt happened.
275 * Do nothing
276 */
277 if (!(msr & MDE))
278 return 0;
279
280 /*
281 * If address transfer phase finished,
282 * goto data phase.
283 */
284 if (msr & MAT)
4f443a8a 285 rcar_i2c_write(priv, ICMCR, RCAR_BUS_PHASE_DATA);
6ccbe607
KM
286
287 if (priv->pos < msg->len) {
288 /*
289 * Prepare next data to ICRXTX register.
290 * This data will go to _SHIFT_ register.
291 *
292 * *
293 * [ICRXTX] -> [SHIFT] -> [I2C bus]
294 */
295 rcar_i2c_write(priv, ICRXTX, msg->buf[priv->pos]);
296 priv->pos++;
297
298 } else {
299 /*
300 * The last data was pushed to ICRXTX on _PREV_ empty irq.
301 * It is on _SHIFT_ register, and will sent to I2C bus.
302 *
303 * *
304 * [ICRXTX] -> [SHIFT] -> [I2C bus]
305 */
306
307 if (priv->flags & ID_LAST_MSG)
308 /*
309 * If current msg is the _LAST_ msg,
310 * prepare stop condition here.
311 * ID_DONE will be set on STOP irq.
312 */
4f443a8a 313 rcar_i2c_write(priv, ICMCR, RCAR_BUS_PHASE_STOP);
6ccbe607
KM
314 else
315 /*
316 * If current msg is _NOT_ last msg,
317 * it doesn't call stop phase.
318 * thus, there is no STOP irq.
319 * return ID_DONE here.
320 */
321 return ID_DONE;
322 }
323
3c95de67 324 rcar_i2c_write(priv, ICMSR, RCAR_IRQ_ACK_SEND);
6ccbe607
KM
325
326 return 0;
327}
328
329static int rcar_i2c_irq_recv(struct rcar_i2c_priv *priv, u32 msr)
330{
331 struct i2c_msg *msg = priv->msg;
332
333 /*
334 * FIXME
335 * sometimes, unknown interrupt happened.
336 * Do nothing
337 */
338 if (!(msr & MDR))
339 return 0;
340
341 if (msr & MAT) {
342 /*
343 * Address transfer phase finished,
344 * but, there is no data at this point.
345 * Do nothing.
346 */
347 } else if (priv->pos < msg->len) {
348 /*
349 * get received data
350 */
351 msg->buf[priv->pos] = rcar_i2c_read(priv, ICRXTX);
352 priv->pos++;
353 }
354
355 /*
356 * If next received data is the _LAST_,
357 * go to STOP phase,
358 * otherwise, go to DATA phase.
359 */
360 if (priv->pos + 1 >= msg->len)
4f443a8a 361 rcar_i2c_write(priv, ICMCR, RCAR_BUS_PHASE_STOP);
6ccbe607 362 else
4f443a8a 363 rcar_i2c_write(priv, ICMCR, RCAR_BUS_PHASE_DATA);
6ccbe607 364
3c95de67 365 rcar_i2c_write(priv, ICMSR, RCAR_IRQ_ACK_RECV);
6ccbe607
KM
366
367 return 0;
368}
369
de20d185
WS
370static bool rcar_i2c_slave_irq(struct rcar_i2c_priv *priv)
371{
372 u32 ssr_raw, ssr_filtered;
373 u8 value;
374
375 ssr_raw = rcar_i2c_read(priv, ICSSR) & 0xff;
376 ssr_filtered = ssr_raw & rcar_i2c_read(priv, ICSIER);
377
378 if (!ssr_filtered)
379 return false;
380
381 /* address detected */
382 if (ssr_filtered & SAR) {
383 /* read or write request */
384 if (ssr_raw & STM) {
5b77d162 385 i2c_slave_event(priv->slave, I2C_SLAVE_READ_REQUESTED, &value);
de20d185
WS
386 rcar_i2c_write(priv, ICRXTX, value);
387 rcar_i2c_write(priv, ICSIER, SDE | SSR | SAR);
388 } else {
5b77d162 389 i2c_slave_event(priv->slave, I2C_SLAVE_WRITE_REQUESTED, &value);
de20d185
WS
390 rcar_i2c_read(priv, ICRXTX); /* dummy read */
391 rcar_i2c_write(priv, ICSIER, SDR | SSR | SAR);
392 }
393
394 rcar_i2c_write(priv, ICSSR, ~SAR & 0xff);
395 }
396
397 /* master sent stop */
398 if (ssr_filtered & SSR) {
399 i2c_slave_event(priv->slave, I2C_SLAVE_STOP, &value);
400 rcar_i2c_write(priv, ICSIER, SAR | SSR);
401 rcar_i2c_write(priv, ICSSR, ~SSR & 0xff);
402 }
403
404 /* master wants to write to us */
405 if (ssr_filtered & SDR) {
406 int ret;
407
408 value = rcar_i2c_read(priv, ICRXTX);
5b77d162 409 ret = i2c_slave_event(priv->slave, I2C_SLAVE_WRITE_RECEIVED, &value);
de20d185
WS
410 /* Send NACK in case of error */
411 rcar_i2c_write(priv, ICSCR, SIE | SDBS | (ret < 0 ? FNA : 0));
de20d185
WS
412 rcar_i2c_write(priv, ICSSR, ~SDR & 0xff);
413 }
414
415 /* master wants to read from us */
416 if (ssr_filtered & SDE) {
5b77d162 417 i2c_slave_event(priv->slave, I2C_SLAVE_READ_PROCESSED, &value);
de20d185
WS
418 rcar_i2c_write(priv, ICRXTX, value);
419 rcar_i2c_write(priv, ICSSR, ~SDE & 0xff);
420 }
421
422 return true;
423}
424
6ccbe607
KM
425static irqreturn_t rcar_i2c_irq(int irq, void *ptr)
426{
427 struct rcar_i2c_priv *priv = ptr;
aa5beaf6 428 irqreturn_t result = IRQ_HANDLED;
6ccbe607
KM
429 u32 msr;
430
91bfe298
SS
431 /*-------------- spin lock -----------------*/
432 spin_lock(&priv->lock);
433
de20d185
WS
434 if (rcar_i2c_slave_irq(priv))
435 goto exit;
436
1c176d53 437 msr = rcar_i2c_read(priv, ICMSR);
6ccbe607 438
dd318b0d
SS
439 /* Only handle interrupts that are currently enabled */
440 msr &= rcar_i2c_read(priv, ICMIER);
aa5beaf6
SS
441 if (!msr) {
442 result = IRQ_NONE;
443 goto exit;
444 }
dd318b0d 445
51371cdc 446 /* Arbitration lost */
6ccbe607 447 if (msr & MAL) {
6ccbe607
KM
448 rcar_i2c_flags_set(priv, (ID_DONE | ID_ARBLOST));
449 goto out;
450 }
451
51371cdc 452 /* Nack */
6ccbe607 453 if (msr & MNR) {
6ccbe607 454 /* go to stop phase */
4f443a8a 455 rcar_i2c_write(priv, ICMCR, RCAR_BUS_PHASE_STOP);
f2382249 456 rcar_i2c_write(priv, ICMIER, RCAR_IRQ_STOP);
6ccbe607
KM
457 rcar_i2c_flags_set(priv, ID_NACK);
458 goto out;
459 }
460
dd318b0d
SS
461 /* Stop */
462 if (msr & MST) {
463 rcar_i2c_flags_set(priv, ID_DONE);
464 goto out;
465 }
466
6ccbe607
KM
467 if (rcar_i2c_is_recv(priv))
468 rcar_i2c_flags_set(priv, rcar_i2c_irq_recv(priv, msr));
469 else
470 rcar_i2c_flags_set(priv, rcar_i2c_irq_send(priv, msr));
471
472out:
473 if (rcar_i2c_flags_has(priv, ID_DONE)) {
f2382249 474 rcar_i2c_write(priv, ICMIER, 0);
3c95de67 475 rcar_i2c_write(priv, ICMSR, 0);
6ccbe607
KM
476 wake_up(&priv->wait);
477 }
478
aa5beaf6 479exit:
91bfe298
SS
480 spin_unlock(&priv->lock);
481 /*-------------- spin unlock -----------------*/
482
aa5beaf6 483 return result;
6ccbe607
KM
484}
485
486static int rcar_i2c_master_xfer(struct i2c_adapter *adap,
487 struct i2c_msg *msgs,
488 int num)
489{
490 struct rcar_i2c_priv *priv = i2c_get_adapdata(adap);
491 struct device *dev = rcar_i2c_priv_to_dev(priv);
91bfe298 492 unsigned long flags;
6ccbe607
KM
493 int i, ret, timeout;
494
495 pm_runtime_get_sync(dev);
496
91bfe298
SS
497 /*-------------- spin lock -----------------*/
498 spin_lock_irqsave(&priv->lock, flags);
499
6ccbe607 500 rcar_i2c_init(priv);
1c176d53
WS
501 /* start clock */
502 rcar_i2c_write(priv, ICCCR, priv->icccr);
6ccbe607 503
91bfe298
SS
504 spin_unlock_irqrestore(&priv->lock, flags);
505 /*-------------- spin unlock -----------------*/
506
3f7de22e
WS
507 ret = rcar_i2c_bus_barrier(priv);
508 if (ret < 0)
509 goto out;
510
6ccbe607 511 for (i = 0; i < num; i++) {
d7653964
WS
512 /* This HW can't send STOP after address phase */
513 if (msgs[i].len == 0) {
514 ret = -EOPNOTSUPP;
515 break;
516 }
517
91bfe298
SS
518 /*-------------- spin lock -----------------*/
519 spin_lock_irqsave(&priv->lock, flags);
520
6ccbe607
KM
521 /* init each data */
522 priv->msg = &msgs[i];
523 priv->pos = 0;
524 priv->flags = 0;
c30d7662 525 if (i == num - 1)
6ccbe607
KM
526 rcar_i2c_flags_set(priv, ID_LAST_MSG);
527
7c7117ff 528 rcar_i2c_prepare_msg(priv);
6ccbe607 529
91bfe298
SS
530 spin_unlock_irqrestore(&priv->lock, flags);
531 /*-------------- spin unlock -----------------*/
532
6ccbe607
KM
533 timeout = wait_event_timeout(priv->wait,
534 rcar_i2c_flags_has(priv, ID_DONE),
efd2c611 535 adap->timeout);
6ccbe607
KM
536 if (!timeout) {
537 ret = -ETIMEDOUT;
538 break;
539 }
540
6ccbe607 541 if (rcar_i2c_flags_has(priv, ID_NACK)) {
6ff4b105 542 ret = -ENXIO;
6ccbe607
KM
543 break;
544 }
545
546 if (rcar_i2c_flags_has(priv, ID_ARBLOST)) {
547 ret = -EAGAIN;
548 break;
549 }
550
551 if (rcar_i2c_flags_has(priv, ID_IOERROR)) {
552 ret = -EIO;
553 break;
554 }
555
556 ret = i + 1; /* The number of transfer */
557 }
3f7de22e 558out:
6ccbe607
KM
559 pm_runtime_put(dev);
560
6ff4b105 561 if (ret < 0 && ret != -ENXIO)
6ccbe607
KM
562 dev_err(dev, "error %d : %x\n", ret, priv->flags);
563
564 return ret;
565}
566
de20d185
WS
567static int rcar_reg_slave(struct i2c_client *slave)
568{
569 struct rcar_i2c_priv *priv = i2c_get_adapdata(slave->adapter);
570
571 if (priv->slave)
572 return -EBUSY;
573
574 if (slave->flags & I2C_CLIENT_TEN)
575 return -EAFNOSUPPORT;
576
577 pm_runtime_forbid(rcar_i2c_priv_to_dev(priv));
578
579 priv->slave = slave;
580 rcar_i2c_write(priv, ICSAR, slave->addr);
581 rcar_i2c_write(priv, ICSSR, 0);
582 rcar_i2c_write(priv, ICSIER, SAR | SSR);
583 rcar_i2c_write(priv, ICSCR, SIE | SDBS);
584
585 return 0;
586}
587
588static int rcar_unreg_slave(struct i2c_client *slave)
589{
590 struct rcar_i2c_priv *priv = i2c_get_adapdata(slave->adapter);
591
592 WARN_ON(!priv->slave);
593
594 rcar_i2c_write(priv, ICSIER, 0);
595 rcar_i2c_write(priv, ICSCR, 0);
596
597 priv->slave = NULL;
598
599 pm_runtime_allow(rcar_i2c_priv_to_dev(priv));
600
601 return 0;
602}
603
6ccbe607
KM
604static u32 rcar_i2c_func(struct i2c_adapter *adap)
605{
d7653964 606 /* This HW can't do SMBUS_QUICK and NOSTART */
1fb2ad95
WS
607 return I2C_FUNC_I2C | I2C_FUNC_SLAVE |
608 (I2C_FUNC_SMBUS_EMUL & ~I2C_FUNC_SMBUS_QUICK);
6ccbe607
KM
609}
610
611static const struct i2c_algorithm rcar_i2c_algo = {
612 .master_xfer = rcar_i2c_master_xfer,
613 .functionality = rcar_i2c_func,
de20d185
WS
614 .reg_slave = rcar_reg_slave,
615 .unreg_slave = rcar_unreg_slave,
6ccbe607
KM
616};
617
7679c0e1 618static const struct of_device_id rcar_i2c_dt_ids[] = {
043a3f11
KM
619 { .compatible = "renesas,i2c-rcar", .data = (void *)I2C_RCAR_GEN1 },
620 { .compatible = "renesas,i2c-r8a7778", .data = (void *)I2C_RCAR_GEN1 },
621 { .compatible = "renesas,i2c-r8a7779", .data = (void *)I2C_RCAR_GEN1 },
622 { .compatible = "renesas,i2c-r8a7790", .data = (void *)I2C_RCAR_GEN2 },
e8936455 623 { .compatible = "renesas,i2c-r8a7791", .data = (void *)I2C_RCAR_GEN2 },
819a3951
WS
624 { .compatible = "renesas,i2c-r8a7792", .data = (void *)I2C_RCAR_GEN2 },
625 { .compatible = "renesas,i2c-r8a7793", .data = (void *)I2C_RCAR_GEN2 },
626 { .compatible = "renesas,i2c-r8a7794", .data = (void *)I2C_RCAR_GEN2 },
7679c0e1
GL
627 {},
628};
629MODULE_DEVICE_TABLE(of, rcar_i2c_dt_ids);
630
0b255e92 631static int rcar_i2c_probe(struct platform_device *pdev)
6ccbe607 632{
6d4028c6 633 struct i2c_rcar_platform_data *pdata = dev_get_platdata(&pdev->dev);
6ccbe607
KM
634 struct rcar_i2c_priv *priv;
635 struct i2c_adapter *adap;
636 struct resource *res;
637 struct device *dev = &pdev->dev;
638 u32 bus_speed;
93e953d3 639 int irq, ret;
6ccbe607 640
6ccbe607 641 priv = devm_kzalloc(dev, sizeof(struct rcar_i2c_priv), GFP_KERNEL);
46797a2a 642 if (!priv)
6ccbe607 643 return -ENOMEM;
6ccbe607 644
bc8120f1
BD
645 priv->clk = devm_clk_get(dev, NULL);
646 if (IS_ERR(priv->clk)) {
647 dev_err(dev, "cannot get clock\n");
648 return PTR_ERR(priv->clk);
649 }
650
6ccbe607 651 bus_speed = 100000; /* default 100 kHz */
7679c0e1
GL
652 ret = of_property_read_u32(dev->of_node, "clock-frequency", &bus_speed);
653 if (ret < 0 && pdata && pdata->bus_speed)
6ccbe607 654 bus_speed = pdata->bus_speed;
b720423a 655
7679c0e1
GL
656 if (pdev->dev.of_node)
657 priv->devtype = (long)of_match_device(rcar_i2c_dt_ids,
658 dev)->data;
659 else
660 priv->devtype = platform_get_device_id(pdev)->driver_data;
b720423a 661
6ccbe607
KM
662 ret = rcar_i2c_clock_calculate(priv, bus_speed, dev);
663 if (ret < 0)
664 return ret;
665
3cc2d009 666 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
84dbf809
TR
667 priv->io = devm_ioremap_resource(dev, res);
668 if (IS_ERR(priv->io))
669 return PTR_ERR(priv->io);
6ccbe607 670
93e953d3 671 irq = platform_get_irq(pdev, 0);
6ccbe607 672 init_waitqueue_head(&priv->wait);
91bfe298 673 spin_lock_init(&priv->lock);
6ccbe607 674
929e3aba
WS
675 adap = &priv->adap;
676 adap->nr = pdev->id;
677 adap->algo = &rcar_i2c_algo;
678 adap->class = I2C_CLASS_DEPRECATED;
679 adap->retries = 3;
680 adap->dev.parent = dev;
681 adap->dev.of_node = dev->of_node;
6ccbe607
KM
682 i2c_set_adapdata(adap, priv);
683 strlcpy(adap->name, pdev->name, sizeof(adap->name));
684
93e953d3 685 ret = devm_request_irq(dev, irq, rcar_i2c_irq, 0,
6ccbe607
KM
686 dev_name(dev), priv);
687 if (ret < 0) {
93e953d3 688 dev_err(dev, "cannot get irq %d\n", irq);
6ccbe607
KM
689 return ret;
690 }
691
692 ret = i2c_add_numbered_adapter(adap);
693 if (ret < 0) {
694 dev_err(dev, "reg adap failed: %d\n", ret);
695 return ret;
696 }
697
698 pm_runtime_enable(dev);
699 platform_set_drvdata(pdev, priv);
700
701 dev_info(dev, "probed\n");
702
703 return 0;
704}
705
0b255e92 706static int rcar_i2c_remove(struct platform_device *pdev)
6ccbe607
KM
707{
708 struct rcar_i2c_priv *priv = platform_get_drvdata(pdev);
709 struct device *dev = &pdev->dev;
710
711 i2c_del_adapter(&priv->adap);
712 pm_runtime_disable(dev);
713
714 return 0;
715}
716
e9a02a3d 717static const struct platform_device_id rcar_i2c_id_table[] = {
043a3f11
KM
718 { "i2c-rcar", I2C_RCAR_GEN1 },
719 { "i2c-rcar_gen1", I2C_RCAR_GEN1 },
720 { "i2c-rcar_gen2", I2C_RCAR_GEN2 },
b720423a
NVD
721 {},
722};
723MODULE_DEVICE_TABLE(platform, rcar_i2c_id_table);
724
45fd5e4a 725static struct platform_driver rcar_i2c_driver = {
6ccbe607
KM
726 .driver = {
727 .name = "i2c-rcar",
7679c0e1 728 .of_match_table = rcar_i2c_dt_ids,
6ccbe607
KM
729 },
730 .probe = rcar_i2c_probe,
0b255e92 731 .remove = rcar_i2c_remove,
b720423a 732 .id_table = rcar_i2c_id_table,
6ccbe607
KM
733};
734
45fd5e4a 735module_platform_driver(rcar_i2c_driver);
6ccbe607 736
3d99beab 737MODULE_LICENSE("GPL v2");
6ccbe607
KM
738MODULE_DESCRIPTION("Renesas R-Car I2C bus driver");
739MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");