1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Actions Semiconductor Owl SoC's I2C driver
5 * Copyright (c) 2014 Actions Semi Inc.
6 * Author: David Liu <liuwei@actions-semi.com>
8 * Copyright (c) 2018 Linaro Ltd.
9 * Author: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/i2c.h>
15 #include <linux/interrupt.h>
17 #include <linux/module.h>
18 #include <linux/of_device.h>
21 #define OWL_I2C_REG_CTL 0x0000
22 #define OWL_I2C_REG_CLKDIV 0x0004
23 #define OWL_I2C_REG_STAT 0x0008
24 #define OWL_I2C_REG_ADDR 0x000C
25 #define OWL_I2C_REG_TXDAT 0x0010
26 #define OWL_I2C_REG_RXDAT 0x0014
27 #define OWL_I2C_REG_CMD 0x0018
28 #define OWL_I2C_REG_FIFOCTL 0x001C
29 #define OWL_I2C_REG_FIFOSTAT 0x0020
30 #define OWL_I2C_REG_DATCNT 0x0024
31 #define OWL_I2C_REG_RCNT 0x0028
33 /* I2Cx_CTL Bit Mask */
34 #define OWL_I2C_CTL_RB BIT(1)
35 #define OWL_I2C_CTL_GBCC(x) (((x) & 0x3) << 2)
36 #define OWL_I2C_CTL_GBCC_NONE OWL_I2C_CTL_GBCC(0)
37 #define OWL_I2C_CTL_GBCC_START OWL_I2C_CTL_GBCC(1)
38 #define OWL_I2C_CTL_GBCC_STOP OWL_I2C_CTL_GBCC(2)
39 #define OWL_I2C_CTL_GBCC_RSTART OWL_I2C_CTL_GBCC(3)
40 #define OWL_I2C_CTL_IRQE BIT(5)
41 #define OWL_I2C_CTL_EN BIT(7)
42 #define OWL_I2C_CTL_AE BIT(8)
43 #define OWL_I2C_CTL_SHSM BIT(10)
45 #define OWL_I2C_DIV_FACTOR(x) ((x) & 0xff)
47 /* I2Cx_STAT Bit Mask */
48 #define OWL_I2C_STAT_RACK BIT(0)
49 #define OWL_I2C_STAT_BEB BIT(1)
50 #define OWL_I2C_STAT_IRQP BIT(2)
51 #define OWL_I2C_STAT_LAB BIT(3)
52 #define OWL_I2C_STAT_STPD BIT(4)
53 #define OWL_I2C_STAT_STAD BIT(5)
54 #define OWL_I2C_STAT_BBB BIT(6)
55 #define OWL_I2C_STAT_TCB BIT(7)
56 #define OWL_I2C_STAT_LBST BIT(8)
57 #define OWL_I2C_STAT_SAMB BIT(9)
58 #define OWL_I2C_STAT_SRGC BIT(10)
60 /* I2Cx_CMD Bit Mask */
61 #define OWL_I2C_CMD_SBE BIT(0)
62 #define OWL_I2C_CMD_RBE BIT(4)
63 #define OWL_I2C_CMD_DE BIT(8)
64 #define OWL_I2C_CMD_NS BIT(9)
65 #define OWL_I2C_CMD_SE BIT(10)
66 #define OWL_I2C_CMD_MSS BIT(11)
67 #define OWL_I2C_CMD_WRS BIT(12)
68 #define OWL_I2C_CMD_SECL BIT(15)
70 #define OWL_I2C_CMD_AS(x) (((x) & 0x7) << 1)
71 #define OWL_I2C_CMD_SAS(x) (((x) & 0x7) << 5)
73 /* I2Cx_FIFOCTL Bit Mask */
74 #define OWL_I2C_FIFOCTL_NIB BIT(0)
75 #define OWL_I2C_FIFOCTL_RFR BIT(1)
76 #define OWL_I2C_FIFOCTL_TFR BIT(2)
78 /* I2Cc_FIFOSTAT Bit Mask */
79 #define OWL_I2C_FIFOSTAT_RNB BIT(1)
80 #define OWL_I2C_FIFOSTAT_RFE BIT(2)
81 #define OWL_I2C_FIFOSTAT_TFF BIT(5)
82 #define OWL_I2C_FIFOSTAT_TFD GENMASK(23, 16)
83 #define OWL_I2C_FIFOSTAT_RFD GENMASK(15, 8)
86 #define OWL_I2C_TIMEOUT msecs_to_jiffies(4 * 1000)
88 #define OWL_I2C_MAX_RETRIES 50
90 #define OWL_I2C_DEF_SPEED_HZ 100000
91 #define OWL_I2C_MAX_SPEED_HZ 400000
94 struct i2c_adapter adap
;
96 struct completion msg_complete
;
100 unsigned long clk_rate
;
106 static void owl_i2c_update_reg(void __iomem
*reg
, unsigned int val
, bool state
)
120 static void owl_i2c_reset(struct owl_i2c_dev
*i2c_dev
)
122 owl_i2c_update_reg(i2c_dev
->base
+ OWL_I2C_REG_CTL
,
123 OWL_I2C_CTL_EN
, false);
125 owl_i2c_update_reg(i2c_dev
->base
+ OWL_I2C_REG_CTL
,
126 OWL_I2C_CTL_EN
, true);
128 /* Clear status registers */
129 writel(0, i2c_dev
->base
+ OWL_I2C_REG_STAT
);
132 static int owl_i2c_reset_fifo(struct owl_i2c_dev
*i2c_dev
)
134 unsigned int val
, timeout
= 0;
137 owl_i2c_update_reg(i2c_dev
->base
+ OWL_I2C_REG_FIFOCTL
,
138 OWL_I2C_FIFOCTL_RFR
| OWL_I2C_FIFOCTL_TFR
,
141 /* Wait 50ms for FIFO reset complete */
143 val
= readl(i2c_dev
->base
+ OWL_I2C_REG_FIFOCTL
);
144 if (!(val
& (OWL_I2C_FIFOCTL_RFR
| OWL_I2C_FIFOCTL_TFR
)))
146 usleep_range(500, 1000);
147 } while (timeout
++ < OWL_I2C_MAX_RETRIES
);
149 if (timeout
> OWL_I2C_MAX_RETRIES
) {
150 dev_err(&i2c_dev
->adap
.dev
, "FIFO reset timeout\n");
157 static void owl_i2c_set_freq(struct owl_i2c_dev
*i2c_dev
)
161 val
= DIV_ROUND_UP(i2c_dev
->clk_rate
, i2c_dev
->bus_freq
* 16);
163 /* Set clock divider factor */
164 writel(OWL_I2C_DIV_FACTOR(val
), i2c_dev
->base
+ OWL_I2C_REG_CLKDIV
);
167 static irqreturn_t
owl_i2c_interrupt(int irq
, void *_dev
)
169 struct owl_i2c_dev
*i2c_dev
= _dev
;
170 struct i2c_msg
*msg
= i2c_dev
->msg
;
172 unsigned int stat
, fifostat
;
174 spin_lock_irqsave(&i2c_dev
->lock
, flags
);
178 /* Handle NACK from slave */
179 fifostat
= readl(i2c_dev
->base
+ OWL_I2C_REG_FIFOSTAT
);
180 if (fifostat
& OWL_I2C_FIFOSTAT_RNB
) {
181 i2c_dev
->err
= -ENXIO
;
185 /* Handle bus error */
186 stat
= readl(i2c_dev
->base
+ OWL_I2C_REG_STAT
);
187 if (stat
& OWL_I2C_STAT_BEB
) {
192 /* Handle FIFO read */
193 if (msg
->flags
& I2C_M_RD
) {
194 while ((readl(i2c_dev
->base
+ OWL_I2C_REG_FIFOSTAT
) &
195 OWL_I2C_FIFOSTAT_RFE
) && i2c_dev
->msg_ptr
< msg
->len
) {
196 msg
->buf
[i2c_dev
->msg_ptr
++] = readl(i2c_dev
->base
+
200 /* Handle the remaining bytes which were not sent */
201 while (!(readl(i2c_dev
->base
+ OWL_I2C_REG_FIFOSTAT
) &
202 OWL_I2C_FIFOSTAT_TFF
) && i2c_dev
->msg_ptr
< msg
->len
) {
203 writel(msg
->buf
[i2c_dev
->msg_ptr
++],
204 i2c_dev
->base
+ OWL_I2C_REG_TXDAT
);
209 /* Clear pending interrupts */
210 owl_i2c_update_reg(i2c_dev
->base
+ OWL_I2C_REG_STAT
,
211 OWL_I2C_STAT_IRQP
, true);
213 complete_all(&i2c_dev
->msg_complete
);
214 spin_unlock_irqrestore(&i2c_dev
->lock
, flags
);
219 static u32
owl_i2c_func(struct i2c_adapter
*adap
)
221 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
224 static int owl_i2c_check_bus_busy(struct i2c_adapter
*adap
)
226 struct owl_i2c_dev
*i2c_dev
= i2c_get_adapdata(adap
);
227 unsigned long timeout
;
229 /* Check for Bus busy */
230 timeout
= jiffies
+ OWL_I2C_TIMEOUT
;
231 while (readl(i2c_dev
->base
+ OWL_I2C_REG_STAT
) & OWL_I2C_STAT_BBB
) {
232 if (time_after(jiffies
, timeout
)) {
233 dev_err(&adap
->dev
, "Bus busy timeout\n");
241 static int owl_i2c_master_xfer(struct i2c_adapter
*adap
, struct i2c_msg
*msgs
,
244 struct owl_i2c_dev
*i2c_dev
= i2c_get_adapdata(adap
);
246 unsigned long time_left
, flags
;
247 unsigned int i2c_cmd
, val
;
251 spin_lock_irqsave(&i2c_dev
->lock
, flags
);
253 /* Reset I2C controller */
254 owl_i2c_reset(i2c_dev
);
256 /* Set bus frequency */
257 owl_i2c_set_freq(i2c_dev
);
260 * Spinlock should be released before calling reset FIFO and
261 * bus busy check since those functions may sleep
263 spin_unlock_irqrestore(&i2c_dev
->lock
, flags
);
266 ret
= owl_i2c_reset_fifo(i2c_dev
);
268 goto unlocked_err_exit
;
270 /* Check for bus busy */
271 ret
= owl_i2c_check_bus_busy(adap
);
273 goto unlocked_err_exit
;
275 spin_lock_irqsave(&i2c_dev
->lock
, flags
);
277 /* Check for Arbitration lost */
278 val
= readl(i2c_dev
->base
+ OWL_I2C_REG_STAT
);
279 if (val
& OWL_I2C_STAT_LAB
) {
280 val
&= ~OWL_I2C_STAT_LAB
;
281 writel(val
, i2c_dev
->base
+ OWL_I2C_REG_STAT
);
286 reinit_completion(&i2c_dev
->msg_complete
);
288 /* Enable I2C controller interrupt */
289 owl_i2c_update_reg(i2c_dev
->base
+ OWL_I2C_REG_CTL
,
290 OWL_I2C_CTL_IRQE
, true);
293 * Select: FIFO enable, Master mode, Stop enable, Data count enable,
296 i2c_cmd
= OWL_I2C_CMD_SECL
| OWL_I2C_CMD_MSS
| OWL_I2C_CMD_SE
|
297 OWL_I2C_CMD_NS
| OWL_I2C_CMD_DE
| OWL_I2C_CMD_SBE
;
299 /* Handle repeated start condition */
301 /* Set internal address length and enable repeated start */
302 i2c_cmd
|= OWL_I2C_CMD_AS(msgs
[0].len
+ 1) |
303 OWL_I2C_CMD_SAS(1) | OWL_I2C_CMD_RBE
;
305 /* Write slave address */
306 addr
= i2c_8bit_addr_from_msg(&msgs
[0]);
307 writel(addr
, i2c_dev
->base
+ OWL_I2C_REG_TXDAT
);
309 /* Write internal register address */
310 for (idx
= 0; idx
< msgs
[0].len
; idx
++)
311 writel(msgs
[0].buf
[idx
],
312 i2c_dev
->base
+ OWL_I2C_REG_TXDAT
);
316 /* Set address length */
317 i2c_cmd
|= OWL_I2C_CMD_AS(1);
322 i2c_dev
->msg_ptr
= 0;
324 /* Set data count for the message */
325 writel(msg
->len
, i2c_dev
->base
+ OWL_I2C_REG_DATCNT
);
327 addr
= i2c_8bit_addr_from_msg(msg
);
328 writel(addr
, i2c_dev
->base
+ OWL_I2C_REG_TXDAT
);
330 if (!(msg
->flags
& I2C_M_RD
)) {
331 /* Write data to FIFO */
332 for (idx
= 0; idx
< msg
->len
; idx
++) {
333 /* Check for FIFO full */
334 if (readl(i2c_dev
->base
+ OWL_I2C_REG_FIFOSTAT
) &
335 OWL_I2C_FIFOSTAT_TFF
)
338 writel(msg
->buf
[idx
],
339 i2c_dev
->base
+ OWL_I2C_REG_TXDAT
);
342 i2c_dev
->msg_ptr
= idx
;
345 /* Ignore the NACK if needed */
346 if (msg
->flags
& I2C_M_IGNORE_NAK
)
347 owl_i2c_update_reg(i2c_dev
->base
+ OWL_I2C_REG_FIFOCTL
,
348 OWL_I2C_FIFOCTL_NIB
, true);
350 owl_i2c_update_reg(i2c_dev
->base
+ OWL_I2C_REG_FIFOCTL
,
351 OWL_I2C_FIFOCTL_NIB
, false);
353 /* Start the transfer */
354 writel(i2c_cmd
, i2c_dev
->base
+ OWL_I2C_REG_CMD
);
356 spin_unlock_irqrestore(&i2c_dev
->lock
, flags
);
358 time_left
= wait_for_completion_timeout(&i2c_dev
->msg_complete
,
361 spin_lock_irqsave(&i2c_dev
->lock
, flags
);
362 if (time_left
== 0) {
363 dev_err(&adap
->dev
, "Transaction timed out\n");
364 /* Send stop condition and release the bus */
365 owl_i2c_update_reg(i2c_dev
->base
+ OWL_I2C_REG_CTL
,
366 OWL_I2C_CTL_GBCC_STOP
| OWL_I2C_CTL_RB
,
372 ret
= i2c_dev
->err
< 0 ? i2c_dev
->err
: num
;
375 spin_unlock_irqrestore(&i2c_dev
->lock
, flags
);
378 /* Disable I2C controller */
379 owl_i2c_update_reg(i2c_dev
->base
+ OWL_I2C_REG_CTL
,
380 OWL_I2C_CTL_EN
, false);
385 static const struct i2c_algorithm owl_i2c_algorithm
= {
386 .master_xfer
= owl_i2c_master_xfer
,
387 .functionality
= owl_i2c_func
,
390 static const struct i2c_adapter_quirks owl_i2c_quirks
= {
391 .flags
= I2C_AQ_COMB
| I2C_AQ_COMB_WRITE_FIRST
,
393 .max_write_len
= 240,
394 .max_comb_1st_msg_len
= 6,
395 .max_comb_2nd_msg_len
= 240,
398 static int owl_i2c_probe(struct platform_device
*pdev
)
400 struct device
*dev
= &pdev
->dev
;
401 struct owl_i2c_dev
*i2c_dev
;
402 struct resource
*res
;
405 i2c_dev
= devm_kzalloc(dev
, sizeof(*i2c_dev
), GFP_KERNEL
);
409 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
410 i2c_dev
->base
= devm_ioremap_resource(dev
, res
);
411 if (IS_ERR(i2c_dev
->base
))
412 return PTR_ERR(i2c_dev
->base
);
414 irq
= platform_get_irq(pdev
, 0);
416 dev_err(dev
, "failed to get IRQ number\n");
420 if (of_property_read_u32(dev
->of_node
, "clock-frequency",
422 i2c_dev
->bus_freq
= OWL_I2C_DEF_SPEED_HZ
;
424 /* We support only frequencies of 100k and 400k for now */
425 if (i2c_dev
->bus_freq
!= OWL_I2C_DEF_SPEED_HZ
&&
426 i2c_dev
->bus_freq
!= OWL_I2C_MAX_SPEED_HZ
) {
427 dev_err(dev
, "invalid clock-frequency %d\n", i2c_dev
->bus_freq
);
431 i2c_dev
->clk
= devm_clk_get(dev
, NULL
);
432 if (IS_ERR(i2c_dev
->clk
)) {
433 dev_err(dev
, "failed to get clock\n");
434 return PTR_ERR(i2c_dev
->clk
);
437 ret
= clk_prepare_enable(i2c_dev
->clk
);
441 i2c_dev
->clk_rate
= clk_get_rate(i2c_dev
->clk
);
442 if (!i2c_dev
->clk_rate
) {
443 dev_err(dev
, "input clock rate should not be zero\n");
448 init_completion(&i2c_dev
->msg_complete
);
449 spin_lock_init(&i2c_dev
->lock
);
450 i2c_dev
->adap
.owner
= THIS_MODULE
;
451 i2c_dev
->adap
.algo
= &owl_i2c_algorithm
;
452 i2c_dev
->adap
.timeout
= OWL_I2C_TIMEOUT
;
453 i2c_dev
->adap
.quirks
= &owl_i2c_quirks
;
454 i2c_dev
->adap
.dev
.parent
= dev
;
455 i2c_dev
->adap
.dev
.of_node
= dev
->of_node
;
456 snprintf(i2c_dev
->adap
.name
, sizeof(i2c_dev
->adap
.name
),
457 "%s", "OWL I2C adapter");
458 i2c_set_adapdata(&i2c_dev
->adap
, i2c_dev
);
460 platform_set_drvdata(pdev
, i2c_dev
);
462 ret
= devm_request_irq(dev
, irq
, owl_i2c_interrupt
, 0, pdev
->name
,
465 dev_err(dev
, "failed to request irq %d\n", irq
);
469 return i2c_add_adapter(&i2c_dev
->adap
);
472 clk_disable_unprepare(i2c_dev
->clk
);
477 static const struct of_device_id owl_i2c_of_match
[] = {
478 { .compatible
= "actions,s900-i2c" },
481 MODULE_DEVICE_TABLE(of
, owl_i2c_of_match
);
483 static struct platform_driver owl_i2c_driver
= {
484 .probe
= owl_i2c_probe
,
487 .of_match_table
= of_match_ptr(owl_i2c_of_match
),
490 module_platform_driver(owl_i2c_driver
);
492 MODULE_AUTHOR("David Liu <liuwei@actions-semi.com>");
493 MODULE_AUTHOR("Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>");
494 MODULE_DESCRIPTION("Actions Semiconductor Owl SoC's I2C driver");
495 MODULE_LICENSE("GPL");