1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/i2c/busses/i2c-mt7621.c
5 * Copyright (C) 2013 Steven Liu <steven_liu@mediatek.com>
6 * Copyright (C) 2016 Michael Lee <igvtee@gmail.com>
7 * Copyright (C) 2018 Jan Breuer <jan.breuer@jaybee.cz>
9 * Improve driver for i2cdetect from i2c-tools to detect i2c devices on the bus.
10 * (C) 2014 Sittisak <sittisaks@hotmail.com>
13 #include <linux/clk.h>
14 #include <linux/delay.h>
15 #include <linux/i2c.h>
17 #include <linux/iopoll.h>
18 #include <linux/module.h>
19 #include <linux/of_platform.h>
20 #include <linux/reset.h>
22 #define REG_SM0CFG2_REG 0x28
23 #define REG_SM0CTL0_REG 0x40
24 #define REG_SM0CTL1_REG 0x44
25 #define REG_SM0D0_REG 0x50
26 #define REG_SM0D1_REG 0x54
27 #define REG_PINTEN_REG 0x5c
28 #define REG_PINTST_REG 0x60
29 #define REG_PINTCL_REG 0x64
32 #define SM0CFG2_IS_AUTOMODE BIT(0)
35 #define SM0CTL0_ODRAIN BIT(31)
36 #define SM0CTL0_CLK_DIV_MASK (0x7ff << 16)
37 #define SM0CTL0_CLK_DIV_MAX 0x7ff
38 #define SM0CTL0_CS_STATUS BIT(4)
39 #define SM0CTL0_SCL_STATE BIT(3)
40 #define SM0CTL0_SDA_STATE BIT(2)
41 #define SM0CTL0_EN BIT(1)
42 #define SM0CTL0_SCL_STRETCH BIT(0)
45 #define SM0CTL1_ACK_MASK (0xff << 16)
46 #define SM0CTL1_PGLEN_MASK (0x7 << 8)
47 #define SM0CTL1_PGLEN(x) ((((x) - 1) << 8) & SM0CTL1_PGLEN_MASK)
48 #define SM0CTL1_READ (5 << 4)
49 #define SM0CTL1_READ_LAST (4 << 4)
50 #define SM0CTL1_STOP (3 << 4)
51 #define SM0CTL1_WRITE (2 << 4)
52 #define SM0CTL1_START (1 << 4)
53 #define SM0CTL1_MODE_MASK (0x7 << 4)
54 #define SM0CTL1_TRI BIT(0)
56 /* timeout waiting for I2C devices to respond */
57 #define TIMEOUT_MS 1000
62 struct i2c_adapter adap
;
69 static int mtk_i2c_wait_idle(struct mtk_i2c
*i2c
)
74 ret
= readl_relaxed_poll_timeout(i2c
->base
+ REG_SM0CTL1_REG
,
75 val
, !(val
& SM0CTL1_TRI
),
76 10, TIMEOUT_MS
* 1000);
78 dev_dbg(i2c
->dev
, "idle err(%d)\n", ret
);
83 static void mtk_i2c_reset(struct mtk_i2c
*i2c
)
87 ret
= device_reset(i2c
->adap
.dev
.parent
);
89 dev_err(i2c
->dev
, "I2C reset failed!\n");
92 * Don't set SM0CTL0_ODRAIN as its bit meaning is inverted. To
93 * configure open-drain mode, this bit needs to be cleared.
95 iowrite32(((i2c
->clk_div
<< 16) & SM0CTL0_CLK_DIV_MASK
) | SM0CTL0_EN
|
96 SM0CTL0_SCL_STRETCH
, i2c
->base
+ REG_SM0CTL0_REG
);
97 iowrite32(0, i2c
->base
+ REG_SM0CFG2_REG
);
100 static void mtk_i2c_dump_reg(struct mtk_i2c
*i2c
)
103 "SM0CFG2 %08x, SM0CTL0 %08x, SM0CTL1 %08x, SM0D0 %08x, SM0D1 %08x\n",
104 ioread32(i2c
->base
+ REG_SM0CFG2_REG
),
105 ioread32(i2c
->base
+ REG_SM0CTL0_REG
),
106 ioread32(i2c
->base
+ REG_SM0CTL1_REG
),
107 ioread32(i2c
->base
+ REG_SM0D0_REG
),
108 ioread32(i2c
->base
+ REG_SM0D1_REG
));
111 static int mtk_i2c_check_ack(struct mtk_i2c
*i2c
, u32 expected
)
113 u32 ack
= readl_relaxed(i2c
->base
+ REG_SM0CTL1_REG
);
114 u32 ack_expected
= (expected
<< 16) & SM0CTL1_ACK_MASK
;
116 return ((ack
& ack_expected
) == ack_expected
) ? 0 : -ENXIO
;
119 static int mtk_i2c_master_start(struct mtk_i2c
*i2c
)
121 iowrite32(SM0CTL1_START
| SM0CTL1_TRI
, i2c
->base
+ REG_SM0CTL1_REG
);
122 return mtk_i2c_wait_idle(i2c
);
125 static int mtk_i2c_master_stop(struct mtk_i2c
*i2c
)
127 iowrite32(SM0CTL1_STOP
| SM0CTL1_TRI
, i2c
->base
+ REG_SM0CTL1_REG
);
128 return mtk_i2c_wait_idle(i2c
);
131 static int mtk_i2c_master_cmd(struct mtk_i2c
*i2c
, u32 cmd
, int page_len
)
133 iowrite32(cmd
| SM0CTL1_TRI
| SM0CTL1_PGLEN(page_len
),
134 i2c
->base
+ REG_SM0CTL1_REG
);
135 return mtk_i2c_wait_idle(i2c
);
138 static int mtk_i2c_master_xfer(struct i2c_adapter
*adap
, struct i2c_msg
*msgs
,
142 struct i2c_msg
*pmsg
;
144 int i
, j
, ret
, len
, page_len
;
148 i2c
= i2c_get_adapdata(adap
);
150 for (i
= 0; i
< num
; i
++) {
153 /* wait hardware idle */
154 ret
= mtk_i2c_wait_idle(i2c
);
159 ret
= mtk_i2c_master_start(i2c
);
164 if (pmsg
->flags
& I2C_M_TEN
) {
165 /* 10 bits address */
166 addr
= 0xf0 | ((pmsg
->addr
>> 7) & 0x06);
167 addr
|= (pmsg
->addr
& 0xff) << 8;
168 if (pmsg
->flags
& I2C_M_RD
)
170 iowrite32(addr
, i2c
->base
+ REG_SM0D0_REG
);
171 ret
= mtk_i2c_master_cmd(i2c
, SM0CTL1_WRITE
, 2);
176 addr
= i2c_8bit_addr_from_msg(pmsg
);
177 iowrite32(addr
, i2c
->base
+ REG_SM0D0_REG
);
178 ret
= mtk_i2c_master_cmd(i2c
, SM0CTL1_WRITE
, 1);
183 /* check address ACK */
184 if (!(pmsg
->flags
& I2C_M_IGNORE_NAK
)) {
185 ret
= mtk_i2c_check_ack(i2c
, BIT(0));
191 for (len
= pmsg
->len
, j
= 0; len
> 0; len
-= 8, j
+= 8) {
192 page_len
= (len
>= 8) ? 8 : len
;
194 if (pmsg
->flags
& I2C_M_RD
) {
196 SM0CTL1_READ
: SM0CTL1_READ_LAST
;
198 memcpy(data
, &pmsg
->buf
[j
], page_len
);
199 iowrite32(data
[0], i2c
->base
+ REG_SM0D0_REG
);
200 iowrite32(data
[1], i2c
->base
+ REG_SM0D1_REG
);
204 ret
= mtk_i2c_master_cmd(i2c
, cmd
, page_len
);
208 if (pmsg
->flags
& I2C_M_RD
) {
209 data
[0] = ioread32(i2c
->base
+ REG_SM0D0_REG
);
210 data
[1] = ioread32(i2c
->base
+ REG_SM0D1_REG
);
211 memcpy(&pmsg
->buf
[j
], data
, page_len
);
213 if (!(pmsg
->flags
& I2C_M_IGNORE_NAK
)) {
214 ret
= mtk_i2c_check_ack(i2c
,
224 ret
= mtk_i2c_master_stop(i2c
);
228 /* the return value is number of executed messages */
232 ret
= mtk_i2c_master_stop(i2c
);
238 mtk_i2c_dump_reg(i2c
);
243 static u32
mtk_i2c_func(struct i2c_adapter
*a
)
245 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
| I2C_FUNC_PROTOCOL_MANGLING
;
248 static const struct i2c_algorithm mtk_i2c_algo
= {
249 .master_xfer
= mtk_i2c_master_xfer
,
250 .functionality
= mtk_i2c_func
,
253 static const struct of_device_id i2c_mtk_dt_ids
[] = {
254 { .compatible
= "mediatek,mt7621-i2c" },
258 MODULE_DEVICE_TABLE(of
, i2c_mtk_dt_ids
);
260 static void mtk_i2c_init(struct mtk_i2c
*i2c
)
262 i2c
->clk_div
= clk_get_rate(i2c
->clk
) / i2c
->bus_freq
- 1;
263 if (i2c
->clk_div
< 99)
265 if (i2c
->clk_div
> SM0CTL0_CLK_DIV_MAX
)
266 i2c
->clk_div
= SM0CTL0_CLK_DIV_MAX
;
271 static int mtk_i2c_probe(struct platform_device
*pdev
)
273 struct resource
*res
;
275 struct i2c_adapter
*adap
;
278 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
280 i2c
= devm_kzalloc(&pdev
->dev
, sizeof(struct mtk_i2c
), GFP_KERNEL
);
284 i2c
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
285 if (IS_ERR(i2c
->base
))
286 return PTR_ERR(i2c
->base
);
288 i2c
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
289 if (IS_ERR(i2c
->clk
)) {
290 dev_err(&pdev
->dev
, "no clock defined\n");
291 return PTR_ERR(i2c
->clk
);
293 ret
= clk_prepare_enable(i2c
->clk
);
295 dev_err(&pdev
->dev
, "Unable to enable clock\n");
299 i2c
->dev
= &pdev
->dev
;
301 if (of_property_read_u32(pdev
->dev
.of_node
, "clock-frequency",
303 i2c
->bus_freq
= I2C_MAX_STANDARD_MODE_FREQ
;
305 if (i2c
->bus_freq
== 0) {
306 dev_warn(i2c
->dev
, "clock-frequency 0 not supported\n");
311 adap
->owner
= THIS_MODULE
;
312 adap
->algo
= &mtk_i2c_algo
;
314 adap
->dev
.parent
= &pdev
->dev
;
315 i2c_set_adapdata(adap
, i2c
);
316 adap
->dev
.of_node
= pdev
->dev
.of_node
;
317 strlcpy(adap
->name
, dev_name(&pdev
->dev
), sizeof(adap
->name
));
319 platform_set_drvdata(pdev
, i2c
);
323 ret
= i2c_add_adapter(adap
);
327 dev_info(&pdev
->dev
, "clock %u kHz\n", i2c
->bus_freq
/ 1000);
332 static int mtk_i2c_remove(struct platform_device
*pdev
)
334 struct mtk_i2c
*i2c
= platform_get_drvdata(pdev
);
336 clk_disable_unprepare(i2c
->clk
);
337 i2c_del_adapter(&i2c
->adap
);
342 static struct platform_driver mtk_i2c_driver
= {
343 .probe
= mtk_i2c_probe
,
344 .remove
= mtk_i2c_remove
,
346 .name
= "i2c-mt7621",
347 .of_match_table
= i2c_mtk_dt_ids
,
351 module_platform_driver(mtk_i2c_driver
);
353 MODULE_AUTHOR("Steven Liu");
354 MODULE_DESCRIPTION("MT7621 I2C host driver");
355 MODULE_LICENSE("GPL v2");
356 MODULE_ALIAS("platform:MT7621-I2C");