1 // SPDX-License-Identifier: GPL-2.0-or-later
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>
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)",
33 "data not acknowledged",
35 "no acknowledgement for a general call",
37 "read after general call",
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)",
45 "trying to use disabled adapter",
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
)
60 if (dev
->flags
& ACCESS_16BIT
)
61 value
= readw_relaxed(dev
->base
+ offset
) |
62 (readw_relaxed(dev
->base
+ offset
+ 2) << 16);
64 value
= readl_relaxed(dev
->base
+ offset
);
66 if (dev
->flags
& ACCESS_SWAP
)
72 void dw_writel(struct dw_i2c_dev
*dev
, u32 b
, int offset
)
74 if (dev
->flags
& ACCESS_SWAP
)
77 if (dev
->flags
& ACCESS_16BIT
) {
78 writew_relaxed((u16
)b
, dev
->base
+ offset
);
79 writew_relaxed((u16
)(b
>> 16), dev
->base
+ offset
+ 2);
81 writel_relaxed(b
, dev
->base
+ offset
);
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
)
97 ret
= i2c_dw_acquire_lock(dev
);
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
) {
112 "Unknown Synopsys component type: 0x%08x\n", reg
);
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.
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
;
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
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
)
179 ret
= i2c_dw_acquire_lock(dev
);
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
->sda_hold_time
) {
206 "Hardware too old to adjust SDA hold time.\n");
207 dev
->sda_hold_time
= 0;
210 i2c_dw_release_lock(dev
);
215 void __i2c_dw_disable(struct dw_i2c_dev
*dev
)
220 __i2c_dw_disable_nowait(dev
);
222 * The enable status register may be unimplemented, but
223 * in that case this test reads zero and exits the loop.
225 if ((dw_readl(dev
, DW_IC_ENABLE_STATUS
) & 1) == 0)
229 * Wait 10 times the signaling period of the highest I2C
230 * transfer supported by the driver (for 400KHz this is
231 * 25us) as described in the DesignWare I2C databook.
233 usleep_range(25, 250);
236 dev_warn(dev
->dev
, "timeout in disabling adapter\n");
239 unsigned long i2c_dw_clk_rate(struct dw_i2c_dev
*dev
)
242 * Clock is not necessary if we got LCNT/HCNT values directly from
245 if (WARN_ON_ONCE(!dev
->get_clk_rate_khz
))
247 return dev
->get_clk_rate_khz(dev
);
250 int i2c_dw_prepare_clk(struct dw_i2c_dev
*dev
, bool prepare
)
252 if (IS_ERR(dev
->clk
))
253 return PTR_ERR(dev
->clk
);
256 return clk_prepare_enable(dev
->clk
);
258 clk_disable_unprepare(dev
->clk
);
261 EXPORT_SYMBOL_GPL(i2c_dw_prepare_clk
);
263 int i2c_dw_acquire_lock(struct dw_i2c_dev
*dev
)
267 if (!dev
->acquire_lock
)
270 ret
= dev
->acquire_lock(dev
);
274 dev_err(dev
->dev
, "couldn't acquire bus ownership\n");
279 void i2c_dw_release_lock(struct dw_i2c_dev
*dev
)
281 if (dev
->release_lock
)
282 dev
->release_lock(dev
);
286 * Waiting for bus not busy
288 int i2c_dw_wait_bus_not_busy(struct dw_i2c_dev
*dev
)
290 int timeout
= TIMEOUT
;
292 while (dw_readl(dev
, DW_IC_STATUS
) & DW_IC_STATUS_ACTIVITY
) {
294 dev_warn(dev
->dev
, "timeout waiting for bus ready\n");
295 i2c_recover_bus(&dev
->adapter
);
297 if (dw_readl(dev
, DW_IC_STATUS
) & DW_IC_STATUS_ACTIVITY
)
302 usleep_range(1000, 1100);
308 int i2c_dw_handle_tx_abort(struct dw_i2c_dev
*dev
)
310 unsigned long abort_source
= dev
->abort_source
;
313 if (abort_source
& DW_IC_TX_ABRT_NOACK
) {
314 for_each_set_bit(i
, &abort_source
, ARRAY_SIZE(abort_sources
))
316 "%s: %s\n", __func__
, abort_sources
[i
]);
320 for_each_set_bit(i
, &abort_source
, ARRAY_SIZE(abort_sources
))
321 dev_err(dev
->dev
, "%s: %s\n", __func__
, abort_sources
[i
]);
323 if (abort_source
& DW_IC_TX_ARB_LOST
)
325 else if (abort_source
& DW_IC_TX_ABRT_GCALL_READ
)
326 return -EINVAL
; /* wrong msgs[] data */
331 u32
i2c_dw_func(struct i2c_adapter
*adap
)
333 struct dw_i2c_dev
*dev
= i2c_get_adapdata(adap
);
335 return dev
->functionality
;
338 void i2c_dw_disable(struct dw_i2c_dev
*dev
)
340 /* Disable controller */
341 __i2c_dw_disable(dev
);
343 /* Disable all interupts */
344 dw_writel(dev
, 0, DW_IC_INTR_MASK
);
345 dw_readl(dev
, DW_IC_CLR_INTR
);
348 void i2c_dw_disable_int(struct dw_i2c_dev
*dev
)
350 dw_writel(dev
, 0, DW_IC_INTR_MASK
);
353 u32
i2c_dw_read_comp_param(struct dw_i2c_dev
*dev
)
355 return dw_readl(dev
, DW_IC_COMP_PARAM_1
);
357 EXPORT_SYMBOL_GPL(i2c_dw_read_comp_param
);
359 MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter core");
360 MODULE_LICENSE("GPL");