1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2014 Panasonic Corporation
4 * Copyright (C) 2015-2016 Socionext Inc.
5 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
8 #include <dm/device_compat.h>
9 #include <linux/errno.h>
11 #include <linux/iopoll.h>
12 #include <linux/sizes.h>
13 #include <linux/types.h>
18 struct uniphier_fi2c_regs {
19 u32 cr; /* control register */
20 #define I2C_CR_MST (1 << 3) /* master mode */
21 #define I2C_CR_STA (1 << 2) /* start condition */
22 #define I2C_CR_STO (1 << 1) /* stop condition */
23 #define I2C_CR_NACK (1 << 0) /* not ACK */
24 u32 dttx; /* send FIFO (write-only) */
25 #define dtrx dttx /* receive FIFO (read-only) */
26 #define I2C_DTTX_CMD (1 << 8) /* send command (slave addr) */
27 #define I2C_DTTX_RD (1 << 0) /* read */
28 u32 __reserved; /* no register at offset 0x08 */
29 u32 slad; /* slave address */
30 u32 cyc; /* clock cycle control */
31 u32 lctl; /* clock low period control */
32 u32 ssut; /* restart/stop setup time control */
33 u32 dsut; /* data setup time control */
34 u32 intr; /* interrupt status */
35 u32 ie; /* interrupt enable */
36 u32 ic; /* interrupt clear */
37 #define I2C_INT_TE (1 << 9) /* TX FIFO empty */
38 #define I2C_INT_RB (1 << 4) /* received specified bytes */
39 #define I2C_INT_NA (1 << 2) /* no answer */
40 #define I2C_INT_AL (1 << 1) /* arbitration lost */
41 u32 sr; /* status register */
42 #define I2C_SR_DB (1 << 12) /* device busy */
43 #define I2C_SR_BB (1 << 8) /* bus busy */
44 #define I2C_SR_RFF (1 << 3) /* Rx FIFO full */
45 #define I2C_SR_RNE (1 << 2) /* Rx FIFO not empty */
46 #define I2C_SR_TNF (1 << 1) /* Tx FIFO not full */
47 #define I2C_SR_TFE (1 << 0) /* Tx FIFO empty */
48 u32 __reserved2; /* no register at offset 0x30 */
49 u32 rst; /* reset control */
50 #define I2C_RST_TBRST (1 << 2) /* clear Tx FIFO */
51 #define I2C_RST_RBRST (1 << 1) /* clear Rx FIFO */
52 #define I2C_RST_RST (1 << 0) /* forcible bus reset */
53 u32 bm; /* bus monitor */
54 u32 noise; /* noise filter control */
55 u32 tbc; /* Tx byte count setting */
56 u32 rbc; /* Rx byte count setting */
57 u32 tbcm; /* Tx byte count monitor */
58 u32 rbcm; /* Rx byte count monitor */
59 u32 brst; /* bus reset */
60 #define I2C_BRST_FOEN (1 << 1) /* normal operation */
61 #define I2C_BRST_RSCLO (1 << 0) /* release SCL low fixing */
64 #define FIOCLK 50000000
66 struct uniphier_fi2c_priv {
68 struct uniphier_fi2c_regs __iomem *regs; /* register base */
69 unsigned long fioclk; /* internal operation clock */
70 unsigned long timeout; /* time out (us) */
73 static void uniphier_fi2c_reset(struct uniphier_fi2c_priv *priv)
75 writel(I2C_RST_RST, &priv->regs->rst);
78 static int uniphier_fi2c_check_bus_busy(struct uniphier_fi2c_priv *priv)
83 ret = readl_poll_timeout(&priv->regs->sr, val, !(val & I2C_SR_DB), 100);
85 dev_dbg(priv->dev, "error: device busy too long. reset...\n");
86 uniphier_fi2c_reset(priv);
92 static int uniphier_fi2c_probe(struct udevice *dev)
95 struct uniphier_fi2c_priv *priv = dev_get_priv(dev);
97 addr = dev_read_addr(dev);
98 if (addr == FDT_ADDR_T_NONE)
101 priv->regs = devm_ioremap(dev, addr, SZ_128);
105 priv->fioclk = FIOCLK;
109 /* bus forcible reset */
110 uniphier_fi2c_reset(priv);
112 writel(I2C_BRST_FOEN | I2C_BRST_RSCLO, &priv->regs->brst);
117 static int wait_for_irq(struct uniphier_fi2c_priv *priv, u32 flags,
123 ret = readl_poll_timeout(&priv->regs->intr, irq, irq & flags,
126 dev_dbg(priv->dev, "error: time out\n");
130 if (irq & I2C_INT_AL) {
131 dev_dbg(priv->dev, "error: arbitration lost\n");
136 if (irq & I2C_INT_NA) {
137 dev_dbg(priv->dev, "error: no answer\n");
144 static int issue_stop(struct uniphier_fi2c_priv *priv, int old_ret)
148 dev_dbg(priv->dev, "stop condition\n");
149 writel(I2C_CR_MST | I2C_CR_STO, &priv->regs->cr);
151 ret = uniphier_fi2c_check_bus_busy(priv);
153 dev_dbg(priv->dev, "error: device busy after operation\n");
155 return old_ret ? old_ret : ret;
158 static int uniphier_fi2c_transmit(struct uniphier_fi2c_priv *priv, uint addr,
159 uint len, const u8 *buf, bool *stop)
162 const u32 irq_flags = I2C_INT_TE | I2C_INT_NA | I2C_INT_AL;
163 struct uniphier_fi2c_regs __iomem *regs = priv->regs;
165 dev_dbg(priv->dev, "%s: addr = %x, len = %d\n", __func__, addr, len);
167 writel(I2C_DTTX_CMD | addr << 1, ®s->dttx);
169 writel(irq_flags, ®s->ie);
170 writel(irq_flags, ®s->ic);
172 dev_dbg(priv->dev, "start condition\n");
173 writel(I2C_CR_MST | I2C_CR_STA, ®s->cr);
175 ret = wait_for_irq(priv, irq_flags, stop);
180 dev_dbg(priv->dev, "sending %x\n", *buf);
181 writel(*buf++, ®s->dttx);
183 writel(irq_flags, ®s->ic);
185 ret = wait_for_irq(priv, irq_flags, stop);
191 writel(irq_flags, ®s->ic);
194 ret = issue_stop(priv, ret);
199 static int uniphier_fi2c_receive(struct uniphier_fi2c_priv *priv, uint addr,
200 uint len, u8 *buf, bool *stop)
203 const u32 irq_flags = I2C_INT_RB | I2C_INT_NA | I2C_INT_AL;
204 struct uniphier_fi2c_regs __iomem *regs = priv->regs;
206 dev_dbg(priv->dev, "%s: addr = %x, len = %d\n", __func__, addr, len);
209 * In case 'len == 0', only the slave address should be sent
210 * for probing, which is covered by the transmit function.
213 return uniphier_fi2c_transmit(priv, addr, len, buf, stop);
215 writel(I2C_DTTX_CMD | I2C_DTTX_RD | addr << 1, ®s->dttx);
217 writel(0, ®s->rbc);
218 writel(irq_flags, ®s->ie);
219 writel(irq_flags, ®s->ic);
221 dev_dbg(priv->dev, "start condition\n");
222 writel(I2C_CR_MST | I2C_CR_STA | (len == 1 ? I2C_CR_NACK : 0),
226 ret = wait_for_irq(priv, irq_flags, stop);
230 *buf++ = readl(®s->dtrx);
231 dev_dbg(priv->dev, "received %x\n", *(buf - 1));
234 writel(I2C_CR_MST | I2C_CR_NACK, ®s->cr);
236 writel(irq_flags, ®s->ic);
240 writel(irq_flags, ®s->ic);
243 ret = issue_stop(priv, ret);
248 static int uniphier_fi2c_xfer(struct udevice *bus, struct i2c_msg *msg,
252 struct uniphier_fi2c_priv *priv = dev_get_priv(bus);
255 ret = uniphier_fi2c_check_bus_busy(priv);
259 for (; nmsgs > 0; nmsgs--, msg++) {
260 /* If next message is read, skip the stop condition */
261 stop = nmsgs > 1 && msg[1].flags & I2C_M_RD ? false : true;
263 if (msg->flags & I2C_M_RD)
264 ret = uniphier_fi2c_receive(priv, msg->addr, msg->len,
267 ret = uniphier_fi2c_transmit(priv, msg->addr, msg->len,
277 static int uniphier_fi2c_set_bus_speed(struct udevice *bus, unsigned int speed)
280 unsigned int clk_count;
281 struct uniphier_fi2c_priv *priv = dev_get_priv(bus);
282 struct uniphier_fi2c_regs __iomem *regs = priv->regs;
284 /* max supported frequency is 400 kHz */
285 if (speed > I2C_SPEED_FAST_RATE)
288 ret = uniphier_fi2c_check_bus_busy(priv);
292 /* make sure the bus is idle when changing the frequency */
293 writel(I2C_BRST_RSCLO, ®s->brst);
295 clk_count = priv->fioclk / speed;
297 writel(clk_count, ®s->cyc);
298 writel(clk_count / 2, ®s->lctl);
299 writel(clk_count / 2, ®s->ssut);
300 writel(clk_count / 16, ®s->dsut);
302 writel(I2C_BRST_FOEN | I2C_BRST_RSCLO, ®s->brst);
305 * Theoretically, each byte can be transferred in
306 * 1000000 * 9 / speed usec.
307 * This time out value is long enough.
309 priv->timeout = 100000000L / speed;
314 static const struct dm_i2c_ops uniphier_fi2c_ops = {
315 .xfer = uniphier_fi2c_xfer,
316 .set_bus_speed = uniphier_fi2c_set_bus_speed,
319 static const struct udevice_id uniphier_fi2c_of_match[] = {
320 { .compatible = "socionext,uniphier-fi2c" },
324 U_BOOT_DRIVER(uniphier_fi2c) = {
325 .name = "uniphier-fi2c",
327 .of_match = uniphier_fi2c_of_match,
328 .probe = uniphier_fi2c_probe,
329 .priv_auto = sizeof(struct uniphier_fi2c_priv),
330 .ops = &uniphier_fi2c_ops,