1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <common.h>
15#include <console.h>
16
17#ifdef CONFIG_HARD_I2C
18
19#include <commproc.h>
20#include <i2c.h>
21
22DECLARE_GLOBAL_DATA_PTR;
23
24
25#define TOUT_LOOP 1000000
26
27#define NUM_RX_BDS 4
28#define NUM_TX_BDS 4
29#define MAX_TX_SPACE 256
30#define I2C_RXTX_LEN 128
31
32typedef struct I2C_BD {
33 unsigned short status;
34 unsigned short length;
35 unsigned char *addr;
36} I2C_BD;
37
38#define BD_I2C_TX_START 0x0400
39
40#define BD_I2C_TX_CL 0x0001
41#define BD_I2C_TX_UN 0x0002
42#define BD_I2C_TX_NAK 0x0004
43#define BD_I2C_TX_ERR (BD_I2C_TX_NAK|BD_I2C_TX_UN|BD_I2C_TX_CL)
44
45#define BD_I2C_RX_ERR BD_SC_OV
46
47typedef void (*i2c_ecb_t) (int, int);
48
49
50typedef struct i2c_state {
51 int rx_idx;
52 int tx_idx;
53 void *rxbd;
54 void *txbd;
55 int tx_space;
56 unsigned char *tx_buf;
57 i2c_ecb_t err_cb;
58} i2c_state_t;
59
60
61
62#define I2CF_ENABLE_SECONDARY 0x01
63#define I2CF_START_COND 0x02
64#define I2CF_STOP_COND 0x04
65
66
67#define I2CERR_NO_BUFFERS 0x01
68#define I2CERR_MSG_TOO_LONG 0x02
69#define I2CERR_TIMEOUT 0x03
70#define I2CERR_QUEUE_EMPTY 0x04
71
72
73#define I2CECB_RX_ERR 0x10
74#define I2CECB_RX_ERR_OV 0x02
75#define I2CECB_RX_MASK 0x0f
76#define I2CECB_TX_ERR 0x20
77#define I2CECB_TX_CL 0x01
78#define I2CECB_TX_UN 0x02
79#define I2CECB_TX_NAK 0x04
80#define I2CECB_TX_MASK 0x0f
81#define I2CECB_TIMEOUT 0x40
82
83
84
85
86
87
88
89static inline int
90i2c_roundrate(int hz, int speed, int filter, int modval,
91 int *brgval, int *totspeed)
92{
93 int moddiv = 1 << (5 - (modval & 3)), brgdiv, div;
94
95 debug("\t[I2C] trying hz=%d, speed=%d, filter=%d, modval=%d\n",
96 hz, speed, filter, modval);
97
98 div = moddiv * speed;
99 brgdiv = (hz + div - 1) / div;
100
101 debug("\t\tmoddiv=%d, brgdiv=%d\n", moddiv, brgdiv);
102
103 *brgval = ((brgdiv + 1) / 2) - 3 - (2 * filter);
104
105 if ((*brgval < 0) || (*brgval > 255)) {
106 debug("\t\trejected brgval=%d\n", *brgval);
107 return -1;
108 }
109
110 brgdiv = 2 * (*brgval + 3 + (2 * filter));
111 div = moddiv * brgdiv;
112 *totspeed = hz / div;
113
114 debug("\t\taccepted brgval=%d, totspeed=%d\n", *brgval, *totspeed);
115
116 return 0;
117}
118
119
120
121
122static int i2c_setrate(int hz, int speed)
123{
124 immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
125 volatile i2c8xx_t *i2c = (i2c8xx_t *) & immap->im_i2c;
126 int brgval,
127 modval,
128 bestspeed_diff = speed,
129 bestspeed_brgval = 0,
130 bestspeed_modval = 0,
131 bestspeed_filter = 0,
132 totspeed,
133 filter = 0;
134
135 for (modval = 0; modval < 4; modval++) {
136 if (i2c_roundrate
137 (hz, speed, filter, modval, &brgval, &totspeed) == 0) {
138 int diff = speed - totspeed;
139
140 if ((diff >= 0) && (diff < bestspeed_diff)) {
141 bestspeed_diff = diff;
142 bestspeed_modval = modval;
143 bestspeed_brgval = brgval;
144 bestspeed_filter = filter;
145 }
146 }
147 }
148
149 debug("[I2C] Best is:\n");
150 debug("[I2C] CPU=%dhz RATE=%d F=%d I2MOD=%08x I2BRG=%08x DIFF=%dhz\n",
151 hz,
152 speed,
153 bestspeed_filter,
154 bestspeed_modval,
155 bestspeed_brgval,
156 bestspeed_diff);
157
158 i2c->i2c_i2mod |=
159 ((bestspeed_modval & 3) << 1) | (bestspeed_filter << 3);
160 i2c->i2c_i2brg = bestspeed_brgval & 0xff;
161
162 debug("[I2C] i2mod=%08x i2brg=%08x\n",
163 i2c->i2c_i2mod,
164 i2c->i2c_i2brg);
165
166 return 1;
167}
168
169void i2c_init(int speed, int slaveaddr)
170{
171 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
172 volatile cpm8xx_t *cp = (cpm8xx_t *)&immap->im_cpm;
173 volatile i2c8xx_t *i2c = (i2c8xx_t *)&immap->im_i2c;
174 volatile iic_t *iip = (iic_t *)&cp->cp_dparam[PROFF_IIC];
175 ulong rbase, tbase;
176 volatile I2C_BD *rxbd, *txbd;
177 uint dpaddr;
178
179#ifdef CONFIG_SYS_I2C_INIT_BOARD
180
181
182
183 i2c_init_board();
184#endif
185
186#ifdef CONFIG_SYS_I2C_UCODE_PATCH
187 iip = (iic_t *)&cp->cp_dpmem[iip->iic_rpbase];
188#else
189
190 iip->iic_rpbase = 0;
191#endif
192
193 dpaddr = CPM_I2C_BASE;
194
195
196
197
198
199
200
201
202
203 rbase = dpaddr;
204 tbase = rbase + NUM_RX_BDS * sizeof(I2C_BD);
205
206
207 cp->cp_pbpar |= 0x00000030;
208 cp->cp_pbdir |= 0x00000030;
209 cp->cp_pbodr |= 0x00000030;
210
211
212 i2c->i2c_i2mod = 0x00;
213 i2c->i2c_i2cmr = 0x00;
214 i2c->i2c_i2cer = 0xff;
215 i2c->i2c_i2add = slaveaddr;
216
217
218
219
220
221
222 debug("[I2C] Setting rate...\n");
223 i2c_setrate(gd->cpu_clk, CONFIG_SYS_I2C_SPEED);
224
225
226 i2c->i2c_i2com = 0x01;
227
228
229 immap->im_siu_conf.sc_sdcr = 0x0001;
230
231
232 iip->iic_rbase = rbase;
233 iip->iic_tbase = tbase;
234 rxbd = (I2C_BD *) ((unsigned char *) &cp->cp_dpmem[iip->iic_rbase]);
235 txbd = (I2C_BD *) ((unsigned char *) &cp->cp_dpmem[iip->iic_tbase]);
236
237 debug("[I2C] rbase = %04x\n", iip->iic_rbase);
238 debug("[I2C] tbase = %04x\n", iip->iic_tbase);
239 debug("[I2C] rxbd = %08x\n", (int)rxbd);
240 debug("[I2C] txbd = %08x\n", (int)txbd);
241
242
243 iip->iic_tfcr = 0x10;
244 iip->iic_rfcr = 0x10;
245
246
247 iip->iic_mrblr = I2C_RXTX_LEN;
248
249#ifdef CONFIG_SYS_I2C_UCODE_PATCH
250
251
252
253 iip->iic_rbptr = iip->iic_rbase;
254 iip->iic_tbptr = iip->iic_tbase;
255 iip->iic_rstate = 0;
256 iip->iic_tstate = 0;
257#else
258 cp->cp_cpcr = mk_cr_cmd(CPM_CR_CH_I2C, CPM_CR_INIT_TRX) | CPM_CR_FLG;
259 do {
260 __asm__ __volatile__("eieio");
261 } while (cp->cp_cpcr & CPM_CR_FLG);
262#endif
263
264
265 i2c->i2c_i2cer = 0xff;
266 i2c->i2c_i2cmr = 0x00;
267}
268
269static void i2c_newio(i2c_state_t *state)
270{
271 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
272 volatile cpm8xx_t *cp = (cpm8xx_t *)&immap->im_cpm;
273 volatile iic_t *iip = (iic_t *)&cp->cp_dparam[PROFF_IIC];
274
275 debug("[I2C] i2c_newio\n");
276
277#ifdef CONFIG_SYS_I2C_UCODE_PATCH
278 iip = (iic_t *)&cp->cp_dpmem[iip->iic_rpbase];
279#endif
280 state->rx_idx = 0;
281 state->tx_idx = 0;
282 state->rxbd = (void *)&cp->cp_dpmem[iip->iic_rbase];
283 state->txbd = (void *)&cp->cp_dpmem[iip->iic_tbase];
284 state->tx_space = MAX_TX_SPACE;
285 state->tx_buf = (uchar *)state->txbd + NUM_TX_BDS * sizeof(I2C_BD);
286 state->err_cb = NULL;
287
288 debug("[I2C] rxbd = %08x\n", (int)state->rxbd);
289 debug("[I2C] txbd = %08x\n", (int)state->txbd);
290 debug("[I2C] tx_buf = %08x\n", (int)state->tx_buf);
291
292
293 memset((char *)state->tx_buf, 0, MAX_TX_SPACE);
294}
295
296static int
297i2c_send(i2c_state_t *state,
298 unsigned char address,
299 unsigned char secondary_address,
300 unsigned int flags, unsigned short size, unsigned char *dataout)
301{
302 volatile I2C_BD *txbd;
303 int i, j;
304
305 debug("[I2C] i2c_send add=%02d sec=%02d flag=%02d size=%d\n",
306 address, secondary_address, flags, size);
307
308
309 if (size > I2C_RXTX_LEN)
310 return I2CERR_MSG_TOO_LONG;
311
312
313 if (state->tx_idx >= NUM_TX_BDS || state->tx_space < (2 + size))
314 return I2CERR_NO_BUFFERS;
315
316 txbd = (I2C_BD *) state->txbd;
317 txbd->addr = state->tx_buf;
318
319 debug("[I2C] txbd = %08x\n", (int)txbd);
320
321 if (flags & I2CF_START_COND) {
322 debug("[I2C] Formatting addresses...\n");
323 if (flags & I2CF_ENABLE_SECONDARY) {
324
325 txbd->length = size + 2;
326
327 txbd->addr[0] = address << 1;
328 txbd->addr[1] = secondary_address;
329 i = 2;
330 } else {
331
332 txbd->length = size + 1;
333
334 txbd->addr[0] = address << 1;
335 i = 1;
336 }
337 } else {
338 txbd->length = size;
339 i = 0;
340 }
341
342
343 txbd->status = BD_SC_READY;
344 if (flags & I2CF_START_COND)
345 txbd->status |= BD_I2C_TX_START;
346 if (flags & I2CF_STOP_COND)
347 txbd->status |= BD_SC_LAST | BD_SC_WRAP;
348
349
350 debug("[I2C] copy data...\n");
351 for(j = 0; j < size; i++, j++)
352 txbd->addr[i] = dataout[j];
353
354 debug("[I2C] txbd: length=0x%04x status=0x%04x addr[0]=0x%02x addr[1]=0x%02x\n",
355 txbd->length,
356 txbd->status,
357 txbd->addr[0],
358 txbd->addr[1]);
359
360
361 state->tx_buf += txbd->length;
362 state->tx_space -= txbd->length;
363 state->tx_idx++;
364 state->txbd = (void *) (txbd + 1);
365
366 return 0;
367}
368
369static int
370i2c_receive(i2c_state_t *state,
371 unsigned char address,
372 unsigned char secondary_address,
373 unsigned int flags,
374 unsigned short size_to_expect, unsigned char *datain)
375{
376 volatile I2C_BD *rxbd, *txbd;
377
378 debug("[I2C] i2c_receive %02d %02d %02d\n",
379 address, secondary_address, flags);
380
381
382 if (size_to_expect > I2C_RXTX_LEN)
383 return I2CERR_MSG_TOO_LONG;
384
385
386 if (state->tx_idx >= NUM_TX_BDS || state->rx_idx >= NUM_RX_BDS
387 || state->tx_space < 2)
388 return I2CERR_NO_BUFFERS;
389
390 rxbd = (I2C_BD *) state->rxbd;
391 txbd = (I2C_BD *) state->txbd;
392
393 debug("[I2C] rxbd = %08x\n", (int)rxbd);
394 debug("[I2C] txbd = %08x\n", (int)txbd);
395
396 txbd->addr = state->tx_buf;
397
398
399 if (flags & I2CF_ENABLE_SECONDARY) {
400 txbd->length = 2;
401 txbd->addr[0] = address << 1;
402 txbd->addr[1] = secondary_address;
403 txbd->status = BD_SC_READY;
404 } else {
405 txbd->length = 1 + size_to_expect;
406 txbd->addr[0] = (address << 1) | 0x01;
407 txbd->status = BD_SC_READY;
408 memset(&txbd->addr[1], 0, txbd->length);
409 }
410
411
412 rxbd->status = BD_SC_EMPTY;
413 rxbd->length = size_to_expect;
414 rxbd->addr = datain;
415
416 txbd->status |= BD_I2C_TX_START;
417 if (flags & I2CF_STOP_COND) {
418 txbd->status |= BD_SC_LAST | BD_SC_WRAP;
419 rxbd->status |= BD_SC_WRAP;
420 }
421
422 debug("[I2C] txbd: length=0x%04x status=0x%04x addr[0]=0x%02x addr[1]=0x%02x\n",
423 txbd->length,
424 txbd->status,
425 txbd->addr[0],
426 txbd->addr[1]);
427 debug("[I2C] rxbd: length=0x%04x status=0x%04x addr[0]=0x%02x addr[1]=0x%02x\n",
428 rxbd->length,
429 rxbd->status,
430 rxbd->addr[0],
431 rxbd->addr[1]);
432
433
434 state->tx_buf += txbd->length;
435 state->tx_space -= txbd->length;
436 state->tx_idx++;
437 state->txbd = (void *) (txbd + 1);
438 state->rx_idx++;
439 state->rxbd = (void *) (rxbd + 1);
440
441 return 0;
442}
443
444
445static int i2c_doio(i2c_state_t *state)
446{
447 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
448 volatile cpm8xx_t *cp = (cpm8xx_t *)&immap->im_cpm;
449 volatile i2c8xx_t *i2c = (i2c8xx_t *)&immap->im_i2c;
450 volatile iic_t *iip = (iic_t *)&cp->cp_dparam[PROFF_IIC];
451 volatile I2C_BD *txbd, *rxbd;
452 volatile int j = 0;
453
454 debug("[I2C] i2c_doio\n");
455
456#ifdef CONFIG_SYS_I2C_UCODE_PATCH
457 iip = (iic_t *)&cp->cp_dpmem[iip->iic_rpbase];
458#endif
459
460 if (state->tx_idx <= 0 && state->rx_idx <= 0) {
461 debug("[I2C] No I/O is queued\n");
462 return I2CERR_QUEUE_EMPTY;
463 }
464
465 iip->iic_rbptr = iip->iic_rbase;
466 iip->iic_tbptr = iip->iic_tbase;
467
468
469 debug("[I2C] Enabling I2C...\n");
470 i2c->i2c_i2mod |= 0x01;
471
472
473 i2c->i2c_i2com |= 0x80;
474
475
476
477 if (state->tx_idx > 0) {
478 txbd = ((I2C_BD*)state->txbd) - 1;
479
480 debug("[I2C] Transmitting...(txbd=0x%08lx)\n",
481 (ulong)txbd);
482
483 while ((txbd->status & BD_SC_READY) && (j++ < TOUT_LOOP)) {
484 if (ctrlc())
485 return (-1);
486
487 __asm__ __volatile__("eieio");
488 }
489 }
490
491 if ((state->rx_idx > 0) && (j < TOUT_LOOP)) {
492 rxbd = ((I2C_BD*)state->rxbd) - 1;
493
494 debug("[I2C] Receiving...(rxbd=0x%08lx)\n",
495 (ulong)rxbd);
496
497 while ((rxbd->status & BD_SC_EMPTY) && (j++ < TOUT_LOOP)) {
498 if (ctrlc())
499 return (-1);
500
501 __asm__ __volatile__("eieio");
502 }
503 }
504
505
506 i2c->i2c_i2mod &= ~0x01;
507
508 if (state->err_cb != NULL) {
509 int n, i, b;
510
511
512
513
514
515
516 if ((n = state->tx_idx) > 0) {
517 for (i = 0; i < n; i++) {
518 txbd = ((I2C_BD *) state->txbd) - (n - i);
519 if ((b = txbd->status & BD_I2C_TX_ERR) != 0)
520 (*state->err_cb) (I2CECB_TX_ERR | b,
521 i);
522 }
523 }
524
525 if ((n = state->rx_idx) > 0) {
526 for (i = 0; i < n; i++) {
527 rxbd = ((I2C_BD *) state->rxbd) - (n - i);
528 if ((b = rxbd->status & BD_I2C_RX_ERR) != 0)
529 (*state->err_cb) (I2CECB_RX_ERR | b,
530 i);
531 }
532 }
533
534 if (j >= TOUT_LOOP)
535 (*state->err_cb) (I2CECB_TIMEOUT, 0);
536 }
537
538 return (j >= TOUT_LOOP) ? I2CERR_TIMEOUT : 0;
539}
540
541static int had_tx_nak;
542
543static void i2c_test_callback(int flags, int xnum)
544{
545 if ((flags & I2CECB_TX_ERR) && (flags & I2CECB_TX_NAK))
546 had_tx_nak = 1;
547}
548
549int i2c_probe(uchar chip)
550{
551 i2c_state_t state;
552 int rc;
553 uchar buf[1];
554
555 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
556
557 i2c_newio(&state);
558
559 state.err_cb = i2c_test_callback;
560 had_tx_nak = 0;
561
562 rc = i2c_receive(&state, chip, 0, I2CF_START_COND | I2CF_STOP_COND, 1,
563 buf);
564
565 if (rc != 0)
566 return (rc);
567
568 rc = i2c_doio(&state);
569
570 if ((rc != 0) && (rc != I2CERR_TIMEOUT))
571 return (rc);
572
573 return (had_tx_nak);
574}
575
576int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len)
577{
578 i2c_state_t state;
579 uchar xaddr[4];
580 int rc;
581
582 xaddr[0] = (addr >> 24) & 0xFF;
583 xaddr[1] = (addr >> 16) & 0xFF;
584 xaddr[2] = (addr >> 8) & 0xFF;
585 xaddr[3] = addr & 0xFF;
586
587#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
588
589
590
591
592
593
594
595
596
597
598 chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
599#endif
600
601 i2c_newio(&state);
602
603 rc = i2c_send(&state, chip, 0, I2CF_START_COND, alen,
604 &xaddr[4 - alen]);
605 if (rc != 0) {
606 printf("i2c_read: i2c_send failed (%d)\n", rc);
607 return 1;
608 }
609
610 rc = i2c_receive(&state, chip, 0, I2CF_STOP_COND, len, buffer);
611 if (rc != 0) {
612 printf("i2c_read: i2c_receive failed (%d)\n", rc);
613 return 1;
614 }
615
616 rc = i2c_doio(&state);
617 if (rc != 0) {
618 printf("i2c_read: i2c_doio failed (%d)\n", rc);
619 return 1;
620 }
621 return 0;
622}
623
624int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len)
625{
626 i2c_state_t state;
627 uchar xaddr[4];
628 int rc;
629
630 xaddr[0] = (addr >> 24) & 0xFF;
631 xaddr[1] = (addr >> 16) & 0xFF;
632 xaddr[2] = (addr >> 8) & 0xFF;
633 xaddr[3] = addr & 0xFF;
634
635#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
636
637
638
639
640
641
642
643
644
645
646 chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
647#endif
648
649 i2c_newio(&state);
650
651 rc = i2c_send(&state, chip, 0, I2CF_START_COND, alen,
652 &xaddr[4 - alen]);
653 if (rc != 0) {
654 printf("i2c_write: first i2c_send failed (%d)\n", rc);
655 return 1;
656 }
657
658 rc = i2c_send(&state, 0, 0, I2CF_STOP_COND, len, buffer);
659 if (rc != 0) {
660 printf("i2c_write: second i2c_send failed (%d)\n", rc);
661 return 1;
662 }
663
664 rc = i2c_doio(&state);
665 if (rc != 0) {
666 printf("i2c_write: i2c_doio failed (%d)\n", rc);
667 return 1;
668 }
669 return 0;
670}
671
672#endif
673