2 * Synopsys DesignWare I2C adapter driver.
4 * Based on the TI DAVINCI I2C adapter driver.
6 * Copyright (C) 2006 Texas Instruments.
7 * Copyright (C) 2007 MontaVista Software Inc.
8 * Copyright (C) 2009 Provigent Ltd.
10 * ----------------------------------------------------------------------------
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.
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.
21 * ----------------------------------------------------------------------------
24 #include <linux/clk.h>
25 #include <linux/delay.h>
26 #include <linux/export.h>
27 #include <linux/errno.h>
28 #include <linux/err.h>
29 #include <linux/i2c.h>
30 #include <linux/interrupt.h>
32 #include <linux/module.h>
33 #include <linux/pm_runtime.h>
35 #include "i2c-designware-core.h"
37 static char *abort_sources
[] = {
38 [ABRT_7B_ADDR_NOACK
] =
39 "slave address not acknowledged (7bit mode)",
40 [ABRT_10ADDR1_NOACK
] =
41 "first address byte not acknowledged (10bit mode)",
42 [ABRT_10ADDR2_NOACK
] =
43 "second address byte not acknowledged (10bit mode)",
45 "data not acknowledged",
47 "no acknowledgement for a general call",
49 "read after general call",
51 "start byte acknowledged",
52 [ABRT_SBYTE_NORSTRT
] =
53 "trying to send start byte when restart is disabled",
54 [ABRT_10B_RD_NORSTRT
] =
55 "trying to read when restart is disabled (10bit mode)",
57 "trying to use disabled adapter",
60 [ABRT_SLAVE_FLUSH_TXFIFO
] =
61 "read command so flush old data in the TX FIFO",
62 [ABRT_SLAVE_ARBLOST
] =
63 "slave lost the bus while transmitting data to a remote master",
64 [ABRT_SLAVE_RD_INTX
] =
65 "incorrect slave-transmitter mode configuration",
68 u32
dw_readl(struct dw_i2c_dev
*dev
, int offset
)
72 if (dev
->flags
& ACCESS_16BIT
)
73 value
= readw_relaxed(dev
->base
+ offset
) |
74 (readw_relaxed(dev
->base
+ offset
+ 2) << 16);
76 value
= readl_relaxed(dev
->base
+ offset
);
78 if (dev
->flags
& ACCESS_SWAP
)
84 void dw_writel(struct dw_i2c_dev
*dev
, u32 b
, int offset
)
86 if (dev
->flags
& ACCESS_SWAP
)
89 if (dev
->flags
& ACCESS_16BIT
) {
90 writew_relaxed((u16
)b
, dev
->base
+ offset
);
91 writew_relaxed((u16
)(b
>> 16), dev
->base
+ offset
+ 2);
93 writel_relaxed(b
, dev
->base
+ offset
);
97 u32
i2c_dw_scl_hcnt(u32 ic_clk
, u32 tSYMBOL
, u32 tf
, int cond
, int offset
)
100 * DesignWare I2C core doesn't seem to have solid strategy to meet
101 * the tHD;STA timing spec. Configuring _HCNT based on tHIGH spec
102 * will result in violation of the tHD;STA spec.
106 * Conditional expression:
108 * IC_[FS]S_SCL_HCNT + (1+4+3) >= IC_CLK * tHIGH
110 * This is based on the DW manuals, and represents an ideal
111 * configuration. The resulting I2C bus speed will be
112 * faster than any of the others.
114 * If your hardware is free from tHD;STA issue, try this one.
116 return (ic_clk
* tSYMBOL
+ 500000) / 1000000 - 8 + offset
;
119 * Conditional expression:
121 * IC_[FS]S_SCL_HCNT + 3 >= IC_CLK * (tHD;STA + tf)
123 * This is just experimental rule; the tHD;STA period turned
124 * out to be proportinal to (_HCNT + 3). With this setting,
125 * we could meet both tHIGH and tHD;STA timing specs.
127 * If unsure, you'd better to take this alternative.
129 * The reason why we need to take into account "tf" here,
130 * is the same as described in i2c_dw_scl_lcnt().
132 return (ic_clk
* (tSYMBOL
+ tf
) + 500000) / 1000000
136 u32
i2c_dw_scl_lcnt(u32 ic_clk
, u32 tLOW
, u32 tf
, int offset
)
139 * Conditional expression:
141 * IC_[FS]S_SCL_LCNT + 1 >= IC_CLK * (tLOW + tf)
143 * DW I2C core starts counting the SCL CNTs for the LOW period
144 * of the SCL clock (tLOW) as soon as it pulls the SCL line.
145 * In order to meet the tLOW timing spec, we need to take into
146 * account the fall time of SCL signal (tf). Default tf value
147 * should be 0.3 us, for safety.
149 return ((ic_clk
* (tLOW
+ tf
) + 500000) / 1000000) - 1 + offset
;
152 void __i2c_dw_enable(struct dw_i2c_dev
*dev
, bool enable
)
154 dw_writel(dev
, enable
, DW_IC_ENABLE
);
157 void __i2c_dw_enable_and_wait(struct dw_i2c_dev
*dev
, bool enable
)
162 __i2c_dw_enable(dev
, enable
);
163 if ((dw_readl(dev
, DW_IC_ENABLE_STATUS
) & 1) == enable
)
167 * Wait 10 times the signaling period of the highest I2C
168 * transfer supported by the driver (for 400KHz this is
169 * 25us) as described in the DesignWare I2C databook.
171 usleep_range(25, 250);
174 dev_warn(dev
->dev
, "timeout in %sabling adapter\n",
175 enable
? "en" : "dis");
178 unsigned long i2c_dw_clk_rate(struct dw_i2c_dev
*dev
)
181 * Clock is not necessary if we got LCNT/HCNT values directly from
184 if (WARN_ON_ONCE(!dev
->get_clk_rate_khz
))
186 return dev
->get_clk_rate_khz(dev
);
189 int i2c_dw_prepare_clk(struct dw_i2c_dev
*dev
, bool prepare
)
191 if (IS_ERR(dev
->clk
))
192 return PTR_ERR(dev
->clk
);
195 return clk_prepare_enable(dev
->clk
);
197 clk_disable_unprepare(dev
->clk
);
200 EXPORT_SYMBOL_GPL(i2c_dw_prepare_clk
);
202 int i2c_dw_acquire_lock(struct dw_i2c_dev
*dev
)
206 if (!dev
->acquire_lock
)
209 ret
= dev
->acquire_lock(dev
);
213 dev_err(dev
->dev
, "couldn't acquire bus ownership\n");
218 void i2c_dw_release_lock(struct dw_i2c_dev
*dev
)
220 if (dev
->release_lock
)
221 dev
->release_lock(dev
);
225 * Waiting for bus not busy
227 int i2c_dw_wait_bus_not_busy(struct dw_i2c_dev
*dev
)
229 int timeout
= TIMEOUT
;
231 while (dw_readl(dev
, DW_IC_STATUS
) & DW_IC_STATUS_ACTIVITY
) {
233 dev_warn(dev
->dev
, "timeout waiting for bus ready\n");
234 i2c_recover_bus(&dev
->adapter
);
236 if (dw_readl(dev
, DW_IC_STATUS
) & DW_IC_STATUS_ACTIVITY
)
241 usleep_range(1000, 1100);
247 int i2c_dw_handle_tx_abort(struct dw_i2c_dev
*dev
)
249 unsigned long abort_source
= dev
->abort_source
;
252 if (abort_source
& DW_IC_TX_ABRT_NOACK
) {
253 for_each_set_bit(i
, &abort_source
, ARRAY_SIZE(abort_sources
))
255 "%s: %s\n", __func__
, abort_sources
[i
]);
259 for_each_set_bit(i
, &abort_source
, ARRAY_SIZE(abort_sources
))
260 dev_err(dev
->dev
, "%s: %s\n", __func__
, abort_sources
[i
]);
262 if (abort_source
& DW_IC_TX_ARB_LOST
)
264 else if (abort_source
& DW_IC_TX_ABRT_GCALL_READ
)
265 return -EINVAL
; /* wrong msgs[] data */
270 u32
i2c_dw_func(struct i2c_adapter
*adap
)
272 struct dw_i2c_dev
*dev
= i2c_get_adapdata(adap
);
274 return dev
->functionality
;
277 void i2c_dw_disable(struct dw_i2c_dev
*dev
)
279 /* Disable controller */
280 __i2c_dw_enable_and_wait(dev
, false);
282 /* Disable all interupts */
283 dw_writel(dev
, 0, DW_IC_INTR_MASK
);
284 dw_readl(dev
, DW_IC_CLR_INTR
);
287 void i2c_dw_disable_int(struct dw_i2c_dev
*dev
)
289 dw_writel(dev
, 0, DW_IC_INTR_MASK
);
292 u32
i2c_dw_read_comp_param(struct dw_i2c_dev
*dev
)
294 return dw_readl(dev
, DW_IC_COMP_PARAM_1
);
296 EXPORT_SYMBOL_GPL(i2c_dw_read_comp_param
);
298 MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter core");
299 MODULE_LICENSE("GPL");