blob: 6cecec41450ec51dbf3e8741a5597ec1e0b71592 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +00002/*
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +09003 * Copyright (C) 2011, 2013 Renesas Solutions Corp.
4 * Copyright (C) 2011, 2013 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +00005 *
Simon Glass28527092016-11-23 06:34:44 -07006 * NOTE: This driver should be converted to driver model before June 2017.
Heinrich Schuchardt2799a692020-02-25 21:35:39 +01007 * Please see doc/driver-model/i2c-howto.rst for instructions.
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +00008 */
9
10#include <common.h>
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090011#include <i2c.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000014#include <asm/io.h>
Simon Glassc05ed002020-05-10 11:40:11 -060015#include <linux/delay.h>
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000016
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +090017DECLARE_GLOBAL_DATA_PTR;
18
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000019/* Every register is 32bit aligned, but only 8bits in size */
20#define ureg(name) u8 name; u8 __pad_##name##0; u16 __pad_##name##1;
21struct sh_i2c {
22 ureg(icdr);
23 ureg(iccr);
24 ureg(icsr);
25 ureg(icic);
26 ureg(iccl);
27 ureg(icch);
28};
29#undef ureg
30
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000031/* ICCR */
32#define SH_I2C_ICCR_ICE (1 << 7)
33#define SH_I2C_ICCR_RACK (1 << 6)
34#define SH_I2C_ICCR_RTS (1 << 4)
35#define SH_I2C_ICCR_BUSY (1 << 2)
36#define SH_I2C_ICCR_SCP (1 << 0)
37
38/* ICSR / ICIC */
Tetsuyuki Kobayashi57d7c802012-09-13 19:07:57 +000039#define SH_IC_BUSY (1 << 4)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000040#define SH_IC_TACK (1 << 2)
41#define SH_IC_WAIT (1 << 1)
42#define SH_IC_DTE (1 << 0)
43
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +000044#ifdef CONFIG_SH_I2C_8BIT
45/* store 8th bit of iccl and icch in ICIC register */
46#define SH_I2C_ICIC_ICCLB8 (1 << 7)
47#define SH_I2C_ICIC_ICCHB8 (1 << 6)
48#endif
49
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090050static const struct sh_i2c *i2c_dev[CONFIG_SYS_I2C_SH_NUM_CONTROLLERS] = {
51 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE0,
52#ifdef CONFIG_SYS_I2C_SH_BASE1
53 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE1,
54#endif
55#ifdef CONFIG_SYS_I2C_SH_BASE2
56 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE2,
57#endif
58#ifdef CONFIG_SYS_I2C_SH_BASE3
59 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE3,
60#endif
61#ifdef CONFIG_SYS_I2C_SH_BASE4
62 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE4,
63#endif
64};
65
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +000066static u16 iccl, icch;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000067
68#define IRQ_WAIT 1000
69
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090070static void sh_irq_dte(struct sh_i2c *dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000071{
72 int i;
73
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090074 for (i = 0; i < IRQ_WAIT; i++) {
75 if (SH_IC_DTE & readb(&dev->icsr))
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000076 break;
77 udelay(10);
78 }
79}
80
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090081static int sh_irq_dte_with_tack(struct sh_i2c *dev)
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000082{
83 int i;
84
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090085 for (i = 0; i < IRQ_WAIT; i++) {
86 if (SH_IC_DTE & readb(&dev->icsr))
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000087 break;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090088 if (SH_IC_TACK & readb(&dev->icsr))
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000089 return -1;
90 udelay(10);
91 }
92 return 0;
93}
94
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090095static void sh_irq_busy(struct sh_i2c *dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000096{
97 int i;
98
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090099 for (i = 0; i < IRQ_WAIT; i++) {
100 if (!(SH_IC_BUSY & readb(&dev->icsr)))
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000101 break;
102 udelay(10);
103 }
104}
105
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900106static int sh_i2c_set_addr(struct sh_i2c *dev, u8 chip, u8 addr, int stop)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000107{
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000108 u8 icic = SH_IC_TACK;
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000109
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900110 debug("%s: chip: %x, addr: %x iccl: %x, icch %x\n",
111 __func__, chip, addr, iccl, icch);
112 clrbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
113 setbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000114
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900115 writeb(iccl & 0xff, &dev->iccl);
116 writeb(icch & 0xff, &dev->icch);
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000117#ifdef CONFIG_SH_I2C_8BIT
118 if (iccl > 0xff)
119 icic |= SH_I2C_ICIC_ICCLB8;
120 if (icch > 0xff)
121 icic |= SH_I2C_ICIC_ICCHB8;
122#endif
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900123 writeb(icic, &dev->icic);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000124
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900125 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &dev->iccr);
126 sh_irq_dte(dev);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000127
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900128 clrbits_8(&dev->icsr, SH_IC_TACK);
129 writeb(chip << 1, &dev->icdr);
130 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000131 return -1;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000132
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900133 writeb(addr, &dev->icdr);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000134 if (stop)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900135 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS), &dev->iccr);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000136
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900137 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000138 return -1;
139 return 0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000140}
141
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900142static void sh_i2c_finish(struct sh_i2c *dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000143{
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900144 writeb(0, &dev->icsr);
145 clrbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000146}
147
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900148static int
149sh_i2c_raw_write(struct sh_i2c *dev, u8 chip, uint addr, u8 val)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000150{
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000151 int ret = -1;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900152 if (sh_i2c_set_addr(dev, chip, addr, 0) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000153 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000154 udelay(10);
155
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900156 writeb(val, &dev->icdr);
157 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000158 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000159
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900160 writeb((SH_I2C_ICCR_ICE | SH_I2C_ICCR_RTS), &dev->iccr);
161 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000162 goto exit0;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900163 sh_irq_busy(dev);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000164 ret = 0;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900165
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000166exit0:
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900167 sh_i2c_finish(dev);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000168 return ret;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000169}
170
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900171static int sh_i2c_raw_read(struct sh_i2c *dev, u8 chip, u8 addr)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000172{
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000173 int ret = -1;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000174
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000175#if defined(CONFIG_SH73A0)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900176 if (sh_i2c_set_addr(dev, chip, addr, 0) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000177 goto exit0;
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000178#else
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900179 if (sh_i2c_set_addr(dev, chip, addr, 1) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000180 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000181 udelay(100);
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000182#endif
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000183
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900184 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &dev->iccr);
185 sh_irq_dte(dev);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000186
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900187 writeb(chip << 1 | 0x01, &dev->icdr);
188 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000189 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000190
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900191 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_SCP), &dev->iccr);
192 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000193 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000194
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900195 ret = readb(&dev->icdr) & 0xff;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000196
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900197 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RACK), &dev->iccr);
198 readb(&dev->icdr); /* Dummy read */
199 sh_irq_busy(dev);
200
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000201exit0:
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900202 sh_i2c_finish(dev);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000203
204 return ret;
205}
206
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900207static void
208sh_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000209{
210 int num, denom, tmp;
211
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +0900212 /* No i2c support prior to relocation */
213 if (!(gd->flags & GD_FLG_RELOC))
214 return;
215
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000216 /*
217 * Calculate the value for iccl. From the data sheet:
218 * iccl = (p-clock / transfer-rate) * (L / (L + H))
219 * where L and H are the SCL low and high ratio.
220 */
221 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_LOW;
222 denom = speed * (CONFIG_SH_I2C_DATA_HIGH + CONFIG_SH_I2C_DATA_LOW);
223 tmp = num * 10 / denom;
224 if (tmp % 10 >= 5)
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000225 iccl = (u16)((num/denom) + 1);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000226 else
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000227 iccl = (u16)(num/denom);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000228
229 /* Calculate the value for icch. From the data sheet:
230 icch = (p clock / transfer rate) * (H / (L + H)) */
231 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_HIGH;
232 tmp = num * 10 / denom;
233 if (tmp % 10 >= 5)
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000234 icch = (u16)((num/denom) + 1);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000235 else
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000236 icch = (u16)(num/denom);
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900237
238 debug("clock: %d, speed %d, iccl: %x, icch: %x\n",
239 CONFIG_SH_I2C_CLOCK, speed, iccl, icch);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000240}
241
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900242static int sh_i2c_read(struct i2c_adapter *adap, uint8_t chip,
243 uint addr, int alen, u8 *data, int len)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000244{
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900245 int ret, i;
246 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
247
248 for (i = 0; i < len; i++) {
249 ret = sh_i2c_raw_read(dev, chip, addr + i);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000250 if (ret < 0)
251 return -1;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900252
253 data[i] = ret & 0xff;
254 debug("%s: data[%d]: %02x\n", __func__, i, data[i]);
255 }
256
257 return 0;
258}
259
260static int sh_i2c_write(struct i2c_adapter *adap, uint8_t chip, uint addr,
261 int alen, u8 *data, int len)
262{
263 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
264 int i;
265
266 for (i = 0; i < len; i++) {
267 debug("%s: data[%d]: %02x\n", __func__, i, data[i]);
268 if (sh_i2c_raw_write(dev, chip, addr + i, data[i]) != 0)
269 return -1;
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000270 }
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000271 return 0;
272}
273
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900274static int
275sh_i2c_probe(struct i2c_adapter *adap, u8 dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000276{
Tetsuyuki Kobayashi7a657682014-04-14 17:13:57 +0900277 u8 dummy[1];
278
279 return sh_i2c_read(adap, dev, 0, 0, dummy, sizeof dummy);
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900280}
281
282static unsigned int sh_i2c_set_bus_speed(struct i2c_adapter *adap,
283 unsigned int speed)
284{
285 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
286
287 sh_i2c_finish(dev);
288 sh_i2c_init(adap, speed, 0);
289
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000290 return 0;
291}
292
293/*
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900294 * Register RCAR i2c adapters
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000295 */
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900296U_BOOT_I2C_ADAP_COMPLETE(sh_0, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rini6aa07542021-08-18 23:12:34 -0400297 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 0)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900298#ifdef CONFIG_SYS_I2C_SH_BASE1
299U_BOOT_I2C_ADAP_COMPLETE(sh_1, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rini6aa07542021-08-18 23:12:34 -0400300 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 1)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900301#endif
302#ifdef CONFIG_SYS_I2C_SH_BASE2
303U_BOOT_I2C_ADAP_COMPLETE(sh_2, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rini6aa07542021-08-18 23:12:34 -0400304 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 2)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900305#endif
306#ifdef CONFIG_SYS_I2C_SH_BASE3
307U_BOOT_I2C_ADAP_COMPLETE(sh_3, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rini6aa07542021-08-18 23:12:34 -0400308 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 3)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900309#endif
310#ifdef CONFIG_SYS_I2C_SH_BASE4
311U_BOOT_I2C_ADAP_COMPLETE(sh_4, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rini6aa07542021-08-18 23:12:34 -0400312 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 4)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900313#endif