blob: fd36c39ddf4e86efd4ae8f12bd9f4ab9df4da860 [file] [log] [blame]
Baruch Siach1ab52cf2009-06-22 16:36:29 +03001/*
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +09002 * Synopsys DesignWare I2C adapter driver (master only).
Baruch Siach1ab52cf2009-06-22 16:36:29 +03003 *
4 * Based on the TI DAVINCI I2C adapter driver.
5 *
6 * Copyright (C) 2006 Texas Instruments.
7 * Copyright (C) 2007 MontaVista Software Inc.
8 * Copyright (C) 2009 Provigent Ltd.
9 *
10 * ----------------------------------------------------------------------------
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
Baruch Siach1ab52cf2009-06-22 16:36:29 +030021 * ----------------------------------------------------------------------------
22 *
23 */
Luis Oliveirae393f672017-06-14 11:43:21 +010024#include <linux/delay.h>
Baruch Siach1ab52cf2009-06-22 16:36:29 +030025#include <linux/err.h>
Luis Oliveira90312352017-06-14 11:43:23 +010026#include <linux/errno.h>
27#include <linux/export.h>
Tim Sanderca382f52017-11-02 10:40:27 +080028#include <linux/gpio/consumer.h>
Dirk Brandewie2373f6b2011-10-29 10:57:23 +010029#include <linux/i2c.h>
Baruch Siach1ab52cf2009-06-22 16:36:29 +030030#include <linux/interrupt.h>
Baruch Siach1ab52cf2009-06-22 16:36:29 +030031#include <linux/io.h>
Mika Westerberg9dd31622013-01-17 12:31:04 +020032#include <linux/module.h>
Luis Oliveirae393f672017-06-14 11:43:21 +010033#include <linux/pm_runtime.h>
Tim Sanderca382f52017-11-02 10:40:27 +080034#include <linux/reset.h>
Shinya Kuribayashice6eb572009-11-06 21:51:57 +090035
Luis Oliveirae393f672017-06-14 11:43:21 +010036#include "i2c-designware-core.h"
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -070037
Luis Oliveira89a1e1b2017-06-14 11:43:22 +010038static void i2c_dw_configure_fifo_master(struct dw_i2c_dev *dev)
39{
40 /* Configure Tx/Rx FIFO threshold levels */
41 dw_writel(dev, dev->tx_fifo_depth / 2, DW_IC_TX_TL);
42 dw_writel(dev, 0, DW_IC_RX_TL);
43
44 /* Configure the I2C master */
45 dw_writel(dev, dev->master_cfg, DW_IC_CON);
46}
47
Baruch Siach1ab52cf2009-06-22 16:36:29 +030048/**
Luis Oliveirae393f672017-06-14 11:43:21 +010049 * i2c_dw_init() - Initialize the designware I2C master hardware
Baruch Siach1ab52cf2009-06-22 16:36:29 +030050 * @dev: device private data
51 *
52 * This functions configures and enables the I2C master.
53 * This function is called during I2C init function, and in case of timeout at
54 * run time.
55 */
Jarkko Nikula21bf4402017-06-28 17:23:28 +030056static int i2c_dw_init_master(struct dw_i2c_dev *dev)
Baruch Siach1ab52cf2009-06-22 16:36:29 +030057{
Dirk Brandewiee18563f2011-10-06 11:26:32 -070058 u32 hcnt, lcnt;
Weifeng Voonb6e67142016-08-12 17:02:51 +030059 u32 reg, comp_param1;
Romain Baeriswyl64682762014-01-20 17:43:43 +010060 u32 sda_falling_time, scl_falling_time;
David Boxc0601d22015-01-15 01:12:16 -080061 int ret;
62
Lucas De Marchi8c5660b2016-08-23 19:18:54 -030063 ret = i2c_dw_acquire_lock(dev);
64 if (ret)
65 return ret;
Dirk Brandewie4a423a82011-10-06 11:26:28 -070066
Dirk Brandewie4a423a82011-10-06 11:26:28 -070067 reg = dw_readl(dev, DW_IC_COMP_TYPE);
68 if (reg == ___constant_swab32(DW_IC_COMP_TYPE_VALUE)) {
Stefan Roesea8a9f3f2012-04-18 15:01:41 +020069 /* Configure register endianess access */
Hans de Goede86524e52017-02-10 11:27:53 +010070 dev->flags |= ACCESS_SWAP;
Stefan Roesea8a9f3f2012-04-18 15:01:41 +020071 } else if (reg == (DW_IC_COMP_TYPE_VALUE & 0x0000ffff)) {
72 /* Configure register access mode 16bit */
Hans de Goede86524e52017-02-10 11:27:53 +010073 dev->flags |= ACCESS_16BIT;
Stefan Roesea8a9f3f2012-04-18 15:01:41 +020074 } else if (reg != DW_IC_COMP_TYPE_VALUE) {
Luis Oliveirae393f672017-06-14 11:43:21 +010075 dev_err(dev->dev,
76 "Unknown Synopsys component type: 0x%08x\n", reg);
Lucas De Marchi8c5660b2016-08-23 19:18:54 -030077 i2c_dw_release_lock(dev);
Dirk Brandewie4a423a82011-10-06 11:26:28 -070078 return -ENODEV;
79 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +030080
Weifeng Voonb6e67142016-08-12 17:02:51 +030081 comp_param1 = dw_readl(dev, DW_IC_COMP_PARAM_1);
82
Baruch Siach1ab52cf2009-06-22 16:36:29 +030083 /* Disable the adapter */
José Roberto de Souza2702ea72016-08-23 19:18:53 -030084 __i2c_dw_enable_and_wait(dev, false);
Baruch Siach1ab52cf2009-06-22 16:36:29 +030085
Luis Oliveirae393f672017-06-14 11:43:21 +010086 /* Set standard and fast speed deviders for high/low periods */
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +090087
Romain Baeriswyl64682762014-01-20 17:43:43 +010088 sda_falling_time = dev->sda_falling_time ?: 300; /* ns */
89 scl_falling_time = dev->scl_falling_time ?: 300; /* ns */
90
Jarkko Nikula42ffd392015-01-23 11:35:55 +020091 /* Set SCL timing parameters for standard-mode */
Mika Westerbergdefc0b22013-08-19 15:07:53 +030092 if (dev->ss_hcnt && dev->ss_lcnt) {
93 hcnt = dev->ss_hcnt;
94 lcnt = dev->ss_lcnt;
Jarkko Nikula42ffd392015-01-23 11:35:55 +020095 } else {
Suravee Suthikulpanitb33af112016-01-04 09:17:35 -060096 hcnt = i2c_dw_scl_hcnt(i2c_dw_clk_rate(dev),
Jarkko Nikula42ffd392015-01-23 11:35:55 +020097 4000, /* tHD;STA = tHIGH = 4.0 us */
98 sda_falling_time,
99 0, /* 0: DW default, 1: Ideal */
100 0); /* No offset */
Suravee Suthikulpanitb33af112016-01-04 09:17:35 -0600101 lcnt = i2c_dw_scl_lcnt(i2c_dw_clk_rate(dev),
Jarkko Nikula42ffd392015-01-23 11:35:55 +0200102 4700, /* tLOW = 4.7 us */
103 scl_falling_time,
104 0); /* No offset */
Mika Westerbergdefc0b22013-08-19 15:07:53 +0300105 }
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700106 dw_writel(dev, hcnt, DW_IC_SS_SCL_HCNT);
107 dw_writel(dev, lcnt, DW_IC_SS_SCL_LCNT);
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900108 dev_dbg(dev->dev, "Standard-mode HCNT:LCNT = %d:%d\n", hcnt, lcnt);
109
Weifeng Voond608c3d2016-08-12 17:02:49 +0300110 /* Set SCL timing parameters for fast-mode or fast-mode plus */
111 if ((dev->clk_freq == 1000000) && dev->fp_hcnt && dev->fp_lcnt) {
112 hcnt = dev->fp_hcnt;
113 lcnt = dev->fp_lcnt;
114 } else if (dev->fs_hcnt && dev->fs_lcnt) {
Mika Westerbergdefc0b22013-08-19 15:07:53 +0300115 hcnt = dev->fs_hcnt;
116 lcnt = dev->fs_lcnt;
Jarkko Nikula42ffd392015-01-23 11:35:55 +0200117 } else {
Suravee Suthikulpanitb33af112016-01-04 09:17:35 -0600118 hcnt = i2c_dw_scl_hcnt(i2c_dw_clk_rate(dev),
Jarkko Nikula42ffd392015-01-23 11:35:55 +0200119 600, /* tHD;STA = tHIGH = 0.6 us */
120 sda_falling_time,
121 0, /* 0: DW default, 1: Ideal */
122 0); /* No offset */
Suravee Suthikulpanitb33af112016-01-04 09:17:35 -0600123 lcnt = i2c_dw_scl_lcnt(i2c_dw_clk_rate(dev),
Jarkko Nikula42ffd392015-01-23 11:35:55 +0200124 1300, /* tLOW = 1.3 us */
125 scl_falling_time,
126 0); /* No offset */
Mika Westerbergdefc0b22013-08-19 15:07:53 +0300127 }
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700128 dw_writel(dev, hcnt, DW_IC_FS_SCL_HCNT);
129 dw_writel(dev, lcnt, DW_IC_FS_SCL_LCNT);
Shinya Kuribayashid60c7e82009-11-06 21:47:01 +0900130 dev_dbg(dev->dev, "Fast-mode HCNT:LCNT = %d:%d\n", hcnt, lcnt);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300131
Weifeng Voonb6e67142016-08-12 17:02:51 +0300132 if ((dev->master_cfg & DW_IC_CON_SPEED_MASK) ==
133 DW_IC_CON_SPEED_HIGH) {
134 if ((comp_param1 & DW_IC_COMP_PARAM_1_SPEED_MODE_MASK)
135 != DW_IC_COMP_PARAM_1_SPEED_MODE_HIGH) {
136 dev_err(dev->dev, "High Speed not supported!\n");
137 dev->master_cfg &= ~DW_IC_CON_SPEED_MASK;
138 dev->master_cfg |= DW_IC_CON_SPEED_FAST;
139 } else if (dev->hs_hcnt && dev->hs_lcnt) {
140 hcnt = dev->hs_hcnt;
141 lcnt = dev->hs_lcnt;
142 dw_writel(dev, hcnt, DW_IC_HS_SCL_HCNT);
143 dw_writel(dev, lcnt, DW_IC_HS_SCL_LCNT);
144 dev_dbg(dev->dev, "HighSpeed-mode HCNT:LCNT = %d:%d\n",
145 hcnt, lcnt);
146 }
147 }
148
Christian Ruppert9803f862013-06-26 10:55:06 +0200149 /* Configure SDA Hold Time if required */
Zhuo-hao Lee664d58b2016-08-27 15:39:30 +0800150 reg = dw_readl(dev, DW_IC_COMP_VERSION);
151 if (reg >= DW_IC_SDA_HOLD_MIN_VERS) {
Jarkko Nikula171e23e2016-09-29 16:04:59 +0300152 if (!dev->sda_hold_time) {
Zhuo-hao Lee664d58b2016-08-27 15:39:30 +0800153 /* Keep previous hold time setting if no one set it */
154 dev->sda_hold_time = dw_readl(dev, DW_IC_SDA_HOLD);
155 }
Jarkko Nikula171e23e2016-09-29 16:04:59 +0300156 /*
157 * Workaround for avoiding TX arbitration lost in case I2C
158 * slave pulls SDA down "too quickly" after falling egde of
159 * SCL by enabling non-zero SDA RX hold. Specification says it
160 * extends incoming SDA low to high transition while SCL is
161 * high but it apprears to help also above issue.
162 */
163 if (!(dev->sda_hold_time & DW_IC_SDA_HOLD_RX_MASK))
164 dev->sda_hold_time |= 1 << DW_IC_SDA_HOLD_RX_SHIFT;
165 dw_writel(dev, dev->sda_hold_time, DW_IC_SDA_HOLD);
Alexander Monakov7a20e702018-03-08 16:23:53 +0300166 } else if (dev->sda_hold_time) {
Zhuo-hao Lee664d58b2016-08-27 15:39:30 +0800167 dev_warn(dev->dev,
168 "Hardware too old to adjust SDA hold time.\n");
Christian Ruppert9803f862013-06-26 10:55:06 +0200169 }
170
Luis Oliveira89a1e1b2017-06-14 11:43:22 +0100171 i2c_dw_configure_fifo_master(dev);
Lucas De Marchi8c5660b2016-08-23 19:18:54 -0300172 i2c_dw_release_lock(dev);
173
Dirk Brandewie4a423a82011-10-06 11:26:28 -0700174 return 0;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300175}
176
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900177static void i2c_dw_xfer_init(struct dw_i2c_dev *dev)
178{
179 struct i2c_msg *msgs = dev->msgs;
Jarkko Nikula12688dc2017-02-13 11:18:19 +0200180 u32 ic_con, ic_tar = 0;
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900181
Jarkko Nikula89119f02016-11-25 17:22:27 +0200182 /* Disable the adapter */
183 __i2c_dw_enable_and_wait(dev, false);
Chew, Chiau Eebd63ace2013-09-27 02:57:35 +0800184
Luis Oliveirae393f672017-06-14 11:43:21 +0100185 /* If the slave address is ten bit address, enable 10BITADDR */
Jarkko Nikula12688dc2017-02-13 11:18:19 +0200186 ic_con = dw_readl(dev, DW_IC_CON);
187 if (msgs[dev->msg_write_idx].flags & I2C_M_TEN) {
188 ic_con |= DW_IC_CON_10BITADDR_MASTER;
Mika Westerberg3ca4ed82013-04-10 00:36:40 +0000189 /*
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900190 * If I2C_DYNAMIC_TAR_UPDATE is set, the 10-bit addressing
Jarkko Nikula12688dc2017-02-13 11:18:19 +0200191 * mode has to be enabled via bit 12 of IC_TAR register.
192 * We set it always as I2C_DYNAMIC_TAR_UPDATE can't be
193 * detected from registers.
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900194 */
Jarkko Nikula12688dc2017-02-13 11:18:19 +0200195 ic_tar = DW_IC_TAR_10BITADDR_MASTER;
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900196 } else {
Jarkko Nikula12688dc2017-02-13 11:18:19 +0200197 ic_con &= ~DW_IC_CON_10BITADDR_MASTER;
Lucas De Marchi63d0f0a62016-08-23 19:18:55 -0300198 }
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900199
Jarkko Nikula12688dc2017-02-13 11:18:19 +0200200 dw_writel(dev, ic_con, DW_IC_CON);
201
Chew, Chiau Eebd63ace2013-09-27 02:57:35 +0800202 /*
203 * Set the slave (target) address and enable 10-bit addressing mode
204 * if applicable.
205 */
206 dw_writel(dev, msgs[dev->msg_write_idx].addr | ic_tar, DW_IC_TAR);
207
Luis Oliveirae393f672017-06-14 11:43:21 +0100208 /* Enforce disabled interrupts (due to HW issues) */
Du, Wenkai47bb27e2014-04-10 23:03:19 +0000209 i2c_dw_disable_int(dev);
210
Jarkko Nikula89119f02016-11-25 17:22:27 +0200211 /* Enable the adapter */
Ben Gardnerfba4adb2018-02-14 09:29:52 -0600212 __i2c_dw_enable_and_wait(dev, true);
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900213
Mika Westerberg2a2d95e2013-05-13 00:54:30 +0000214 /* Clear and enable interrupts */
Jarkko Nikulac3356312015-08-31 17:31:28 +0300215 dw_readl(dev, DW_IC_CLR_INTR);
Luis Oliveira89a1e1b2017-06-14 11:43:22 +0100216 dw_writel(dev, DW_IC_INTR_MASTER_MASK, DW_IC_INTR_MASK);
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900217}
218
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300219/*
Shinya Kuribayashi201d6a72009-11-06 21:50:40 +0900220 * Initiate (and continue) low level master read/write transaction.
221 * This function is only called from i2c_dw_isr, and pumping i2c_msg
222 * messages into the tx buffer. Even if the size of i2c_msg data is
223 * longer than the size of the tx buffer, it handles everything.
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300224 */
Jean Delvarebccd7802012-10-05 22:23:53 +0200225static void
Shinya Kuribayashie77cf232009-11-06 21:46:04 +0900226i2c_dw_xfer_msg(struct dw_i2c_dev *dev)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300227{
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300228 struct i2c_msg *msgs = dev->msgs;
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900229 u32 intr_mask;
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900230 int tx_limit, rx_limit;
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900231 u32 addr = msgs[dev->msg_write_idx].addr;
232 u32 buf_len = dev->tx_buf_len;
Justin P. Mattock69932482011-07-26 23:06:29 -0700233 u8 *buf = dev->tx_buf;
Chew, Chiau Ee82564242013-06-21 15:05:28 +0800234 bool need_restart = false;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300235
Luis Oliveira89a1e1b2017-06-14 11:43:22 +0100236 intr_mask = DW_IC_INTR_MASTER_MASK;
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900237
Shinya Kuribayashi6d2ea482009-11-06 21:46:29 +0900238 for (; dev->msg_write_idx < dev->msgs_num; dev->msg_write_idx++) {
Tin Huynhc3ae1062016-11-10 09:56:33 +0700239 u32 flags = msgs[dev->msg_write_idx].flags;
240
Shinya Kuribayashia0e06ea2009-11-06 21:52:22 +0900241 /*
Luis Oliveirae393f672017-06-14 11:43:21 +0100242 * If target address has changed, we need to
243 * reprogram the target address in the I2C
244 * adapter when we are done with this transfer.
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300245 */
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900246 if (msgs[dev->msg_write_idx].addr != addr) {
247 dev_err(dev->dev,
248 "%s: invalid target address\n", __func__);
249 dev->msg_err = -EINVAL;
250 break;
251 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300252
253 if (msgs[dev->msg_write_idx].len == 0) {
254 dev_err(dev->dev,
255 "%s: invalid message length\n", __func__);
256 dev->msg_err = -EINVAL;
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900257 break;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300258 }
259
260 if (!(dev->status & STATUS_WRITE_IN_PROGRESS)) {
261 /* new i2c_msg */
Shinya Kuribayashi26ea15b2009-11-06 21:49:14 +0900262 buf = msgs[dev->msg_write_idx].buf;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300263 buf_len = msgs[dev->msg_write_idx].len;
Chew, Chiau Ee82564242013-06-21 15:05:28 +0800264
265 /* If both IC_EMPTYFIFO_HOLD_MASTER_EN and
266 * IC_RESTART_EN are set, we must manually
267 * set restart bit between messages.
268 */
269 if ((dev->master_cfg & DW_IC_CON_RESTART_EN) &&
270 (dev->msg_write_idx > 0))
271 need_restart = true;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300272 }
273
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700274 tx_limit = dev->tx_fifo_depth - dw_readl(dev, DW_IC_TXFLR);
275 rx_limit = dev->rx_fifo_depth - dw_readl(dev, DW_IC_RXFLR);
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900276
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300277 while (buf_len > 0 && tx_limit > 0 && rx_limit > 0) {
Mika Westerberg17a76b42013-01-17 12:31:05 +0200278 u32 cmd = 0;
279
280 /*
281 * If IC_EMPTYFIFO_HOLD_MASTER_EN is set we must
282 * manually set the stop bit. However, it cannot be
283 * detected from the registers so we set it always
284 * when writing/reading the last byte.
285 */
Tin Huynhc3ae1062016-11-10 09:56:33 +0700286
287 /*
Wolfram Sang91ed5342017-05-23 11:08:04 +0200288 * i2c-core always sets the buffer length of
Tin Huynhc3ae1062016-11-10 09:56:33 +0700289 * I2C_FUNC_SMBUS_BLOCK_DATA to 1. The length will
290 * be adjusted when receiving the first byte.
291 * Thus we can't stop the transaction here.
292 */
Mika Westerberg17a76b42013-01-17 12:31:05 +0200293 if (dev->msg_write_idx == dev->msgs_num - 1 &&
Tin Huynhc3ae1062016-11-10 09:56:33 +0700294 buf_len == 1 && !(flags & I2C_M_RECV_LEN))
Mika Westerberg17a76b42013-01-17 12:31:05 +0200295 cmd |= BIT(9);
296
Chew, Chiau Ee82564242013-06-21 15:05:28 +0800297 if (need_restart) {
298 cmd |= BIT(10);
299 need_restart = false;
300 }
301
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300302 if (msgs[dev->msg_write_idx].flags & I2C_M_RD) {
Josef Ahmade6f34ce2013-04-19 17:28:10 +0100303
Luis Oliveirae393f672017-06-14 11:43:21 +0100304 /* Avoid rx buffer overrun */
Russell King4d6d5f12016-11-18 19:40:10 +0000305 if (dev->rx_outstanding >= dev->rx_fifo_depth)
Josef Ahmade6f34ce2013-04-19 17:28:10 +0100306 break;
307
Mika Westerberg17a76b42013-01-17 12:31:05 +0200308 dw_writel(dev, cmd | 0x100, DW_IC_DATA_CMD);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300309 rx_limit--;
Josef Ahmade6f34ce2013-04-19 17:28:10 +0100310 dev->rx_outstanding++;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300311 } else
Mika Westerberg17a76b42013-01-17 12:31:05 +0200312 dw_writel(dev, cmd | *buf++, DW_IC_DATA_CMD);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300313 tx_limit--; buf_len--;
314 }
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900315
Shinya Kuribayashi26ea15b2009-11-06 21:49:14 +0900316 dev->tx_buf = buf;
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900317 dev->tx_buf_len = buf_len;
318
Tin Huynhc3ae1062016-11-10 09:56:33 +0700319 /*
320 * Because we don't know the buffer length in the
321 * I2C_FUNC_SMBUS_BLOCK_DATA case, we can't stop
322 * the transaction here.
323 */
324 if (buf_len > 0 || flags & I2C_M_RECV_LEN) {
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900325 /* more bytes to be written */
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900326 dev->status |= STATUS_WRITE_IN_PROGRESS;
327 break;
Shinya Kuribayashi69151e52009-11-06 21:51:00 +0900328 } else
Shinya Kuribayashic70c5cd2009-11-06 21:47:30 +0900329 dev->status &= ~STATUS_WRITE_IN_PROGRESS;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300330 }
331
Shinya Kuribayashi69151e52009-11-06 21:51:00 +0900332 /*
333 * If i2c_msg index search is completed, we don't need TX_EMPTY
334 * interrupt any more.
335 */
336 if (dev->msg_write_idx == dev->msgs_num)
337 intr_mask &= ~DW_IC_INTR_TX_EMPTY;
338
Shinya Kuribayashi8f588e42009-11-06 21:51:18 +0900339 if (dev->msg_err)
340 intr_mask = 0;
341
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100342 dw_writel(dev, intr_mask, DW_IC_INTR_MASK);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300343}
344
Tin Huynhc3ae1062016-11-10 09:56:33 +0700345static u8
346i2c_dw_recv_len(struct dw_i2c_dev *dev, u8 len)
347{
348 struct i2c_msg *msgs = dev->msgs;
349 u32 flags = msgs[dev->msg_read_idx].flags;
350
351 /*
352 * Adjust the buffer length and mask the flag
353 * after receiving the first byte.
354 */
355 len += (flags & I2C_CLIENT_PEC) ? 2 : 1;
356 dev->tx_buf_len = len - min_t(u8, len, dev->rx_outstanding);
357 msgs[dev->msg_read_idx].len = len;
358 msgs[dev->msg_read_idx].flags &= ~I2C_M_RECV_LEN;
359
360 return len;
361}
362
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300363static void
Shinya Kuribayashi78839bd2009-11-06 21:45:39 +0900364i2c_dw_read(struct dw_i2c_dev *dev)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300365{
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300366 struct i2c_msg *msgs = dev->msgs;
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900367 int rx_valid;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300368
Shinya Kuribayashi6d2ea482009-11-06 21:46:29 +0900369 for (; dev->msg_read_idx < dev->msgs_num; dev->msg_read_idx++) {
Shinya Kuribayashied5e1dd2009-11-06 21:43:52 +0900370 u32 len;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300371 u8 *buf;
372
373 if (!(msgs[dev->msg_read_idx].flags & I2C_M_RD))
374 continue;
375
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300376 if (!(dev->status & STATUS_READ_IN_PROGRESS)) {
377 len = msgs[dev->msg_read_idx].len;
378 buf = msgs[dev->msg_read_idx].buf;
379 } else {
380 len = dev->rx_buf_len;
381 buf = dev->rx_buf;
382 }
383
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700384 rx_valid = dw_readl(dev, DW_IC_RXFLR);
Shinya Kuribayashiae722222009-11-06 21:49:39 +0900385
Josef Ahmade6f34ce2013-04-19 17:28:10 +0100386 for (; len > 0 && rx_valid > 0; len--, rx_valid--) {
Tin Huynhc3ae1062016-11-10 09:56:33 +0700387 u32 flags = msgs[dev->msg_read_idx].flags;
388
389 *buf = dw_readl(dev, DW_IC_DATA_CMD);
390 /* Ensure length byte is a valid value */
391 if (flags & I2C_M_RECV_LEN &&
392 *buf <= I2C_SMBUS_BLOCK_MAX && *buf > 0) {
393 len = i2c_dw_recv_len(dev, *buf);
394 }
395 buf++;
Josef Ahmade6f34ce2013-04-19 17:28:10 +0100396 dev->rx_outstanding--;
397 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300398
399 if (len > 0) {
400 dev->status |= STATUS_READ_IN_PROGRESS;
401 dev->rx_buf_len = len;
402 dev->rx_buf = buf;
403 return;
404 } else
405 dev->status &= ~STATUS_READ_IN_PROGRESS;
406 }
407}
408
409/*
Luis Oliveirae393f672017-06-14 11:43:21 +0100410 * Prepare controller for a transaction and call i2c_dw_xfer_msg.
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300411 */
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300412static int
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300413i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
414{
415 struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
416 int ret;
417
418 dev_dbg(dev->dev, "%s: msgs: %d\n", __func__, num);
419
Dirk Brandewie18dbdda2011-10-06 11:26:36 -0700420 pm_runtime_get_sync(dev->dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300421
Wolfram Sang16735d02013-11-14 14:32:02 -0800422 reinit_completion(&dev->cmd_complete);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300423 dev->msgs = msgs;
424 dev->msgs_num = num;
425 dev->cmd_err = 0;
426 dev->msg_write_idx = 0;
427 dev->msg_read_idx = 0;
428 dev->msg_err = 0;
429 dev->status = STATUS_IDLE;
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900430 dev->abort_source = 0;
Josef Ahmade6f34ce2013-04-19 17:28:10 +0100431 dev->rx_outstanding = 0;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300432
Lucas De Marchi8c5660b2016-08-23 19:18:54 -0300433 ret = i2c_dw_acquire_lock(dev);
434 if (ret)
435 goto done_nolock;
David Boxc0601d22015-01-15 01:12:16 -0800436
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300437 ret = i2c_dw_wait_bus_not_busy(dev);
438 if (ret < 0)
439 goto done;
440
Luis Oliveirae393f672017-06-14 11:43:21 +0100441 /* Start the transfers */
Shinya Kuribayashi81e798b2009-11-06 21:48:55 +0900442 i2c_dw_xfer_init(dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300443
Luis Oliveirae393f672017-06-14 11:43:21 +0100444 /* Wait for tx to complete */
Weifeng Voond0bcd8d2016-06-17 09:46:35 +0800445 if (!wait_for_completion_timeout(&dev->cmd_complete, adap->timeout)) {
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300446 dev_err(dev->dev, "controller timed out\n");
Christian Ruppert38d7fad2013-06-07 10:51:23 +0200447 /* i2c_dw_init implicitly disables the adapter */
Tim Sanderca382f52017-11-02 10:40:27 +0800448 i2c_recover_bus(&dev->adapter);
Jarkko Nikula21bf4402017-06-28 17:23:28 +0300449 i2c_dw_init_master(dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300450 ret = -ETIMEDOUT;
451 goto done;
Mika Westerberge42dba52013-05-22 13:03:11 +0300452 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300453
Jarkko Nikula89119f02016-11-25 17:22:27 +0200454 /*
455 * We must disable the adapter before returning and signaling the end
456 * of the current transfer. Otherwise the hardware might continue
457 * generating interrupts which in turn causes a race condition with
458 * the following transfer. Needs some more investigation if the
459 * additional interrupts are a hardware bug or this driver doesn't
460 * handle them correctly yet.
461 */
462 __i2c_dw_enable(dev, false);
463
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300464 if (dev->msg_err) {
465 ret = dev->msg_err;
466 goto done;
467 }
468
Luis Oliveirae393f672017-06-14 11:43:21 +0100469 /* No error */
Russell King2bf413d2016-11-18 19:40:04 +0000470 if (likely(!dev->cmd_err && !dev->status)) {
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300471 ret = num;
472 goto done;
473 }
474
475 /* We have an error */
476 if (dev->cmd_err == DW_IC_ERR_TX_ABRT) {
Shinya Kuribayashice6eb572009-11-06 21:51:57 +0900477 ret = i2c_dw_handle_tx_abort(dev);
478 goto done;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300479 }
Russell King2bf413d2016-11-18 19:40:04 +0000480
481 if (dev->status)
482 dev_err(dev->dev,
483 "transfer terminated early - interrupt latency too high?\n");
484
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300485 ret = -EIO;
486
487done:
Lucas De Marchi8c5660b2016-08-23 19:18:54 -0300488 i2c_dw_release_lock(dev);
David Boxc0601d22015-01-15 01:12:16 -0800489
490done_nolock:
Mika Westerberg43452332013-04-10 00:36:42 +0000491 pm_runtime_mark_last_busy(dev->dev);
492 pm_runtime_put_autosuspend(dev->dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300493
494 return ret;
495}
496
Bhumika Goyal92d9d0d2017-01-27 23:36:17 +0530497static const struct i2c_algorithm i2c_dw_algo = {
Luis Oliveirae393f672017-06-14 11:43:21 +0100498 .master_xfer = i2c_dw_xfer,
499 .functionality = i2c_dw_func,
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300500};
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300501
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900502static u32 i2c_dw_read_clear_intrbits(struct dw_i2c_dev *dev)
503{
504 u32 stat;
505
506 /*
507 * The IC_INTR_STAT register just indicates "enabled" interrupts.
508 * Ths unmasked raw version of interrupt status bits are available
509 * in the IC_RAW_INTR_STAT register.
510 *
511 * That is,
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100512 * stat = dw_readl(IC_INTR_STAT);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900513 * equals to,
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100514 * stat = dw_readl(IC_RAW_INTR_STAT) & dw_readl(IC_INTR_MASK);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900515 *
516 * The raw version might be useful for debugging purposes.
517 */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700518 stat = dw_readl(dev, DW_IC_INTR_STAT);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900519
520 /*
521 * Do not use the IC_CLR_INTR register to clear interrupts, or
522 * you'll miss some interrupts, triggered during the period from
Dirk Brandewie2373f6b2011-10-29 10:57:23 +0100523 * dw_readl(IC_INTR_STAT) to dw_readl(IC_CLR_INTR).
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900524 *
525 * Instead, use the separately-prepared IC_CLR_* registers.
526 */
527 if (stat & DW_IC_INTR_RX_UNDER)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700528 dw_readl(dev, DW_IC_CLR_RX_UNDER);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900529 if (stat & DW_IC_INTR_RX_OVER)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700530 dw_readl(dev, DW_IC_CLR_RX_OVER);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900531 if (stat & DW_IC_INTR_TX_OVER)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700532 dw_readl(dev, DW_IC_CLR_TX_OVER);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900533 if (stat & DW_IC_INTR_RD_REQ)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700534 dw_readl(dev, DW_IC_CLR_RD_REQ);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900535 if (stat & DW_IC_INTR_TX_ABRT) {
536 /*
537 * The IC_TX_ABRT_SOURCE register is cleared whenever
538 * the IC_CLR_TX_ABRT is read. Preserve it beforehand.
539 */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700540 dev->abort_source = dw_readl(dev, DW_IC_TX_ABRT_SOURCE);
541 dw_readl(dev, DW_IC_CLR_TX_ABRT);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900542 }
543 if (stat & DW_IC_INTR_RX_DONE)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700544 dw_readl(dev, DW_IC_CLR_RX_DONE);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900545 if (stat & DW_IC_INTR_ACTIVITY)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700546 dw_readl(dev, DW_IC_CLR_ACTIVITY);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900547 if (stat & DW_IC_INTR_STOP_DET)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700548 dw_readl(dev, DW_IC_CLR_STOP_DET);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900549 if (stat & DW_IC_INTR_START_DET)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700550 dw_readl(dev, DW_IC_CLR_START_DET);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900551 if (stat & DW_IC_INTR_GEN_CALL)
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700552 dw_readl(dev, DW_IC_CLR_GEN_CALL);
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900553
554 return stat;
555}
556
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300557/*
Luis Oliveira89a1e1b2017-06-14 11:43:22 +0100558 * Interrupt service routine. This gets called whenever an I2C master interrupt
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300559 * occurs.
560 */
Luis Oliveira89a1e1b2017-06-14 11:43:22 +0100561static int i2c_dw_irq_handler_master(struct dw_i2c_dev *dev)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300562{
Luis Oliveira89a1e1b2017-06-14 11:43:22 +0100563 u32 stat;
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300564
Shinya Kuribayashie28000a2009-11-06 21:44:37 +0900565 stat = i2c_dw_read_clear_intrbits(dev);
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300566 if (stat & DW_IC_INTR_TX_ABRT) {
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300567 dev->cmd_err |= DW_IC_ERR_TX_ABRT;
568 dev->status = STATUS_IDLE;
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900569
570 /*
571 * Anytime TX_ABRT is set, the contents of the tx/rx
Luis Oliveirae393f672017-06-14 11:43:21 +0100572 * buffers are flushed. Make sure to skip them.
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900573 */
Jean-Hugues Deschenes7f279602011-10-06 11:26:25 -0700574 dw_writel(dev, 0, DW_IC_INTR_MASK);
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900575 goto tx_aborted;
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900576 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300577
Shinya Kuribayashi21a89d42009-11-06 21:48:33 +0900578 if (stat & DW_IC_INTR_RX_FULL)
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900579 i2c_dw_read(dev);
Shinya Kuribayashi21a89d42009-11-06 21:48:33 +0900580
581 if (stat & DW_IC_INTR_TX_EMPTY)
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900582 i2c_dw_xfer_msg(dev);
Shinya Kuribayashi07745392009-11-06 21:47:51 +0900583
584 /*
585 * No need to modify or disable the interrupt mask here.
586 * i2c_dw_xfer_msg() will take care of it according to
587 * the current transmit status.
588 */
589
Shinya Kuribayashi597fe312009-11-06 21:51:36 +0900590tx_aborted:
Jarkko Nikula89119f02016-11-25 17:22:27 +0200591 if ((stat & (DW_IC_INTR_TX_ABRT | DW_IC_INTR_STOP_DET)) || dev->msg_err)
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300592 complete(&dev->cmd_complete);
Hans de Goede86524e52017-02-10 11:27:53 +0100593 else if (unlikely(dev->flags & ACCESS_INTR_MASK)) {
Luis Oliveirae393f672017-06-14 11:43:21 +0100594 /* Workaround to trigger pending interrupt */
Xiangliang Yu2d244c82015-12-11 20:02:53 +0800595 stat = dw_readl(dev, DW_IC_INTR_MASK);
596 i2c_dw_disable_int(dev);
597 dw_writel(dev, stat, DW_IC_INTR_MASK);
598 }
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300599
Luis Oliveira89a1e1b2017-06-14 11:43:22 +0100600 return 0;
601}
602
603static irqreturn_t i2c_dw_isr(int this_irq, void *dev_id)
604{
605 struct dw_i2c_dev *dev = dev_id;
606 u32 stat, enabled;
607
608 enabled = dw_readl(dev, DW_IC_ENABLE);
609 stat = dw_readl(dev, DW_IC_RAW_INTR_STAT);
610 dev_dbg(dev->dev, "enabled=%#x stat=%#x\n", enabled, stat);
611 if (!enabled || !(stat & ~DW_IC_INTR_ACTIVITY))
612 return IRQ_NONE;
613
614 i2c_dw_irq_handler_master(dev);
615
Baruch Siach1ab52cf2009-06-22 16:36:29 +0300616 return IRQ_HANDLED;
617}
Dirk Brandewief3fa9f32011-10-06 11:26:34 -0700618
Tim Sanderca382f52017-11-02 10:40:27 +0800619static void i2c_dw_prepare_recovery(struct i2c_adapter *adap)
620{
621 struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
622
623 i2c_dw_disable(dev);
624 reset_control_assert(dev->rst);
625 i2c_dw_prepare_clk(dev, false);
626}
627
628static void i2c_dw_unprepare_recovery(struct i2c_adapter *adap)
629{
630 struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
631
632 i2c_dw_prepare_clk(dev, true);
633 reset_control_deassert(dev->rst);
634 i2c_dw_init_master(dev);
635}
636
637static int i2c_dw_init_recovery_info(struct dw_i2c_dev *dev)
638{
639 struct i2c_bus_recovery_info *rinfo = &dev->rinfo;
640 struct i2c_adapter *adap = &dev->adapter;
641 struct gpio_desc *gpio;
642 int r;
643
644 gpio = devm_gpiod_get(dev->dev, "scl", GPIOD_OUT_HIGH);
645 if (IS_ERR(gpio)) {
646 r = PTR_ERR(gpio);
Andy Shevchenkod1fa7452018-02-17 22:58:43 +0200647 if (r == -ENOENT || r == -ENOSYS)
Tim Sanderca382f52017-11-02 10:40:27 +0800648 return 0;
649 return r;
650 }
651 rinfo->scl_gpiod = gpio;
652
653 gpio = devm_gpiod_get_optional(dev->dev, "sda", GPIOD_IN);
654 if (IS_ERR(gpio))
655 return PTR_ERR(gpio);
656 rinfo->sda_gpiod = gpio;
657
658 rinfo->recover_bus = i2c_generic_scl_recovery;
659 rinfo->prepare_recovery = i2c_dw_prepare_recovery;
660 rinfo->unprepare_recovery = i2c_dw_unprepare_recovery;
661 adap->bus_recovery_info = rinfo;
662
663 dev_info(dev->dev, "running with gpio recovery mode! scl%s",
664 rinfo->sda_gpiod ? ",sda" : "");
665
666 return 0;
667}
668
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300669int i2c_dw_probe(struct dw_i2c_dev *dev)
670{
671 struct i2c_adapter *adap = &dev->adapter;
Hans de Goede41c80b82017-03-13 23:25:09 +0100672 unsigned long irq_flags;
Luis Oliveirae393f672017-06-14 11:43:21 +0100673 int ret;
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300674
675 init_completion(&dev->cmd_complete);
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300676
Jarkko Nikula21bf4402017-06-28 17:23:28 +0300677 dev->init = i2c_dw_init_master;
Luis Oliveira90312352017-06-14 11:43:23 +0100678 dev->disable = i2c_dw_disable;
679 dev->disable_int = i2c_dw_disable_int;
680
681 ret = dev->init(dev);
Luis Oliveirae393f672017-06-14 11:43:21 +0100682 if (ret)
683 return ret;
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300684
685 snprintf(adap->name, sizeof(adap->name),
686 "Synopsys DesignWare I2C adapter");
Baruch Siach8d22f302015-12-23 18:43:24 +0200687 adap->retries = 3;
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300688 adap->algo = &i2c_dw_algo;
689 adap->dev.parent = dev->dev;
690 i2c_set_adapdata(adap, dev);
691
Hans de Goede41c80b82017-03-13 23:25:09 +0100692 if (dev->pm_disabled) {
693 dev_pm_syscore_device(dev->dev, true);
694 irq_flags = IRQF_NO_SUSPEND;
695 } else {
696 irq_flags = IRQF_SHARED | IRQF_COND_SUSPEND;
697 }
698
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300699 i2c_dw_disable_int(dev);
Luis Oliveirae393f672017-06-14 11:43:21 +0100700 ret = devm_request_irq(dev->dev, dev->irq, i2c_dw_isr, irq_flags,
701 dev_name(dev->dev), dev);
702 if (ret) {
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300703 dev_err(dev->dev, "failure requesting irq %i: %d\n",
Luis Oliveirae393f672017-06-14 11:43:21 +0100704 dev->irq, ret);
705 return ret;
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300706 }
707
Tim Sanderca382f52017-11-02 10:40:27 +0800708 ret = i2c_dw_init_recovery_info(dev);
709 if (ret)
710 return ret;
711
Jarkko Nikulacd998de2016-02-11 16:36:03 +0200712 /*
713 * Increment PM usage count during adapter registration in order to
714 * avoid possible spurious runtime suspend when adapter device is
715 * registered to the device core and immediate resume in case bus has
716 * registered I2C slaves that do I2C transfers in their probe.
717 */
718 pm_runtime_get_noresume(dev->dev);
Luis Oliveirae393f672017-06-14 11:43:21 +0100719 ret = i2c_add_numbered_adapter(adap);
720 if (ret)
721 dev_err(dev->dev, "failure adding adapter: %d\n", ret);
Jarkko Nikulacd998de2016-02-11 16:36:03 +0200722 pm_runtime_put_noidle(dev->dev);
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300723
Luis Oliveirae393f672017-06-14 11:43:21 +0100724 return ret;
Jarkko Nikulad80d1342015-10-12 16:55:35 +0300725}
726EXPORT_SYMBOL_GPL(i2c_dw_probe);
727
Luis Oliveira90312352017-06-14 11:43:23 +0100728MODULE_DESCRIPTION("Synopsys DesignWare I2C bus master adapter");
Mika Westerberg9dd31622013-01-17 12:31:04 +0200729MODULE_LICENSE("GPL");