2 * Copyright (C) 2014 Panasonic Corporation
3 * Copyright (C) 2015 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
6 * SPDX-License-Identifier: GPL-2.0+
10 #include <linux/types.h>
12 #include <asm/errno.h>
13 #include <dm/device.h>
18 DECLARE_GLOBAL_DATA_PTR;
20 struct uniphier_i2c_regs {
21 u32 dtrm; /* data transmission */
22 #define I2C_DTRM_STA (1 << 10)
23 #define I2C_DTRM_STO (1 << 9)
24 #define I2C_DTRM_NACK (1 << 8)
25 #define I2C_DTRM_RD (1 << 0)
26 u32 drec; /* data reception */
27 #define I2C_DREC_STS (1 << 12)
28 #define I2C_DREC_LRB (1 << 11)
29 #define I2C_DREC_LAB (1 << 9)
30 u32 myad; /* slave address */
31 u32 clk; /* clock frequency control */
32 u32 brst; /* bus reset */
33 #define I2C_BRST_FOEN (1 << 1)
34 #define I2C_BRST_BRST (1 << 0)
35 u32 hold; /* hold time control */
36 u32 bsts; /* bus status monitor */
37 u32 noise; /* noise filter control */
38 u32 setup; /* setup time control */
41 #define IOBUS_FREQ 100000000
43 struct uniphier_i2c_dev {
44 struct uniphier_i2c_regs __iomem *regs; /* register base */
45 unsigned long input_clk; /* master clock (Hz) */
46 unsigned long wait_us; /* wait for every byte transfer (us) */
49 static int uniphier_i2c_probe(struct udevice *dev)
53 struct uniphier_i2c_dev *priv = dev_get_priv(dev);
55 addr = fdtdec_get_addr_size(gd->fdt_blob, dev->of_offset, "reg", &size);
57 priv->regs = map_sysmem(addr, size);
62 priv->input_clk = IOBUS_FREQ;
65 writel(0x3, &priv->regs->brst);
70 static int uniphier_i2c_remove(struct udevice *dev)
72 struct uniphier_i2c_dev *priv = dev_get_priv(dev);
74 unmap_sysmem(priv->regs);
79 static int send_and_recv_byte(struct uniphier_i2c_dev *dev, u32 dtrm)
81 writel(dtrm, &dev->regs->dtrm);
84 * This controller only provides interruption to inform the completion
85 * of each byte transfer. (No status register to poll it.)
86 * Unfortunately, U-Boot does not have a good support of interrupt.
91 return readl(&dev->regs->drec);
94 static int send_byte(struct uniphier_i2c_dev *dev, u32 dtrm, bool *stop)
99 drec = send_and_recv_byte(dev, dtrm);
101 if (drec & I2C_DREC_LAB) {
102 debug("uniphier_i2c: bus arbitration failed\n");
106 if (drec & I2C_DREC_LRB) {
107 debug("uniphier_i2c: slave did not return ACK\n");
113 static int uniphier_i2c_transmit(struct uniphier_i2c_dev *dev, uint addr,
114 uint len, const u8 *buf, bool *stop)
118 debug("%s: addr = %x, len = %d\n", __func__, addr, len);
120 ret = send_byte(dev, I2C_DTRM_STA | I2C_DTRM_NACK | addr << 1, stop);
125 ret = send_byte(dev, I2C_DTRM_NACK | *buf++, stop);
132 writel(I2C_DTRM_STO | I2C_DTRM_NACK, &dev->regs->dtrm);
137 static int uniphier_i2c_receive(struct uniphier_i2c_dev *dev, uint addr,
138 uint len, u8 *buf, bool *stop)
142 debug("%s: addr = %x, len = %d\n", __func__, addr, len);
144 ret = send_byte(dev, I2C_DTRM_STA | I2C_DTRM_NACK |
145 I2C_DTRM_RD | addr << 1, stop);
150 *buf++ = send_and_recv_byte(dev, len ? 0 : I2C_DTRM_NACK);
154 writel(I2C_DTRM_STO | I2C_DTRM_NACK, &dev->regs->dtrm);
159 static int uniphier_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
163 struct uniphier_i2c_dev *dev = dev_get_priv(bus);
166 for (; nmsgs > 0; nmsgs--, msg++) {
167 /* If next message is read, skip the stop condition */
168 stop = nmsgs > 1 && msg[1].flags & I2C_M_RD ? false : true;
170 if (msg->flags & I2C_M_RD)
171 ret = uniphier_i2c_receive(dev, msg->addr, msg->len,
174 ret = uniphier_i2c_transmit(dev, msg->addr, msg->len,
184 static int uniphier_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
186 struct uniphier_i2c_dev *priv = dev_get_priv(bus);
188 /* max supported frequency is 400 kHz */
192 /* bus reset: make sure the bus is idle when change the frequency */
193 writel(0x1, &priv->regs->brst);
195 writel((priv->input_clk / speed / 2 << 16) | (priv->input_clk / speed),
198 writel(0x3, &priv->regs->brst);
201 * Theoretically, each byte can be transferred in
202 * 1000000 * 9 / speed usec. For safety, wait more than double.
204 priv->wait_us = 20000000 / speed;
210 static const struct dm_i2c_ops uniphier_i2c_ops = {
211 .xfer = uniphier_i2c_xfer,
212 .set_bus_speed = uniphier_i2c_set_bus_speed,
215 static const struct udevice_id uniphier_i2c_of_match[] = {
216 { .compatible = "socionext,uniphier-i2c" },
220 U_BOOT_DRIVER(uniphier_i2c) = {
221 .name = "uniphier-i2c",
223 .of_match = uniphier_i2c_of_match,
224 .probe = uniphier_i2c_probe,
225 .remove = uniphier_i2c_remove,
226 .priv_auto_alloc_size = sizeof(struct uniphier_i2c_dev),
227 .ops = &uniphier_i2c_ops,