2 * Copyright (C) 2014-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
4 * SPDX-License-Identifier: GPL-2.0+
8 #include <linux/types.h>
10 #include <linux/sizes.h>
11 #include <asm/errno.h>
12 #include <dm/device.h>
18 struct uniphier_i2c_regs {
19 u32 dtrm; /* data transmission */
20 #define I2C_DTRM_STA (1 << 10)
21 #define I2C_DTRM_STO (1 << 9)
22 #define I2C_DTRM_NACK (1 << 8)
23 #define I2C_DTRM_RD (1 << 0)
24 u32 drec; /* data reception */
25 #define I2C_DREC_STS (1 << 12)
26 #define I2C_DREC_LRB (1 << 11)
27 #define I2C_DREC_LAB (1 << 9)
28 u32 myad; /* slave address */
29 u32 clk; /* clock frequency control */
30 u32 brst; /* bus reset */
31 #define I2C_BRST_FOEN (1 << 1)
32 #define I2C_BRST_BRST (1 << 0)
33 u32 hold; /* hold time control */
34 u32 bsts; /* bus status monitor */
35 u32 noise; /* noise filter control */
36 u32 setup; /* setup time control */
39 #define IOBUS_FREQ 100000000
41 struct uniphier_i2c_dev {
42 struct uniphier_i2c_regs __iomem *regs; /* register base */
43 unsigned long input_clk; /* master clock (Hz) */
44 unsigned long wait_us; /* wait for every byte transfer (us) */
47 static int uniphier_i2c_probe(struct udevice *dev)
50 struct uniphier_i2c_dev *priv = dev_get_priv(dev);
52 addr = dev_get_addr(dev);
53 if (addr == FDT_ADDR_T_NONE)
56 priv->regs = map_sysmem(addr, SZ_64);
60 priv->input_clk = IOBUS_FREQ;
63 writel(0x3, &priv->regs->brst);
68 static int uniphier_i2c_remove(struct udevice *dev)
70 struct uniphier_i2c_dev *priv = dev_get_priv(dev);
72 unmap_sysmem(priv->regs);
77 static int send_and_recv_byte(struct uniphier_i2c_dev *dev, u32 dtrm)
79 writel(dtrm, &dev->regs->dtrm);
82 * This controller only provides interruption to inform the completion
83 * of each byte transfer. (No status register to poll it.)
84 * Unfortunately, U-Boot does not have a good support of interrupt.
89 return readl(&dev->regs->drec);
92 static int send_byte(struct uniphier_i2c_dev *dev, u32 dtrm, bool *stop)
97 drec = send_and_recv_byte(dev, dtrm);
99 if (drec & I2C_DREC_LAB) {
100 debug("uniphier_i2c: bus arbitration failed\n");
104 if (drec & I2C_DREC_LRB) {
105 debug("uniphier_i2c: slave did not return ACK\n");
111 static int uniphier_i2c_transmit(struct uniphier_i2c_dev *dev, uint addr,
112 uint len, const u8 *buf, bool *stop)
116 debug("%s: addr = %x, len = %d\n", __func__, addr, len);
118 ret = send_byte(dev, I2C_DTRM_STA | I2C_DTRM_NACK | addr << 1, stop);
123 ret = send_byte(dev, I2C_DTRM_NACK | *buf++, stop);
130 writel(I2C_DTRM_STO | I2C_DTRM_NACK, &dev->regs->dtrm);
135 static int uniphier_i2c_receive(struct uniphier_i2c_dev *dev, uint addr,
136 uint len, u8 *buf, bool *stop)
140 debug("%s: addr = %x, len = %d\n", __func__, addr, len);
142 ret = send_byte(dev, I2C_DTRM_STA | I2C_DTRM_NACK |
143 I2C_DTRM_RD | addr << 1, stop);
148 *buf++ = send_and_recv_byte(dev, len ? 0 : I2C_DTRM_NACK);
152 writel(I2C_DTRM_STO | I2C_DTRM_NACK, &dev->regs->dtrm);
157 static int uniphier_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
161 struct uniphier_i2c_dev *dev = dev_get_priv(bus);
164 for (; nmsgs > 0; nmsgs--, msg++) {
165 /* If next message is read, skip the stop condition */
166 stop = nmsgs > 1 && msg[1].flags & I2C_M_RD ? false : true;
168 if (msg->flags & I2C_M_RD)
169 ret = uniphier_i2c_receive(dev, msg->addr, msg->len,
172 ret = uniphier_i2c_transmit(dev, msg->addr, msg->len,
182 static int uniphier_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
184 struct uniphier_i2c_dev *priv = dev_get_priv(bus);
186 /* max supported frequency is 400 kHz */
190 /* bus reset: make sure the bus is idle when change the frequency */
191 writel(0x1, &priv->regs->brst);
193 writel((priv->input_clk / speed / 2 << 16) | (priv->input_clk / speed),
196 writel(0x3, &priv->regs->brst);
199 * Theoretically, each byte can be transferred in
200 * 1000000 * 9 / speed usec. For safety, wait more than double.
202 priv->wait_us = 20000000 / speed;
208 static const struct dm_i2c_ops uniphier_i2c_ops = {
209 .xfer = uniphier_i2c_xfer,
210 .set_bus_speed = uniphier_i2c_set_bus_speed,
213 static const struct udevice_id uniphier_i2c_of_match[] = {
214 { .compatible = "socionext,uniphier-i2c" },
218 U_BOOT_DRIVER(uniphier_i2c) = {
219 .name = "uniphier-i2c",
221 .of_match = uniphier_i2c_of_match,
222 .probe = uniphier_i2c_probe,
223 .remove = uniphier_i2c_remove,
224 .priv_auto_alloc_size = sizeof(struct uniphier_i2c_dev),
225 .ops = &uniphier_i2c_ops,