blob: ef797252198c7ad342308166e0e8d64adea6c0c0 [file] [log] [blame]
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +00001/*
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +09002 * Copyright (C) 2011, 2013 Renesas Solutions Corp.
3 * Copyright (C) 2011, 2013 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +00004 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Simon Glass28527092016-11-23 06:34:44 -07006 *
7 * NOTE: This driver should be converted to driver model before June 2017.
8 * Please see doc/driver-model/i2c-howto.txt for instructions.
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +00009 */
10
11#include <common.h>
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090012#include <i2c.h>
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000013#include <asm/io.h>
14
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +090015DECLARE_GLOBAL_DATA_PTR;
16
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000017/* Every register is 32bit aligned, but only 8bits in size */
18#define ureg(name) u8 name; u8 __pad_##name##0; u16 __pad_##name##1;
19struct sh_i2c {
20 ureg(icdr);
21 ureg(iccr);
22 ureg(icsr);
23 ureg(icic);
24 ureg(iccl);
25 ureg(icch);
26};
27#undef ureg
28
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000029/* ICCR */
30#define SH_I2C_ICCR_ICE (1 << 7)
31#define SH_I2C_ICCR_RACK (1 << 6)
32#define SH_I2C_ICCR_RTS (1 << 4)
33#define SH_I2C_ICCR_BUSY (1 << 2)
34#define SH_I2C_ICCR_SCP (1 << 0)
35
36/* ICSR / ICIC */
Tetsuyuki Kobayashi57d7c802012-09-13 19:07:57 +000037#define SH_IC_BUSY (1 << 4)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000038#define SH_IC_TACK (1 << 2)
39#define SH_IC_WAIT (1 << 1)
40#define SH_IC_DTE (1 << 0)
41
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +000042#ifdef CONFIG_SH_I2C_8BIT
43/* store 8th bit of iccl and icch in ICIC register */
44#define SH_I2C_ICIC_ICCLB8 (1 << 7)
45#define SH_I2C_ICIC_ICCHB8 (1 << 6)
46#endif
47
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090048static const struct sh_i2c *i2c_dev[CONFIG_SYS_I2C_SH_NUM_CONTROLLERS] = {
49 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE0,
50#ifdef CONFIG_SYS_I2C_SH_BASE1
51 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE1,
52#endif
53#ifdef CONFIG_SYS_I2C_SH_BASE2
54 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE2,
55#endif
56#ifdef CONFIG_SYS_I2C_SH_BASE3
57 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE3,
58#endif
59#ifdef CONFIG_SYS_I2C_SH_BASE4
60 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE4,
61#endif
62};
63
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +000064static u16 iccl, icch;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000065
66#define IRQ_WAIT 1000
67
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090068static void sh_irq_dte(struct sh_i2c *dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000069{
70 int i;
71
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090072 for (i = 0; i < IRQ_WAIT; i++) {
73 if (SH_IC_DTE & readb(&dev->icsr))
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000074 break;
75 udelay(10);
76 }
77}
78
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090079static int sh_irq_dte_with_tack(struct sh_i2c *dev)
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000080{
81 int i;
82
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090083 for (i = 0; i < IRQ_WAIT; i++) {
84 if (SH_IC_DTE & readb(&dev->icsr))
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000085 break;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090086 if (SH_IC_TACK & readb(&dev->icsr))
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000087 return -1;
88 udelay(10);
89 }
90 return 0;
91}
92
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090093static void sh_irq_busy(struct sh_i2c *dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000094{
95 int i;
96
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +090097 for (i = 0; i < IRQ_WAIT; i++) {
98 if (!(SH_IC_BUSY & readb(&dev->icsr)))
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000099 break;
100 udelay(10);
101 }
102}
103
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900104static int sh_i2c_set_addr(struct sh_i2c *dev, u8 chip, u8 addr, int stop)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000105{
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000106 u8 icic = SH_IC_TACK;
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000107
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900108 debug("%s: chip: %x, addr: %x iccl: %x, icch %x\n",
109 __func__, chip, addr, iccl, icch);
110 clrbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
111 setbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000112
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900113 writeb(iccl & 0xff, &dev->iccl);
114 writeb(icch & 0xff, &dev->icch);
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000115#ifdef CONFIG_SH_I2C_8BIT
116 if (iccl > 0xff)
117 icic |= SH_I2C_ICIC_ICCLB8;
118 if (icch > 0xff)
119 icic |= SH_I2C_ICIC_ICCHB8;
120#endif
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900121 writeb(icic, &dev->icic);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000122
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900123 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &dev->iccr);
124 sh_irq_dte(dev);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000125
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900126 clrbits_8(&dev->icsr, SH_IC_TACK);
127 writeb(chip << 1, &dev->icdr);
128 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000129 return -1;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000130
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900131 writeb(addr, &dev->icdr);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000132 if (stop)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900133 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS), &dev->iccr);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000134
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900135 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000136 return -1;
137 return 0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000138}
139
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900140static void sh_i2c_finish(struct sh_i2c *dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000141{
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900142 writeb(0, &dev->icsr);
143 clrbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000144}
145
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900146static int
147sh_i2c_raw_write(struct sh_i2c *dev, u8 chip, uint addr, u8 val)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000148{
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000149 int ret = -1;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900150 if (sh_i2c_set_addr(dev, chip, addr, 0) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000151 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000152 udelay(10);
153
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900154 writeb(val, &dev->icdr);
155 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000156 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000157
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900158 writeb((SH_I2C_ICCR_ICE | SH_I2C_ICCR_RTS), &dev->iccr);
159 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000160 goto exit0;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900161 sh_irq_busy(dev);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000162 ret = 0;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900163
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000164exit0:
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900165 sh_i2c_finish(dev);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000166 return ret;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000167}
168
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900169static int sh_i2c_raw_read(struct sh_i2c *dev, u8 chip, u8 addr)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000170{
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000171 int ret = -1;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000172
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000173#if defined(CONFIG_SH73A0)
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900174 if (sh_i2c_set_addr(dev, chip, addr, 0) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000175 goto exit0;
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000176#else
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900177 if (sh_i2c_set_addr(dev, chip, addr, 1) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000178 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000179 udelay(100);
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000180#endif
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000181
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900182 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &dev->iccr);
183 sh_irq_dte(dev);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000184
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900185 writeb(chip << 1 | 0x01, &dev->icdr);
186 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000187 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000188
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900189 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_SCP), &dev->iccr);
190 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000191 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000192
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900193 ret = readb(&dev->icdr) & 0xff;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000194
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900195 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RACK), &dev->iccr);
196 readb(&dev->icdr); /* Dummy read */
197 sh_irq_busy(dev);
198
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000199exit0:
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900200 sh_i2c_finish(dev);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000201
202 return ret;
203}
204
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900205static void
206sh_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000207{
208 int num, denom, tmp;
209
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +0900210 /* No i2c support prior to relocation */
211 if (!(gd->flags & GD_FLG_RELOC))
212 return;
213
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000214 /*
215 * Calculate the value for iccl. From the data sheet:
216 * iccl = (p-clock / transfer-rate) * (L / (L + H))
217 * where L and H are the SCL low and high ratio.
218 */
219 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_LOW;
220 denom = speed * (CONFIG_SH_I2C_DATA_HIGH + CONFIG_SH_I2C_DATA_LOW);
221 tmp = num * 10 / denom;
222 if (tmp % 10 >= 5)
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000223 iccl = (u16)((num/denom) + 1);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000224 else
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000225 iccl = (u16)(num/denom);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000226
227 /* Calculate the value for icch. From the data sheet:
228 icch = (p clock / transfer rate) * (H / (L + H)) */
229 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_HIGH;
230 tmp = num * 10 / denom;
231 if (tmp % 10 >= 5)
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000232 icch = (u16)((num/denom) + 1);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000233 else
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000234 icch = (u16)(num/denom);
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900235
236 debug("clock: %d, speed %d, iccl: %x, icch: %x\n",
237 CONFIG_SH_I2C_CLOCK, speed, iccl, icch);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000238}
239
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900240static int sh_i2c_read(struct i2c_adapter *adap, uint8_t chip,
241 uint addr, int alen, u8 *data, int len)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000242{
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900243 int ret, i;
244 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
245
246 for (i = 0; i < len; i++) {
247 ret = sh_i2c_raw_read(dev, chip, addr + i);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000248 if (ret < 0)
249 return -1;
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900250
251 data[i] = ret & 0xff;
252 debug("%s: data[%d]: %02x\n", __func__, i, data[i]);
253 }
254
255 return 0;
256}
257
258static int sh_i2c_write(struct i2c_adapter *adap, uint8_t chip, uint addr,
259 int alen, u8 *data, int len)
260{
261 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
262 int i;
263
264 for (i = 0; i < len; i++) {
265 debug("%s: data[%d]: %02x\n", __func__, i, data[i]);
266 if (sh_i2c_raw_write(dev, chip, addr + i, data[i]) != 0)
267 return -1;
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000268 }
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000269 return 0;
270}
271
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900272static int
273sh_i2c_probe(struct i2c_adapter *adap, u8 dev)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000274{
Tetsuyuki Kobayashi7a657682014-04-14 17:13:57 +0900275 u8 dummy[1];
276
277 return sh_i2c_read(adap, dev, 0, 0, dummy, sizeof dummy);
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900278}
279
280static unsigned int sh_i2c_set_bus_speed(struct i2c_adapter *adap,
281 unsigned int speed)
282{
283 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
284
285 sh_i2c_finish(dev);
286 sh_i2c_init(adap, speed, 0);
287
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000288 return 0;
289}
290
291/*
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900292 * Register RCAR i2c adapters
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000293 */
Nobuhiro Iwamatsu2035d772013-10-29 13:33:51 +0900294U_BOOT_I2C_ADAP_COMPLETE(sh_0, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
295 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED0, 0, 0)
296#ifdef CONFIG_SYS_I2C_SH_BASE1
297U_BOOT_I2C_ADAP_COMPLETE(sh_1, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
298 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED1, 0, 1)
299#endif
300#ifdef CONFIG_SYS_I2C_SH_BASE2
301U_BOOT_I2C_ADAP_COMPLETE(sh_2, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
302 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED2, 0, 2)
303#endif
304#ifdef CONFIG_SYS_I2C_SH_BASE3
305U_BOOT_I2C_ADAP_COMPLETE(sh_3, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
306 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED3, 0, 3)
307#endif
308#ifdef CONFIG_SYS_I2C_SH_BASE4
309U_BOOT_I2C_ADAP_COMPLETE(sh_4, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
310 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SH_SPEED4, 0, 4)
311#endif