blob: b69d21359397db9130f39803a448baceecb1f441 [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.
7 * Please see doc/driver-model/i2c-howto.txt 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>
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000012#include <asm/io.h>
13
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +090014DECLARE_GLOBAL_DATA_PTR;
15
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000016/* Every register is 32bit aligned, but only 8bits in size */
17#define ureg(name) u8 name; u8 __pad_##name##0; u16 __pad_##name##1;
18struct sh_i2c {
19 ureg(icdr);
20 ureg(iccr);
21 ureg(icsr);
22 ureg(icic);
23 ureg(iccl);
24 ureg(icch);
25};
26#undef ureg
27
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000028/* ICCR */
29#define SH_I2C_ICCR_ICE (1 << 7)
30#define SH_I2C_ICCR_RACK (1 << 6)
31#define SH_I2C_ICCR_RTS (1 << 4)
32#define SH_I2C_ICCR_BUSY (1 << 2)
33#define SH_I2C_ICCR_SCP (1 << 0)
34
35/* ICSR / ICIC */
Tetsuyuki Kobayashi57d7c802012-09-13 19:07:57 +000036#define SH_IC_BUSY (1 << 4)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000037#define SH_IC_TACK (1 << 2)
38#define SH_IC_WAIT (1 << 1)
39#define SH_IC_DTE (1 << 0)
40
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +000041#ifdef CONFIG_SH_I2C_8BIT
42/* store 8th bit of iccl and icch in ICIC register */
43#define SH_I2C_ICIC_ICCLB8 (1 << 7)
44#define SH_I2C_ICIC_ICCHB8 (1 << 6)
45#endif
46
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090047static const struct sh_i2c *i2c_dev[CONFIG_SYS_I2C_SH_NUM_CONTROLLERS] = {
48 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE0,
49#ifdef CONFIG_SYS_I2C_SH_BASE1
50 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE1,
51#endif
52#ifdef CONFIG_SYS_I2C_SH_BASE2
53 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE2,
54#endif
55#ifdef CONFIG_SYS_I2C_SH_BASE3
56 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE3,
57#endif
58#ifdef CONFIG_SYS_I2C_SH_BASE4
59 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE4,
60#endif
61};
62
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +000063static u16 iccl, icch;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000064
65#define IRQ_WAIT 1000
66
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090067static void sh_irq_dte(struct sh_i2c *dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000068{
69 int i;
70
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090071 for (i = 0; i < IRQ_WAIT; i++) {
72 if (SH_IC_DTE & readb(&dev->icsr))
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000073 break;
74 udelay(10);
75 }
76}
77
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090078static int sh_irq_dte_with_tack(struct sh_i2c *dev)
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000079{
80 int i;
81
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090082 for (i = 0; i < IRQ_WAIT; i++) {
83 if (SH_IC_DTE & readb(&dev->icsr))
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000084 break;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090085 if (SH_IC_TACK & readb(&dev->icsr))
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000086 return -1;
87 udelay(10);
88 }
89 return 0;
90}
91
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090092static void sh_irq_busy(struct sh_i2c *dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000093{
94 int i;
95
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090096 for (i = 0; i < IRQ_WAIT; i++) {
97 if (!(SH_IC_BUSY & readb(&dev->icsr)))
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000098 break;
99 udelay(10);
100 }
101}
102
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900103static int sh_i2c_set_addr(struct sh_i2c *dev, u8 chip, u8 addr, int stop)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000104{
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000105 u8 icic = SH_IC_TACK;
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000106
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900107 debug("%s: chip: %x, addr: %x iccl: %x, icch %x\n",
108 __func__, chip, addr, iccl, icch);
109 clrbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
110 setbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000111
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900112 writeb(iccl & 0xff, &dev->iccl);
113 writeb(icch & 0xff, &dev->icch);
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000114#ifdef CONFIG_SH_I2C_8BIT
115 if (iccl > 0xff)
116 icic |= SH_I2C_ICIC_ICCLB8;
117 if (icch > 0xff)
118 icic |= SH_I2C_ICIC_ICCHB8;
119#endif
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900120 writeb(icic, &dev->icic);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000121
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900122 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &dev->iccr);
123 sh_irq_dte(dev);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000124
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900125 clrbits_8(&dev->icsr, SH_IC_TACK);
126 writeb(chip << 1, &dev->icdr);
127 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000128 return -1;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000129
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900130 writeb(addr, &dev->icdr);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000131 if (stop)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900132 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS), &dev->iccr);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000133
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900134 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000135 return -1;
136 return 0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000137}
138
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900139static void sh_i2c_finish(struct sh_i2c *dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000140{
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900141 writeb(0, &dev->icsr);
142 clrbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000143}
144
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900145static int
146sh_i2c_raw_write(struct sh_i2c *dev, u8 chip, uint addr, u8 val)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000147{
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000148 int ret = -1;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900149 if (sh_i2c_set_addr(dev, chip, addr, 0) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000150 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000151 udelay(10);
152
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900153 writeb(val, &dev->icdr);
154 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000155 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000156
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900157 writeb((SH_I2C_ICCR_ICE | SH_I2C_ICCR_RTS), &dev->iccr);
158 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000159 goto exit0;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900160 sh_irq_busy(dev);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000161 ret = 0;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900162
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000163exit0:
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900164 sh_i2c_finish(dev);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000165 return ret;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000166}
167
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900168static int sh_i2c_raw_read(struct sh_i2c *dev, u8 chip, u8 addr)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000169{
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000170 int ret = -1;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000171
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000172#if defined(CONFIG_SH73A0)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900173 if (sh_i2c_set_addr(dev, chip, addr, 0) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000174 goto exit0;
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000175#else
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900176 if (sh_i2c_set_addr(dev, chip, addr, 1) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000177 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000178 udelay(100);
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000179#endif
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000180
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900181 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &dev->iccr);
182 sh_irq_dte(dev);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000183
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900184 writeb(chip << 1 | 0x01, &dev->icdr);
185 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000186 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000187
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900188 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_SCP), &dev->iccr);
189 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000190 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000191
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900192 ret = readb(&dev->icdr) & 0xff;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000193
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900194 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RACK), &dev->iccr);
195 readb(&dev->icdr); /* Dummy read */
196 sh_irq_busy(dev);
197
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000198exit0:
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900199 sh_i2c_finish(dev);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000200
201 return ret;
202}
203
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900204static void
205sh_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000206{
207 int num, denom, tmp;
208
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +0900209 /* No i2c support prior to relocation */
210 if (!(gd->flags & GD_FLG_RELOC))
211 return;
212
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000213 /*
214 * Calculate the value for iccl. From the data sheet:
215 * iccl = (p-clock / transfer-rate) * (L / (L + H))
216 * where L and H are the SCL low and high ratio.
217 */
218 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_LOW;
219 denom = speed * (CONFIG_SH_I2C_DATA_HIGH + CONFIG_SH_I2C_DATA_LOW);
220 tmp = num * 10 / denom;
221 if (tmp % 10 >= 5)
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000222 iccl = (u16)((num/denom) + 1);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000223 else
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000224 iccl = (u16)(num/denom);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000225
226 /* Calculate the value for icch. From the data sheet:
227 icch = (p clock / transfer rate) * (H / (L + H)) */
228 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_HIGH;
229 tmp = num * 10 / denom;
230 if (tmp % 10 >= 5)
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000231 icch = (u16)((num/denom) + 1);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000232 else
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000233 icch = (u16)(num/denom);
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900234
235 debug("clock: %d, speed %d, iccl: %x, icch: %x\n",
236 CONFIG_SH_I2C_CLOCK, speed, iccl, icch);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000237}
238
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900239static int sh_i2c_read(struct i2c_adapter *adap, uint8_t chip,
240 uint addr, int alen, u8 *data, int len)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000241{
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900242 int ret, i;
243 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
244
245 for (i = 0; i < len; i++) {
246 ret = sh_i2c_raw_read(dev, chip, addr + i);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000247 if (ret < 0)
248 return -1;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900249
250 data[i] = ret & 0xff;
251 debug("%s: data[%d]: %02x\n", __func__, i, data[i]);
252 }
253
254 return 0;
255}
256
257static int sh_i2c_write(struct i2c_adapter *adap, uint8_t chip, uint addr,
258 int alen, u8 *data, int len)
259{
260 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
261 int i;
262
263 for (i = 0; i < len; i++) {
264 debug("%s: data[%d]: %02x\n", __func__, i, data[i]);
265 if (sh_i2c_raw_write(dev, chip, addr + i, data[i]) != 0)
266 return -1;
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000267 }
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000268 return 0;
269}
270
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900271static int
272sh_i2c_probe(struct i2c_adapter *adap, u8 dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000273{
Tetsuyuki Kobayashi7a657682014-04-14 17:13:57 +0900274 u8 dummy[1];
275
276 return sh_i2c_read(adap, dev, 0, 0, dummy, sizeof dummy);
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900277}
278
279static unsigned int sh_i2c_set_bus_speed(struct i2c_adapter *adap,
280 unsigned int speed)
281{
282 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
283
284 sh_i2c_finish(dev);
285 sh_i2c_init(adap, speed, 0);
286
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000287 return 0;
288}
289
290/*
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900291 * Register RCAR i2c adapters
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000292 */
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900293U_BOOT_I2C_ADAP_COMPLETE(sh_0, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
294 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED0, 0, 0)
295#ifdef CONFIG_SYS_I2C_SH_BASE1
296U_BOOT_I2C_ADAP_COMPLETE(sh_1, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
297 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED1, 0, 1)
298#endif
299#ifdef CONFIG_SYS_I2C_SH_BASE2
300U_BOOT_I2C_ADAP_COMPLETE(sh_2, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
301 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED2, 0, 2)
302#endif
303#ifdef CONFIG_SYS_I2C_SH_BASE3
304U_BOOT_I2C_ADAP_COMPLETE(sh_3, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
305 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED3, 0, 3)
306#endif
307#ifdef CONFIG_SYS_I2C_SH_BASE4
308U_BOOT_I2C_ADAP_COMPLETE(sh_4, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
309 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED4, 0, 4)
310#endif