treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / i2c / busses / i2c-designware-common.c
blob2de7452fcd6d70117931b0fe36f807a76742d77b
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Synopsys DesignWare I2C adapter driver.
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/clk.h>
12 #include <linux/delay.h>
13 #include <linux/export.h>
14 #include <linux/errno.h>
15 #include <linux/err.h>
16 #include <linux/i2c.h>
17 #include <linux/interrupt.h>
18 #include <linux/io.h>
19 #include <linux/module.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/swab.h>
23 #include "i2c-designware-core.h"
25 static char *abort_sources[] = {
26 [ABRT_7B_ADDR_NOACK] =
27 "slave address not acknowledged (7bit mode)",
28 [ABRT_10ADDR1_NOACK] =
29 "first address byte not acknowledged (10bit mode)",
30 [ABRT_10ADDR2_NOACK] =
31 "second address byte not acknowledged (10bit mode)",
32 [ABRT_TXDATA_NOACK] =
33 "data not acknowledged",
34 [ABRT_GCALL_NOACK] =
35 "no acknowledgement for a general call",
36 [ABRT_GCALL_READ] =
37 "read after general call",
38 [ABRT_SBYTE_ACKDET] =
39 "start byte acknowledged",
40 [ABRT_SBYTE_NORSTRT] =
41 "trying to send start byte when restart is disabled",
42 [ABRT_10B_RD_NORSTRT] =
43 "trying to read when restart is disabled (10bit mode)",
44 [ABRT_MASTER_DIS] =
45 "trying to use disabled adapter",
46 [ARB_LOST] =
47 "lost arbitration",
48 [ABRT_SLAVE_FLUSH_TXFIFO] =
49 "read command so flush old data in the TX FIFO",
50 [ABRT_SLAVE_ARBLOST] =
51 "slave lost the bus while transmitting data to a remote master",
52 [ABRT_SLAVE_RD_INTX] =
53 "incorrect slave-transmitter mode configuration",
56 u32 dw_readl(struct dw_i2c_dev *dev, int offset)
58 u32 value;
60 if (dev->flags & ACCESS_16BIT)
61 value = readw_relaxed(dev->base + offset) |
62 (readw_relaxed(dev->base + offset + 2) << 16);
63 else
64 value = readl_relaxed(dev->base + offset);
66 if (dev->flags & ACCESS_SWAP)
67 return swab32(value);
68 else
69 return value;
72 void dw_writel(struct dw_i2c_dev *dev, u32 b, int offset)
74 if (dev->flags & ACCESS_SWAP)
75 b = swab32(b);
77 if (dev->flags & ACCESS_16BIT) {
78 writew_relaxed((u16)b, dev->base + offset);
79 writew_relaxed((u16)(b >> 16), dev->base + offset + 2);
80 } else {
81 writel_relaxed(b, dev->base + offset);
85 /**
86 * i2c_dw_set_reg_access() - Set register access flags
87 * @dev: device private data
89 * Autodetects needed register access mode and sets access flags accordingly.
90 * This must be called before doing any other register access.
92 int i2c_dw_set_reg_access(struct dw_i2c_dev *dev)
94 u32 reg;
95 int ret;
97 ret = i2c_dw_acquire_lock(dev);
98 if (ret)
99 return ret;
101 reg = dw_readl(dev, DW_IC_COMP_TYPE);
102 i2c_dw_release_lock(dev);
104 if (reg == swab32(DW_IC_COMP_TYPE_VALUE)) {
105 /* Configure register endianess access */
106 dev->flags |= ACCESS_SWAP;
107 } else if (reg == (DW_IC_COMP_TYPE_VALUE & 0x0000ffff)) {
108 /* Configure register access mode 16bit */
109 dev->flags |= ACCESS_16BIT;
110 } else if (reg != DW_IC_COMP_TYPE_VALUE) {
111 dev_err(dev->dev,
112 "Unknown Synopsys component type: 0x%08x\n", reg);
113 return -ENODEV;
116 return 0;
119 u32 i2c_dw_scl_hcnt(u32 ic_clk, u32 tSYMBOL, u32 tf, int cond, int offset)
122 * DesignWare I2C core doesn't seem to have solid strategy to meet
123 * the tHD;STA timing spec. Configuring _HCNT based on tHIGH spec
124 * will result in violation of the tHD;STA spec.
126 if (cond)
128 * Conditional expression:
130 * IC_[FS]S_SCL_HCNT + (1+4+3) >= IC_CLK * tHIGH
132 * This is based on the DW manuals, and represents an ideal
133 * configuration. The resulting I2C bus speed will be
134 * faster than any of the others.
136 * If your hardware is free from tHD;STA issue, try this one.
138 return (ic_clk * tSYMBOL + 500000) / 1000000 - 8 + offset;
139 else
141 * Conditional expression:
143 * IC_[FS]S_SCL_HCNT + 3 >= IC_CLK * (tHD;STA + tf)
145 * This is just experimental rule; the tHD;STA period turned
146 * out to be proportinal to (_HCNT + 3). With this setting,
147 * we could meet both tHIGH and tHD;STA timing specs.
149 * If unsure, you'd better to take this alternative.
151 * The reason why we need to take into account "tf" here,
152 * is the same as described in i2c_dw_scl_lcnt().
154 return (ic_clk * (tSYMBOL + tf) + 500000) / 1000000
155 - 3 + offset;
158 u32 i2c_dw_scl_lcnt(u32 ic_clk, u32 tLOW, u32 tf, int offset)
161 * Conditional expression:
163 * IC_[FS]S_SCL_LCNT + 1 >= IC_CLK * (tLOW + tf)
165 * DW I2C core starts counting the SCL CNTs for the LOW period
166 * of the SCL clock (tLOW) as soon as it pulls the SCL line.
167 * In order to meet the tLOW timing spec, we need to take into
168 * account the fall time of SCL signal (tf). Default tf value
169 * should be 0.3 us, for safety.
171 return ((ic_clk * (tLOW + tf) + 500000) / 1000000) - 1 + offset;
174 int i2c_dw_set_sda_hold(struct dw_i2c_dev *dev)
176 u32 reg;
177 int ret;
179 ret = i2c_dw_acquire_lock(dev);
180 if (ret)
181 return ret;
183 /* Configure SDA Hold Time if required */
184 reg = dw_readl(dev, DW_IC_COMP_VERSION);
185 if (reg >= DW_IC_SDA_HOLD_MIN_VERS) {
186 if (!dev->sda_hold_time) {
187 /* Keep previous hold time setting if no one set it */
188 dev->sda_hold_time = dw_readl(dev, DW_IC_SDA_HOLD);
192 * Workaround for avoiding TX arbitration lost in case I2C
193 * slave pulls SDA down "too quickly" after falling egde of
194 * SCL by enabling non-zero SDA RX hold. Specification says it
195 * extends incoming SDA low to high transition while SCL is
196 * high but it apprears to help also above issue.
198 if (!(dev->sda_hold_time & DW_IC_SDA_HOLD_RX_MASK))
199 dev->sda_hold_time |= 1 << DW_IC_SDA_HOLD_RX_SHIFT;
201 dev_dbg(dev->dev, "SDA Hold Time TX:RX = %d:%d\n",
202 dev->sda_hold_time & ~(u32)DW_IC_SDA_HOLD_RX_MASK,
203 dev->sda_hold_time >> DW_IC_SDA_HOLD_RX_SHIFT);
204 } else if (dev->set_sda_hold_time) {
205 dev->set_sda_hold_time(dev);
206 } else if (dev->sda_hold_time) {
207 dev_warn(dev->dev,
208 "Hardware too old to adjust SDA hold time.\n");
209 dev->sda_hold_time = 0;
212 i2c_dw_release_lock(dev);
214 return 0;
217 void __i2c_dw_disable(struct dw_i2c_dev *dev)
219 int timeout = 100;
221 do {
222 __i2c_dw_disable_nowait(dev);
224 * The enable status register may be unimplemented, but
225 * in that case this test reads zero and exits the loop.
227 if ((dw_readl(dev, DW_IC_ENABLE_STATUS) & 1) == 0)
228 return;
231 * Wait 10 times the signaling period of the highest I2C
232 * transfer supported by the driver (for 400KHz this is
233 * 25us) as described in the DesignWare I2C databook.
235 usleep_range(25, 250);
236 } while (timeout--);
238 dev_warn(dev->dev, "timeout in disabling adapter\n");
241 unsigned long i2c_dw_clk_rate(struct dw_i2c_dev *dev)
244 * Clock is not necessary if we got LCNT/HCNT values directly from
245 * the platform code.
247 if (WARN_ON_ONCE(!dev->get_clk_rate_khz))
248 return 0;
249 return dev->get_clk_rate_khz(dev);
252 int i2c_dw_prepare_clk(struct dw_i2c_dev *dev, bool prepare)
254 int ret;
256 if (IS_ERR(dev->clk))
257 return PTR_ERR(dev->clk);
259 if (prepare) {
260 /* Optional interface clock */
261 ret = clk_prepare_enable(dev->pclk);
262 if (ret)
263 return ret;
265 ret = clk_prepare_enable(dev->clk);
266 if (ret)
267 clk_disable_unprepare(dev->pclk);
269 return ret;
272 clk_disable_unprepare(dev->clk);
273 clk_disable_unprepare(dev->pclk);
275 return 0;
277 EXPORT_SYMBOL_GPL(i2c_dw_prepare_clk);
279 int i2c_dw_acquire_lock(struct dw_i2c_dev *dev)
281 int ret;
283 if (!dev->acquire_lock)
284 return 0;
286 ret = dev->acquire_lock();
287 if (!ret)
288 return 0;
290 dev_err(dev->dev, "couldn't acquire bus ownership\n");
292 return ret;
295 void i2c_dw_release_lock(struct dw_i2c_dev *dev)
297 if (dev->release_lock)
298 dev->release_lock();
302 * Waiting for bus not busy
304 int i2c_dw_wait_bus_not_busy(struct dw_i2c_dev *dev)
306 int timeout = TIMEOUT;
308 while (dw_readl(dev, DW_IC_STATUS) & DW_IC_STATUS_ACTIVITY) {
309 if (timeout <= 0) {
310 dev_warn(dev->dev, "timeout waiting for bus ready\n");
311 i2c_recover_bus(&dev->adapter);
313 if (dw_readl(dev, DW_IC_STATUS) & DW_IC_STATUS_ACTIVITY)
314 return -ETIMEDOUT;
315 return 0;
317 timeout--;
318 usleep_range(1000, 1100);
321 return 0;
324 int i2c_dw_handle_tx_abort(struct dw_i2c_dev *dev)
326 unsigned long abort_source = dev->abort_source;
327 int i;
329 if (abort_source & DW_IC_TX_ABRT_NOACK) {
330 for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
331 dev_dbg(dev->dev,
332 "%s: %s\n", __func__, abort_sources[i]);
333 return -EREMOTEIO;
336 for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
337 dev_err(dev->dev, "%s: %s\n", __func__, abort_sources[i]);
339 if (abort_source & DW_IC_TX_ARB_LOST)
340 return -EAGAIN;
341 else if (abort_source & DW_IC_TX_ABRT_GCALL_READ)
342 return -EINVAL; /* wrong msgs[] data */
343 else
344 return -EIO;
347 u32 i2c_dw_func(struct i2c_adapter *adap)
349 struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
351 return dev->functionality;
354 void i2c_dw_disable(struct dw_i2c_dev *dev)
356 /* Disable controller */
357 __i2c_dw_disable(dev);
359 /* Disable all interupts */
360 dw_writel(dev, 0, DW_IC_INTR_MASK);
361 dw_readl(dev, DW_IC_CLR_INTR);
364 void i2c_dw_disable_int(struct dw_i2c_dev *dev)
366 dw_writel(dev, 0, DW_IC_INTR_MASK);
369 u32 i2c_dw_read_comp_param(struct dw_i2c_dev *dev)
371 return dw_readl(dev, DW_IC_COMP_PARAM_1);
373 EXPORT_SYMBOL_GPL(i2c_dw_read_comp_param);
375 MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter core");
376 MODULE_LICENSE("GPL");