gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / i2c / busses / i2c-ocores.c
blobf5fc75b65a194f18e65d734cf0833449492d9c28
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * i2c-ocores.c: I2C bus driver for OpenCores I2C controller
4 * (https://opencores.org/project/i2c/overview)
6 * Peter Korsgaard <peter@korsgaard.com>
8 * Support for the GRLIB port of the controller by
9 * Andreas Larsson <andreas@gaisler.com>
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/err.h>
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/errno.h>
18 #include <linux/platform_device.h>
19 #include <linux/i2c.h>
20 #include <linux/interrupt.h>
21 #include <linux/wait.h>
22 #include <linux/platform_data/i2c-ocores.h>
23 #include <linux/slab.h>
24 #include <linux/io.h>
25 #include <linux/log2.h>
26 #include <linux/spinlock.h>
27 #include <linux/jiffies.h>
30 * 'process_lock' exists because ocores_process() and ocores_process_timeout()
31 * can't run in parallel.
33 struct ocores_i2c {
34 void __iomem *base;
35 int iobase;
36 u32 reg_shift;
37 u32 reg_io_width;
38 unsigned long flags;
39 wait_queue_head_t wait;
40 struct i2c_adapter adap;
41 struct i2c_msg *msg;
42 int pos;
43 int nmsgs;
44 int state; /* see STATE_ */
45 spinlock_t process_lock;
46 struct clk *clk;
47 int ip_clock_khz;
48 int bus_clock_khz;
49 void (*setreg)(struct ocores_i2c *i2c, int reg, u8 value);
50 u8 (*getreg)(struct ocores_i2c *i2c, int reg);
53 /* registers */
54 #define OCI2C_PRELOW 0
55 #define OCI2C_PREHIGH 1
56 #define OCI2C_CONTROL 2
57 #define OCI2C_DATA 3
58 #define OCI2C_CMD 4 /* write only */
59 #define OCI2C_STATUS 4 /* read only, same address as OCI2C_CMD */
61 #define OCI2C_CTRL_IEN 0x40
62 #define OCI2C_CTRL_EN 0x80
64 #define OCI2C_CMD_START 0x91
65 #define OCI2C_CMD_STOP 0x41
66 #define OCI2C_CMD_READ 0x21
67 #define OCI2C_CMD_WRITE 0x11
68 #define OCI2C_CMD_READ_ACK 0x21
69 #define OCI2C_CMD_READ_NACK 0x29
70 #define OCI2C_CMD_IACK 0x01
72 #define OCI2C_STAT_IF 0x01
73 #define OCI2C_STAT_TIP 0x02
74 #define OCI2C_STAT_ARBLOST 0x20
75 #define OCI2C_STAT_BUSY 0x40
76 #define OCI2C_STAT_NACK 0x80
78 #define STATE_DONE 0
79 #define STATE_START 1
80 #define STATE_WRITE 2
81 #define STATE_READ 3
82 #define STATE_ERROR 4
84 #define TYPE_OCORES 0
85 #define TYPE_GRLIB 1
86 #define TYPE_SIFIVE_REV0 2
88 #define OCORES_FLAG_BROKEN_IRQ BIT(1) /* Broken IRQ for FU540-C000 SoC */
90 static void oc_setreg_8(struct ocores_i2c *i2c, int reg, u8 value)
92 iowrite8(value, i2c->base + (reg << i2c->reg_shift));
95 static void oc_setreg_16(struct ocores_i2c *i2c, int reg, u8 value)
97 iowrite16(value, i2c->base + (reg << i2c->reg_shift));
100 static void oc_setreg_32(struct ocores_i2c *i2c, int reg, u8 value)
102 iowrite32(value, i2c->base + (reg << i2c->reg_shift));
105 static void oc_setreg_16be(struct ocores_i2c *i2c, int reg, u8 value)
107 iowrite16be(value, i2c->base + (reg << i2c->reg_shift));
110 static void oc_setreg_32be(struct ocores_i2c *i2c, int reg, u8 value)
112 iowrite32be(value, i2c->base + (reg << i2c->reg_shift));
115 static inline u8 oc_getreg_8(struct ocores_i2c *i2c, int reg)
117 return ioread8(i2c->base + (reg << i2c->reg_shift));
120 static inline u8 oc_getreg_16(struct ocores_i2c *i2c, int reg)
122 return ioread16(i2c->base + (reg << i2c->reg_shift));
125 static inline u8 oc_getreg_32(struct ocores_i2c *i2c, int reg)
127 return ioread32(i2c->base + (reg << i2c->reg_shift));
130 static inline u8 oc_getreg_16be(struct ocores_i2c *i2c, int reg)
132 return ioread16be(i2c->base + (reg << i2c->reg_shift));
135 static inline u8 oc_getreg_32be(struct ocores_i2c *i2c, int reg)
137 return ioread32be(i2c->base + (reg << i2c->reg_shift));
140 static void oc_setreg_io_8(struct ocores_i2c *i2c, int reg, u8 value)
142 outb(value, i2c->iobase + reg);
145 static inline u8 oc_getreg_io_8(struct ocores_i2c *i2c, int reg)
147 return inb(i2c->iobase + reg);
150 static inline void oc_setreg(struct ocores_i2c *i2c, int reg, u8 value)
152 i2c->setreg(i2c, reg, value);
155 static inline u8 oc_getreg(struct ocores_i2c *i2c, int reg)
157 return i2c->getreg(i2c, reg);
160 static void ocores_process(struct ocores_i2c *i2c, u8 stat)
162 struct i2c_msg *msg = i2c->msg;
163 unsigned long flags;
166 * If we spin here is because we are in timeout, so we are going
167 * to be in STATE_ERROR. See ocores_process_timeout()
169 spin_lock_irqsave(&i2c->process_lock, flags);
171 if ((i2c->state == STATE_DONE) || (i2c->state == STATE_ERROR)) {
172 /* stop has been sent */
173 oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_IACK);
174 wake_up(&i2c->wait);
175 goto out;
178 /* error? */
179 if (stat & OCI2C_STAT_ARBLOST) {
180 i2c->state = STATE_ERROR;
181 oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
182 goto out;
185 if ((i2c->state == STATE_START) || (i2c->state == STATE_WRITE)) {
186 i2c->state =
187 (msg->flags & I2C_M_RD) ? STATE_READ : STATE_WRITE;
189 if (stat & OCI2C_STAT_NACK) {
190 i2c->state = STATE_ERROR;
191 oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
192 goto out;
194 } else {
195 msg->buf[i2c->pos++] = oc_getreg(i2c, OCI2C_DATA);
198 /* end of msg? */
199 if (i2c->pos == msg->len) {
200 i2c->nmsgs--;
201 i2c->msg++;
202 i2c->pos = 0;
203 msg = i2c->msg;
205 if (i2c->nmsgs) { /* end? */
206 /* send start? */
207 if (!(msg->flags & I2C_M_NOSTART)) {
208 u8 addr = i2c_8bit_addr_from_msg(msg);
210 i2c->state = STATE_START;
212 oc_setreg(i2c, OCI2C_DATA, addr);
213 oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_START);
214 goto out;
216 i2c->state = (msg->flags & I2C_M_RD)
217 ? STATE_READ : STATE_WRITE;
218 } else {
219 i2c->state = STATE_DONE;
220 oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
221 goto out;
225 if (i2c->state == STATE_READ) {
226 oc_setreg(i2c, OCI2C_CMD, i2c->pos == (msg->len-1) ?
227 OCI2C_CMD_READ_NACK : OCI2C_CMD_READ_ACK);
228 } else {
229 oc_setreg(i2c, OCI2C_DATA, msg->buf[i2c->pos++]);
230 oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_WRITE);
233 out:
234 spin_unlock_irqrestore(&i2c->process_lock, flags);
237 static irqreturn_t ocores_isr(int irq, void *dev_id)
239 struct ocores_i2c *i2c = dev_id;
240 u8 stat = oc_getreg(i2c, OCI2C_STATUS);
242 if (i2c->flags & OCORES_FLAG_BROKEN_IRQ) {
243 if ((stat & OCI2C_STAT_IF) && !(stat & OCI2C_STAT_BUSY))
244 return IRQ_NONE;
245 } else if (!(stat & OCI2C_STAT_IF)) {
246 return IRQ_NONE;
248 ocores_process(i2c, stat);
250 return IRQ_HANDLED;
254 * Process timeout event
255 * @i2c: ocores I2C device instance
257 static void ocores_process_timeout(struct ocores_i2c *i2c)
259 unsigned long flags;
261 spin_lock_irqsave(&i2c->process_lock, flags);
262 i2c->state = STATE_ERROR;
263 oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_STOP);
264 spin_unlock_irqrestore(&i2c->process_lock, flags);
268 * Wait until something change in a given register
269 * @i2c: ocores I2C device instance
270 * @reg: register to query
271 * @mask: bitmask to apply on register value
272 * @val: expected result
273 * @timeout: timeout in jiffies
275 * Timeout is necessary to avoid to stay here forever when the chip
276 * does not answer correctly.
278 * Return: 0 on success, -ETIMEDOUT on timeout
280 static int ocores_wait(struct ocores_i2c *i2c,
281 int reg, u8 mask, u8 val,
282 const unsigned long timeout)
284 unsigned long j;
286 j = jiffies + timeout;
287 while (1) {
288 u8 status = oc_getreg(i2c, reg);
290 if ((status & mask) == val)
291 break;
293 if (time_after(jiffies, j))
294 return -ETIMEDOUT;
296 return 0;
300 * Wait until is possible to process some data
301 * @i2c: ocores I2C device instance
303 * Used when the device is in polling mode (interrupts disabled).
305 * Return: 0 on success, -ETIMEDOUT on timeout
307 static int ocores_poll_wait(struct ocores_i2c *i2c)
309 u8 mask;
310 int err;
312 if (i2c->state == STATE_DONE || i2c->state == STATE_ERROR) {
313 /* transfer is over */
314 mask = OCI2C_STAT_BUSY;
315 } else {
316 /* on going transfer */
317 mask = OCI2C_STAT_TIP;
319 * We wait for the data to be transferred (8bit),
320 * then we start polling on the ACK/NACK bit
322 udelay((8 * 1000) / i2c->bus_clock_khz);
326 * once we are here we expect to get the expected result immediately
327 * so if after 1ms we timeout then something is broken.
329 err = ocores_wait(i2c, OCI2C_STATUS, mask, 0, msecs_to_jiffies(1));
330 if (err)
331 dev_warn(i2c->adap.dev.parent,
332 "%s: STATUS timeout, bit 0x%x did not clear in 1ms\n",
333 __func__, mask);
334 return err;
338 * It handles an IRQ-less transfer
339 * @i2c: ocores I2C device instance
341 * Even if IRQ are disabled, the I2C OpenCore IP behavior is exactly the same
342 * (only that IRQ are not produced). This means that we can re-use entirely
343 * ocores_isr(), we just add our polling code around it.
345 * It can run in atomic context
347 static void ocores_process_polling(struct ocores_i2c *i2c)
349 while (1) {
350 irqreturn_t ret;
351 int err;
353 err = ocores_poll_wait(i2c);
354 if (err) {
355 i2c->state = STATE_ERROR;
356 break; /* timeout */
359 ret = ocores_isr(-1, i2c);
360 if (ret == IRQ_NONE)
361 break; /* all messages have been transferred */
362 else {
363 if (i2c->flags & OCORES_FLAG_BROKEN_IRQ)
364 if (i2c->state == STATE_DONE)
365 break;
370 static int ocores_xfer_core(struct ocores_i2c *i2c,
371 struct i2c_msg *msgs, int num,
372 bool polling)
374 int ret;
375 u8 ctrl;
377 ctrl = oc_getreg(i2c, OCI2C_CONTROL);
378 if (polling)
379 oc_setreg(i2c, OCI2C_CONTROL, ctrl & ~OCI2C_CTRL_IEN);
380 else
381 oc_setreg(i2c, OCI2C_CONTROL, ctrl | OCI2C_CTRL_IEN);
383 i2c->msg = msgs;
384 i2c->pos = 0;
385 i2c->nmsgs = num;
386 i2c->state = STATE_START;
388 oc_setreg(i2c, OCI2C_DATA, i2c_8bit_addr_from_msg(i2c->msg));
389 oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_START);
391 if (polling) {
392 ocores_process_polling(i2c);
393 } else {
394 ret = wait_event_timeout(i2c->wait,
395 (i2c->state == STATE_ERROR) ||
396 (i2c->state == STATE_DONE), HZ);
397 if (ret == 0) {
398 ocores_process_timeout(i2c);
399 return -ETIMEDOUT;
403 return (i2c->state == STATE_DONE) ? num : -EIO;
406 static int ocores_xfer_polling(struct i2c_adapter *adap,
407 struct i2c_msg *msgs, int num)
409 return ocores_xfer_core(i2c_get_adapdata(adap), msgs, num, true);
412 static int ocores_xfer(struct i2c_adapter *adap,
413 struct i2c_msg *msgs, int num)
415 return ocores_xfer_core(i2c_get_adapdata(adap), msgs, num, false);
418 static int ocores_init(struct device *dev, struct ocores_i2c *i2c)
420 int prescale;
421 int diff;
422 u8 ctrl = oc_getreg(i2c, OCI2C_CONTROL);
424 /* make sure the device is disabled */
425 ctrl &= ~(OCI2C_CTRL_EN | OCI2C_CTRL_IEN);
426 oc_setreg(i2c, OCI2C_CONTROL, ctrl);
428 prescale = (i2c->ip_clock_khz / (5 * i2c->bus_clock_khz)) - 1;
429 prescale = clamp(prescale, 0, 0xffff);
431 diff = i2c->ip_clock_khz / (5 * (prescale + 1)) - i2c->bus_clock_khz;
432 if (abs(diff) > i2c->bus_clock_khz / 10) {
433 dev_err(dev,
434 "Unsupported clock settings: core: %d KHz, bus: %d KHz\n",
435 i2c->ip_clock_khz, i2c->bus_clock_khz);
436 return -EINVAL;
439 oc_setreg(i2c, OCI2C_PRELOW, prescale & 0xff);
440 oc_setreg(i2c, OCI2C_PREHIGH, prescale >> 8);
442 /* Init the device */
443 oc_setreg(i2c, OCI2C_CMD, OCI2C_CMD_IACK);
444 oc_setreg(i2c, OCI2C_CONTROL, ctrl | OCI2C_CTRL_EN);
446 return 0;
450 static u32 ocores_func(struct i2c_adapter *adap)
452 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
455 static struct i2c_algorithm ocores_algorithm = {
456 .master_xfer = ocores_xfer,
457 .master_xfer_atomic = ocores_xfer_polling,
458 .functionality = ocores_func,
461 static const struct i2c_adapter ocores_adapter = {
462 .owner = THIS_MODULE,
463 .name = "i2c-ocores",
464 .class = I2C_CLASS_DEPRECATED,
465 .algo = &ocores_algorithm,
468 static const struct of_device_id ocores_i2c_match[] = {
470 .compatible = "opencores,i2c-ocores",
471 .data = (void *)TYPE_OCORES,
474 .compatible = "aeroflexgaisler,i2cmst",
475 .data = (void *)TYPE_GRLIB,
478 .compatible = "sifive,fu540-c000-i2c",
479 .data = (void *)TYPE_SIFIVE_REV0,
482 .compatible = "sifive,i2c0",
483 .data = (void *)TYPE_SIFIVE_REV0,
487 MODULE_DEVICE_TABLE(of, ocores_i2c_match);
489 #ifdef CONFIG_OF
491 * Read and write functions for the GRLIB port of the controller. Registers are
492 * 32-bit big endian and the PRELOW and PREHIGH registers are merged into one
493 * register. The subsequent registers have their offsets decreased accordingly.
495 static u8 oc_getreg_grlib(struct ocores_i2c *i2c, int reg)
497 u32 rd;
498 int rreg = reg;
500 if (reg != OCI2C_PRELOW)
501 rreg--;
502 rd = ioread32be(i2c->base + (rreg << i2c->reg_shift));
503 if (reg == OCI2C_PREHIGH)
504 return (u8)(rd >> 8);
505 else
506 return (u8)rd;
509 static void oc_setreg_grlib(struct ocores_i2c *i2c, int reg, u8 value)
511 u32 curr, wr;
512 int rreg = reg;
514 if (reg != OCI2C_PRELOW)
515 rreg--;
516 if (reg == OCI2C_PRELOW || reg == OCI2C_PREHIGH) {
517 curr = ioread32be(i2c->base + (rreg << i2c->reg_shift));
518 if (reg == OCI2C_PRELOW)
519 wr = (curr & 0xff00) | value;
520 else
521 wr = (((u32)value) << 8) | (curr & 0xff);
522 } else {
523 wr = value;
525 iowrite32be(wr, i2c->base + (rreg << i2c->reg_shift));
528 static int ocores_i2c_of_probe(struct platform_device *pdev,
529 struct ocores_i2c *i2c)
531 struct device_node *np = pdev->dev.of_node;
532 const struct of_device_id *match;
533 u32 val;
534 u32 clock_frequency;
535 bool clock_frequency_present;
537 if (of_property_read_u32(np, "reg-shift", &i2c->reg_shift)) {
538 /* no 'reg-shift', check for deprecated 'regstep' */
539 if (!of_property_read_u32(np, "regstep", &val)) {
540 if (!is_power_of_2(val)) {
541 dev_err(&pdev->dev, "invalid regstep %d\n",
542 val);
543 return -EINVAL;
545 i2c->reg_shift = ilog2(val);
546 dev_warn(&pdev->dev,
547 "regstep property deprecated, use reg-shift\n");
551 clock_frequency_present = !of_property_read_u32(np, "clock-frequency",
552 &clock_frequency);
553 i2c->bus_clock_khz = 100;
555 i2c->clk = devm_clk_get(&pdev->dev, NULL);
557 if (!IS_ERR(i2c->clk)) {
558 int ret = clk_prepare_enable(i2c->clk);
560 if (ret) {
561 dev_err(&pdev->dev,
562 "clk_prepare_enable failed: %d\n", ret);
563 return ret;
565 i2c->ip_clock_khz = clk_get_rate(i2c->clk) / 1000;
566 if (clock_frequency_present)
567 i2c->bus_clock_khz = clock_frequency / 1000;
570 if (i2c->ip_clock_khz == 0) {
571 if (of_property_read_u32(np, "opencores,ip-clock-frequency",
572 &val)) {
573 if (!clock_frequency_present) {
574 dev_err(&pdev->dev,
575 "Missing required parameter 'opencores,ip-clock-frequency'\n");
576 clk_disable_unprepare(i2c->clk);
577 return -ENODEV;
579 i2c->ip_clock_khz = clock_frequency / 1000;
580 dev_warn(&pdev->dev,
581 "Deprecated usage of the 'clock-frequency' property, please update to 'opencores,ip-clock-frequency'\n");
582 } else {
583 i2c->ip_clock_khz = val / 1000;
584 if (clock_frequency_present)
585 i2c->bus_clock_khz = clock_frequency / 1000;
589 of_property_read_u32(pdev->dev.of_node, "reg-io-width",
590 &i2c->reg_io_width);
592 match = of_match_node(ocores_i2c_match, pdev->dev.of_node);
593 if (match && (long)match->data == TYPE_GRLIB) {
594 dev_dbg(&pdev->dev, "GRLIB variant of i2c-ocores\n");
595 i2c->setreg = oc_setreg_grlib;
596 i2c->getreg = oc_getreg_grlib;
599 return 0;
601 #else
602 #define ocores_i2c_of_probe(pdev, i2c) -ENODEV
603 #endif
605 static int ocores_i2c_probe(struct platform_device *pdev)
607 struct ocores_i2c *i2c;
608 struct ocores_i2c_platform_data *pdata;
609 const struct of_device_id *match;
610 struct resource *res;
611 int irq;
612 int ret;
613 int i;
615 i2c = devm_kzalloc(&pdev->dev, sizeof(*i2c), GFP_KERNEL);
616 if (!i2c)
617 return -ENOMEM;
619 spin_lock_init(&i2c->process_lock);
621 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
622 if (res) {
623 i2c->base = devm_ioremap_resource(&pdev->dev, res);
624 if (IS_ERR(i2c->base))
625 return PTR_ERR(i2c->base);
626 } else {
627 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
628 if (!res)
629 return -EINVAL;
630 i2c->iobase = res->start;
631 if (!devm_request_region(&pdev->dev, res->start,
632 resource_size(res),
633 pdev->name)) {
634 dev_err(&pdev->dev, "Can't get I/O resource.\n");
635 return -EBUSY;
637 i2c->setreg = oc_setreg_io_8;
638 i2c->getreg = oc_getreg_io_8;
641 pdata = dev_get_platdata(&pdev->dev);
642 if (pdata) {
643 i2c->reg_shift = pdata->reg_shift;
644 i2c->reg_io_width = pdata->reg_io_width;
645 i2c->ip_clock_khz = pdata->clock_khz;
646 if (pdata->bus_khz)
647 i2c->bus_clock_khz = pdata->bus_khz;
648 else
649 i2c->bus_clock_khz = 100;
650 } else {
651 ret = ocores_i2c_of_probe(pdev, i2c);
652 if (ret)
653 return ret;
656 if (i2c->reg_io_width == 0)
657 i2c->reg_io_width = 1; /* Set to default value */
659 if (!i2c->setreg || !i2c->getreg) {
660 bool be = pdata ? pdata->big_endian :
661 of_device_is_big_endian(pdev->dev.of_node);
663 switch (i2c->reg_io_width) {
664 case 1:
665 i2c->setreg = oc_setreg_8;
666 i2c->getreg = oc_getreg_8;
667 break;
669 case 2:
670 i2c->setreg = be ? oc_setreg_16be : oc_setreg_16;
671 i2c->getreg = be ? oc_getreg_16be : oc_getreg_16;
672 break;
674 case 4:
675 i2c->setreg = be ? oc_setreg_32be : oc_setreg_32;
676 i2c->getreg = be ? oc_getreg_32be : oc_getreg_32;
677 break;
679 default:
680 dev_err(&pdev->dev, "Unsupported I/O width (%d)\n",
681 i2c->reg_io_width);
682 ret = -EINVAL;
683 goto err_clk;
687 init_waitqueue_head(&i2c->wait);
689 irq = platform_get_irq(pdev, 0);
690 if (irq == -ENXIO) {
691 ocores_algorithm.master_xfer = ocores_xfer_polling;
694 * Set in OCORES_FLAG_BROKEN_IRQ to enable workaround for
695 * FU540-C000 SoC in polling mode.
697 match = of_match_node(ocores_i2c_match, pdev->dev.of_node);
698 if (match && (long)match->data == TYPE_SIFIVE_REV0)
699 i2c->flags |= OCORES_FLAG_BROKEN_IRQ;
700 } else {
701 if (irq < 0)
702 return irq;
705 if (ocores_algorithm.master_xfer != ocores_xfer_polling) {
706 ret = devm_request_any_context_irq(&pdev->dev, irq,
707 ocores_isr, 0,
708 pdev->name, i2c);
709 if (ret) {
710 dev_err(&pdev->dev, "Cannot claim IRQ\n");
711 goto err_clk;
715 ret = ocores_init(&pdev->dev, i2c);
716 if (ret)
717 goto err_clk;
719 /* hook up driver to tree */
720 platform_set_drvdata(pdev, i2c);
721 i2c->adap = ocores_adapter;
722 i2c_set_adapdata(&i2c->adap, i2c);
723 i2c->adap.dev.parent = &pdev->dev;
724 i2c->adap.dev.of_node = pdev->dev.of_node;
726 /* add i2c adapter to i2c tree */
727 ret = i2c_add_adapter(&i2c->adap);
728 if (ret)
729 goto err_clk;
731 /* add in known devices to the bus */
732 if (pdata) {
733 for (i = 0; i < pdata->num_devices; i++)
734 i2c_new_client_device(&i2c->adap, pdata->devices + i);
737 return 0;
739 err_clk:
740 clk_disable_unprepare(i2c->clk);
741 return ret;
744 static int ocores_i2c_remove(struct platform_device *pdev)
746 struct ocores_i2c *i2c = platform_get_drvdata(pdev);
747 u8 ctrl = oc_getreg(i2c, OCI2C_CONTROL);
749 /* disable i2c logic */
750 ctrl &= ~(OCI2C_CTRL_EN | OCI2C_CTRL_IEN);
751 oc_setreg(i2c, OCI2C_CONTROL, ctrl);
753 /* remove adapter & data */
754 i2c_del_adapter(&i2c->adap);
756 if (!IS_ERR(i2c->clk))
757 clk_disable_unprepare(i2c->clk);
759 return 0;
762 #ifdef CONFIG_PM_SLEEP
763 static int ocores_i2c_suspend(struct device *dev)
765 struct ocores_i2c *i2c = dev_get_drvdata(dev);
766 u8 ctrl = oc_getreg(i2c, OCI2C_CONTROL);
768 /* make sure the device is disabled */
769 ctrl &= ~(OCI2C_CTRL_EN | OCI2C_CTRL_IEN);
770 oc_setreg(i2c, OCI2C_CONTROL, ctrl);
772 if (!IS_ERR(i2c->clk))
773 clk_disable_unprepare(i2c->clk);
774 return 0;
777 static int ocores_i2c_resume(struct device *dev)
779 struct ocores_i2c *i2c = dev_get_drvdata(dev);
781 if (!IS_ERR(i2c->clk)) {
782 unsigned long rate;
783 int ret = clk_prepare_enable(i2c->clk);
785 if (ret) {
786 dev_err(dev,
787 "clk_prepare_enable failed: %d\n", ret);
788 return ret;
790 rate = clk_get_rate(i2c->clk) / 1000;
791 if (rate)
792 i2c->ip_clock_khz = rate;
794 return ocores_init(dev, i2c);
797 static SIMPLE_DEV_PM_OPS(ocores_i2c_pm, ocores_i2c_suspend, ocores_i2c_resume);
798 #define OCORES_I2C_PM (&ocores_i2c_pm)
799 #else
800 #define OCORES_I2C_PM NULL
801 #endif
803 static struct platform_driver ocores_i2c_driver = {
804 .probe = ocores_i2c_probe,
805 .remove = ocores_i2c_remove,
806 .driver = {
807 .name = "ocores-i2c",
808 .of_match_table = ocores_i2c_match,
809 .pm = OCORES_I2C_PM,
813 module_platform_driver(ocores_i2c_driver);
815 MODULE_AUTHOR("Peter Korsgaard <peter@korsgaard.com>");
816 MODULE_DESCRIPTION("OpenCores I2C bus driver");
817 MODULE_LICENSE("GPL");
818 MODULE_ALIAS("platform:ocores-i2c");