blob: ff18991f0e49d9bdf536f9703af33ad1cfe09feb [file] [log] [blame]
wdenk8ed96042005-01-09 23:16:25 +00001/*
2 * Basic I2C functions
3 *
4 * Copyright (c) 2004 Texas Instruments
5 *
6 * This package is free software; you can redistribute it and/or
7 * modify it under the terms of the license found in the file
8 * named COPYING that should have accompanied this file.
9 *
10 * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
11 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
12 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 * Author: Jian Zhang jzhang@ti.com, Texas Instruments
15 *
16 * Copyright (c) 2003 Wolfgang Denk, wd@denx.de
17 * Rewritten to fit into the current U-Boot framework
18 *
19 * Adapted for OMAP2420 I2C, r-woodruff2@ti.com
20 *
21 */
22
23#include <common.h>
wdenk289f9322005-01-12 00:15:14 +000024
wdenk8ed96042005-01-09 23:16:25 +000025#include <asm/arch/i2c.h>
26#include <asm/io.h>
27
wdenk8ed96042005-01-09 23:16:25 +000028static void wait_for_bb (void);
29static u16 wait_for_pin (void);
Wolfgang Denk49a75812005-09-25 18:41:04 +020030static void flush_fifo(void);
wdenk8ed96042005-01-09 23:16:25 +000031
Dirk Behme1d2e96d2009-11-02 20:36:26 +010032static struct i2c *i2c_base = (struct i2c *)I2C_DEFAULT_BASE;
33
34static unsigned int bus_initialized[I2C_BUS_MAX];
35static unsigned int current_bus;
36
wdenk8ed96042005-01-09 23:16:25 +000037void i2c_init (int speed, int slaveadd)
38{
Tom Rix7f79dfb2009-06-28 12:52:27 -050039 int psc, fsscll, fssclh;
40 int hsscll = 0, hssclh = 0;
41 u32 scll, sclh;
42
43 /* Only handle standard, fast and high speeds */
44 if ((speed != OMAP_I2C_STANDARD) &&
45 (speed != OMAP_I2C_FAST_MODE) &&
46 (speed != OMAP_I2C_HIGH_SPEED)) {
47 printf("Error : I2C unsupported speed %d\n", speed);
48 return;
49 }
50
51 psc = I2C_IP_CLK / I2C_INTERNAL_SAMPLING_CLK;
52 psc -= 1;
53 if (psc < I2C_PSC_MIN) {
54 printf("Error : I2C unsupported prescalar %d\n", psc);
55 return;
56 }
57
58 if (speed == OMAP_I2C_HIGH_SPEED) {
59 /* High speed */
60
61 /* For first phase of HS mode */
62 fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK /
63 (2 * OMAP_I2C_FAST_MODE);
64
65 fsscll -= I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM;
66 fssclh -= I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM;
67 if (((fsscll < 0) || (fssclh < 0)) ||
68 ((fsscll > 255) || (fssclh > 255))) {
69 printf("Error : I2C initializing first phase clock\n");
70 return;
71 }
72
73 /* For second phase of HS mode */
74 hsscll = hssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed);
75
76 hsscll -= I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM;
77 hssclh -= I2C_HIGHSPEED_PHASE_TWO_SCLH_TRIM;
78 if (((fsscll < 0) || (fssclh < 0)) ||
79 ((fsscll > 255) || (fssclh > 255))) {
80 printf("Error : I2C initializing second phase clock\n");
81 return;
82 }
83
84 scll = (unsigned int)hsscll << 8 | (unsigned int)fsscll;
85 sclh = (unsigned int)hssclh << 8 | (unsigned int)fssclh;
86
87 } else {
88 /* Standard and fast speed */
89 fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed);
90
91 fsscll -= I2C_FASTSPEED_SCLL_TRIM;
92 fssclh -= I2C_FASTSPEED_SCLH_TRIM;
93 if (((fsscll < 0) || (fssclh < 0)) ||
94 ((fsscll > 255) || (fssclh > 255))) {
95 printf("Error : I2C initializing clock\n");
96 return;
97 }
98
99 scll = (unsigned int)fsscll;
100 sclh = (unsigned int)fssclh;
101 }
wdenk8ed96042005-01-09 23:16:25 +0000102
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100103 writew(0x2, &i2c_base->sysc); /* for ES2 after soft reset */
Wolfgang Denk49a75812005-09-25 18:41:04 +0200104 udelay(1000);
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100105 writew(0x0, &i2c_base->sysc); /* will probably self clear but */
Wolfgang Denk49a75812005-09-25 18:41:04 +0200106
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100107 if (readw (&i2c_base->con) & I2C_CON_EN) {
108 writew (0, &i2c_base->con);
wdenk8ed96042005-01-09 23:16:25 +0000109 udelay (50000);
110 }
111
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100112 writew(psc, &i2c_base->psc);
113 writew(scll, &i2c_base->scll);
114 writew(sclh, &i2c_base->sclh);
Tom Rix7f79dfb2009-06-28 12:52:27 -0500115
wdenk8ed96042005-01-09 23:16:25 +0000116 /* own address */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100117 writew (slaveadd, &i2c_base->oa);
118 writew (I2C_CON_EN, &i2c_base->con);
Wolfgang Denk49a75812005-09-25 18:41:04 +0200119
wdenk8ed96042005-01-09 23:16:25 +0000120 /* have to enable intrrupts or OMAP i2c module doesn't work */
Dirk Behmee23c7c92008-11-10 20:15:25 +0100121 writew (I2C_IE_XRDY_IE | I2C_IE_RRDY_IE | I2C_IE_ARDY_IE |
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100122 I2C_IE_NACK_IE | I2C_IE_AL_IE, &i2c_base->ie);
wdenk8ed96042005-01-09 23:16:25 +0000123 udelay (1000);
Wolfgang Denk49a75812005-09-25 18:41:04 +0200124 flush_fifo();
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100125 writew (0xFFFF, &i2c_base->stat);
126 writew (0, &i2c_base->cnt);
127
128 bus_initialized[current_bus] = 1;
wdenk8ed96042005-01-09 23:16:25 +0000129}
130
131static int i2c_read_byte (u8 devaddr, u8 regoffset, u8 * value)
132{
133 int i2c_error = 0;
134 u16 status;
135
136 /* wait until bus not busy */
137 wait_for_bb ();
138
139 /* one byte only */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100140 writew (1, &i2c_base->cnt);
wdenk8ed96042005-01-09 23:16:25 +0000141 /* set slave address */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100142 writew (devaddr, &i2c_base->sa);
wdenk8ed96042005-01-09 23:16:25 +0000143 /* no stop bit needed here */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100144 writew (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX, &i2c_base->con);
wdenk8ed96042005-01-09 23:16:25 +0000145
146 status = wait_for_pin ();
147
148 if (status & I2C_STAT_XRDY) {
149 /* Important: have to use byte access */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100150 writeb (regoffset, &i2c_base->data);
wdenk8ed96042005-01-09 23:16:25 +0000151 udelay (20000);
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100152 if (readw (&i2c_base->stat) & I2C_STAT_NACK) {
wdenk8ed96042005-01-09 23:16:25 +0000153 i2c_error = 1;
154 }
155 } else {
156 i2c_error = 1;
157 }
158
159 if (!i2c_error) {
160 /* free bus, otherwise we can't use a combined transction */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100161 writew (0, &i2c_base->con);
162 while (readw (&i2c_base->stat) || (readw (&i2c_base->con) & I2C_CON_MST)) {
wdenk8ed96042005-01-09 23:16:25 +0000163 udelay (10000);
164 /* Have to clear pending interrupt to clear I2C_STAT */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100165 writew (0xFFFF, &i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000166 }
167
168 wait_for_bb ();
169 /* set slave address */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100170 writew (devaddr, &i2c_base->sa);
wdenk8ed96042005-01-09 23:16:25 +0000171 /* read one byte from slave */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100172 writew (1, &i2c_base->cnt);
wdenk8ed96042005-01-09 23:16:25 +0000173 /* need stop bit here */
Dirk Behmee23c7c92008-11-10 20:15:25 +0100174 writew (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_STP,
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100175 &i2c_base->con);
wdenk8ed96042005-01-09 23:16:25 +0000176
177 status = wait_for_pin ();
178 if (status & I2C_STAT_RRDY) {
Dirk Behme7d264c12008-12-14 09:47:18 +0100179#if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX)
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100180 *value = readb (&i2c_base->data);
Dirk Behme7d264c12008-12-14 09:47:18 +0100181#else
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100182 *value = readw (&i2c_base->data);
Dirk Behme7d264c12008-12-14 09:47:18 +0100183#endif
wdenk8ed96042005-01-09 23:16:25 +0000184 udelay (20000);
185 } else {
186 i2c_error = 1;
187 }
188
189 if (!i2c_error) {
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100190 writew (I2C_CON_EN, &i2c_base->con);
191 while (readw (&i2c_base->stat)
192 || (readw (&i2c_base->con) & I2C_CON_MST)) {
wdenk8ed96042005-01-09 23:16:25 +0000193 udelay (10000);
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100194 writew (0xFFFF, &i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000195 }
196 }
197 }
198 flush_fifo();
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100199 writew (0xFFFF, &i2c_base->stat);
200 writew (0, &i2c_base->cnt);
wdenk8ed96042005-01-09 23:16:25 +0000201 return i2c_error;
202}
203
204static int i2c_write_byte (u8 devaddr, u8 regoffset, u8 value)
205{
206 int i2c_error = 0;
207 u16 status, stat;
208
209 /* wait until bus not busy */
210 wait_for_bb ();
211
212 /* two bytes */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100213 writew (2, &i2c_base->cnt);
wdenk8ed96042005-01-09 23:16:25 +0000214 /* set slave address */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100215 writew (devaddr, &i2c_base->sa);
wdenk8ed96042005-01-09 23:16:25 +0000216 /* stop bit needed here */
Dirk Behmee23c7c92008-11-10 20:15:25 +0100217 writew (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX |
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100218 I2C_CON_STP, &i2c_base->con);
wdenk8ed96042005-01-09 23:16:25 +0000219
220 /* wait until state change */
221 status = wait_for_pin ();
222
223 if (status & I2C_STAT_XRDY) {
Dirk Behme7d264c12008-12-14 09:47:18 +0100224#if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX)
225 /* send out 1 byte */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100226 writeb (regoffset, &i2c_base->data);
227 writew (I2C_STAT_XRDY, &i2c_base->stat);
Dirk Behme7d264c12008-12-14 09:47:18 +0100228
229 status = wait_for_pin ();
230 if ((status & I2C_STAT_XRDY)) {
231 /* send out next 1 byte */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100232 writeb (value, &i2c_base->data);
233 writew (I2C_STAT_XRDY, &i2c_base->stat);
Dirk Behme7d264c12008-12-14 09:47:18 +0100234 } else {
235 i2c_error = 1;
236 }
237#else
wdenk8ed96042005-01-09 23:16:25 +0000238 /* send out two bytes */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100239 writew ((value << 8) + regoffset, &i2c_base->data);
Dirk Behme7d264c12008-12-14 09:47:18 +0100240#endif
wdenk8ed96042005-01-09 23:16:25 +0000241 /* must have enough delay to allow BB bit to go low */
242 udelay (50000);
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100243 if (readw (&i2c_base->stat) & I2C_STAT_NACK) {
wdenk8ed96042005-01-09 23:16:25 +0000244 i2c_error = 1;
245 }
246 } else {
247 i2c_error = 1;
248 }
249
250 if (!i2c_error) {
Wolfgang Denk49a75812005-09-25 18:41:04 +0200251 int eout = 200;
252
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100253 writew (I2C_CON_EN, &i2c_base->con);
254 while ((stat = readw (&i2c_base->stat)) || (readw (&i2c_base->con) & I2C_CON_MST)) {
wdenk8ed96042005-01-09 23:16:25 +0000255 udelay (1000);
256 /* have to read to clear intrrupt */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100257 writew (0xFFFF, &i2c_base->stat);
Wolfgang Denk49a75812005-09-25 18:41:04 +0200258 if(--eout == 0) /* better leave with error than hang */
259 break;
wdenk8ed96042005-01-09 23:16:25 +0000260 }
261 }
262 flush_fifo();
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100263 writew (0xFFFF, &i2c_base->stat);
264 writew (0, &i2c_base->cnt);
wdenk8ed96042005-01-09 23:16:25 +0000265 return i2c_error;
266}
267
Wolfgang Denk49a75812005-09-25 18:41:04 +0200268static void flush_fifo(void)
wdenk8ed96042005-01-09 23:16:25 +0000269{ u16 stat;
wdenk082acfd2005-01-10 00:01:04 +0000270
271 /* note: if you try and read data when its not there or ready
272 * you get a bus error
273 */
wdenk8ed96042005-01-09 23:16:25 +0000274 while(1){
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100275 stat = readw(&i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000276 if(stat == I2C_STAT_RRDY){
Dirk Behme7d264c12008-12-14 09:47:18 +0100277#if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX)
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100278 readb(&i2c_base->data);
Dirk Behme7d264c12008-12-14 09:47:18 +0100279#else
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100280 readw(&i2c_base->data);
Dirk Behme7d264c12008-12-14 09:47:18 +0100281#endif
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100282 writew(I2C_STAT_RRDY,&i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000283 udelay(1000);
284 }else
285 break;
286 }
287}
288
289int i2c_probe (uchar chip)
290{
291 int res = 1; /* default = fail */
292
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100293 if (chip == readw (&i2c_base->oa)) {
wdenk8ed96042005-01-09 23:16:25 +0000294 return res;
295 }
296
297 /* wait until bus not busy */
298 wait_for_bb ();
299
300 /* try to read one byte */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100301 writew (1, &i2c_base->cnt);
wdenk8ed96042005-01-09 23:16:25 +0000302 /* set slave address */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100303 writew (chip, &i2c_base->sa);
wdenk8ed96042005-01-09 23:16:25 +0000304 /* stop bit needed here */
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100305 writew (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_STP, &i2c_base->con);
wdenk8ed96042005-01-09 23:16:25 +0000306 /* enough delay for the NACK bit set */
307 udelay (50000);
308
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100309 if (!(readw (&i2c_base->stat) & I2C_STAT_NACK)) {
wdenk082acfd2005-01-10 00:01:04 +0000310 res = 0; /* success case */
wdenk8ed96042005-01-09 23:16:25 +0000311 flush_fifo();
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100312 writew(0xFFFF, &i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000313 } else {
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100314 writew(0xFFFF, &i2c_base->stat); /* failue, clear sources*/
315 writew (readw (&i2c_base->con) | I2C_CON_STP, &i2c_base->con); /* finish up xfer */
wdenk8ed96042005-01-09 23:16:25 +0000316 udelay(20000);
317 wait_for_bb ();
318 }
319 flush_fifo();
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100320 writew (0, &i2c_base->cnt); /* don't allow any more data in...we don't want it.*/
321 writew(0xFFFF, &i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000322 return res;
323}
324
325int i2c_read (uchar chip, uint addr, int alen, uchar * buffer, int len)
326{
327 int i;
328
329 if (alen > 1) {
330 printf ("I2C read: addr len %d not supported\n", alen);
331 return 1;
332 }
333
334 if (addr + len > 256) {
335 printf ("I2C read: address out of range\n");
336 return 1;
337 }
338
339 for (i = 0; i < len; i++) {
340 if (i2c_read_byte (chip, addr + i, &buffer[i])) {
341 printf ("I2C read: I/O error\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200342 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
wdenk8ed96042005-01-09 23:16:25 +0000343 return 1;
344 }
345 }
346
347 return 0;
348}
349
350int i2c_write (uchar chip, uint addr, int alen, uchar * buffer, int len)
351{
352 int i;
353
354 if (alen > 1) {
355 printf ("I2C read: addr len %d not supported\n", alen);
356 return 1;
357 }
358
359 if (addr + len > 256) {
360 printf ("I2C read: address out of range\n");
361 return 1;
362 }
363
364 for (i = 0; i < len; i++) {
365 if (i2c_write_byte (chip, addr + i, buffer[i])) {
366 printf ("I2C read: I/O error\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200367 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
wdenk8ed96042005-01-09 23:16:25 +0000368 return 1;
369 }
370 }
371
372 return 0;
373}
374
375static void wait_for_bb (void)
376{
377 int timeout = 10;
378 u16 stat;
379
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100380 writew(0xFFFF, &i2c_base->stat); /* clear current interruts...*/
381 while ((stat = readw (&i2c_base->stat) & I2C_STAT_BB) && timeout--) {
382 writew (stat, &i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000383 udelay (50000);
384 }
385
386 if (timeout <= 0) {
387 printf ("timed out in wait_for_bb: I2C_STAT=%x\n",
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100388 readw (&i2c_base->stat));
wdenk8ed96042005-01-09 23:16:25 +0000389 }
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100390 writew(0xFFFF, &i2c_base->stat); /* clear delayed stuff*/
wdenk8ed96042005-01-09 23:16:25 +0000391}
392
393static u16 wait_for_pin (void)
394{
395 u16 status;
396 int timeout = 10;
397
398 do {
399 udelay (1000);
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100400 status = readw (&i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000401 } while ( !(status &
402 (I2C_STAT_ROVR | I2C_STAT_XUDF | I2C_STAT_XRDY |
403 I2C_STAT_RRDY | I2C_STAT_ARDY | I2C_STAT_NACK |
404 I2C_STAT_AL)) && timeout--);
405
406 if (timeout <= 0) {
407 printf ("timed out in wait_for_pin: I2C_STAT=%x\n",
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100408 readw (&i2c_base->stat));
409 writew(0xFFFF, &i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000410}
411 return status;
412}
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100413
414int i2c_set_bus_num(unsigned int bus)
415{
416 if ((bus < 0) || (bus >= I2C_BUS_MAX)) {
417 printf("Bad bus: %d\n", bus);
418 return -1;
419 }
420
421#if I2C_BUS_MAX==3
422 if (bus == 2)
423 i2c_base = (struct i2c *)I2C_BASE3;
424 else
425#endif
426 if (bus == 1)
427 i2c_base = (struct i2c *)I2C_BASE2;
428 else
429 i2c_base = (struct i2c *)I2C_BASE1;
430
431 current_bus = bus;
432
433 if(!bus_initialized[current_bus])
434 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
435
436 return 0;
437}