1 // SPDX-License-Identifier: GPL-2.0+
3 * drivers/i2c/rcar_i2c.c
5 * Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
7 * Clock configuration based on Linux i2c-rcar.c:
8 * Copyright (C) 2014-15 Wolfram Sang <wsa@sang-engineering.com>
9 * Copyright (C) 2011-2015 Renesas Electronics Corporation
10 * Copyright (C) 2012-14 Renesas Solutions Corp.
11 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
21 #define RCAR_I2C_ICSCR 0x00
22 #define RCAR_I2C_ICMCR 0x04
23 #define RCAR_I2C_ICMCR_MDBS BIT(7)
24 #define RCAR_I2C_ICMCR_FSCL BIT(6)
25 #define RCAR_I2C_ICMCR_FSDA BIT(5)
26 #define RCAR_I2C_ICMCR_OBPC BIT(4)
27 #define RCAR_I2C_ICMCR_MIE BIT(3)
28 #define RCAR_I2C_ICMCR_TSBE BIT(2)
29 #define RCAR_I2C_ICMCR_FSB BIT(1)
30 #define RCAR_I2C_ICMCR_ESG BIT(0)
31 #define RCAR_I2C_ICSSR 0x08
32 #define RCAR_I2C_ICMSR 0x0c
33 #define RCAR_I2C_ICMSR_MASK 0x7f
34 #define RCAR_I2C_ICMSR_MNR BIT(6)
35 #define RCAR_I2C_ICMSR_MAL BIT(5)
36 #define RCAR_I2C_ICMSR_MST BIT(4)
37 #define RCAR_I2C_ICMSR_MDE BIT(3)
38 #define RCAR_I2C_ICMSR_MDT BIT(2)
39 #define RCAR_I2C_ICMSR_MDR BIT(1)
40 #define RCAR_I2C_ICMSR_MAT BIT(0)
41 #define RCAR_I2C_ICSIER 0x10
42 #define RCAR_I2C_ICMIER 0x14
43 #define RCAR_I2C_ICCCR 0x18
44 #define RCAR_I2C_ICCCR_SCGD_OFF 3
45 #define RCAR_I2C_ICSAR 0x1c
46 #define RCAR_I2C_ICMAR 0x20
47 #define RCAR_I2C_ICRXD_ICTXD 0x24
48 #define RCAR_I2C_ICFBSCR 0x38
49 #define RCAR_I2C_ICFBSCR_TCYC17 0x0f
56 struct rcar_i2c_priv {
61 enum rcar_i2c_type type;
64 static int rcar_i2c_finish(struct udevice *dev)
66 struct rcar_i2c_priv *priv = dev_get_priv(dev);
69 ret = wait_for_bit_le32(priv->base + RCAR_I2C_ICMSR, RCAR_I2C_ICMSR_MST,
72 writel(0, priv->base + RCAR_I2C_ICSSR);
73 writel(0, priv->base + RCAR_I2C_ICMSR);
74 writel(0, priv->base + RCAR_I2C_ICMCR);
79 static void rcar_i2c_recover(struct udevice *dev)
81 struct rcar_i2c_priv *priv = dev_get_priv(dev);
82 u32 mcr = RCAR_I2C_ICMCR_MDBS | RCAR_I2C_ICMCR_OBPC;
83 u32 mcra = mcr | RCAR_I2C_ICMCR_FSDA;
86 /* Send 9 SCL pulses */
87 for (i = 0; i < 9; i++) {
88 writel(mcra | RCAR_I2C_ICMCR_FSCL, priv->base + RCAR_I2C_ICMCR);
90 writel(mcra, priv->base + RCAR_I2C_ICMCR);
94 /* Send stop condition */
96 writel(mcra, priv->base + RCAR_I2C_ICMCR);
98 writel(mcr, priv->base + RCAR_I2C_ICMCR);
100 writel(mcr | RCAR_I2C_ICMCR_FSCL, priv->base + RCAR_I2C_ICMCR);
102 writel(mcra | RCAR_I2C_ICMCR_FSCL, priv->base + RCAR_I2C_ICMCR);
106 static int rcar_i2c_set_addr(struct udevice *dev, u8 chip, u8 read)
108 struct rcar_i2c_priv *priv = dev_get_priv(dev);
109 u32 mask = RCAR_I2C_ICMSR_MAT |
110 (read ? RCAR_I2C_ICMSR_MDR : RCAR_I2C_ICMSR_MDE);
114 writel(0, priv->base + RCAR_I2C_ICMIER);
115 writel(RCAR_I2C_ICMCR_MDBS, priv->base + RCAR_I2C_ICMCR);
116 writel(0, priv->base + RCAR_I2C_ICMSR);
117 writel(priv->icccr, priv->base + RCAR_I2C_ICCCR);
119 /* Wait for the bus */
120 ret = wait_for_bit_le32(priv->base + RCAR_I2C_ICMCR,
121 RCAR_I2C_ICMCR_FSDA, false, 2, true);
123 rcar_i2c_recover(dev);
124 val = readl(priv->base + RCAR_I2C_ICMSR);
125 if (val & RCAR_I2C_ICMCR_FSDA) {
126 dev_err(dev, "Bus busy, aborting\n");
131 writel((chip << 1) | read, priv->base + RCAR_I2C_ICMAR);
132 writel(0, priv->base + RCAR_I2C_ICMSR);
133 writel(RCAR_I2C_ICMCR_MDBS | RCAR_I2C_ICMCR_MIE | RCAR_I2C_ICMCR_ESG,
134 priv->base + RCAR_I2C_ICMCR);
136 ret = wait_for_bit_le32(priv->base + RCAR_I2C_ICMSR, mask,
142 if (readl(priv->base + RCAR_I2C_ICMSR) & RCAR_I2C_ICMSR_MNR)
148 static int rcar_i2c_read_common(struct udevice *dev, struct i2c_msg *msg)
150 struct rcar_i2c_priv *priv = dev_get_priv(dev);
151 u32 icmcr = RCAR_I2C_ICMCR_MDBS | RCAR_I2C_ICMCR_MIE;
152 int i, ret = -EREMOTEIO;
154 ret = rcar_i2c_set_addr(dev, msg->addr, 1);
158 for (i = 0; i < msg->len; i++) {
159 if (msg->len - 1 == i)
160 icmcr |= RCAR_I2C_ICMCR_FSB;
162 writel(icmcr, priv->base + RCAR_I2C_ICMCR);
163 writel((u32)~RCAR_I2C_ICMSR_MDR, priv->base + RCAR_I2C_ICMSR);
165 ret = wait_for_bit_le32(priv->base + RCAR_I2C_ICMSR,
166 RCAR_I2C_ICMSR_MDR, true, 100, true);
170 msg->buf[i] = readl(priv->base + RCAR_I2C_ICRXD_ICTXD) & 0xff;
173 writel((u32)~RCAR_I2C_ICMSR_MDR, priv->base + RCAR_I2C_ICMSR);
175 return rcar_i2c_finish(dev);
178 static int rcar_i2c_write_common(struct udevice *dev, struct i2c_msg *msg)
180 struct rcar_i2c_priv *priv = dev_get_priv(dev);
181 u32 icmcr = RCAR_I2C_ICMCR_MDBS | RCAR_I2C_ICMCR_MIE;
182 int i, ret = -EREMOTEIO;
184 ret = rcar_i2c_set_addr(dev, msg->addr, 0);
188 for (i = 0; i < msg->len; i++) {
189 writel(msg->buf[i], priv->base + RCAR_I2C_ICRXD_ICTXD);
190 writel(icmcr, priv->base + RCAR_I2C_ICMCR);
191 writel((u32)~RCAR_I2C_ICMSR_MDE, priv->base + RCAR_I2C_ICMSR);
193 ret = wait_for_bit_le32(priv->base + RCAR_I2C_ICMSR,
194 RCAR_I2C_ICMSR_MDE, true, 100, true);
199 writel((u32)~RCAR_I2C_ICMSR_MDE, priv->base + RCAR_I2C_ICMSR);
200 icmcr |= RCAR_I2C_ICMCR_FSB;
201 writel(icmcr, priv->base + RCAR_I2C_ICMCR);
203 return rcar_i2c_finish(dev);
206 static int rcar_i2c_xfer(struct udevice *dev, struct i2c_msg *msg, int nmsgs)
210 for (; nmsgs > 0; nmsgs--, msg++) {
211 if (msg->flags & I2C_M_RD)
212 ret = rcar_i2c_read_common(dev, msg);
214 ret = rcar_i2c_write_common(dev, msg);
223 static int rcar_i2c_probe_chip(struct udevice *dev, uint addr, uint flags)
225 struct rcar_i2c_priv *priv = dev_get_priv(dev);
228 /* Ignore address 0, slave address */
232 ret = rcar_i2c_set_addr(dev, addr, 1);
233 writel(0, priv->base + RCAR_I2C_ICMSR);
237 static int rcar_i2c_set_speed(struct udevice *dev, uint bus_freq_hz)
239 struct rcar_i2c_priv *priv = dev_get_priv(dev);
240 u32 scgd, cdf, round, ick, sum, scl;
244 * calculate SCL clock
248 * ick = clkp / (1 + CDF)
249 * SCL = ick / (20 + SCGD * 8 + F[(ticf + tr + intd) * ick])
251 * ick : I2C internal clock < 20 MHz
252 * ticf : I2C SCL falling time
253 * tr : I2C SCL rising time
254 * intd : LSI internal delay
255 * clkp : peripheral_clk
256 * F[] : integer up-valuation
258 rate = clk_get_rate(&priv->clk);
259 cdf = rate / 20000000;
261 dev_err(dev, "Input clock %lu too high\n", rate);
264 ick = rate / (cdf + 1);
267 * it is impossible to calculate large scale
268 * number on u32. separate it
270 * F[(ticf + tr + intd) * ick] with sum = (ticf + tr + intd)
271 * = F[sum * ick / 1000000000]
272 * = F[(ick / 1000000) * sum / 1000]
274 sum = 35 + 200 + priv->intdelay;
275 round = (ick + 500000) / 1000000 * sum;
276 round = (round + 500) / 1000;
279 * SCL = ick / (20 + SCGD * 8 + F[(ticf + tr + intd) * ick])
281 * Calculation result (= SCL) should be less than
282 * bus_speed for hardware safety
284 * We could use something along the lines of
285 * div = ick / (bus_speed + 1) + 1;
286 * scgd = (div - 20 - round + 7) / 8;
287 * scl = ick / (20 + (scgd * 8) + round);
288 * (not fully verified) but that would get pretty involved
290 for (scgd = 0; scgd < 0x40; scgd++) {
291 scl = ick / (20 + (scgd * 8) + round);
292 if (scl <= bus_freq_hz)
295 dev_err(dev, "it is impossible to calculate best SCL\n");
299 dev_dbg(dev, "clk %d/%d(%lu), round %u, CDF:0x%x, SCGD: 0x%x\n",
300 scl, bus_freq_hz, clk_get_rate(&priv->clk), round, cdf, scgd);
302 priv->icccr = (scgd << RCAR_I2C_ICCCR_SCGD_OFF) | cdf;
303 writel(priv->icccr, priv->base + RCAR_I2C_ICCCR);
305 if (priv->type == RCAR_I2C_TYPE_GEN3) {
306 /* Set SCL/SDA delay */
307 writel(RCAR_I2C_ICFBSCR_TCYC17, priv->base + RCAR_I2C_ICFBSCR);
313 static int rcar_i2c_probe(struct udevice *dev)
315 struct rcar_i2c_priv *priv = dev_get_priv(dev);
318 priv->base = dev_read_addr_ptr(dev);
319 priv->intdelay = dev_read_u32_default(dev,
320 "i2c-scl-internal-delay-ns", 5);
321 priv->type = dev_get_driver_data(dev);
323 ret = clk_get_by_index(dev, 0, &priv->clk);
327 ret = clk_enable(&priv->clk);
331 /* reset slave mode */
332 writel(0, priv->base + RCAR_I2C_ICSIER);
333 writel(0, priv->base + RCAR_I2C_ICSAR);
334 writel(0, priv->base + RCAR_I2C_ICSCR);
335 writel(0, priv->base + RCAR_I2C_ICSSR);
337 /* reset master mode */
338 writel(0, priv->base + RCAR_I2C_ICMIER);
339 writel(0, priv->base + RCAR_I2C_ICMCR);
340 writel(0, priv->base + RCAR_I2C_ICMSR);
341 writel(0, priv->base + RCAR_I2C_ICMAR);
343 ret = rcar_i2c_set_speed(dev, 100000);
345 clk_disable(&priv->clk);
350 static const struct dm_i2c_ops rcar_i2c_ops = {
351 .xfer = rcar_i2c_xfer,
352 .probe_chip = rcar_i2c_probe_chip,
353 .set_bus_speed = rcar_i2c_set_speed,
356 static const struct udevice_id rcar_i2c_ids[] = {
357 { .compatible = "renesas,rcar-gen2-i2c", .data = RCAR_I2C_TYPE_GEN2 },
358 { .compatible = "renesas,rcar-gen3-i2c", .data = RCAR_I2C_TYPE_GEN3 },
362 U_BOOT_DRIVER(i2c_rcar) = {
365 .of_match = rcar_i2c_ids,
366 .probe = rcar_i2c_probe,
367 .priv_auto_alloc_size = sizeof(struct rcar_i2c_priv),
368 .ops = &rcar_i2c_ops,