1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Synopsys DesignWare I2C adapter driver (master only).
5 * Based on the TI DAVINCI I2C adapter driver.
7 * Copyright (C) 2006 Texas Instruments.
8 * Copyright (C) 2007 MontaVista Software Inc.
9 * Copyright (C) 2009 Provigent Ltd.
11 #include <linux/delay.h>
12 #include <linux/err.h>
13 #include <linux/errno.h>
14 #include <linux/export.h>
15 #include <linux/gpio/consumer.h>
16 #include <linux/i2c.h>
17 #include <linux/interrupt.h>
19 #include <linux/module.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/reset.h>
23 #include "i2c-designware-core.h"
25 static void i2c_dw_configure_fifo_master(struct dw_i2c_dev
*dev
)
27 /* Configure Tx/Rx FIFO threshold levels */
28 dw_writel(dev
, dev
->tx_fifo_depth
/ 2, DW_IC_TX_TL
);
29 dw_writel(dev
, 0, DW_IC_RX_TL
);
31 /* Configure the I2C master */
32 dw_writel(dev
, dev
->master_cfg
, DW_IC_CON
);
35 static int i2c_dw_set_timings_master(struct dw_i2c_dev
*dev
)
37 const char *mode_str
, *fp_str
= "";
39 u32 sda_falling_time
, scl_falling_time
;
40 struct i2c_timings
*t
= &dev
->timings
;
44 ret
= i2c_dw_acquire_lock(dev
);
47 comp_param1
= dw_readl(dev
, DW_IC_COMP_PARAM_1
);
48 i2c_dw_release_lock(dev
);
50 /* Set standard and fast speed dividers for high/low periods */
51 sda_falling_time
= t
->sda_fall_ns
?: 300; /* ns */
52 scl_falling_time
= t
->scl_fall_ns
?: 300; /* ns */
54 /* Calculate SCL timing parameters for standard mode if not set */
55 if (!dev
->ss_hcnt
|| !dev
->ss_lcnt
) {
56 ic_clk
= i2c_dw_clk_rate(dev
);
58 i2c_dw_scl_hcnt(ic_clk
,
59 4000, /* tHD;STA = tHIGH = 4.0 us */
61 0, /* 0: DW default, 1: Ideal */
64 i2c_dw_scl_lcnt(ic_clk
,
65 4700, /* tLOW = 4.7 us */
69 dev_dbg(dev
->dev
, "Standard Mode HCNT:LCNT = %d:%d\n",
70 dev
->ss_hcnt
, dev
->ss_lcnt
);
73 * Set SCL timing parameters for fast mode or fast mode plus. Only
74 * difference is the timing parameter values since the registers are
77 if (t
->bus_freq_hz
== 1000000) {
79 * Check are fast mode plus parameters available and use
82 if (dev
->fp_hcnt
&& dev
->fp_lcnt
) {
83 dev
->fs_hcnt
= dev
->fp_hcnt
;
84 dev
->fs_lcnt
= dev
->fp_lcnt
;
89 * Calculate SCL timing parameters for fast mode if not set. They are
90 * needed also in high speed mode.
92 if (!dev
->fs_hcnt
|| !dev
->fs_lcnt
) {
93 ic_clk
= i2c_dw_clk_rate(dev
);
95 i2c_dw_scl_hcnt(ic_clk
,
96 600, /* tHD;STA = tHIGH = 0.6 us */
98 0, /* 0: DW default, 1: Ideal */
101 i2c_dw_scl_lcnt(ic_clk
,
102 1300, /* tLOW = 1.3 us */
106 dev_dbg(dev
->dev
, "Fast Mode%s HCNT:LCNT = %d:%d\n",
107 fp_str
, dev
->fs_hcnt
, dev
->fs_lcnt
);
109 /* Check is high speed possible and fall back to fast mode if not */
110 if ((dev
->master_cfg
& DW_IC_CON_SPEED_MASK
) ==
111 DW_IC_CON_SPEED_HIGH
) {
112 if ((comp_param1
& DW_IC_COMP_PARAM_1_SPEED_MODE_MASK
)
113 != DW_IC_COMP_PARAM_1_SPEED_MODE_HIGH
) {
114 dev_err(dev
->dev
, "High Speed not supported!\n");
115 dev
->master_cfg
&= ~DW_IC_CON_SPEED_MASK
;
116 dev
->master_cfg
|= DW_IC_CON_SPEED_FAST
;
119 } else if (dev
->hs_hcnt
&& dev
->hs_lcnt
) {
120 dev_dbg(dev
->dev
, "High Speed Mode HCNT:LCNT = %d:%d\n",
121 dev
->hs_hcnt
, dev
->hs_lcnt
);
125 ret
= i2c_dw_set_sda_hold(dev
);
129 switch (dev
->master_cfg
& DW_IC_CON_SPEED_MASK
) {
130 case DW_IC_CON_SPEED_STD
:
131 mode_str
= "Standard Mode";
133 case DW_IC_CON_SPEED_HIGH
:
134 mode_str
= "High Speed Mode";
137 mode_str
= "Fast Mode";
139 dev_dbg(dev
->dev
, "Bus speed: %s%s\n", mode_str
, fp_str
);
146 * i2c_dw_init() - Initialize the designware I2C master hardware
147 * @dev: device private data
149 * This functions configures and enables the I2C master.
150 * This function is called during I2C init function, and in case of timeout at
153 static int i2c_dw_init_master(struct dw_i2c_dev
*dev
)
157 ret
= i2c_dw_acquire_lock(dev
);
161 /* Disable the adapter */
162 __i2c_dw_disable(dev
);
164 /* Write standard speed timing parameters */
165 dw_writel(dev
, dev
->ss_hcnt
, DW_IC_SS_SCL_HCNT
);
166 dw_writel(dev
, dev
->ss_lcnt
, DW_IC_SS_SCL_LCNT
);
168 /* Write fast mode/fast mode plus timing parameters */
169 dw_writel(dev
, dev
->fs_hcnt
, DW_IC_FS_SCL_HCNT
);
170 dw_writel(dev
, dev
->fs_lcnt
, DW_IC_FS_SCL_LCNT
);
172 /* Write high speed timing parameters if supported */
173 if (dev
->hs_hcnt
&& dev
->hs_lcnt
) {
174 dw_writel(dev
, dev
->hs_hcnt
, DW_IC_HS_SCL_HCNT
);
175 dw_writel(dev
, dev
->hs_lcnt
, DW_IC_HS_SCL_LCNT
);
178 /* Write SDA hold time if supported */
179 if (dev
->sda_hold_time
)
180 dw_writel(dev
, dev
->sda_hold_time
, DW_IC_SDA_HOLD
);
182 i2c_dw_configure_fifo_master(dev
);
183 i2c_dw_release_lock(dev
);
188 static void i2c_dw_xfer_init(struct dw_i2c_dev
*dev
)
190 struct i2c_msg
*msgs
= dev
->msgs
;
191 u32 ic_con
, ic_tar
= 0;
193 /* Disable the adapter */
194 __i2c_dw_disable(dev
);
196 /* If the slave address is ten bit address, enable 10BITADDR */
197 ic_con
= dw_readl(dev
, DW_IC_CON
);
198 if (msgs
[dev
->msg_write_idx
].flags
& I2C_M_TEN
) {
199 ic_con
|= DW_IC_CON_10BITADDR_MASTER
;
201 * If I2C_DYNAMIC_TAR_UPDATE is set, the 10-bit addressing
202 * mode has to be enabled via bit 12 of IC_TAR register.
203 * We set it always as I2C_DYNAMIC_TAR_UPDATE can't be
204 * detected from registers.
206 ic_tar
= DW_IC_TAR_10BITADDR_MASTER
;
208 ic_con
&= ~DW_IC_CON_10BITADDR_MASTER
;
211 dw_writel(dev
, ic_con
, DW_IC_CON
);
214 * Set the slave (target) address and enable 10-bit addressing mode
217 dw_writel(dev
, msgs
[dev
->msg_write_idx
].addr
| ic_tar
, DW_IC_TAR
);
219 /* Enforce disabled interrupts (due to HW issues) */
220 i2c_dw_disable_int(dev
);
222 /* Enable the adapter */
223 __i2c_dw_enable(dev
);
225 /* Dummy read to avoid the register getting stuck on Bay Trail */
226 dw_readl(dev
, DW_IC_ENABLE_STATUS
);
228 /* Clear and enable interrupts */
229 dw_readl(dev
, DW_IC_CLR_INTR
);
230 dw_writel(dev
, DW_IC_INTR_MASTER_MASK
, DW_IC_INTR_MASK
);
234 * Initiate (and continue) low level master read/write transaction.
235 * This function is only called from i2c_dw_isr, and pumping i2c_msg
236 * messages into the tx buffer. Even if the size of i2c_msg data is
237 * longer than the size of the tx buffer, it handles everything.
240 i2c_dw_xfer_msg(struct dw_i2c_dev
*dev
)
242 struct i2c_msg
*msgs
= dev
->msgs
;
244 int tx_limit
, rx_limit
;
245 u32 addr
= msgs
[dev
->msg_write_idx
].addr
;
246 u32 buf_len
= dev
->tx_buf_len
;
247 u8
*buf
= dev
->tx_buf
;
248 bool need_restart
= false;
250 intr_mask
= DW_IC_INTR_MASTER_MASK
;
252 for (; dev
->msg_write_idx
< dev
->msgs_num
; dev
->msg_write_idx
++) {
253 u32 flags
= msgs
[dev
->msg_write_idx
].flags
;
256 * If target address has changed, we need to
257 * reprogram the target address in the I2C
258 * adapter when we are done with this transfer.
260 if (msgs
[dev
->msg_write_idx
].addr
!= addr
) {
262 "%s: invalid target address\n", __func__
);
263 dev
->msg_err
= -EINVAL
;
267 if (!(dev
->status
& STATUS_WRITE_IN_PROGRESS
)) {
269 buf
= msgs
[dev
->msg_write_idx
].buf
;
270 buf_len
= msgs
[dev
->msg_write_idx
].len
;
272 /* If both IC_EMPTYFIFO_HOLD_MASTER_EN and
273 * IC_RESTART_EN are set, we must manually
274 * set restart bit between messages.
276 if ((dev
->master_cfg
& DW_IC_CON_RESTART_EN
) &&
277 (dev
->msg_write_idx
> 0))
281 tx_limit
= dev
->tx_fifo_depth
- dw_readl(dev
, DW_IC_TXFLR
);
282 rx_limit
= dev
->rx_fifo_depth
- dw_readl(dev
, DW_IC_RXFLR
);
284 while (buf_len
> 0 && tx_limit
> 0 && rx_limit
> 0) {
288 * If IC_EMPTYFIFO_HOLD_MASTER_EN is set we must
289 * manually set the stop bit. However, it cannot be
290 * detected from the registers so we set it always
291 * when writing/reading the last byte.
295 * i2c-core always sets the buffer length of
296 * I2C_FUNC_SMBUS_BLOCK_DATA to 1. The length will
297 * be adjusted when receiving the first byte.
298 * Thus we can't stop the transaction here.
300 if (dev
->msg_write_idx
== dev
->msgs_num
- 1 &&
301 buf_len
== 1 && !(flags
& I2C_M_RECV_LEN
))
306 need_restart
= false;
309 if (msgs
[dev
->msg_write_idx
].flags
& I2C_M_RD
) {
311 /* Avoid rx buffer overrun */
312 if (dev
->rx_outstanding
>= dev
->rx_fifo_depth
)
315 dw_writel(dev
, cmd
| 0x100, DW_IC_DATA_CMD
);
317 dev
->rx_outstanding
++;
319 dw_writel(dev
, cmd
| *buf
++, DW_IC_DATA_CMD
);
320 tx_limit
--; buf_len
--;
324 dev
->tx_buf_len
= buf_len
;
327 * Because we don't know the buffer length in the
328 * I2C_FUNC_SMBUS_BLOCK_DATA case, we can't stop
329 * the transaction here.
331 if (buf_len
> 0 || flags
& I2C_M_RECV_LEN
) {
332 /* more bytes to be written */
333 dev
->status
|= STATUS_WRITE_IN_PROGRESS
;
336 dev
->status
&= ~STATUS_WRITE_IN_PROGRESS
;
340 * If i2c_msg index search is completed, we don't need TX_EMPTY
341 * interrupt any more.
343 if (dev
->msg_write_idx
== dev
->msgs_num
)
344 intr_mask
&= ~DW_IC_INTR_TX_EMPTY
;
349 dw_writel(dev
, intr_mask
, DW_IC_INTR_MASK
);
353 i2c_dw_recv_len(struct dw_i2c_dev
*dev
, u8 len
)
355 struct i2c_msg
*msgs
= dev
->msgs
;
356 u32 flags
= msgs
[dev
->msg_read_idx
].flags
;
359 * Adjust the buffer length and mask the flag
360 * after receiving the first byte.
362 len
+= (flags
& I2C_CLIENT_PEC
) ? 2 : 1;
363 dev
->tx_buf_len
= len
- min_t(u8
, len
, dev
->rx_outstanding
);
364 msgs
[dev
->msg_read_idx
].len
= len
;
365 msgs
[dev
->msg_read_idx
].flags
&= ~I2C_M_RECV_LEN
;
371 i2c_dw_read(struct dw_i2c_dev
*dev
)
373 struct i2c_msg
*msgs
= dev
->msgs
;
376 for (; dev
->msg_read_idx
< dev
->msgs_num
; dev
->msg_read_idx
++) {
380 if (!(msgs
[dev
->msg_read_idx
].flags
& I2C_M_RD
))
383 if (!(dev
->status
& STATUS_READ_IN_PROGRESS
)) {
384 len
= msgs
[dev
->msg_read_idx
].len
;
385 buf
= msgs
[dev
->msg_read_idx
].buf
;
387 len
= dev
->rx_buf_len
;
391 rx_valid
= dw_readl(dev
, DW_IC_RXFLR
);
393 for (; len
> 0 && rx_valid
> 0; len
--, rx_valid
--) {
394 u32 flags
= msgs
[dev
->msg_read_idx
].flags
;
396 *buf
= dw_readl(dev
, DW_IC_DATA_CMD
);
397 /* Ensure length byte is a valid value */
398 if (flags
& I2C_M_RECV_LEN
&&
399 *buf
<= I2C_SMBUS_BLOCK_MAX
&& *buf
> 0) {
400 len
= i2c_dw_recv_len(dev
, *buf
);
403 dev
->rx_outstanding
--;
407 dev
->status
|= STATUS_READ_IN_PROGRESS
;
408 dev
->rx_buf_len
= len
;
412 dev
->status
&= ~STATUS_READ_IN_PROGRESS
;
417 * Prepare controller for a transaction and call i2c_dw_xfer_msg.
420 i2c_dw_xfer(struct i2c_adapter
*adap
, struct i2c_msg msgs
[], int num
)
422 struct dw_i2c_dev
*dev
= i2c_get_adapdata(adap
);
425 dev_dbg(dev
->dev
, "%s: msgs: %d\n", __func__
, num
);
427 pm_runtime_get_sync(dev
->dev
);
429 reinit_completion(&dev
->cmd_complete
);
433 dev
->msg_write_idx
= 0;
434 dev
->msg_read_idx
= 0;
436 dev
->status
= STATUS_IDLE
;
437 dev
->abort_source
= 0;
438 dev
->rx_outstanding
= 0;
440 ret
= i2c_dw_acquire_lock(dev
);
444 ret
= i2c_dw_wait_bus_not_busy(dev
);
448 /* Start the transfers */
449 i2c_dw_xfer_init(dev
);
451 /* Wait for tx to complete */
452 if (!wait_for_completion_timeout(&dev
->cmd_complete
, adap
->timeout
)) {
453 dev_err(dev
->dev
, "controller timed out\n");
454 /* i2c_dw_init implicitly disables the adapter */
455 i2c_recover_bus(&dev
->adapter
);
456 i2c_dw_init_master(dev
);
462 * We must disable the adapter before returning and signaling the end
463 * of the current transfer. Otherwise the hardware might continue
464 * generating interrupts which in turn causes a race condition with
465 * the following transfer. Needs some more investigation if the
466 * additional interrupts are a hardware bug or this driver doesn't
467 * handle them correctly yet.
469 __i2c_dw_disable_nowait(dev
);
477 if (likely(!dev
->cmd_err
&& !dev
->status
)) {
482 /* We have an error */
483 if (dev
->cmd_err
== DW_IC_ERR_TX_ABRT
) {
484 ret
= i2c_dw_handle_tx_abort(dev
);
490 "transfer terminated early - interrupt latency too high?\n");
495 i2c_dw_release_lock(dev
);
498 pm_runtime_mark_last_busy(dev
->dev
);
499 pm_runtime_put_autosuspend(dev
->dev
);
504 static const struct i2c_algorithm i2c_dw_algo
= {
505 .master_xfer
= i2c_dw_xfer
,
506 .functionality
= i2c_dw_func
,
509 static const struct i2c_adapter_quirks i2c_dw_quirks
= {
510 .flags
= I2C_AQ_NO_ZERO_LEN
,
513 static u32
i2c_dw_read_clear_intrbits(struct dw_i2c_dev
*dev
)
518 * The IC_INTR_STAT register just indicates "enabled" interrupts.
519 * Ths unmasked raw version of interrupt status bits are available
520 * in the IC_RAW_INTR_STAT register.
523 * stat = dw_readl(IC_INTR_STAT);
525 * stat = dw_readl(IC_RAW_INTR_STAT) & dw_readl(IC_INTR_MASK);
527 * The raw version might be useful for debugging purposes.
529 stat
= dw_readl(dev
, DW_IC_INTR_STAT
);
532 * Do not use the IC_CLR_INTR register to clear interrupts, or
533 * you'll miss some interrupts, triggered during the period from
534 * dw_readl(IC_INTR_STAT) to dw_readl(IC_CLR_INTR).
536 * Instead, use the separately-prepared IC_CLR_* registers.
538 if (stat
& DW_IC_INTR_RX_UNDER
)
539 dw_readl(dev
, DW_IC_CLR_RX_UNDER
);
540 if (stat
& DW_IC_INTR_RX_OVER
)
541 dw_readl(dev
, DW_IC_CLR_RX_OVER
);
542 if (stat
& DW_IC_INTR_TX_OVER
)
543 dw_readl(dev
, DW_IC_CLR_TX_OVER
);
544 if (stat
& DW_IC_INTR_RD_REQ
)
545 dw_readl(dev
, DW_IC_CLR_RD_REQ
);
546 if (stat
& DW_IC_INTR_TX_ABRT
) {
548 * The IC_TX_ABRT_SOURCE register is cleared whenever
549 * the IC_CLR_TX_ABRT is read. Preserve it beforehand.
551 dev
->abort_source
= dw_readl(dev
, DW_IC_TX_ABRT_SOURCE
);
552 dw_readl(dev
, DW_IC_CLR_TX_ABRT
);
554 if (stat
& DW_IC_INTR_RX_DONE
)
555 dw_readl(dev
, DW_IC_CLR_RX_DONE
);
556 if (stat
& DW_IC_INTR_ACTIVITY
)
557 dw_readl(dev
, DW_IC_CLR_ACTIVITY
);
558 if (stat
& DW_IC_INTR_STOP_DET
)
559 dw_readl(dev
, DW_IC_CLR_STOP_DET
);
560 if (stat
& DW_IC_INTR_START_DET
)
561 dw_readl(dev
, DW_IC_CLR_START_DET
);
562 if (stat
& DW_IC_INTR_GEN_CALL
)
563 dw_readl(dev
, DW_IC_CLR_GEN_CALL
);
569 * Interrupt service routine. This gets called whenever an I2C master interrupt
572 static int i2c_dw_irq_handler_master(struct dw_i2c_dev
*dev
)
576 stat
= i2c_dw_read_clear_intrbits(dev
);
577 if (stat
& DW_IC_INTR_TX_ABRT
) {
578 dev
->cmd_err
|= DW_IC_ERR_TX_ABRT
;
579 dev
->status
= STATUS_IDLE
;
582 * Anytime TX_ABRT is set, the contents of the tx/rx
583 * buffers are flushed. Make sure to skip them.
585 dw_writel(dev
, 0, DW_IC_INTR_MASK
);
589 if (stat
& DW_IC_INTR_RX_FULL
)
592 if (stat
& DW_IC_INTR_TX_EMPTY
)
593 i2c_dw_xfer_msg(dev
);
596 * No need to modify or disable the interrupt mask here.
597 * i2c_dw_xfer_msg() will take care of it according to
598 * the current transmit status.
602 if ((stat
& (DW_IC_INTR_TX_ABRT
| DW_IC_INTR_STOP_DET
)) || dev
->msg_err
)
603 complete(&dev
->cmd_complete
);
604 else if (unlikely(dev
->flags
& ACCESS_INTR_MASK
)) {
605 /* Workaround to trigger pending interrupt */
606 stat
= dw_readl(dev
, DW_IC_INTR_MASK
);
607 i2c_dw_disable_int(dev
);
608 dw_writel(dev
, stat
, DW_IC_INTR_MASK
);
614 static irqreturn_t
i2c_dw_isr(int this_irq
, void *dev_id
)
616 struct dw_i2c_dev
*dev
= dev_id
;
619 enabled
= dw_readl(dev
, DW_IC_ENABLE
);
620 stat
= dw_readl(dev
, DW_IC_RAW_INTR_STAT
);
621 dev_dbg(dev
->dev
, "enabled=%#x stat=%#x\n", enabled
, stat
);
622 if (!enabled
|| !(stat
& ~DW_IC_INTR_ACTIVITY
))
625 i2c_dw_irq_handler_master(dev
);
630 static void i2c_dw_prepare_recovery(struct i2c_adapter
*adap
)
632 struct dw_i2c_dev
*dev
= i2c_get_adapdata(adap
);
635 reset_control_assert(dev
->rst
);
636 i2c_dw_prepare_clk(dev
, false);
639 static void i2c_dw_unprepare_recovery(struct i2c_adapter
*adap
)
641 struct dw_i2c_dev
*dev
= i2c_get_adapdata(adap
);
643 i2c_dw_prepare_clk(dev
, true);
644 reset_control_deassert(dev
->rst
);
645 i2c_dw_init_master(dev
);
648 static int i2c_dw_init_recovery_info(struct dw_i2c_dev
*dev
)
650 struct i2c_bus_recovery_info
*rinfo
= &dev
->rinfo
;
651 struct i2c_adapter
*adap
= &dev
->adapter
;
652 struct gpio_desc
*gpio
;
655 gpio
= devm_gpiod_get(dev
->dev
, "scl", GPIOD_OUT_HIGH
);
658 if (r
== -ENOENT
|| r
== -ENOSYS
)
662 rinfo
->scl_gpiod
= gpio
;
664 gpio
= devm_gpiod_get_optional(dev
->dev
, "sda", GPIOD_IN
);
666 return PTR_ERR(gpio
);
667 rinfo
->sda_gpiod
= gpio
;
669 rinfo
->recover_bus
= i2c_generic_scl_recovery
;
670 rinfo
->prepare_recovery
= i2c_dw_prepare_recovery
;
671 rinfo
->unprepare_recovery
= i2c_dw_unprepare_recovery
;
672 adap
->bus_recovery_info
= rinfo
;
674 dev_info(dev
->dev
, "running with gpio recovery mode! scl%s",
675 rinfo
->sda_gpiod
? ",sda" : "");
680 int i2c_dw_probe(struct dw_i2c_dev
*dev
)
682 struct i2c_adapter
*adap
= &dev
->adapter
;
683 unsigned long irq_flags
;
686 init_completion(&dev
->cmd_complete
);
688 dev
->init
= i2c_dw_init_master
;
689 dev
->disable
= i2c_dw_disable
;
690 dev
->disable_int
= i2c_dw_disable_int
;
692 ret
= i2c_dw_set_reg_access(dev
);
696 ret
= i2c_dw_set_timings_master(dev
);
700 ret
= dev
->init(dev
);
704 snprintf(adap
->name
, sizeof(adap
->name
),
705 "Synopsys DesignWare I2C adapter");
707 adap
->algo
= &i2c_dw_algo
;
708 adap
->quirks
= &i2c_dw_quirks
;
709 adap
->dev
.parent
= dev
->dev
;
710 i2c_set_adapdata(adap
, dev
);
712 if (dev
->pm_disabled
) {
713 irq_flags
= IRQF_NO_SUSPEND
;
715 irq_flags
= IRQF_SHARED
| IRQF_COND_SUSPEND
;
718 i2c_dw_disable_int(dev
);
719 ret
= devm_request_irq(dev
->dev
, dev
->irq
, i2c_dw_isr
, irq_flags
,
720 dev_name(dev
->dev
), dev
);
722 dev_err(dev
->dev
, "failure requesting irq %i: %d\n",
727 ret
= i2c_dw_init_recovery_info(dev
);
732 * Increment PM usage count during adapter registration in order to
733 * avoid possible spurious runtime suspend when adapter device is
734 * registered to the device core and immediate resume in case bus has
735 * registered I2C slaves that do I2C transfers in their probe.
737 pm_runtime_get_noresume(dev
->dev
);
738 ret
= i2c_add_numbered_adapter(adap
);
740 dev_err(dev
->dev
, "failure adding adapter: %d\n", ret
);
741 pm_runtime_put_noidle(dev
->dev
);
745 EXPORT_SYMBOL_GPL(i2c_dw_probe
);
747 MODULE_DESCRIPTION("Synopsys DesignWare I2C bus master adapter");
748 MODULE_LICENSE("GPL");