blob: 2f8b1393f232c983012d92478a483f17fe5b0f78 [file] [log] [blame]
wdenk62219a22002-10-02 20:40:41 +00001/*
2 * (C) Copyright 2000
3 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
4 *
5 * (C) Copyright 2000 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Marius Groeger <mgroeger@sysgo.de>
7 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
wdenk62219a22002-10-02 20:40:41 +00009 *
10 * Back ported to the 8xx platform (from the 8260 platform) by
11 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
12 */
13
14#include <common.h>
15
16#ifdef CONFIG_HARD_I2C
17
18#include <commproc.h>
19#include <i2c.h>
20#ifdef CONFIG_LWMON
21#include <watchdog.h>
22#endif
23
Wolfgang Denk6405a152006-03-31 18:32:53 +020024DECLARE_GLOBAL_DATA_PTR;
25
wdenk62219a22002-10-02 20:40:41 +000026/* tx/rx timeout (we need the i2c early, so we don't use get_timer()) */
27#define TOUT_LOOP 1000000
28
29#define NUM_RX_BDS 4
30#define NUM_TX_BDS 4
31#define MAX_TX_SPACE 256
32#define I2C_RXTX_LEN 128 /* maximum tx/rx buffer length */
33
Wolfgang Denkd0344a42011-11-04 15:55:36 +000034typedef struct I2C_BD {
35 unsigned short status;
36 unsigned short length;
37 unsigned char *addr;
wdenk62219a22002-10-02 20:40:41 +000038} I2C_BD;
Wolfgang Denkd0344a42011-11-04 15:55:36 +000039
40#define BD_I2C_TX_START 0x0400 /* special status for i2c: Start condition */
wdenk62219a22002-10-02 20:40:41 +000041
42#define BD_I2C_TX_CL 0x0001 /* collision error */
43#define BD_I2C_TX_UN 0x0002 /* underflow error */
44#define BD_I2C_TX_NAK 0x0004 /* no acknowledge error */
45#define BD_I2C_TX_ERR (BD_I2C_TX_NAK|BD_I2C_TX_UN|BD_I2C_TX_CL)
46
47#define BD_I2C_RX_ERR BD_SC_OV
48
Wolfgang Denkd0344a42011-11-04 15:55:36 +000049typedef void (*i2c_ecb_t) (int, int); /* error callback function */
wdenk62219a22002-10-02 20:40:41 +000050
51/* This structure keeps track of the bd and buffer space usage. */
52typedef struct i2c_state {
Wolfgang Denkd0344a42011-11-04 15:55:36 +000053 int rx_idx; /* index to next free Rx BD */
54 int tx_idx; /* index to next free Tx BD */
55 void *rxbd; /* pointer to next free Rx BD */
56 void *txbd; /* pointer to next free Tx BD */
57 int tx_space; /* number of Tx bytes left */
58 unsigned char *tx_buf; /* pointer to free Tx area */
59 i2c_ecb_t err_cb; /* error callback function */
wdenk62219a22002-10-02 20:40:41 +000060} i2c_state_t;
61
62
63/* flags for i2c_send() and i2c_receive() */
Wolfgang Denkd0344a42011-11-04 15:55:36 +000064#define I2CF_ENABLE_SECONDARY 0x01 /* secondary_address is valid */
65#define I2CF_START_COND 0x02 /* tx: generate start condition */
66#define I2CF_STOP_COND 0x04 /* tx: generate stop condition */
wdenk62219a22002-10-02 20:40:41 +000067
68/* return codes */
Wolfgang Denkd0344a42011-11-04 15:55:36 +000069#define I2CERR_NO_BUFFERS 0x01 /* no more BDs or buffer space */
70#define I2CERR_MSG_TOO_LONG 0x02 /* tried to send/receive to much data */
71#define I2CERR_TIMEOUT 0x03 /* timeout in i2c_doio() */
72#define I2CERR_QUEUE_EMPTY 0x04 /* i2c_doio called without send/receive */
wdenk62219a22002-10-02 20:40:41 +000073
74/* error callback flags */
Wolfgang Denkd0344a42011-11-04 15:55:36 +000075#define I2CECB_RX_ERR 0x10 /* this is a receive error */
76#define I2CECB_RX_ERR_OV 0x02 /* receive overrun error */
77#define I2CECB_RX_MASK 0x0f /* mask for error bits */
78#define I2CECB_TX_ERR 0x20 /* this is a transmit error */
79#define I2CECB_TX_CL 0x01 /* transmit collision error */
80#define I2CECB_TX_UN 0x02 /* transmit underflow error */
81#define I2CECB_TX_NAK 0x04 /* transmit no ack error */
82#define I2CECB_TX_MASK 0x0f /* mask for error bits */
83#define I2CECB_TIMEOUT 0x40 /* this is a timeout error */
wdenk62219a22002-10-02 20:40:41 +000084
wdenk62219a22002-10-02 20:40:41 +000085/*
86 * Returns the best value of I2BRG to meet desired clock speed of I2C with
87 * input parameters (clock speed, filter, and predivider value).
88 * It returns computer speed value and the difference between it and desired
89 * speed.
90 */
91static inline int
92i2c_roundrate(int hz, int speed, int filter, int modval,
Wolfgang Denkd0344a42011-11-04 15:55:36 +000093 int *brgval, int *totspeed)
wdenk62219a22002-10-02 20:40:41 +000094{
Wolfgang Denkd0344a42011-11-04 15:55:36 +000095 int moddiv = 1 << (5 - (modval & 3)), brgdiv, div;
wdenk62219a22002-10-02 20:40:41 +000096
Wolfgang Denk3019e562011-11-04 15:55:37 +000097 debug("\t[I2C] trying hz=%d, speed=%d, filter=%d, modval=%d\n",
98 hz, speed, filter, modval);
wdenk62219a22002-10-02 20:40:41 +000099
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000100 div = moddiv * speed;
101 brgdiv = (hz + div - 1) / div;
wdenk62219a22002-10-02 20:40:41 +0000102
Wolfgang Denk3019e562011-11-04 15:55:37 +0000103 debug("\t\tmoddiv=%d, brgdiv=%d\n", moddiv, brgdiv);
wdenk62219a22002-10-02 20:40:41 +0000104
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000105 *brgval = ((brgdiv + 1) / 2) - 3 - (2 * filter);
wdenk62219a22002-10-02 20:40:41 +0000106
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000107 if ((*brgval < 0) || (*brgval > 255)) {
Wolfgang Denk3019e562011-11-04 15:55:37 +0000108 debug("\t\trejected brgval=%d\n", *brgval);
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000109 return -1;
110 }
wdenk62219a22002-10-02 20:40:41 +0000111
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000112 brgdiv = 2 * (*brgval + 3 + (2 * filter));
113 div = moddiv * brgdiv;
114 *totspeed = hz / div;
wdenk62219a22002-10-02 20:40:41 +0000115
Wolfgang Denk3019e562011-11-04 15:55:37 +0000116 debug("\t\taccepted brgval=%d, totspeed=%d\n", *brgval, *totspeed);
wdenk62219a22002-10-02 20:40:41 +0000117
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000118 return 0;
wdenk62219a22002-10-02 20:40:41 +0000119}
120
121/*
122 * Sets the I2C clock predivider and divider to meet required clock speed.
123 */
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000124static int i2c_setrate(int hz, int speed)
wdenk62219a22002-10-02 20:40:41 +0000125{
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000126 immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenk62219a22002-10-02 20:40:41 +0000127 volatile i2c8xx_t *i2c = (i2c8xx_t *) & immap->im_i2c;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000128 int brgval,
129 modval, /* 0-3 */
130 bestspeed_diff = speed,
131 bestspeed_brgval = 0,
132 bestspeed_modval = 0,
133 bestspeed_filter = 0,
134 totspeed,
135 filter = 0; /* Use this fixed value */
wdenk62219a22002-10-02 20:40:41 +0000136
137 for (modval = 0; modval < 4; modval++) {
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000138 if (i2c_roundrate
139 (hz, speed, filter, modval, &brgval, &totspeed) == 0) {
wdenk62219a22002-10-02 20:40:41 +0000140 int diff = speed - totspeed;
141
142 if ((diff >= 0) && (diff < bestspeed_diff)) {
143 bestspeed_diff = diff;
144 bestspeed_modval = modval;
145 bestspeed_brgval = brgval;
146 bestspeed_filter = filter;
147 }
148 }
149 }
150
Wolfgang Denk3019e562011-11-04 15:55:37 +0000151 debug("[I2C] Best is:\n");
152 debug("[I2C] CPU=%dhz RATE=%d F=%d I2MOD=%08x I2BRG=%08x DIFF=%dhz\n",
wdenk62219a22002-10-02 20:40:41 +0000153 hz,
154 speed,
155 bestspeed_filter,
156 bestspeed_modval,
157 bestspeed_brgval,
Wolfgang Denk3019e562011-11-04 15:55:37 +0000158 bestspeed_diff);
wdenk62219a22002-10-02 20:40:41 +0000159
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000160 i2c->i2c_i2mod |=
161 ((bestspeed_modval & 3) << 1) | (bestspeed_filter << 3);
wdenk62219a22002-10-02 20:40:41 +0000162 i2c->i2c_i2brg = bestspeed_brgval & 0xff;
163
Wolfgang Denk3019e562011-11-04 15:55:37 +0000164 debug("[I2C] i2mod=%08x i2brg=%08x\n",
165 i2c->i2c_i2mod,
166 i2c->i2c_i2brg);
wdenk62219a22002-10-02 20:40:41 +0000167
168 return 1;
169}
170
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000171void i2c_init(int speed, int slaveaddr)
wdenk62219a22002-10-02 20:40:41 +0000172{
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000173 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenk62219a22002-10-02 20:40:41 +0000174 volatile cpm8xx_t *cp = (cpm8xx_t *)&immap->im_cpm;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000175 volatile i2c8xx_t *i2c = (i2c8xx_t *)&immap->im_i2c;
wdenk62219a22002-10-02 20:40:41 +0000176 volatile iic_t *iip = (iic_t *)&cp->cp_dparam[PROFF_IIC];
177 ulong rbase, tbase;
178 volatile I2C_BD *rxbd, *txbd;
179 uint dpaddr;
180
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200181#ifdef CONFIG_SYS_I2C_INIT_BOARD
wdenkcc1e2562003-03-06 13:39:27 +0000182 /* call board specific i2c bus reset routine before accessing the */
183 /* environment, which might be in a chip on that bus. For details */
184 /* about this problem see doc/I2C_Edge_Conditions. */
185 i2c_init_board();
186#endif
187
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200188#ifdef CONFIG_SYS_I2C_UCODE_PATCH
wdenk62219a22002-10-02 20:40:41 +0000189 iip = (iic_t *)&cp->cp_dpmem[iip->iic_rpbase];
190#else
191 /* Disable relocation */
192 iip->iic_rpbase = 0;
193#endif
194
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200195#ifdef CONFIG_SYS_ALLOC_DPRAM
wdenk62219a22002-10-02 20:40:41 +0000196 dpaddr = iip->iic_rbase;
197 if (dpaddr == 0) {
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000198 /* need to allocate dual port ram */
199 dpaddr = dpram_alloc_align((NUM_RX_BDS * sizeof(I2C_BD)) +
200 (NUM_TX_BDS * sizeof(I2C_BD)) +
201 MAX_TX_SPACE, 8);
wdenk62219a22002-10-02 20:40:41 +0000202 }
203#else
204 dpaddr = CPM_I2C_BASE;
205#endif
206
207 /*
208 * initialise data in dual port ram:
209 *
210 * dpaddr->rbase -> rx BD (NUM_RX_BDS * sizeof(I2C_BD) bytes)
211 * tbase -> tx BD (NUM_TX_BDS * sizeof(I2C_BD) bytes)
212 * tx buffer (MAX_TX_SPACE bytes)
213 */
214
215 rbase = dpaddr;
216 tbase = rbase + NUM_RX_BDS * sizeof(I2C_BD);
217
218 /* Initialize Port B I2C pins. */
219 cp->cp_pbpar |= 0x00000030;
220 cp->cp_pbdir |= 0x00000030;
221 cp->cp_pbodr |= 0x00000030;
222
223 /* Disable interrupts */
224 i2c->i2c_i2mod = 0x00;
225 i2c->i2c_i2cmr = 0x00;
226 i2c->i2c_i2cer = 0xff;
227 i2c->i2c_i2add = slaveaddr;
228
229 /*
230 * Set the I2C BRG Clock division factor from desired i2c rate
231 * and current CPU rate (we assume sccr dfbgr field is 0;
232 * divide BRGCLK by 1)
233 */
Wolfgang Denk3019e562011-11-04 15:55:37 +0000234 debug("[I2C] Setting rate...\n");
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000235 i2c_setrate(gd->cpu_clk, CONFIG_SYS_I2C_SPEED);
wdenk62219a22002-10-02 20:40:41 +0000236
237 /* Set I2C controller in master mode */
238 i2c->i2c_i2com = 0x01;
239
240 /* Set SDMA bus arbitration level to 5 (SDCR) */
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000241 immap->im_siu_conf.sc_sdcr = 0x0001;
wdenk62219a22002-10-02 20:40:41 +0000242
243 /* Initialize Tx/Rx parameters */
244 iip->iic_rbase = rbase;
245 iip->iic_tbase = tbase;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000246 rxbd = (I2C_BD *) ((unsigned char *) &cp->cp_dpmem[iip->iic_rbase]);
247 txbd = (I2C_BD *) ((unsigned char *) &cp->cp_dpmem[iip->iic_tbase]);
wdenk62219a22002-10-02 20:40:41 +0000248
Wolfgang Denk3019e562011-11-04 15:55:37 +0000249 debug("[I2C] rbase = %04x\n", iip->iic_rbase);
250 debug("[I2C] tbase = %04x\n", iip->iic_tbase);
251 debug("[I2C] rxbd = %08x\n", (int)rxbd);
252 debug("[I2C] txbd = %08x\n", (int)txbd);
wdenk62219a22002-10-02 20:40:41 +0000253
254 /* Set big endian byte order */
255 iip->iic_tfcr = 0x10;
256 iip->iic_rfcr = 0x10;
257
258 /* Set maximum receive size. */
259 iip->iic_mrblr = I2C_RXTX_LEN;
260
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200261#ifdef CONFIG_SYS_I2C_UCODE_PATCH
wdenk62219a22002-10-02 20:40:41 +0000262 /*
263 * Initialize required parameters if using microcode patch.
264 */
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000265 iip->iic_rbptr = iip->iic_rbase;
266 iip->iic_tbptr = iip->iic_tbase;
wdenk62219a22002-10-02 20:40:41 +0000267 iip->iic_rstate = 0;
268 iip->iic_tstate = 0;
269#else
270 cp->cp_cpcr = mk_cr_cmd(CPM_CR_CH_I2C, CPM_CR_INIT_TRX) | CPM_CR_FLG;
271 do {
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000272 __asm__ __volatile__("eieio");
wdenk62219a22002-10-02 20:40:41 +0000273 } while (cp->cp_cpcr & CPM_CR_FLG);
274#endif
275
276 /* Clear events and interrupts */
277 i2c->i2c_i2cer = 0xff;
278 i2c->i2c_i2cmr = 0x00;
279}
280
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000281static void i2c_newio(i2c_state_t *state)
wdenk62219a22002-10-02 20:40:41 +0000282{
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000283 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
wdenk62219a22002-10-02 20:40:41 +0000284 volatile cpm8xx_t *cp = (cpm8xx_t *)&immap->im_cpm;
285 volatile iic_t *iip = (iic_t *)&cp->cp_dparam[PROFF_IIC];
286
Wolfgang Denk3019e562011-11-04 15:55:37 +0000287 debug("[I2C] i2c_newio\n");
wdenk62219a22002-10-02 20:40:41 +0000288
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200289#ifdef CONFIG_SYS_I2C_UCODE_PATCH
wdenk62219a22002-10-02 20:40:41 +0000290 iip = (iic_t *)&cp->cp_dpmem[iip->iic_rpbase];
291#endif
292 state->rx_idx = 0;
293 state->tx_idx = 0;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000294 state->rxbd = (void *)&cp->cp_dpmem[iip->iic_rbase];
295 state->txbd = (void *)&cp->cp_dpmem[iip->iic_tbase];
wdenk62219a22002-10-02 20:40:41 +0000296 state->tx_space = MAX_TX_SPACE;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000297 state->tx_buf = (uchar *)state->txbd + NUM_TX_BDS * sizeof(I2C_BD);
wdenk62219a22002-10-02 20:40:41 +0000298 state->err_cb = NULL;
299
Wolfgang Denk3019e562011-11-04 15:55:37 +0000300 debug("[I2C] rxbd = %08x\n", (int)state->rxbd);
301 debug("[I2C] txbd = %08x\n", (int)state->txbd);
302 debug("[I2C] tx_buf = %08x\n", (int)state->tx_buf);
wdenk62219a22002-10-02 20:40:41 +0000303
304 /* clear the buffer memory */
305 memset((char *)state->tx_buf, 0, MAX_TX_SPACE);
306}
307
308static int
309i2c_send(i2c_state_t *state,
310 unsigned char address,
311 unsigned char secondary_address,
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000312 unsigned int flags, unsigned short size, unsigned char *dataout)
wdenk62219a22002-10-02 20:40:41 +0000313{
314 volatile I2C_BD *txbd;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000315 int i, j;
wdenk62219a22002-10-02 20:40:41 +0000316
Wolfgang Denk3019e562011-11-04 15:55:37 +0000317 debug("[I2C] i2c_send add=%02d sec=%02d flag=%02d size=%d\n",
318 address, secondary_address, flags, size);
wdenk62219a22002-10-02 20:40:41 +0000319
320 /* trying to send message larger than BD */
321 if (size > I2C_RXTX_LEN)
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000322 return I2CERR_MSG_TOO_LONG;
wdenk62219a22002-10-02 20:40:41 +0000323
324 /* no more free bds */
325 if (state->tx_idx >= NUM_TX_BDS || state->tx_space < (2 + size))
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000326 return I2CERR_NO_BUFFERS;
wdenk62219a22002-10-02 20:40:41 +0000327
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000328 txbd = (I2C_BD *) state->txbd;
wdenk62219a22002-10-02 20:40:41 +0000329 txbd->addr = state->tx_buf;
330
Wolfgang Denk3019e562011-11-04 15:55:37 +0000331 debug("[I2C] txbd = %08x\n", (int)txbd);
wdenk62219a22002-10-02 20:40:41 +0000332
333 if (flags & I2CF_START_COND) {
Wolfgang Denk3019e562011-11-04 15:55:37 +0000334 debug("[I2C] Formatting addresses...\n");
wdenk62219a22002-10-02 20:40:41 +0000335 if (flags & I2CF_ENABLE_SECONDARY) {
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000336 /* Length of msg + dest addr */
337 txbd->length = size + 2;
338
wdenk62219a22002-10-02 20:40:41 +0000339 txbd->addr[0] = address << 1;
340 txbd->addr[1] = secondary_address;
341 i = 2;
342 } else {
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000343 /* Length of msg + dest addr */
344 txbd->length = size + 1;
345 /* Write dest addr to BD */
346 txbd->addr[0] = address << 1;
wdenk62219a22002-10-02 20:40:41 +0000347 i = 1;
348 }
349 } else {
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000350 txbd->length = size; /* Length of message */
wdenk62219a22002-10-02 20:40:41 +0000351 i = 0;
352 }
353
354 /* set up txbd */
355 txbd->status = BD_SC_READY;
356 if (flags & I2CF_START_COND)
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000357 txbd->status |= BD_I2C_TX_START;
wdenk62219a22002-10-02 20:40:41 +0000358 if (flags & I2CF_STOP_COND)
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000359 txbd->status |= BD_SC_LAST | BD_SC_WRAP;
wdenk62219a22002-10-02 20:40:41 +0000360
361 /* Copy data to send into buffer */
Wolfgang Denk3019e562011-11-04 15:55:37 +0000362 debug("[I2C] copy data...\n");
wdenk62219a22002-10-02 20:40:41 +0000363 for(j = 0; j < size; i++, j++)
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000364 txbd->addr[i] = dataout[j];
wdenk62219a22002-10-02 20:40:41 +0000365
Wolfgang Denk3019e562011-11-04 15:55:37 +0000366 debug("[I2C] txbd: length=0x%04x status=0x%04x addr[0]=0x%02x addr[1]=0x%02x\n",
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000367 txbd->length,
368 txbd->status,
369 txbd->addr[0],
Wolfgang Denk3019e562011-11-04 15:55:37 +0000370 txbd->addr[1]);
wdenk62219a22002-10-02 20:40:41 +0000371
372 /* advance state */
373 state->tx_buf += txbd->length;
374 state->tx_space -= txbd->length;
375 state->tx_idx++;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000376 state->txbd = (void *) (txbd + 1);
wdenk62219a22002-10-02 20:40:41 +0000377
378 return 0;
379}
380
381static int
382i2c_receive(i2c_state_t *state,
383 unsigned char address,
384 unsigned char secondary_address,
385 unsigned int flags,
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000386 unsigned short size_to_expect, unsigned char *datain)
wdenk62219a22002-10-02 20:40:41 +0000387{
388 volatile I2C_BD *rxbd, *txbd;
389
Wolfgang Denk3019e562011-11-04 15:55:37 +0000390 debug("[I2C] i2c_receive %02d %02d %02d\n",
391 address, secondary_address, flags);
wdenk62219a22002-10-02 20:40:41 +0000392
393 /* Expected to receive too much */
394 if (size_to_expect > I2C_RXTX_LEN)
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000395 return I2CERR_MSG_TOO_LONG;
wdenk62219a22002-10-02 20:40:41 +0000396
397 /* no more free bds */
398 if (state->tx_idx >= NUM_TX_BDS || state->rx_idx >= NUM_RX_BDS
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000399 || state->tx_space < 2)
400 return I2CERR_NO_BUFFERS;
wdenk62219a22002-10-02 20:40:41 +0000401
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000402 rxbd = (I2C_BD *) state->rxbd;
403 txbd = (I2C_BD *) state->txbd;
wdenk62219a22002-10-02 20:40:41 +0000404
Wolfgang Denk3019e562011-11-04 15:55:37 +0000405 debug("[I2C] rxbd = %08x\n", (int)rxbd);
406 debug("[I2C] txbd = %08x\n", (int)txbd);
wdenk62219a22002-10-02 20:40:41 +0000407
408 txbd->addr = state->tx_buf;
409
410 /* set up TXBD for destination address */
411 if (flags & I2CF_ENABLE_SECONDARY) {
412 txbd->length = 2;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000413 txbd->addr[0] = address << 1; /* Write data */
414 txbd->addr[1] = secondary_address; /* Internal address */
wdenk62219a22002-10-02 20:40:41 +0000415 txbd->status = BD_SC_READY;
416 } else {
417 txbd->length = 1 + size_to_expect;
418 txbd->addr[0] = (address << 1) | 0x01;
419 txbd->status = BD_SC_READY;
420 memset(&txbd->addr[1], 0, txbd->length);
421 }
422
423 /* set up rxbd for reception */
424 rxbd->status = BD_SC_EMPTY;
425 rxbd->length = size_to_expect;
426 rxbd->addr = datain;
427
428 txbd->status |= BD_I2C_TX_START;
429 if (flags & I2CF_STOP_COND) {
430 txbd->status |= BD_SC_LAST | BD_SC_WRAP;
431 rxbd->status |= BD_SC_WRAP;
432 }
433
Wolfgang Denk3019e562011-11-04 15:55:37 +0000434 debug("[I2C] txbd: length=0x%04x status=0x%04x addr[0]=0x%02x addr[1]=0x%02x\n",
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000435 txbd->length,
436 txbd->status,
437 txbd->addr[0],
Wolfgang Denk3019e562011-11-04 15:55:37 +0000438 txbd->addr[1]);
439 debug("[I2C] rxbd: length=0x%04x status=0x%04x addr[0]=0x%02x addr[1]=0x%02x\n",
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000440 rxbd->length,
441 rxbd->status,
442 rxbd->addr[0],
Wolfgang Denk3019e562011-11-04 15:55:37 +0000443 rxbd->addr[1]);
wdenk62219a22002-10-02 20:40:41 +0000444
445 /* advance state */
446 state->tx_buf += txbd->length;
447 state->tx_space -= txbd->length;
448 state->tx_idx++;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000449 state->txbd = (void *) (txbd + 1);
wdenk62219a22002-10-02 20:40:41 +0000450 state->rx_idx++;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000451 state->rxbd = (void *) (rxbd + 1);
wdenk62219a22002-10-02 20:40:41 +0000452
453 return 0;
454}
455
456
457static int i2c_doio(i2c_state_t *state)
458{
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000459 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
wdenk62219a22002-10-02 20:40:41 +0000460 volatile cpm8xx_t *cp = (cpm8xx_t *)&immap->im_cpm;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000461 volatile i2c8xx_t *i2c = (i2c8xx_t *)&immap->im_i2c;
wdenk62219a22002-10-02 20:40:41 +0000462 volatile iic_t *iip = (iic_t *)&cp->cp_dparam[PROFF_IIC];
463 volatile I2C_BD *txbd, *rxbd;
464 volatile int j = 0;
465
Wolfgang Denk3019e562011-11-04 15:55:37 +0000466 debug("[I2C] i2c_doio\n");
wdenk62219a22002-10-02 20:40:41 +0000467
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200468#ifdef CONFIG_SYS_I2C_UCODE_PATCH
wdenk62219a22002-10-02 20:40:41 +0000469 iip = (iic_t *)&cp->cp_dpmem[iip->iic_rpbase];
470#endif
471
472 if (state->tx_idx <= 0 && state->rx_idx <= 0) {
Wolfgang Denk3019e562011-11-04 15:55:37 +0000473 debug("[I2C] No I/O is queued\n");
wdenk62219a22002-10-02 20:40:41 +0000474 return I2CERR_QUEUE_EMPTY;
475 }
476
477 iip->iic_rbptr = iip->iic_rbase;
478 iip->iic_tbptr = iip->iic_tbase;
479
480 /* Enable I2C */
Wolfgang Denk3019e562011-11-04 15:55:37 +0000481 debug("[I2C] Enabling I2C...\n");
wdenk62219a22002-10-02 20:40:41 +0000482 i2c->i2c_i2mod |= 0x01;
483
484 /* Begin transmission */
485 i2c->i2c_i2com |= 0x80;
486
487 /* Loop until transmit & receive completed */
488
489 if (state->tx_idx > 0) {
490 txbd = ((I2C_BD*)state->txbd) - 1;
Wolfgang Denk3019e562011-11-04 15:55:37 +0000491
492 debug("[I2C] Transmitting...(txbd=0x%08lx)\n",
493 (ulong)txbd);
494
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000495 while ((txbd->status & BD_SC_READY) && (j++ < TOUT_LOOP)) {
496 if (ctrlc())
wdenk62219a22002-10-02 20:40:41 +0000497 return (-1);
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000498
499 __asm__ __volatile__("eieio");
wdenk62219a22002-10-02 20:40:41 +0000500 }
501 }
502
503 if ((state->rx_idx > 0) && (j < TOUT_LOOP)) {
504 rxbd = ((I2C_BD*)state->rxbd) - 1;
Wolfgang Denk3019e562011-11-04 15:55:37 +0000505
506 debug("[I2C] Receiving...(rxbd=0x%08lx)\n",
507 (ulong)rxbd);
508
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000509 while ((rxbd->status & BD_SC_EMPTY) && (j++ < TOUT_LOOP)) {
510 if (ctrlc())
wdenk62219a22002-10-02 20:40:41 +0000511 return (-1);
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000512
513 __asm__ __volatile__("eieio");
wdenk62219a22002-10-02 20:40:41 +0000514 }
515 }
516
517 /* Turn off I2C */
518 i2c->i2c_i2mod &= ~0x01;
519
520 if (state->err_cb != NULL) {
521 int n, i, b;
522
523 /*
524 * if we have an error callback function, look at the
525 * error bits in the bd status and pass them back
526 */
527
528 if ((n = state->tx_idx) > 0) {
529 for (i = 0; i < n; i++) {
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000530 txbd = ((I2C_BD *) state->txbd) - (n - i);
wdenk62219a22002-10-02 20:40:41 +0000531 if ((b = txbd->status & BD_I2C_TX_ERR) != 0)
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000532 (*state->err_cb) (I2CECB_TX_ERR | b,
533 i);
wdenk62219a22002-10-02 20:40:41 +0000534 }
535 }
536
537 if ((n = state->rx_idx) > 0) {
538 for (i = 0; i < n; i++) {
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000539 rxbd = ((I2C_BD *) state->rxbd) - (n - i);
wdenk62219a22002-10-02 20:40:41 +0000540 if ((b = rxbd->status & BD_I2C_RX_ERR) != 0)
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000541 (*state->err_cb) (I2CECB_RX_ERR | b,
542 i);
wdenk62219a22002-10-02 20:40:41 +0000543 }
544 }
545
546 if (j >= TOUT_LOOP)
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000547 (*state->err_cb) (I2CECB_TIMEOUT, 0);
wdenk62219a22002-10-02 20:40:41 +0000548 }
549
550 return (j >= TOUT_LOOP) ? I2CERR_TIMEOUT : 0;
551}
552
553static int had_tx_nak;
554
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000555static void i2c_test_callback(int flags, int xnum)
wdenk62219a22002-10-02 20:40:41 +0000556{
557 if ((flags & I2CECB_TX_ERR) && (flags & I2CECB_TX_NAK))
558 had_tx_nak = 1;
559}
560
561int i2c_probe(uchar chip)
562{
563 i2c_state_t state;
Wolfgang Denka1be4762008-05-20 16:00:29 +0200564 int rc;
wdenk62219a22002-10-02 20:40:41 +0000565 uchar buf[1];
566
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200567 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
wdenk62219a22002-10-02 20:40:41 +0000568
569 i2c_newio(&state);
570
571 state.err_cb = i2c_test_callback;
572 had_tx_nak = 0;
573
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000574 rc = i2c_receive(&state, chip, 0, I2CF_START_COND | I2CF_STOP_COND, 1,
575 buf);
wdenk62219a22002-10-02 20:40:41 +0000576
577 if (rc != 0)
578 return (rc);
579
580 rc = i2c_doio(&state);
581
582 if ((rc != 0) && (rc != I2CERR_TIMEOUT))
583 return (rc);
584
585 return (had_tx_nak);
586}
587
588int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len)
589{
wdenk62219a22002-10-02 20:40:41 +0000590 i2c_state_t state;
591 uchar xaddr[4];
592 int rc;
593
594#ifdef CONFIG_LWMON
595 WATCHDOG_RESET();
596#endif
597
598 xaddr[0] = (addr >> 24) & 0xFF;
599 xaddr[1] = (addr >> 16) & 0xFF;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000600 xaddr[2] = (addr >> 8) & 0xFF;
601 xaddr[3] = addr & 0xFF;
wdenk62219a22002-10-02 20:40:41 +0000602
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200603#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
wdenk62219a22002-10-02 20:40:41 +0000604 /*
605 * EEPROM chips that implement "address overflow" are ones like
606 * Catalyst 24WC04/08/16 which has 9/10/11 bits of address and the
607 * extra bits end up in the "chip address" bit slots. This makes
608 * a 24WC08 (1Kbyte) chip look like four 256 byte chips.
609 *
610 * Note that we consider the length of the address field to still
611 * be one byte because the extra address bits are hidden in the
612 * chip address.
613 */
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000614 chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
wdenk62219a22002-10-02 20:40:41 +0000615#endif
616
617 i2c_newio(&state);
618
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000619 rc = i2c_send(&state, chip, 0, I2CF_START_COND, alen,
620 &xaddr[4 - alen]);
wdenk62219a22002-10-02 20:40:41 +0000621 if (rc != 0) {
Graeme Russ70600b02011-08-29 02:14:05 +0000622 printf("i2c_read: i2c_send failed (%d)\n", rc);
wdenk62219a22002-10-02 20:40:41 +0000623 return 1;
624 }
625
626 rc = i2c_receive(&state, chip, 0, I2CF_STOP_COND, len, buffer);
627 if (rc != 0) {
Graeme Russ70600b02011-08-29 02:14:05 +0000628 printf("i2c_read: i2c_receive failed (%d)\n", rc);
wdenk62219a22002-10-02 20:40:41 +0000629 return 1;
630 }
631
632 rc = i2c_doio(&state);
633 if (rc != 0) {
Graeme Russ70600b02011-08-29 02:14:05 +0000634 printf("i2c_read: i2c_doio failed (%d)\n", rc);
wdenk62219a22002-10-02 20:40:41 +0000635 return 1;
636 }
637 return 0;
638}
639
640int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len)
641{
wdenk62219a22002-10-02 20:40:41 +0000642 i2c_state_t state;
643 uchar xaddr[4];
644 int rc;
645
646 xaddr[0] = (addr >> 24) & 0xFF;
647 xaddr[1] = (addr >> 16) & 0xFF;
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000648 xaddr[2] = (addr >> 8) & 0xFF;
649 xaddr[3] = addr & 0xFF;
wdenk62219a22002-10-02 20:40:41 +0000650
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200651#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
wdenk62219a22002-10-02 20:40:41 +0000652 /*
653 * EEPROM chips that implement "address overflow" are ones like
654 * Catalyst 24WC04/08/16 which has 9/10/11 bits of address and the
655 * extra bits end up in the "chip address" bit slots. This makes
656 * a 24WC08 (1Kbyte) chip look like four 256 byte chips.
657 *
658 * Note that we consider the length of the address field to still
659 * be one byte because the extra address bits are hidden in the
660 * chip address.
661 */
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000662 chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
wdenk62219a22002-10-02 20:40:41 +0000663#endif
664
665 i2c_newio(&state);
666
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000667 rc = i2c_send(&state, chip, 0, I2CF_START_COND, alen,
668 &xaddr[4 - alen]);
wdenk62219a22002-10-02 20:40:41 +0000669 if (rc != 0) {
Graeme Russ70600b02011-08-29 02:14:05 +0000670 printf("i2c_write: first i2c_send failed (%d)\n", rc);
wdenk62219a22002-10-02 20:40:41 +0000671 return 1;
672 }
673
674 rc = i2c_send(&state, 0, 0, I2CF_STOP_COND, len, buffer);
675 if (rc != 0) {
Graeme Russ70600b02011-08-29 02:14:05 +0000676 printf("i2c_write: second i2c_send failed (%d)\n", rc);
wdenk62219a22002-10-02 20:40:41 +0000677 return 1;
678 }
679
680 rc = i2c_doio(&state);
681 if (rc != 0) {
Graeme Russ70600b02011-08-29 02:14:05 +0000682 printf("i2c_write: i2c_doio failed (%d)\n", rc);
wdenk62219a22002-10-02 20:40:41 +0000683 return 1;
684 }
685 return 0;
686}
687
Wolfgang Denkd0344a42011-11-04 15:55:36 +0000688#endif /* CONFIG_HARD_I2C */