blob: 808202c29940db690688dc84c53bb54b45fc4b02 [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+
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +00006 */
7
8#include <common.h>
9#include <asm/io.h>
10
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +090011DECLARE_GLOBAL_DATA_PTR;
12
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000013/* Every register is 32bit aligned, but only 8bits in size */
14#define ureg(name) u8 name; u8 __pad_##name##0; u16 __pad_##name##1;
15struct sh_i2c {
16 ureg(icdr);
17 ureg(iccr);
18 ureg(icsr);
19 ureg(icic);
20 ureg(iccl);
21 ureg(icch);
22};
23#undef ureg
24
25static struct sh_i2c *base;
26
27/* ICCR */
28#define SH_I2C_ICCR_ICE (1 << 7)
29#define SH_I2C_ICCR_RACK (1 << 6)
30#define SH_I2C_ICCR_RTS (1 << 4)
31#define SH_I2C_ICCR_BUSY (1 << 2)
32#define SH_I2C_ICCR_SCP (1 << 0)
33
34/* ICSR / ICIC */
Tetsuyuki Kobayashi57d7c802012-09-13 19:07:57 +000035#define SH_IC_BUSY (1 << 4)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000036#define SH_IC_TACK (1 << 2)
37#define SH_IC_WAIT (1 << 1)
38#define SH_IC_DTE (1 << 0)
39
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +000040#ifdef CONFIG_SH_I2C_8BIT
41/* store 8th bit of iccl and icch in ICIC register */
42#define SH_I2C_ICIC_ICCLB8 (1 << 7)
43#define SH_I2C_ICIC_ICCHB8 (1 << 6)
44#endif
45
46static u16 iccl, icch;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000047
48#define IRQ_WAIT 1000
49
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000050static void irq_dte(struct sh_i2c *base)
51{
52 int i;
53
54 for (i = 0 ; i < IRQ_WAIT ; i++) {
55 if (SH_IC_DTE & readb(&base->icsr))
56 break;
57 udelay(10);
58 }
59}
60
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000061static int irq_dte_with_tack(struct sh_i2c *base)
62{
63 int i;
64
65 for (i = 0 ; i < IRQ_WAIT ; i++) {
66 if (SH_IC_DTE & readb(&base->icsr))
67 break;
68 if (SH_IC_TACK & readb(&base->icsr))
69 return -1;
70 udelay(10);
71 }
72 return 0;
73}
74
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000075static void irq_busy(struct sh_i2c *base)
76{
77 int i;
78
79 for (i = 0 ; i < IRQ_WAIT ; i++) {
80 if (!(SH_IC_BUSY & readb(&base->icsr)))
81 break;
82 udelay(10);
83 }
84}
85
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000086static int i2c_set_addr(struct sh_i2c *base, u8 id, u8 reg, int stop)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000087{
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +000088 u8 icic = SH_IC_TACK;
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +000089
Tetsuyuki Kobayashif5390942012-09-13 19:08:05 +000090 clrbits_8(&base->iccr, SH_I2C_ICCR_ICE);
91 setbits_8(&base->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +000092
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +000093 writeb(iccl & 0xff, &base->iccl);
94 writeb(icch & 0xff, &base->icch);
95#ifdef CONFIG_SH_I2C_8BIT
96 if (iccl > 0xff)
97 icic |= SH_I2C_ICIC_ICCLB8;
98 if (icch > 0xff)
99 icic |= SH_I2C_ICIC_ICCHB8;
100#endif
101 writeb(icic, &base->icic);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000102
103 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &base->iccr);
104 irq_dte(base);
105
Tetsuyuki Kobayashif5390942012-09-13 19:08:05 +0000106 clrbits_8(&base->icsr, SH_IC_TACK);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000107 writeb(id << 1, &base->icdr);
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000108 if (irq_dte_with_tack(base) != 0)
109 return -1;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000110
111 writeb(reg, &base->icdr);
112 if (stop)
113 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS), &base->iccr);
114
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000115 if (irq_dte_with_tack(base) != 0)
116 return -1;
117 return 0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000118}
119
120static void i2c_finish(struct sh_i2c *base)
121{
122 writeb(0, &base->icsr);
Tetsuyuki Kobayashif5390942012-09-13 19:08:05 +0000123 clrbits_8(&base->iccr, SH_I2C_ICCR_ICE);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000124}
125
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000126static int i2c_raw_write(struct sh_i2c *base, u8 id, u8 reg, u8 val)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000127{
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000128 int ret = -1;
129 if (i2c_set_addr(base, id, reg, 0) != 0)
130 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000131 udelay(10);
132
133 writeb(val, &base->icdr);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000134 if (irq_dte_with_tack(base) != 0)
135 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000136
137 writeb((SH_I2C_ICCR_ICE | SH_I2C_ICCR_RTS), &base->iccr);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000138 if (irq_dte_with_tack(base) != 0)
139 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000140 irq_busy(base);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000141 ret = 0;
142exit0:
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000143 i2c_finish(base);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000144 return ret;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000145}
146
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000147static int i2c_raw_read(struct sh_i2c *base, u8 id, u8 reg)
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000148{
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000149 int ret = -1;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000150
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000151#if defined(CONFIG_SH73A0)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000152 if (i2c_set_addr(base, id, reg, 0) != 0)
153 goto exit0;
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000154#else
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000155 if (i2c_set_addr(base, id, reg, 1) != 0)
156 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000157 udelay(100);
Tetsuyuki Kobayashi3ce27032012-09-13 19:07:58 +0000158#endif
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000159
160 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RTS|SH_I2C_ICCR_BUSY), &base->iccr);
161 irq_dte(base);
162
163 writeb(id << 1 | 0x01, &base->icdr);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000164 if (irq_dte_with_tack(base) != 0)
165 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000166
167 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_SCP), &base->iccr);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000168 if (irq_dte_with_tack(base) != 0)
169 goto exit0;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000170
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000171 ret = readb(&base->icdr) & 0xff;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000172
173 writeb((SH_I2C_ICCR_ICE|SH_I2C_ICCR_RACK), &base->iccr);
174 readb(&base->icdr); /* Dummy read */
175 irq_busy(base);
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000176exit0:
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000177 i2c_finish(base);
178
179 return ret;
180}
181
182#ifdef CONFIG_I2C_MULTI_BUS
183static unsigned int current_bus;
184
185/**
186 * i2c_set_bus_num - change active I2C bus
187 * @bus: bus index, zero based
188 * @returns: 0 on success, non-0 on failure
189 */
190int i2c_set_bus_num(unsigned int bus)
191{
192 if ((bus < 0) || (bus >= CONFIG_SYS_MAX_I2C_BUS)) {
193 printf("Bad bus: %d\n", bus);
194 return -1;
195 }
196
197 switch (bus) {
198 case 0:
199 base = (void *)CONFIG_SH_I2C_BASE0;
200 break;
201 case 1:
202 base = (void *)CONFIG_SH_I2C_BASE1;
203 break;
Tetsuyuki Kobayashi020ec722012-09-13 19:07:59 +0000204#ifdef CONFIG_SH_I2C_BASE2
205 case 2:
206 base = (void *)CONFIG_SH_I2C_BASE2;
207 break;
208#endif
209#ifdef CONFIG_SH_I2C_BASE3
210 case 3:
211 base = (void *)CONFIG_SH_I2C_BASE3;
212 break;
213#endif
214#ifdef CONFIG_SH_I2C_BASE4
215 case 4:
216 base = (void *)CONFIG_SH_I2C_BASE4;
217 break;
218#endif
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000219 default:
220 return -1;
221 }
222 current_bus = bus;
223
224 return 0;
225}
226
227/**
228 * i2c_get_bus_num - returns index of active I2C bus
229 */
230unsigned int i2c_get_bus_num(void)
231{
232 return current_bus;
233}
234#endif
235
236#define SH_I2C_ICCL_CALC(clk, date, t_low, t_high) \
237 ((clk / rate) * (t_low / t_low + t_high))
238#define SH_I2C_ICCH_CALC(clk, date, t_low, t_high) \
239 ((clk / rate) * (t_high / t_low + t_high))
240
241void i2c_init(int speed, int slaveaddr)
242{
243 int num, denom, tmp;
244
Nobuhiro Iwamatsub55b8ee2013-10-11 16:23:54 +0900245 /* No i2c support prior to relocation */
246 if (!(gd->flags & GD_FLG_RELOC))
247 return;
248
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000249#ifdef CONFIG_I2C_MULTI_BUS
250 current_bus = 0;
251#endif
252 base = (struct sh_i2c *)CONFIG_SH_I2C_BASE0;
253
254 /*
255 * Calculate the value for iccl. From the data sheet:
256 * iccl = (p-clock / transfer-rate) * (L / (L + H))
257 * where L and H are the SCL low and high ratio.
258 */
259 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_LOW;
260 denom = speed * (CONFIG_SH_I2C_DATA_HIGH + CONFIG_SH_I2C_DATA_LOW);
261 tmp = num * 10 / denom;
262 if (tmp % 10 >= 5)
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000263 iccl = (u16)((num/denom) + 1);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000264 else
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000265 iccl = (u16)(num/denom);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000266
267 /* Calculate the value for icch. From the data sheet:
268 icch = (p clock / transfer rate) * (H / (L + H)) */
269 num = CONFIG_SH_I2C_CLOCK * CONFIG_SH_I2C_DATA_HIGH;
270 tmp = num * 10 / denom;
271 if (tmp % 10 >= 5)
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000272 icch = (u16)((num/denom) + 1);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000273 else
Tetsuyuki Kobayashib1af67f2012-09-13 19:07:56 +0000274 icch = (u16)(num/denom);
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000275}
276
277/*
278 * i2c_read: - Read multiple bytes from an i2c device
279 *
280 * The higher level routines take into account that this function is only
281 * called with len < page length of the device (see configuration file)
282 *
283 * @chip: address of the chip which is to be read
284 * @addr: i2c data address within the chip
285 * @alen: length of the i2c data address (1..2 bytes)
286 * @buffer: where to write the data
287 * @len: how much byte do we want to read
288 * @return: 0 in case of success
289 */
290int i2c_read(u8 chip, u32 addr, int alen, u8 *buffer, int len)
291{
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000292 int ret;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000293 int i = 0;
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000294 for (i = 0 ; i < len ; i++) {
295 ret = i2c_raw_read(base, chip, addr + i);
296 if (ret < 0)
297 return -1;
298 buffer[i] = ret & 0xff;
299 }
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000300 return 0;
301}
302
303/*
304 * i2c_write: - Write multiple bytes to an i2c device
305 *
306 * The higher level routines take into account that this function is only
307 * called with len < page length of the device (see configuration file)
308 *
309 * @chip: address of the chip which is to be written
310 * @addr: i2c data address within the chip
311 * @alen: length of the i2c data address (1..2 bytes)
312 * @buffer: where to find the data to be written
313 * @len: how much byte do we want to read
314 * @return: 0 in case of success
315 */
316int i2c_write(u8 chip, u32 addr, int alen, u8 *buffer, int len)
317{
318 int i = 0;
319 for (i = 0; i < len ; i++)
Tetsuyuki Kobayashi0e5fb332012-09-13 19:08:01 +0000320 if (i2c_raw_write(base, chip, addr + i, buffer[i]) != 0)
321 return -1;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000322 return 0;
323}
324
325/*
326 * i2c_probe: - Test if a chip answers for a given i2c address
327 *
328 * @chip: address of the chip which is searched for
329 * @return: 0 if a chip was found, -1 otherwhise
330 */
331int i2c_probe(u8 chip)
332{
Tetsuyuki Kobayashid042d712012-09-13 19:08:00 +0000333 int ret;
334
335 ret = i2c_set_addr(base, chip, 0, 1);
336 i2c_finish(base);
337 return ret;
Nobuhiro Iwamatsu3dab3e02011-11-14 18:27:04 +0000338}