blob: 3d38c035b67e5953507d509e928fc83acbe823f7 [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 *
Lubomir Popov960187f2013-06-01 06:44:38 +000021 * Copyright (c) 2013 Lubomir Popov <lpopov@mm-sol.com>, MM Solutions
22 * New i2c_read, i2c_write and i2c_probe functions, tested on OMAP4
23 * (4430/60/70), OMAP5 (5430) and AM335X (3359); should work on older
24 * OMAPs and derivatives as well. The only anticipated exception would
25 * be the OMAP2420, which shall require driver modification.
26 * - Rewritten i2c_read to operate correctly with all types of chips
27 * (old function could not read consistent data from some I2C slaves).
28 * - Optimized i2c_write.
29 * - New i2c_probe, performs write access vs read. The old probe could
30 * hang the system under certain conditions (e.g. unconfigured pads).
31 * - The read/write/probe functions try to identify unconfigured bus.
32 * - Status functions now read irqstatus_raw as per TRM guidelines
33 * (except for OMAP243X and OMAP34XX).
34 * - Driver now supports up to I2C5 (OMAP5).
wdenk8ed96042005-01-09 23:16:25 +000035 */
36
37#include <common.h>
Heiko Schocher6789e842013-10-22 11:03:18 +020038#include <i2c.h>
wdenk289f9322005-01-12 00:15:14 +000039
wdenk8ed96042005-01-09 23:16:25 +000040#include <asm/arch/i2c.h>
41#include <asm/io.h>
42
Steve Sakoman938717c2010-06-12 06:42:57 -070043#include "omap24xx_i2c.h"
44
John Rigby29565322010-12-20 18:27:51 -070045DECLARE_GLOBAL_DATA_PTR;
46
Tom Rinicec487a2012-02-20 18:49:16 +000047#define I2C_TIMEOUT 1000
Steve Sakomand7083952010-07-19 20:31:55 -070048
Lubomir Popov960187f2013-06-01 06:44:38 +000049/* Absolutely safe for status update at 100 kHz I2C: */
50#define I2C_WAIT 200
51
Heiko Schocher6789e842013-10-22 11:03:18 +020052static int wait_for_bb(struct i2c_adapter *adap);
53static struct i2c *omap24_get_base(struct i2c_adapter *adap);
54static u16 wait_for_event(struct i2c_adapter *adap);
55static void flush_fifo(struct i2c_adapter *adap);
wdenk8ed96042005-01-09 23:16:25 +000056
Heiko Schocher6789e842013-10-22 11:03:18 +020057static void omap24_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd)
wdenk8ed96042005-01-09 23:16:25 +000058{
Heiko Schocher6789e842013-10-22 11:03:18 +020059 struct i2c *i2c_base = omap24_get_base(adap);
Tom Rix7f79dfb2009-06-28 12:52:27 -050060 int psc, fsscll, fssclh;
61 int hsscll = 0, hssclh = 0;
62 u32 scll, sclh;
Tom Rinicec487a2012-02-20 18:49:16 +000063 int timeout = I2C_TIMEOUT;
Tom Rix7f79dfb2009-06-28 12:52:27 -050064
65 /* Only handle standard, fast and high speeds */
66 if ((speed != OMAP_I2C_STANDARD) &&
67 (speed != OMAP_I2C_FAST_MODE) &&
68 (speed != OMAP_I2C_HIGH_SPEED)) {
69 printf("Error : I2C unsupported speed %d\n", speed);
70 return;
71 }
72
73 psc = I2C_IP_CLK / I2C_INTERNAL_SAMPLING_CLK;
74 psc -= 1;
75 if (psc < I2C_PSC_MIN) {
76 printf("Error : I2C unsupported prescalar %d\n", psc);
77 return;
78 }
79
80 if (speed == OMAP_I2C_HIGH_SPEED) {
81 /* High speed */
82
83 /* For first phase of HS mode */
84 fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK /
85 (2 * OMAP_I2C_FAST_MODE);
86
87 fsscll -= I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM;
88 fssclh -= I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM;
89 if (((fsscll < 0) || (fssclh < 0)) ||
90 ((fsscll > 255) || (fssclh > 255))) {
Andreas Müller49e9b4b2012-01-04 15:26:19 +000091 puts("Error : I2C initializing first phase clock\n");
Tom Rix7f79dfb2009-06-28 12:52:27 -050092 return;
93 }
94
95 /* For second phase of HS mode */
96 hsscll = hssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed);
97
98 hsscll -= I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM;
99 hssclh -= I2C_HIGHSPEED_PHASE_TWO_SCLH_TRIM;
100 if (((fsscll < 0) || (fssclh < 0)) ||
101 ((fsscll > 255) || (fssclh > 255))) {
Andreas Müller49e9b4b2012-01-04 15:26:19 +0000102 puts("Error : I2C initializing second phase clock\n");
Tom Rix7f79dfb2009-06-28 12:52:27 -0500103 return;
104 }
105
106 scll = (unsigned int)hsscll << 8 | (unsigned int)fsscll;
107 sclh = (unsigned int)hssclh << 8 | (unsigned int)fssclh;
108
109 } else {
110 /* Standard and fast speed */
111 fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed);
112
113 fsscll -= I2C_FASTSPEED_SCLL_TRIM;
114 fssclh -= I2C_FASTSPEED_SCLH_TRIM;
115 if (((fsscll < 0) || (fssclh < 0)) ||
116 ((fsscll > 255) || (fssclh > 255))) {
Andreas Müller49e9b4b2012-01-04 15:26:19 +0000117 puts("Error : I2C initializing clock\n");
Tom Rix7f79dfb2009-06-28 12:52:27 -0500118 return;
119 }
120
121 scll = (unsigned int)fsscll;
122 sclh = (unsigned int)fssclh;
123 }
wdenk8ed96042005-01-09 23:16:25 +0000124
Michael Jones89677b22011-07-27 14:01:55 -0400125 if (readw(&i2c_base->con) & I2C_CON_EN) {
126 writew(0, &i2c_base->con);
127 udelay(50000);
wdenk8ed96042005-01-09 23:16:25 +0000128 }
129
Tom Rinicec487a2012-02-20 18:49:16 +0000130 writew(0x2, &i2c_base->sysc); /* for ES2 after soft reset */
131 udelay(1000);
132
133 writew(I2C_CON_EN, &i2c_base->con);
134 while (!(readw(&i2c_base->syss) & I2C_SYSS_RDONE) && timeout--) {
135 if (timeout <= 0) {
136 puts("ERROR: Timeout in soft-reset\n");
137 return;
138 }
139 udelay(1000);
140 }
141
142 writew(0, &i2c_base->con);
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100143 writew(psc, &i2c_base->psc);
144 writew(scll, &i2c_base->scll);
145 writew(sclh, &i2c_base->sclh);
Tom Rix7f79dfb2009-06-28 12:52:27 -0500146
wdenk8ed96042005-01-09 23:16:25 +0000147 /* own address */
Michael Jones89677b22011-07-27 14:01:55 -0400148 writew(slaveadd, &i2c_base->oa);
149 writew(I2C_CON_EN, &i2c_base->con);
Lubomir Popov960187f2013-06-01 06:44:38 +0000150#if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX)
151 /*
152 * Have to enable interrupts for OMAP2/3, these IPs don't have
153 * an 'irqstatus_raw' register and we shall have to poll 'stat'
154 */
Michael Jones89677b22011-07-27 14:01:55 -0400155 writew(I2C_IE_XRDY_IE | I2C_IE_RRDY_IE | I2C_IE_ARDY_IE |
Lubomir Popov960187f2013-06-01 06:44:38 +0000156 I2C_IE_NACK_IE | I2C_IE_AL_IE, &i2c_base->ie);
157#endif
Michael Jones89677b22011-07-27 14:01:55 -0400158 udelay(1000);
Heiko Schocher6789e842013-10-22 11:03:18 +0200159 flush_fifo(adap);
Michael Jones89677b22011-07-27 14:01:55 -0400160 writew(0xFFFF, &i2c_base->stat);
161 writew(0, &i2c_base->cnt);
Tom Rinicec487a2012-02-20 18:49:16 +0000162}
163
Heiko Schocher6789e842013-10-22 11:03:18 +0200164static void flush_fifo(struct i2c_adapter *adap)
165{
166 struct i2c *i2c_base = omap24_get_base(adap);
167 u16 stat;
wdenk082acfd2005-01-10 00:01:04 +0000168
169 /* note: if you try and read data when its not there or ready
170 * you get a bus error
171 */
Michael Jones89677b22011-07-27 14:01:55 -0400172 while (1) {
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100173 stat = readw(&i2c_base->stat);
Michael Jones89677b22011-07-27 14:01:55 -0400174 if (stat == I2C_STAT_RRDY) {
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100175 readb(&i2c_base->data);
Michael Jones89677b22011-07-27 14:01:55 -0400176 writew(I2C_STAT_RRDY, &i2c_base->stat);
wdenk8ed96042005-01-09 23:16:25 +0000177 udelay(1000);
Michael Jones89677b22011-07-27 14:01:55 -0400178 } else
wdenk8ed96042005-01-09 23:16:25 +0000179 break;
180 }
181}
182
Lubomir Popov960187f2013-06-01 06:44:38 +0000183/*
184 * i2c_probe: Use write access. Allows to identify addresses that are
185 * write-only (like the config register of dual-port EEPROMs)
186 */
Heiko Schocher6789e842013-10-22 11:03:18 +0200187static int omap24_i2c_probe(struct i2c_adapter *adap, uchar chip)
wdenk8ed96042005-01-09 23:16:25 +0000188{
Heiko Schocher6789e842013-10-22 11:03:18 +0200189 struct i2c *i2c_base = omap24_get_base(adap);
Tom Rinicec487a2012-02-20 18:49:16 +0000190 u16 status;
wdenk8ed96042005-01-09 23:16:25 +0000191 int res = 1; /* default = fail */
192
Michael Jones89677b22011-07-27 14:01:55 -0400193 if (chip == readw(&i2c_base->oa))
wdenk8ed96042005-01-09 23:16:25 +0000194 return res;
wdenk8ed96042005-01-09 23:16:25 +0000195
Lubomir Popov960187f2013-06-01 06:44:38 +0000196 /* Wait until bus is free */
Heiko Schocher6789e842013-10-22 11:03:18 +0200197 if (wait_for_bb(adap))
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000198 return res;
wdenk8ed96042005-01-09 23:16:25 +0000199
Lubomir Popov960187f2013-06-01 06:44:38 +0000200 /* No data transfer, slave addr only */
201 writew(0, &i2c_base->cnt);
202 /* Set slave address */
Michael Jones89677b22011-07-27 14:01:55 -0400203 writew(chip, &i2c_base->sa);
Lubomir Popov960187f2013-06-01 06:44:38 +0000204 /* Stop bit needed here */
205 writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX |
206 I2C_CON_STP, &i2c_base->con);
wdenk8ed96042005-01-09 23:16:25 +0000207
Heiko Schocher6789e842013-10-22 11:03:18 +0200208 status = wait_for_event(adap);
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000209
Lubomir Popov960187f2013-06-01 06:44:38 +0000210 if ((status & ~I2C_STAT_XRDY) == 0 || (status & I2C_STAT_AL)) {
211 /*
212 * With current high-level command implementation, notifying
213 * the user shall flood the console with 127 messages. If
214 * silent exit is desired upon unconfigured bus, remove the
215 * following 'if' section:
216 */
217 if (status == I2C_STAT_XRDY)
218 printf("i2c_probe: pads on bus %d probably not configured (status=0x%x)\n",
Heiko Schocher6789e842013-10-22 11:03:18 +0200219 adap->hwadapnr, status);
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000220
Lubomir Popov960187f2013-06-01 06:44:38 +0000221 goto pr_exit;
Tom Rini168a5ac2012-05-21 06:46:29 +0000222 }
Tom Rinicec487a2012-02-20 18:49:16 +0000223
Lubomir Popov960187f2013-06-01 06:44:38 +0000224 /* Check for ACK (!NAK) */
225 if (!(status & I2C_STAT_NACK)) {
226 res = 0; /* Device found */
227 udelay(I2C_WAIT); /* Required by AM335X in SPL */
228 /* Abort transfer (force idle state) */
229 writew(I2C_CON_MST | I2C_CON_TRX, &i2c_base->con); /* Reset */
230 udelay(1000);
231 writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_TRX |
232 I2C_CON_STP, &i2c_base->con); /* STP */
233 }
234pr_exit:
Heiko Schocher6789e842013-10-22 11:03:18 +0200235 flush_fifo(adap);
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100236 writew(0xFFFF, &i2c_base->stat);
Lubomir Popov960187f2013-06-01 06:44:38 +0000237 writew(0, &i2c_base->cnt);
wdenk8ed96042005-01-09 23:16:25 +0000238 return res;
239}
240
Lubomir Popov960187f2013-06-01 06:44:38 +0000241/*
242 * i2c_read: Function now uses a single I2C read transaction with bulk transfer
243 * of the requested number of bytes (note that the 'i2c md' command
244 * limits this to 16 bytes anyway). If CONFIG_I2C_REPEATED_START is
245 * defined in the board config header, this transaction shall be with
246 * Repeated Start (Sr) between the address and data phases; otherwise
247 * Stop-Start (P-S) shall be used (some I2C chips do require a P-S).
248 * The address (reg offset) may be 0, 1 or 2 bytes long.
249 * Function now reads correctly from chips that return more than one
250 * byte of data per addressed register (like TI temperature sensors),
251 * or that do not need a register address at all (such as some clock
252 * distributors).
253 */
Heiko Schocher6789e842013-10-22 11:03:18 +0200254static int omap24_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr,
255 int alen, uchar *buffer, int len)
wdenk8ed96042005-01-09 23:16:25 +0000256{
Heiko Schocher6789e842013-10-22 11:03:18 +0200257 struct i2c *i2c_base = omap24_get_base(adap);
Lubomir Popov960187f2013-06-01 06:44:38 +0000258 int i2c_error = 0;
259 u16 status;
260
261 if (alen < 0) {
262 puts("I2C read: addr len < 0\n");
263 return 1;
264 }
265 if (len < 0) {
266 puts("I2C read: data len < 0\n");
267 return 1;
268 }
269 if (buffer == NULL) {
270 puts("I2C read: NULL pointer passed\n");
271 return 1;
272 }
wdenk8ed96042005-01-09 23:16:25 +0000273
Ilya Yanok55faa582012-06-08 03:12:09 +0000274 if (alen > 2) {
Tom Rinicec487a2012-02-20 18:49:16 +0000275 printf("I2C read: addr len %d not supported\n", alen);
wdenk8ed96042005-01-09 23:16:25 +0000276 return 1;
Tom Rinicec487a2012-02-20 18:49:16 +0000277 }
wdenk8ed96042005-01-09 23:16:25 +0000278
Ilya Yanok55faa582012-06-08 03:12:09 +0000279 if (addr + len > (1 << 16)) {
Tom Rinicec487a2012-02-20 18:49:16 +0000280 puts("I2C read: address out of range\n");
281 return 1;
282 }
283
Lubomir Popov960187f2013-06-01 06:44:38 +0000284 /* Wait until bus not busy */
Heiko Schocher6789e842013-10-22 11:03:18 +0200285 if (wait_for_bb(adap))
Lubomir Popov960187f2013-06-01 06:44:38 +0000286 return 1;
287
288 /* Zero, one or two bytes reg address (offset) */
289 writew(alen, &i2c_base->cnt);
290 /* Set slave address */
291 writew(chip, &i2c_base->sa);
292
293 if (alen) {
294 /* Must write reg offset first */
295#ifdef CONFIG_I2C_REPEATED_START
296 /* No stop bit, use Repeated Start (Sr) */
297 writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT |
298 I2C_CON_TRX, &i2c_base->con);
299#else
300 /* Stop - Start (P-S) */
301 writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_STP |
302 I2C_CON_TRX, &i2c_base->con);
303#endif
304 /* Send register offset */
305 while (1) {
Heiko Schocher6789e842013-10-22 11:03:18 +0200306 status = wait_for_event(adap);
Lubomir Popov960187f2013-06-01 06:44:38 +0000307 /* Try to identify bus that is not padconf'd for I2C */
308 if (status == I2C_STAT_XRDY) {
309 i2c_error = 2;
310 printf("i2c_read (addr phase): pads on bus %d probably not configured (status=0x%x)\n",
Heiko Schocher6789e842013-10-22 11:03:18 +0200311 adap->hwadapnr, status);
Lubomir Popov960187f2013-06-01 06:44:38 +0000312 goto rd_exit;
313 }
314 if (status == 0 || status & I2C_STAT_NACK) {
315 i2c_error = 1;
316 printf("i2c_read: error waiting for addr ACK (status=0x%x)\n",
317 status);
318 goto rd_exit;
319 }
320 if (alen) {
321 if (status & I2C_STAT_XRDY) {
322 alen--;
323 /* Do we have to use byte access? */
324 writeb((addr >> (8 * alen)) & 0xff,
325 &i2c_base->data);
326 writew(I2C_STAT_XRDY, &i2c_base->stat);
327 }
328 }
329 if (status & I2C_STAT_ARDY) {
330 writew(I2C_STAT_ARDY, &i2c_base->stat);
331 break;
332 }
333 }
334 }
335 /* Set slave address */
336 writew(chip, &i2c_base->sa);
337 /* Read len bytes from slave */
338 writew(len, &i2c_base->cnt);
339 /* Need stop bit here */
340 writew(I2C_CON_EN | I2C_CON_MST |
341 I2C_CON_STT | I2C_CON_STP,
342 &i2c_base->con);
343
344 /* Receive data */
345 while (1) {
Heiko Schocher6789e842013-10-22 11:03:18 +0200346 status = wait_for_event(adap);
Lubomir Popov960187f2013-06-01 06:44:38 +0000347 /*
348 * Try to identify bus that is not padconf'd for I2C. This
349 * state could be left over from previous transactions if
350 * the address phase is skipped due to alen=0.
351 */
352 if (status == I2C_STAT_XRDY) {
353 i2c_error = 2;
354 printf("i2c_read (data phase): pads on bus %d probably not configured (status=0x%x)\n",
Heiko Schocher6789e842013-10-22 11:03:18 +0200355 adap->hwadapnr, status);
Lubomir Popov960187f2013-06-01 06:44:38 +0000356 goto rd_exit;
357 }
358 if (status == 0 || status & I2C_STAT_NACK) {
359 i2c_error = 1;
360 goto rd_exit;
361 }
362 if (status & I2C_STAT_RRDY) {
363 *buffer++ = readb(&i2c_base->data);
364 writew(I2C_STAT_RRDY, &i2c_base->stat);
365 }
366 if (status & I2C_STAT_ARDY) {
367 writew(I2C_STAT_ARDY, &i2c_base->stat);
368 break;
wdenk8ed96042005-01-09 23:16:25 +0000369 }
370 }
371
Lubomir Popov960187f2013-06-01 06:44:38 +0000372rd_exit:
Heiko Schocher6789e842013-10-22 11:03:18 +0200373 flush_fifo(adap);
Lubomir Popov960187f2013-06-01 06:44:38 +0000374 writew(0xFFFF, &i2c_base->stat);
375 writew(0, &i2c_base->cnt);
376 return i2c_error;
wdenk8ed96042005-01-09 23:16:25 +0000377}
378
Lubomir Popov960187f2013-06-01 06:44:38 +0000379/* i2c_write: Address (reg offset) may be 0, 1 or 2 bytes long. */
Heiko Schocher6789e842013-10-22 11:03:18 +0200380static int omap24_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr,
381 int alen, uchar *buffer, int len)
wdenk8ed96042005-01-09 23:16:25 +0000382{
Heiko Schocher6789e842013-10-22 11:03:18 +0200383 struct i2c *i2c_base = omap24_get_base(adap);
Tom Rinicec487a2012-02-20 18:49:16 +0000384 int i;
385 u16 status;
386 int i2c_error = 0;
Lubomir Popov960187f2013-06-01 06:44:38 +0000387
388 if (alen < 0) {
389 puts("I2C write: addr len < 0\n");
390 return 1;
391 }
392
393 if (len < 0) {
394 puts("I2C write: data len < 0\n");
395 return 1;
396 }
397
398 if (buffer == NULL) {
399 puts("I2C write: NULL pointer passed\n");
400 return 1;
401 }
wdenk8ed96042005-01-09 23:16:25 +0000402
Ilya Yanok55faa582012-06-08 03:12:09 +0000403 if (alen > 2) {
Tom Rinicec487a2012-02-20 18:49:16 +0000404 printf("I2C write: addr len %d not supported\n", alen);
wdenk8ed96042005-01-09 23:16:25 +0000405 return 1;
Tom Rinicec487a2012-02-20 18:49:16 +0000406 }
wdenk8ed96042005-01-09 23:16:25 +0000407
Ilya Yanok55faa582012-06-08 03:12:09 +0000408 if (addr + len > (1 << 16)) {
Tom Rinicec487a2012-02-20 18:49:16 +0000409 printf("I2C write: address 0x%x + 0x%x out of range\n",
Lubomir Popov960187f2013-06-01 06:44:38 +0000410 addr, len);
wdenk8ed96042005-01-09 23:16:25 +0000411 return 1;
412 }
413
Lubomir Popov960187f2013-06-01 06:44:38 +0000414 /* Wait until bus not busy */
Heiko Schocher6789e842013-10-22 11:03:18 +0200415 if (wait_for_bb(adap))
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000416 return 1;
Michael Jones0607e2b2011-09-04 14:01:55 -0400417
Lubomir Popov960187f2013-06-01 06:44:38 +0000418 /* Start address phase - will write regoffset + len bytes data */
Tom Rinicec487a2012-02-20 18:49:16 +0000419 writew(alen + len, &i2c_base->cnt);
Lubomir Popov960187f2013-06-01 06:44:38 +0000420 /* Set slave address */
Michael Jones0607e2b2011-09-04 14:01:55 -0400421 writew(chip, &i2c_base->sa);
Lubomir Popov960187f2013-06-01 06:44:38 +0000422 /* Stop bit needed here */
Michael Jones0607e2b2011-09-04 14:01:55 -0400423 writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX |
Lubomir Popov960187f2013-06-01 06:44:38 +0000424 I2C_CON_STP, &i2c_base->con);
Michael Jones0607e2b2011-09-04 14:01:55 -0400425
Lubomir Popov960187f2013-06-01 06:44:38 +0000426 while (alen) {
427 /* Must write reg offset (one or two bytes) */
Heiko Schocher6789e842013-10-22 11:03:18 +0200428 status = wait_for_event(adap);
Lubomir Popov960187f2013-06-01 06:44:38 +0000429 /* Try to identify bus that is not padconf'd for I2C */
430 if (status == I2C_STAT_XRDY) {
431 i2c_error = 2;
432 printf("i2c_write: pads on bus %d probably not configured (status=0x%x)\n",
Heiko Schocher6789e842013-10-22 11:03:18 +0200433 adap->hwadapnr, status);
Lubomir Popov960187f2013-06-01 06:44:38 +0000434 goto wr_exit;
435 }
Tom Rinicec487a2012-02-20 18:49:16 +0000436 if (status == 0 || status & I2C_STAT_NACK) {
Michael Jones0607e2b2011-09-04 14:01:55 -0400437 i2c_error = 1;
Lubomir Popov960187f2013-06-01 06:44:38 +0000438 printf("i2c_write: error waiting for addr ACK (status=0x%x)\n",
439 status);
440 goto wr_exit;
Tom Rinicec487a2012-02-20 18:49:16 +0000441 }
Tom Rinicec487a2012-02-20 18:49:16 +0000442 if (status & I2C_STAT_XRDY) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000443 alen--;
444 writeb((addr >> (8 * alen)) & 0xff, &i2c_base->data);
Tom Rinicec487a2012-02-20 18:49:16 +0000445 writew(I2C_STAT_XRDY, &i2c_base->stat);
446 } else {
447 i2c_error = 1;
Lubomir Popov960187f2013-06-01 06:44:38 +0000448 printf("i2c_write: bus not ready for addr Tx (status=0x%x)\n",
449 status);
450 goto wr_exit;
451 }
452 }
453 /* Address phase is over, now write data */
454 for (i = 0; i < len; i++) {
Heiko Schocher6789e842013-10-22 11:03:18 +0200455 status = wait_for_event(adap);
Lubomir Popov960187f2013-06-01 06:44:38 +0000456 if (status == 0 || status & I2C_STAT_NACK) {
457 i2c_error = 1;
458 printf("i2c_write: error waiting for data ACK (status=0x%x)\n",
459 status);
460 goto wr_exit;
461 }
462 if (status & I2C_STAT_XRDY) {
463 writeb(buffer[i], &i2c_base->data);
464 writew(I2C_STAT_XRDY, &i2c_base->stat);
465 } else {
466 i2c_error = 1;
467 printf("i2c_write: bus not ready for data Tx (i=%d)\n",
468 i);
469 goto wr_exit;
wdenk8ed96042005-01-09 23:16:25 +0000470 }
471 }
472
Lubomir Popov960187f2013-06-01 06:44:38 +0000473wr_exit:
Heiko Schocher6789e842013-10-22 11:03:18 +0200474 flush_fifo(adap);
Michael Jones0607e2b2011-09-04 14:01:55 -0400475 writew(0xFFFF, &i2c_base->stat);
Lubomir Popov960187f2013-06-01 06:44:38 +0000476 writew(0, &i2c_base->cnt);
Tom Rinicec487a2012-02-20 18:49:16 +0000477 return i2c_error;
wdenk8ed96042005-01-09 23:16:25 +0000478}
479
Lubomir Popov960187f2013-06-01 06:44:38 +0000480/*
481 * Wait for the bus to be free by checking the Bus Busy (BB)
482 * bit to become clear
483 */
Heiko Schocher6789e842013-10-22 11:03:18 +0200484static int wait_for_bb(struct i2c_adapter *adap)
wdenk8ed96042005-01-09 23:16:25 +0000485{
Heiko Schocher6789e842013-10-22 11:03:18 +0200486 struct i2c *i2c_base = omap24_get_base(adap);
Steve Sakoman73e87472010-10-20 06:07:44 -0700487 int timeout = I2C_TIMEOUT;
Tom Rinicec487a2012-02-20 18:49:16 +0000488 u16 stat;
wdenk8ed96042005-01-09 23:16:25 +0000489
Tom Rinicec487a2012-02-20 18:49:16 +0000490 writew(0xFFFF, &i2c_base->stat); /* clear current interrupts...*/
Lubomir Popov960187f2013-06-01 06:44:38 +0000491#if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX)
Michael Jones89677b22011-07-27 14:01:55 -0400492 while ((stat = readw(&i2c_base->stat) & I2C_STAT_BB) && timeout--) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000493#else
494 /* Read RAW status */
495 while ((stat = readw(&i2c_base->irqstatus_raw) &
496 I2C_STAT_BB) && timeout--) {
497#endif
Michael Jones89677b22011-07-27 14:01:55 -0400498 writew(stat, &i2c_base->stat);
Lubomir Popov960187f2013-06-01 06:44:38 +0000499 udelay(I2C_WAIT);
wdenk8ed96042005-01-09 23:16:25 +0000500 }
501
502 if (timeout <= 0) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000503 printf("Timed out in wait_for_bb: status=%04x\n",
504 stat);
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000505 return 1;
wdenk8ed96042005-01-09 23:16:25 +0000506 }
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100507 writew(0xFFFF, &i2c_base->stat); /* clear delayed stuff*/
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000508 return 0;
wdenk8ed96042005-01-09 23:16:25 +0000509}
510
Lubomir Popov960187f2013-06-01 06:44:38 +0000511/*
512 * Wait for the I2C controller to complete current action
513 * and update status
514 */
Heiko Schocher6789e842013-10-22 11:03:18 +0200515static u16 wait_for_event(struct i2c_adapter *adap)
wdenk8ed96042005-01-09 23:16:25 +0000516{
Heiko Schocher6789e842013-10-22 11:03:18 +0200517 struct i2c *i2c_base = omap24_get_base(adap);
Tom Rinicec487a2012-02-20 18:49:16 +0000518 u16 status;
Steve Sakoman73e87472010-10-20 06:07:44 -0700519 int timeout = I2C_TIMEOUT;
wdenk8ed96042005-01-09 23:16:25 +0000520
521 do {
Lubomir Popov960187f2013-06-01 06:44:38 +0000522 udelay(I2C_WAIT);
523#if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX)
Michael Jones89677b22011-07-27 14:01:55 -0400524 status = readw(&i2c_base->stat);
Lubomir Popov960187f2013-06-01 06:44:38 +0000525#else
526 /* Read RAW status */
527 status = readw(&i2c_base->irqstatus_raw);
528#endif
Tom Rinicec487a2012-02-20 18:49:16 +0000529 } while (!(status &
530 (I2C_STAT_ROVR | I2C_STAT_XUDF | I2C_STAT_XRDY |
531 I2C_STAT_RRDY | I2C_STAT_ARDY | I2C_STAT_NACK |
532 I2C_STAT_AL)) && timeout--);
wdenk8ed96042005-01-09 23:16:25 +0000533
534 if (timeout <= 0) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000535 printf("Timed out in wait_for_event: status=%04x\n",
536 status);
537 /*
538 * If status is still 0 here, probably the bus pads have
539 * not been configured for I2C, and/or pull-ups are missing.
540 */
541 printf("Check if pads/pull-ups of bus %d are properly configured\n",
Heiko Schocher6789e842013-10-22 11:03:18 +0200542 adap->hwadapnr);
Steve Sakoman73e87472010-10-20 06:07:44 -0700543 writew(0xFFFF, &i2c_base->stat);
Tom Rinicec487a2012-02-20 18:49:16 +0000544 status = 0;
Steve Sakoman73e87472010-10-20 06:07:44 -0700545 }
Tom Rinicec487a2012-02-20 18:49:16 +0000546
wdenk8ed96042005-01-09 23:16:25 +0000547 return status;
548}
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100549
Heiko Schocher6789e842013-10-22 11:03:18 +0200550static struct i2c *omap24_get_base(struct i2c_adapter *adap)
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100551{
Heiko Schocher6789e842013-10-22 11:03:18 +0200552 switch (adap->hwadapnr) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000553 case 0:
Heiko Schocher6789e842013-10-22 11:03:18 +0200554 return (struct i2c *)I2C_BASE1;
Lubomir Popov960187f2013-06-01 06:44:38 +0000555 break;
556 case 1:
Heiko Schocher6789e842013-10-22 11:03:18 +0200557 return (struct i2c *)I2C_BASE2;
Lubomir Popov960187f2013-06-01 06:44:38 +0000558 break;
559#if (I2C_BUS_MAX > 2)
560 case 2:
Heiko Schocher6789e842013-10-22 11:03:18 +0200561 return (struct i2c *)I2C_BASE3;
Lubomir Popov960187f2013-06-01 06:44:38 +0000562 break;
563#if (I2C_BUS_MAX > 3)
564 case 3:
Heiko Schocher6789e842013-10-22 11:03:18 +0200565 return (struct i2c *)I2C_BASE4;
Lubomir Popov960187f2013-06-01 06:44:38 +0000566 break;
567#if (I2C_BUS_MAX > 4)
568 case 4:
Heiko Schocher6789e842013-10-22 11:03:18 +0200569 return (struct i2c *)I2C_BASE5;
Lubomir Popov960187f2013-06-01 06:44:38 +0000570 break;
571#endif
572#endif
573#endif
Heiko Schocher6789e842013-10-22 11:03:18 +0200574 default:
575 printf("wrong hwadapnr: %d\n", adap->hwadapnr);
576 break;
Lubomir Popov960187f2013-06-01 06:44:38 +0000577 }
Heiko Schocher6789e842013-10-22 11:03:18 +0200578 return NULL;
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100579}
Steve Sakoman938717c2010-06-12 06:42:57 -0700580
Heiko Schocher6789e842013-10-22 11:03:18 +0200581#if !defined(CONFIG_SYS_OMAP24_I2C_SPEED1)
582#define CONFIG_SYS_OMAP24_I2C_SPEED1 CONFIG_SYS_OMAP24_I2C_SPEED
583#endif
584#if !defined(CONFIG_SYS_OMAP24_I2C_SLAVE1)
585#define CONFIG_SYS_OMAP24_I2C_SLAVE1 CONFIG_SYS_OMAP24_I2C_SLAVE
586#endif
587
588U_BOOT_I2C_ADAP_COMPLETE(omap24_0, omap24_i2c_init, omap24_i2c_probe,
589 omap24_i2c_read, omap24_i2c_write, NULL,
590 CONFIG_SYS_OMAP24_I2C_SPEED,
591 CONFIG_SYS_OMAP24_I2C_SLAVE,
592 0)
593U_BOOT_I2C_ADAP_COMPLETE(omap24_1, omap24_i2c_init, omap24_i2c_probe,
594 omap24_i2c_read, omap24_i2c_write, NULL,
595 CONFIG_SYS_OMAP24_I2C_SPEED1,
596 CONFIG_SYS_OMAP24_I2C_SLAVE1,
597 1)
598#if (I2C_BUS_MAX > 2)
599#if !defined(CONFIG_SYS_OMAP24_I2C_SPEED2)
600#define CONFIG_SYS_OMAP24_I2C_SPEED2 CONFIG_SYS_OMAP24_I2C_SPEED
601#endif
602#if !defined(CONFIG_SYS_OMAP24_I2C_SLAVE2)
603#define CONFIG_SYS_OMAP24_I2C_SLAVE2 CONFIG_SYS_OMAP24_I2C_SLAVE
604#endif
605
606U_BOOT_I2C_ADAP_COMPLETE(omap24_2, omap24_i2c_init, omap24_i2c_probe,
607 omap24_i2c_read, omap24_i2c_write, NULL,
608 CONFIG_SYS_OMAP24_I2C_SPEED2,
609 CONFIG_SYS_OMAP24_I2C_SLAVE2,
610 2)
611#if (I2C_BUS_MAX > 3)
612#if !defined(CONFIG_SYS_OMAP24_I2C_SPEED3)
613#define CONFIG_SYS_OMAP24_I2C_SPEED3 CONFIG_SYS_OMAP24_I2C_SPEED
614#endif
615#if !defined(CONFIG_SYS_OMAP24_I2C_SLAVE3)
616#define CONFIG_SYS_OMAP24_I2C_SLAVE3 CONFIG_SYS_OMAP24_I2C_SLAVE
617#endif
618
619U_BOOT_I2C_ADAP_COMPLETE(omap24_3, omap24_i2c_init, omap24_i2c_probe,
620 omap24_i2c_read, omap24_i2c_write, NULL,
621 CONFIG_SYS_OMAP24_I2C_SPEED3,
622 CONFIG_SYS_OMAP24_I2C_SLAVE3,
623 3)
624#if (I2C_BUS_MAX > 4)
625#if !defined(CONFIG_SYS_OMAP24_I2C_SPEED4)
626#define CONFIG_SYS_OMAP24_I2C_SPEED4 CONFIG_SYS_OMAP24_I2C_SPEED
627#endif
628#if !defined(CONFIG_SYS_OMAP24_I2C_SLAVE4)
629#define CONFIG_SYS_OMAP24_I2C_SLAVE4 CONFIG_SYS_OMAP24_I2C_SLAVE
630#endif
631
632U_BOOT_I2C_ADAP_COMPLETE(omap24_4, omap24_i2c_init, omap24_i2c_probe,
633 omap24_i2c_read, omap24_i2c_write, NULL,
634 CONFIG_SYS_OMAP24_I2C_SPEED4,
635 CONFIG_SYS_OMAP24_I2C_SLAVE4,
636 4)
637#endif
638#endif
639#endif