blob: ab816101dea0e8f7ab87f4a16a6d6b3d503c730a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +00002/*
Nobuhiro Iwamatsu6e35fd22013-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 Iwamatsue60b79d2011-11-14 18:27:04 +00005 *
Simon Glasscb052ff2016-11-23 06:34:44 -07006 * NOTE: This driver should be converted to driver model before June 2017.
Heinrich Schuchardtc79f03c2020-02-25 21:35:39 +01007 * Please see doc/driver-model/i2c-howto.rst for instructions.
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +00008 */
9
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +090010#include <i2c.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060012#include <asm/global_data.h>
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +000013#include <asm/io.h>
Simon Glassdbd79542020-05-10 11:40:11 -060014#include <linux/delay.h>
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +000015
Nobuhiro Iwamatsu6e35fd22013-10-11 16:23:54 +090016DECLARE_GLOBAL_DATA_PTR;
17
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +000018/* Every register is 32bit aligned, but only 8bits in size */
19#define ureg(name) u8 name; u8 __pad_##name##0; u16 __pad_##name##1;
20struct sh_i2c {
21 ureg(icdr);
22 ureg(iccr);
23 ureg(icsr);
24 ureg(icic);
25 ureg(iccl);
26 ureg(icch);
27};
28#undef ureg
29
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +000030/* ICCR */
31#define SH_I2C_ICCR_ICE (1 << 7)
32#define SH_I2C_ICCR_RACK (1 << 6)
33#define SH_I2C_ICCR_RTS (1 << 4)
34#define SH_I2C_ICCR_BUSY (1 << 2)
35#define SH_I2C_ICCR_SCP (1 << 0)
36
37/* ICSR / ICIC */
Tetsuyuki Kobayashib788fe32012-09-13 19:07:57 +000038#define SH_IC_BUSY (1 << 4)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +000039#define SH_IC_TACK (1 << 2)
40#define SH_IC_WAIT (1 << 1)
41#define SH_IC_DTE (1 << 0)
42
Tetsuyuki Kobayashicc4283c2012-09-13 19:07:56 +000043#ifdef CONFIG_SH_I2C_8BIT
44/* store 8th bit of iccl and icch in ICIC register */
45#define SH_I2C_ICIC_ICCLB8 (1 << 7)
46#define SH_I2C_ICIC_ICCHB8 (1 << 6)
47#endif
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +090048
49static const struct sh_i2c *i2c_dev[CONFIG_SYS_I2C_SH_NUM_CONTROLLERS] = {
50 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE0,
51#ifdef CONFIG_SYS_I2C_SH_BASE1
52 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE1,
53#endif
54#ifdef CONFIG_SYS_I2C_SH_BASE2
55 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE2,
56#endif
57#ifdef CONFIG_SYS_I2C_SH_BASE3
58 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE3,
59#endif
60#ifdef CONFIG_SYS_I2C_SH_BASE4
61 (struct sh_i2c *)CONFIG_SYS_I2C_SH_BASE4,
62#endif
63};
Tetsuyuki Kobayashicc4283c2012-09-13 19:07:56 +000064
65static u16 iccl, icch;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +000066
67#define IRQ_WAIT 1000
68
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +090069static void sh_irq_dte(struct sh_i2c *dev)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +000070{
71 int i;
72
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +090073 for (i = 0; i < IRQ_WAIT; i++) {
74 if (SH_IC_DTE & readb(&dev->icsr))
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +000075 break;
76 udelay(10);
77 }
78}
79
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +090080static int sh_irq_dte_with_tack(struct sh_i2c *dev)
Tetsuyuki Kobayashicece11c2012-09-13 19:08:00 +000081{
82 int i;
83
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +090084 for (i = 0; i < IRQ_WAIT; i++) {
85 if (SH_IC_DTE & readb(&dev->icsr))
Tetsuyuki Kobayashicece11c2012-09-13 19:08:00 +000086 break;
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +090087 if (SH_IC_TACK & readb(&dev->icsr))
Tetsuyuki Kobayashicece11c2012-09-13 19:08:00 +000088 return -1;
89 udelay(10);
90 }
91 return 0;
92}
93
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +090094static void sh_irq_busy(struct sh_i2c *dev)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +000095{
96 int i;
97
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +090098 for (i = 0; i < IRQ_WAIT; i++) {
99 if (!(SH_IC_BUSY & readb(&dev->icsr)))
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000100 break;
101 udelay(10);
102 }
103}
104
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900105static int sh_i2c_set_addr(struct sh_i2c *dev, u8 chip, u8 addr, int stop)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000106{
Tetsuyuki Kobayashicece11c2012-09-13 19:08:00 +0000107 u8 icic = SH_IC_TACK;
Tetsuyuki Kobayashicc4283c2012-09-13 19:07:56 +0000108
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900109 debug("%s: chip: %x, addr: %x iccl: %x, icch %x\n",
110 __func__, chip, addr, iccl, icch);
111 clrbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
112 setbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000113
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900114 writeb(iccl & 0xff, &dev->iccl);
115 writeb(icch & 0xff, &dev->icch);
Tetsuyuki Kobayashicc4283c2012-09-13 19:07:56 +0000116#ifdef CONFIG_SH_I2C_8BIT
117 if (iccl > 0xff)
118 icic |= SH_I2C_ICIC_ICCLB8;
119 if (icch > 0xff)
120 icic |= SH_I2C_ICIC_ICCHB8;
121#endif
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900122 writeb(icic, &dev->icic);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000123
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900124 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &dev->iccr);
125 sh_irq_dte(dev);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000126
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900127 clrbits_8(&dev->icsr, SH_IC_TACK);
128 writeb(chip << 1, &dev->icdr);
129 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashicece11c2012-09-13 19:08:00 +0000130 return -1;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000131
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900132 writeb(addr, &dev->icdr);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000133 if (stop)
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900134 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS), &dev->iccr);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000135
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900136 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashicece11c2012-09-13 19:08:00 +0000137 return -1;
138 return 0;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000139}
140
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900141static void sh_i2c_finish(struct sh_i2c *dev)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000142{
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900143 writeb(0, &dev->icsr);
144 clrbits_8(&dev->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000145}
146
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900147static int
148sh_i2c_raw_write(struct sh_i2c *dev, u8 chip, uint addr, u8 val)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000149{
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000150 int ret = -1;
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900151 if (sh_i2c_set_addr(dev, chip, addr, 0) != 0)
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000152 goto exit0;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000153 udelay(10);
154
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900155 writeb(val, &dev->icdr);
156 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000157 goto exit0;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000158
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900159 writeb((SH_I2C_ICCR_ICE | SH_I2C_ICCR_RTS), &dev->iccr);
160 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000161 goto exit0;
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900162 sh_irq_busy(dev);
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000163 ret = 0;
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900164
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000165exit0:
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900166 sh_i2c_finish(dev);
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000167 return ret;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000168}
169
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900170static int sh_i2c_raw_read(struct sh_i2c *dev, u8 chip, u8 addr)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000171{
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000172 int ret = -1;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000173
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900174 if (sh_i2c_set_addr(dev, chip, addr, 1) != 0)
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000175 goto exit0;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000176 udelay(100);
177
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900178 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &dev->iccr);
179 sh_irq_dte(dev);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000180
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900181 writeb(chip << 1 | 0x01, &dev->icdr);
182 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000183 goto exit0;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000184
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900185 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_SCP), &dev->iccr);
186 if (sh_irq_dte_with_tack(dev) != 0)
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000187 goto exit0;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000188
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900189 ret = readb(&dev->icdr) & 0xff;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000190
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900191 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RACK), &dev->iccr);
192 readb(&dev->icdr); /* Dummy read */
193 sh_irq_busy(dev);
194
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000195exit0:
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900196 sh_i2c_finish(dev);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000197
198 return ret;
199}
200
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900201static void
202sh_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000203{
204 int num, denom, tmp;
205
Nobuhiro Iwamatsu6e35fd22013-10-11 16:23:54 +0900206 /* No i2c support prior to relocation */
207 if (!(gd->flags & GD_FLG_RELOC))
208 return;
209
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000210 /*
211 * Calculate the value for iccl. From the data sheet:
212 * iccl = (p-clock / transfer-rate) * (L / (L + H))
213 * where L and H are the SCL low and high ratio.
214 */
215 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_LOW;
216 denom = speed * (CONFIG_SH_I2C_DATA_HIGH + CONFIG_SH_I2C_DATA_LOW);
217 tmp = num * 10 / denom;
218 if (tmp % 10 >= 5)
Tetsuyuki Kobayashicc4283c2012-09-13 19:07:56 +0000219 iccl = (u16)((num/denom) + 1);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000220 else
Tetsuyuki Kobayashicc4283c2012-09-13 19:07:56 +0000221 iccl = (u16)(num/denom);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000222
223 /* Calculate the value for icch. From the data sheet:
224 icch = (p clock / transfer rate) * (H / (L + H)) */
225 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_HIGH;
226 tmp = num * 10 / denom;
227 if (tmp % 10 >= 5)
Tetsuyuki Kobayashicc4283c2012-09-13 19:07:56 +0000228 icch = (u16)((num/denom) + 1);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000229 else
Tetsuyuki Kobayashicc4283c2012-09-13 19:07:56 +0000230 icch = (u16)(num/denom);
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900231
232 debug("clock: %d, speed %d, iccl: %x, icch: %x\n",
233 CONFIG_SH_I2C_CLOCK, speed, iccl, icch);
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000234}
235
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900236static int sh_i2c_read(struct i2c_adapter *adap, uint8_t chip,
237 uint addr, int alen, u8 *data, int len)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000238{
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900239 int ret, i;
240 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
241
242 for (i = 0; i < len; i++) {
243 ret = sh_i2c_raw_read(dev, chip, addr + i);
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000244 if (ret < 0)
245 return -1;
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900246
247 data[i] = ret & 0xff;
248 debug("%s: data[%d]: %02x\n", __func__, i, data[i]);
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000249 }
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900250
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000251 return 0;
252}
253
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900254static int sh_i2c_write(struct i2c_adapter *adap, uint8_t chip, uint addr,
255 int alen, u8 *data, int len)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000256{
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900257 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
258 int i;
259
260 for (i = 0; i < len; i++) {
261 debug("%s: data[%d]: %02x\n", __func__, i, data[i]);
262 if (sh_i2c_raw_write(dev, chip, addr + i, data[i]) != 0)
Tetsuyuki Kobayashi773003c2012-09-13 19:08:01 +0000263 return -1;
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900264 }
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000265 return 0;
266}
267
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900268static int
269sh_i2c_probe(struct i2c_adapter *adap, u8 dev)
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000270{
Tetsuyuki Kobayashi8b5fe132014-04-14 17:13:57 +0900271 u8 dummy[1];
272
273 return sh_i2c_read(adap, dev, 0, 0, dummy, sizeof dummy);
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900274}
Tetsuyuki Kobayashicece11c2012-09-13 19:08:00 +0000275
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900276static unsigned int sh_i2c_set_bus_speed(struct i2c_adapter *adap,
277 unsigned int speed)
278{
279 struct sh_i2c *dev = (struct sh_i2c *)i2c_dev[adap->hwadapnr];
280
281 sh_i2c_finish(dev);
282 sh_i2c_init(adap, speed, 0);
283
284 return 0;
Nobuhiro Iwamatsue60b79d2011-11-14 18:27:04 +0000285}
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900286
287/*
288 * Register RCAR i2c adapters
289 */
290U_BOOT_I2C_ADAP_COMPLETE(sh_0, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rinib9a254d2021-08-18 23:12:34 -0400291 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 0)
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900292#ifdef CONFIG_SYS_I2C_SH_BASE1
293U_BOOT_I2C_ADAP_COMPLETE(sh_1, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rinib9a254d2021-08-18 23:12:34 -0400294 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 1)
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900295#endif
296#ifdef CONFIG_SYS_I2C_SH_BASE2
297U_BOOT_I2C_ADAP_COMPLETE(sh_2, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rinib9a254d2021-08-18 23:12:34 -0400298 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 2)
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900299#endif
300#ifdef CONFIG_SYS_I2C_SH_BASE3
301U_BOOT_I2C_ADAP_COMPLETE(sh_3, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rinib9a254d2021-08-18 23:12:34 -0400302 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 3)
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900303#endif
304#ifdef CONFIG_SYS_I2C_SH_BASE4
305U_BOOT_I2C_ADAP_COMPLETE(sh_4, sh_i2c_init, sh_i2c_probe, sh_i2c_read,
Tom Rinib9a254d2021-08-18 23:12:34 -0400306 sh_i2c_write, sh_i2c_set_bus_speed, CONFIG_SYS_I2C_SPEED, 0, 4)
Nobuhiro Iwamatsu12240102013-10-29 13:33:51 +0900307#endif