]> git.sur5r.net Git - u-boot/blob - common/cmd_i2c.c
smc911x: update SMC911X related configuration description
[u-boot] / common / cmd_i2c.c
1 /*
2  * (C) Copyright 2001
3  * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 /*
25  * I2C Functions similar to the standard memory functions.
26  *
27  * There are several parameters in many of the commands that bear further
28  * explanations:
29  *
30  * {i2c_chip} is the I2C chip address (the first byte sent on the bus).
31  *   Each I2C chip on the bus has a unique address.  On the I2C data bus,
32  *   the address is the upper seven bits and the LSB is the "read/write"
33  *   bit.  Note that the {i2c_chip} address specified on the command
34  *   line is not shifted up: e.g. a typical EEPROM memory chip may have
35  *   an I2C address of 0x50, but the data put on the bus will be 0xA0
36  *   for write and 0xA1 for read.  This "non shifted" address notation
37  *   matches at least half of the data sheets :-/.
38  *
39  * {addr} is the address (or offset) within the chip.  Small memory
40  *   chips have 8 bit addresses.  Large memory chips have 16 bit
41  *   addresses.  Other memory chips have 9, 10, or 11 bit addresses.
42  *   Many non-memory chips have multiple registers and {addr} is used
43  *   as the register index.  Some non-memory chips have only one register
44  *   and therefore don't need any {addr} parameter.
45  *
46  *   The default {addr} parameter is one byte (.1) which works well for
47  *   memories and registers with 8 bits of address space.
48  *
49  *   You can specify the length of the {addr} field with the optional .0,
50  *   .1, or .2 modifier (similar to the .b, .w, .l modifier).  If you are
51  *   manipulating a single register device which doesn't use an address
52  *   field, use "0.0" for the address and the ".0" length field will
53  *   suppress the address in the I2C data stream.  This also works for
54  *   successive reads using the I2C auto-incrementing memory pointer.
55  *
56  *   If you are manipulating a large memory with 2-byte addresses, use
57  *   the .2 address modifier, e.g. 210.2 addresses location 528 (decimal).
58  *
59  *   Then there are the unfortunate memory chips that spill the most
60  *   significant 1, 2, or 3 bits of address into the chip address byte.
61  *   This effectively makes one chip (logically) look like 2, 4, or
62  *   8 chips.  This is handled (awkwardly) by #defining
63  *   CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW and using the .1 modifier on the
64  *   {addr} field (since .1 is the default, it doesn't actually have to
65  *   be specified).  Examples: given a memory chip at I2C chip address
66  *   0x50, the following would happen...
67  *     i2c md 50 0 10   display 16 bytes starting at 0x000
68  *                      On the bus: <S> A0 00 <E> <S> A1 <rd> ... <rd>
69  *     i2c md 50 100 10 display 16 bytes starting at 0x100
70  *                      On the bus: <S> A2 00 <E> <S> A3 <rd> ... <rd>
71  *     i2c md 50 210 10 display 16 bytes starting at 0x210
72  *                      On the bus: <S> A4 10 <E> <S> A5 <rd> ... <rd>
73  *   This is awfully ugly.  It would be nice if someone would think up
74  *   a better way of handling this.
75  *
76  * Adapted from cmd_mem.c which is copyright Wolfgang Denk (wd@denx.de).
77  */
78
79 #include <common.h>
80 #include <command.h>
81 #include <environment.h>
82 #include <i2c.h>
83 #include <malloc.h>
84 #include <asm/byteorder.h>
85
86 /* Display values from last command.
87  * Memory modify remembered values are different from display memory.
88  */
89 static uchar    i2c_dp_last_chip;
90 static uint     i2c_dp_last_addr;
91 static uint     i2c_dp_last_alen;
92 static uint     i2c_dp_last_length = 0x10;
93
94 static uchar    i2c_mm_last_chip;
95 static uint     i2c_mm_last_addr;
96 static uint     i2c_mm_last_alen;
97
98 /* If only one I2C bus is present, the list of devices to ignore when
99  * the probe command is issued is represented by a 1D array of addresses.
100  * When multiple buses are present, the list is an array of bus-address
101  * pairs.  The following macros take care of this */
102
103 #if defined(CONFIG_SYS_I2C_NOPROBES)
104 #if defined(CONFIG_I2C_MULTI_BUS)
105 static struct
106 {
107         uchar   bus;
108         uchar   addr;
109 } i2c_no_probes[] = CONFIG_SYS_I2C_NOPROBES;
110 #define GET_BUS_NUM     i2c_get_bus_num()
111 #define COMPARE_BUS(b,i)        (i2c_no_probes[(i)].bus == (b))
112 #define COMPARE_ADDR(a,i)       (i2c_no_probes[(i)].addr == (a))
113 #define NO_PROBE_ADDR(i)        i2c_no_probes[(i)].addr
114 #else           /* single bus */
115 static uchar i2c_no_probes[] = CONFIG_SYS_I2C_NOPROBES;
116 #define GET_BUS_NUM     0
117 #define COMPARE_BUS(b,i)        ((b) == 0)      /* Make compiler happy */
118 #define COMPARE_ADDR(a,i)       (i2c_no_probes[(i)] == (a))
119 #define NO_PROBE_ADDR(i)        i2c_no_probes[(i)]
120 #endif  /* CONFIG_MULTI_BUS */
121
122 #define NUM_ELEMENTS_NOPROBE (sizeof(i2c_no_probes)/sizeof(i2c_no_probes[0]))
123 #endif
124
125 #if defined(CONFIG_I2C_MUX)
126 static I2C_MUX_DEVICE   *i2c_mux_devices = NULL;
127 static  int     i2c_mux_busid = CONFIG_SYS_MAX_I2C_BUS;
128
129 DECLARE_GLOBAL_DATA_PTR;
130
131 #endif
132
133 /* TODO: Implement architecture-specific get/set functions */
134 unsigned int __def_i2c_get_bus_speed(void)
135 {
136         return CONFIG_SYS_I2C_SPEED;
137 }
138 unsigned int i2c_get_bus_speed(void)
139         __attribute__((weak, alias("__def_i2c_get_bus_speed")));
140
141 int __def_i2c_set_bus_speed(unsigned int speed)
142 {
143         if (speed != CONFIG_SYS_I2C_SPEED)
144                 return -1;
145
146         return 0;
147 }
148 int i2c_set_bus_speed(unsigned int)
149         __attribute__((weak, alias("__def_i2c_set_bus_speed")));
150
151 /*
152  * Syntax:
153  *      i2c md {i2c_chip} {addr}{.0, .1, .2} {len}
154  */
155 #define DISP_LINE_LEN   16
156
157 int do_i2c_md ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
158 {
159         u_char  chip;
160         uint    addr, alen, length;
161         int     j, nbytes, linebytes;
162
163         /* We use the last specified parameters, unless new ones are
164          * entered.
165          */
166         chip   = i2c_dp_last_chip;
167         addr   = i2c_dp_last_addr;
168         alen   = i2c_dp_last_alen;
169         length = i2c_dp_last_length;
170
171         if (argc < 3) {
172                 cmd_usage(cmdtp);
173                 return 1;
174         }
175
176         if ((flag & CMD_FLAG_REPEAT) == 0) {
177                 /*
178                  * New command specified.
179                  */
180                 alen = 1;
181
182                 /*
183                  * I2C chip address
184                  */
185                 chip = simple_strtoul(argv[1], NULL, 16);
186
187                 /*
188                  * I2C data address within the chip.  This can be 1 or
189                  * 2 bytes long.  Some day it might be 3 bytes long :-).
190                  */
191                 addr = simple_strtoul(argv[2], NULL, 16);
192                 alen = 1;
193                 for (j = 0; j < 8; j++) {
194                         if (argv[2][j] == '.') {
195                                 alen = argv[2][j+1] - '0';
196                                 if (alen > 4) {
197                                         cmd_usage(cmdtp);
198                                         return 1;
199                                 }
200                                 break;
201                         } else if (argv[2][j] == '\0')
202                                 break;
203                 }
204
205                 /*
206                  * If another parameter, it is the length to display.
207                  * Length is the number of objects, not number of bytes.
208                  */
209                 if (argc > 3)
210                         length = simple_strtoul(argv[3], NULL, 16);
211         }
212
213         /*
214          * Print the lines.
215          *
216          * We buffer all read data, so we can make sure data is read only
217          * once.
218          */
219         nbytes = length;
220         do {
221                 unsigned char   linebuf[DISP_LINE_LEN];
222                 unsigned char   *cp;
223
224                 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
225
226                 if (i2c_read(chip, addr, alen, linebuf, linebytes) != 0)
227                         puts ("Error reading the chip.\n");
228                 else {
229                         printf("%04x:", addr);
230                         cp = linebuf;
231                         for (j=0; j<linebytes; j++) {
232                                 printf(" %02x", *cp++);
233                                 addr++;
234                         }
235                         puts ("    ");
236                         cp = linebuf;
237                         for (j=0; j<linebytes; j++) {
238                                 if ((*cp < 0x20) || (*cp > 0x7e))
239                                         puts (".");
240                                 else
241                                         printf("%c", *cp);
242                                 cp++;
243                         }
244                         putc ('\n');
245                 }
246                 nbytes -= linebytes;
247         } while (nbytes > 0);
248
249         i2c_dp_last_chip   = chip;
250         i2c_dp_last_addr   = addr;
251         i2c_dp_last_alen   = alen;
252         i2c_dp_last_length = length;
253
254         return 0;
255 }
256
257
258 /* Write (fill) memory
259  *
260  * Syntax:
261  *      i2c mw {i2c_chip} {addr}{.0, .1, .2} {data} [{count}]
262  */
263 int do_i2c_mw ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
264 {
265         uchar   chip;
266         ulong   addr;
267         uint    alen;
268         uchar   byte;
269         int     count;
270         int     j;
271
272         if ((argc < 4) || (argc > 5)) {
273                 cmd_usage(cmdtp);
274                 return 1;
275         }
276
277         /*
278          * Chip is always specified.
279          */
280         chip = simple_strtoul(argv[1], NULL, 16);
281
282         /*
283          * Address is always specified.
284          */
285         addr = simple_strtoul(argv[2], NULL, 16);
286         alen = 1;
287         for (j = 0; j < 8; j++) {
288                 if (argv[2][j] == '.') {
289                         alen = argv[2][j+1] - '0';
290                         if (alen > 4) {
291                                 cmd_usage(cmdtp);
292                                 return 1;
293                         }
294                         break;
295                 } else if (argv[2][j] == '\0')
296                         break;
297         }
298
299         /*
300          * Value to write is always specified.
301          */
302         byte = simple_strtoul(argv[3], NULL, 16);
303
304         /*
305          * Optional count
306          */
307         if (argc == 5)
308                 count = simple_strtoul(argv[4], NULL, 16);
309         else
310                 count = 1;
311
312         while (count-- > 0) {
313                 if (i2c_write(chip, addr++, alen, &byte, 1) != 0)
314                         puts ("Error writing the chip.\n");
315                 /*
316                  * Wait for the write to complete.  The write can take
317                  * up to 10mSec (we allow a little more time).
318                  *
319                  * On some chips, while the write is in progress, the
320                  * chip doesn't respond.  This apparently isn't a
321                  * universal feature so we don't take advantage of it.
322                  */
323 /*
324  * No write delay with FRAM devices.
325  */
326 #if !defined(CONFIG_SYS_I2C_FRAM)
327                 udelay(11000);
328 #endif
329         }
330
331         return (0);
332 }
333
334 /* Calculate a CRC on memory
335  *
336  * Syntax:
337  *      i2c crc32 {i2c_chip} {addr}{.0, .1, .2} {count}
338  */
339 int do_i2c_crc (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
340 {
341         uchar   chip;
342         ulong   addr;
343         uint    alen;
344         int     count;
345         uchar   byte;
346         ulong   crc;
347         ulong   err;
348         int     j;
349
350         if (argc < 4) {
351                 cmd_usage(cmdtp);
352                 return 1;
353         }
354
355         /*
356          * Chip is always specified.
357          */
358         chip = simple_strtoul(argv[1], NULL, 16);
359
360         /*
361          * Address is always specified.
362          */
363         addr = simple_strtoul(argv[2], NULL, 16);
364         alen = 1;
365         for (j = 0; j < 8; j++) {
366                 if (argv[2][j] == '.') {
367                         alen = argv[2][j+1] - '0';
368                         if (alen > 4) {
369                                 cmd_usage(cmdtp);
370                                 return 1;
371                         }
372                         break;
373                 } else if (argv[2][j] == '\0')
374                         break;
375         }
376
377         /*
378          * Count is always specified
379          */
380         count = simple_strtoul(argv[3], NULL, 16);
381
382         printf ("CRC32 for %08lx ... %08lx ==> ", addr, addr + count - 1);
383         /*
384          * CRC a byte at a time.  This is going to be slooow, but hey, the
385          * memories are small and slow too so hopefully nobody notices.
386          */
387         crc = 0;
388         err = 0;
389         while (count-- > 0) {
390                 if (i2c_read(chip, addr, alen, &byte, 1) != 0)
391                         err++;
392                 crc = crc32 (crc, &byte, 1);
393                 addr++;
394         }
395         if (err > 0)
396                 puts ("Error reading the chip,\n");
397         else
398                 printf ("%08lx\n", crc);
399
400         return 0;
401 }
402
403 /* Modify memory.
404  *
405  * Syntax:
406  *      i2c mm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
407  *      i2c nm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
408  */
409
410 static int
411 mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char *argv[])
412 {
413         uchar   chip;
414         ulong   addr;
415         uint    alen;
416         ulong   data;
417         int     size = 1;
418         int     nbytes;
419         int     j;
420         extern char console_buffer[];
421
422         if (argc != 3) {
423                 cmd_usage(cmdtp);
424                 return 1;
425         }
426
427 #ifdef CONFIG_BOOT_RETRY_TIME
428         reset_cmd_timeout();    /* got a good command to get here */
429 #endif
430         /*
431          * We use the last specified parameters, unless new ones are
432          * entered.
433          */
434         chip = i2c_mm_last_chip;
435         addr = i2c_mm_last_addr;
436         alen = i2c_mm_last_alen;
437
438         if ((flag & CMD_FLAG_REPEAT) == 0) {
439                 /*
440                  * New command specified.  Check for a size specification.
441                  * Defaults to byte if no or incorrect specification.
442                  */
443                 size = cmd_get_data_size(argv[0], 1);
444
445                 /*
446                  * Chip is always specified.
447                  */
448                 chip = simple_strtoul(argv[1], NULL, 16);
449
450                 /*
451                  * Address is always specified.
452                  */
453                 addr = simple_strtoul(argv[2], NULL, 16);
454                 alen = 1;
455                 for (j = 0; j < 8; j++) {
456                         if (argv[2][j] == '.') {
457                                 alen = argv[2][j+1] - '0';
458                                 if (alen > 4) {
459                                         cmd_usage(cmdtp);
460                                         return 1;
461                                 }
462                                 break;
463                         } else if (argv[2][j] == '\0')
464                                 break;
465                 }
466         }
467
468         /*
469          * Print the address, followed by value.  Then accept input for
470          * the next value.  A non-converted value exits.
471          */
472         do {
473                 printf("%08lx:", addr);
474                 if (i2c_read(chip, addr, alen, (uchar *)&data, size) != 0)
475                         puts ("\nError reading the chip,\n");
476                 else {
477                         data = cpu_to_be32(data);
478                         if (size == 1)
479                                 printf(" %02lx", (data >> 24) & 0x000000FF);
480                         else if (size == 2)
481                                 printf(" %04lx", (data >> 16) & 0x0000FFFF);
482                         else
483                                 printf(" %08lx", data);
484                 }
485
486                 nbytes = readline (" ? ");
487                 if (nbytes == 0) {
488                         /*
489                          * <CR> pressed as only input, don't modify current
490                          * location and move to next.
491                          */
492                         if (incrflag)
493                                 addr += size;
494                         nbytes = size;
495 #ifdef CONFIG_BOOT_RETRY_TIME
496                         reset_cmd_timeout(); /* good enough to not time out */
497 #endif
498                 }
499 #ifdef CONFIG_BOOT_RETRY_TIME
500                 else if (nbytes == -2)
501                         break;  /* timed out, exit the command  */
502 #endif
503                 else {
504                         char *endp;
505
506                         data = simple_strtoul(console_buffer, &endp, 16);
507                         if (size == 1)
508                                 data = data << 24;
509                         else if (size == 2)
510                                 data = data << 16;
511                         data = be32_to_cpu(data);
512                         nbytes = endp - console_buffer;
513                         if (nbytes) {
514 #ifdef CONFIG_BOOT_RETRY_TIME
515                                 /*
516                                  * good enough to not time out
517                                  */
518                                 reset_cmd_timeout();
519 #endif
520                                 if (i2c_write(chip, addr, alen, (uchar *)&data, size) != 0)
521                                         puts ("Error writing the chip.\n");
522 #ifdef CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
523                                 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
524 #endif
525                                 if (incrflag)
526                                         addr += size;
527                         }
528                 }
529         } while (nbytes);
530
531         i2c_mm_last_chip = chip;
532         i2c_mm_last_addr = addr;
533         i2c_mm_last_alen = alen;
534
535         return 0;
536 }
537
538 /*
539  * Syntax:
540  *      i2c probe {addr}{.0, .1, .2}
541  */
542 int do_i2c_probe (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
543 {
544         int j;
545 #if defined(CONFIG_SYS_I2C_NOPROBES)
546         int k, skip;
547         uchar bus = GET_BUS_NUM;
548 #endif  /* NOPROBES */
549
550         puts ("Valid chip addresses:");
551         for (j = 0; j < 128; j++) {
552 #if defined(CONFIG_SYS_I2C_NOPROBES)
553                 skip = 0;
554                 for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
555                         if (COMPARE_BUS(bus, k) && COMPARE_ADDR(j, k)) {
556                                 skip = 1;
557                                 break;
558                         }
559                 }
560                 if (skip)
561                         continue;
562 #endif
563                 if (i2c_probe(j) == 0)
564                         printf(" %02X", j);
565         }
566         putc ('\n');
567
568 #if defined(CONFIG_SYS_I2C_NOPROBES)
569         puts ("Excluded chip addresses:");
570         for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
571                 if (COMPARE_BUS(bus,k))
572                         printf(" %02X", NO_PROBE_ADDR(k));
573         }
574         putc ('\n');
575 #endif
576
577         return 0;
578 }
579
580 /*
581  * Syntax:
582  *      i2c loop {i2c_chip} {addr}{.0, .1, .2} [{length}] [{delay}]
583  *      {length} - Number of bytes to read
584  *      {delay}  - A DECIMAL number and defaults to 1000 uSec
585  */
586 int do_i2c_loop(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
587 {
588         u_char  chip;
589         ulong   alen;
590         uint    addr;
591         uint    length;
592         u_char  bytes[16];
593         int     delay;
594         int     j;
595
596         if (argc < 3) {
597                 cmd_usage(cmdtp);
598                 return 1;
599         }
600
601         /*
602          * Chip is always specified.
603          */
604         chip = simple_strtoul(argv[1], NULL, 16);
605
606         /*
607          * Address is always specified.
608          */
609         addr = simple_strtoul(argv[2], NULL, 16);
610         alen = 1;
611         for (j = 0; j < 8; j++) {
612                 if (argv[2][j] == '.') {
613                         alen = argv[2][j+1] - '0';
614                         if (alen > 4) {
615                                 cmd_usage(cmdtp);
616                                 return 1;
617                         }
618                         break;
619                 } else if (argv[2][j] == '\0')
620                         break;
621         }
622
623         /*
624          * Length is the number of objects, not number of bytes.
625          */
626         length = 1;
627         length = simple_strtoul(argv[3], NULL, 16);
628         if (length > sizeof(bytes))
629                 length = sizeof(bytes);
630
631         /*
632          * The delay time (uSec) is optional.
633          */
634         delay = 1000;
635         if (argc > 3)
636                 delay = simple_strtoul(argv[4], NULL, 10);
637         /*
638          * Run the loop...
639          */
640         while (1) {
641                 if (i2c_read(chip, addr, alen, bytes, length) != 0)
642                         puts ("Error reading the chip.\n");
643                 udelay(delay);
644         }
645
646         /* NOTREACHED */
647         return 0;
648 }
649
650 /*
651  * The SDRAM command is separately configured because many
652  * (most?) embedded boards don't use SDRAM DIMMs.
653  */
654 #if defined(CONFIG_CMD_SDRAM)
655 static void print_ddr2_tcyc (u_char const b)
656 {
657         printf ("%d.", (b >> 4) & 0x0F);
658         switch (b & 0x0F) {
659         case 0x0:
660         case 0x1:
661         case 0x2:
662         case 0x3:
663         case 0x4:
664         case 0x5:
665         case 0x6:
666         case 0x7:
667         case 0x8:
668         case 0x9:
669                 printf ("%d ns\n", b & 0x0F);
670                 break;
671         case 0xA:
672                 puts ("25 ns\n");
673                 break;
674         case 0xB:
675                 puts ("33 ns\n");
676                 break;
677         case 0xC:
678                 puts ("66 ns\n");
679                 break;
680         case 0xD:
681                 puts ("75 ns\n");
682                 break;
683         default:
684                 puts ("?? ns\n");
685                 break;
686         }
687 }
688
689 static void decode_bits (u_char const b, char const *str[], int const do_once)
690 {
691         u_char mask;
692
693         for (mask = 0x80; mask != 0x00; mask >>= 1, ++str) {
694                 if (b & mask) {
695                         puts (*str);
696                         if (do_once)
697                                 return;
698                 }
699         }
700 }
701
702 /*
703  * Syntax:
704  *      i2c sdram {i2c_chip}
705  */
706 int do_sdram (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
707 {
708         enum { unknown, EDO, SDRAM, DDR2 } type;
709
710         u_char  chip;
711         u_char  data[128];
712         u_char  cksum;
713         int     j;
714
715         static const char *decode_CAS_DDR2[] = {
716                 " TBD", " 6", " 5", " 4", " 3", " 2", " TBD", " TBD"
717         };
718
719         static const char *decode_CAS_default[] = {
720                 " TBD", " 7", " 6", " 5", " 4", " 3", " 2", " 1"
721         };
722
723         static const char *decode_CS_WE_default[] = {
724                 " TBD", " 6", " 5", " 4", " 3", " 2", " 1", " 0"
725         };
726
727         static const char *decode_byte21_default[] = {
728                 "  TBD (bit 7)\n",
729                 "  Redundant row address\n",
730                 "  Differential clock input\n",
731                 "  Registerd DQMB inputs\n",
732                 "  Buffered DQMB inputs\n",
733                 "  On-card PLL\n",
734                 "  Registered address/control lines\n",
735                 "  Buffered address/control lines\n"
736         };
737
738         static const char *decode_byte22_DDR2[] = {
739                 "  TBD (bit 7)\n",
740                 "  TBD (bit 6)\n",
741                 "  TBD (bit 5)\n",
742                 "  TBD (bit 4)\n",
743                 "  TBD (bit 3)\n",
744                 "  Supports partial array self refresh\n",
745                 "  Supports 50 ohm ODT\n",
746                 "  Supports weak driver\n"
747         };
748
749         static const char *decode_row_density_DDR2[] = {
750                 "512 MiB", "256 MiB", "128 MiB", "16 GiB",
751                 "8 GiB", "4 GiB", "2 GiB", "1 GiB"
752         };
753
754         static const char *decode_row_density_default[] = {
755                 "512 MiB", "256 MiB", "128 MiB", "64 MiB",
756                 "32 MiB", "16 MiB", "8 MiB", "4 MiB"
757         };
758
759         if (argc < 2) {
760                 cmd_usage(cmdtp);
761                 return 1;
762         }
763         /*
764          * Chip is always specified.
765          */
766         chip = simple_strtoul (argv[1], NULL, 16);
767
768         if (i2c_read (chip, 0, 1, data, sizeof (data)) != 0) {
769                 puts ("No SDRAM Serial Presence Detect found.\n");
770                 return 1;
771         }
772
773         cksum = 0;
774         for (j = 0; j < 63; j++) {
775                 cksum += data[j];
776         }
777         if (cksum != data[63]) {
778                 printf ("WARNING: Configuration data checksum failure:\n"
779                         "  is 0x%02x, calculated 0x%02x\n", data[63], cksum);
780         }
781         printf ("SPD data revision            %d.%d\n",
782                 (data[62] >> 4) & 0x0F, data[62] & 0x0F);
783         printf ("Bytes used                   0x%02X\n", data[0]);
784         printf ("Serial memory size           0x%02X\n", 1 << data[1]);
785
786         puts ("Memory type                  ");
787         switch (data[2]) {
788         case 2:
789                 type = EDO;
790                 puts ("EDO\n");
791                 break;
792         case 4:
793                 type = SDRAM;
794                 puts ("SDRAM\n");
795                 break;
796         case 8:
797                 type = DDR2;
798                 puts ("DDR2\n");
799                 break;
800         default:
801                 type = unknown;
802                 puts ("unknown\n");
803                 break;
804         }
805
806         puts ("Row address bits             ");
807         if ((data[3] & 0x00F0) == 0)
808                 printf ("%d\n", data[3] & 0x0F);
809         else
810                 printf ("%d/%d\n", data[3] & 0x0F, (data[3] >> 4) & 0x0F);
811
812         puts ("Column address bits          ");
813         if ((data[4] & 0x00F0) == 0)
814                 printf ("%d\n", data[4] & 0x0F);
815         else
816                 printf ("%d/%d\n", data[4] & 0x0F, (data[4] >> 4) & 0x0F);
817
818         switch (type) {
819         case DDR2:
820                 printf ("Number of ranks              %d\n",
821                         (data[5] & 0x07) + 1);
822                 break;
823         default:
824                 printf ("Module rows                  %d\n", data[5]);
825                 break;
826         }
827
828         switch (type) {
829         case DDR2:
830                 printf ("Module data width            %d bits\n", data[6]);
831                 break;
832         default:
833                 printf ("Module data width            %d bits\n",
834                         (data[7] << 8) | data[6]);
835                 break;
836         }
837
838         puts ("Interface signal levels      ");
839         switch(data[8]) {
840                 case 0:  puts ("TTL 5.0 V\n");  break;
841                 case 1:  puts ("LVTTL\n");      break;
842                 case 2:  puts ("HSTL 1.5 V\n"); break;
843                 case 3:  puts ("SSTL 3.3 V\n"); break;
844                 case 4:  puts ("SSTL 2.5 V\n"); break;
845                 case 5:  puts ("SSTL 1.8 V\n"); break;
846                 default: puts ("unknown\n");    break;
847         }
848
849         switch (type) {
850         case DDR2:
851                 printf ("SDRAM cycle time             ");
852                 print_ddr2_tcyc (data[9]);
853                 break;
854         default:
855                 printf ("SDRAM cycle time             %d.%d ns\n",
856                         (data[9] >> 4) & 0x0F, data[9] & 0x0F);
857                 break;
858         }
859
860         switch (type) {
861         case DDR2:
862                 printf ("SDRAM access time            0.%d%d ns\n",
863                         (data[10] >> 4) & 0x0F, data[10] & 0x0F);
864                 break;
865         default:
866                 printf ("SDRAM access time            %d.%d ns\n",
867                         (data[10] >> 4) & 0x0F, data[10] & 0x0F);
868                 break;
869         }
870
871         puts ("EDC configuration            ");
872         switch (data[11]) {
873                 case 0:  puts ("None\n");       break;
874                 case 1:  puts ("Parity\n");     break;
875                 case 2:  puts ("ECC\n");        break;
876                 default: puts ("unknown\n");    break;
877         }
878
879         if ((data[12] & 0x80) == 0)
880                 puts ("No self refresh, rate        ");
881         else
882                 puts ("Self refresh, rate           ");
883
884         switch(data[12] & 0x7F) {
885                 case 0:  puts ("15.625 us\n");  break;
886                 case 1:  puts ("3.9 us\n");     break;
887                 case 2:  puts ("7.8 us\n");     break;
888                 case 3:  puts ("31.3 us\n");    break;
889                 case 4:  puts ("62.5 us\n");    break;
890                 case 5:  puts ("125 us\n");     break;
891                 default: puts ("unknown\n");    break;
892         }
893
894         switch (type) {
895         case DDR2:
896                 printf ("SDRAM width (primary)        %d\n", data[13]);
897                 break;
898         default:
899                 printf ("SDRAM width (primary)        %d\n", data[13] & 0x7F);
900                 if ((data[13] & 0x80) != 0) {
901                         printf ("  (second bank)              %d\n",
902                                 2 * (data[13] & 0x7F));
903                 }
904                 break;
905         }
906
907         switch (type) {
908         case DDR2:
909                 if (data[14] != 0)
910                         printf ("EDC width                    %d\n", data[14]);
911                 break;
912         default:
913                 if (data[14] != 0) {
914                         printf ("EDC width                    %d\n",
915                                 data[14] & 0x7F);
916
917                         if ((data[14] & 0x80) != 0) {
918                                 printf ("  (second bank)              %d\n",
919                                         2 * (data[14] & 0x7F));
920                         }
921                 }
922                 break;
923         }
924
925         if (DDR2 != type) {
926                 printf ("Min clock delay, back-to-back random column addresses "
927                         "%d\n", data[15]);
928         }
929
930         puts ("Burst length(s)             ");
931         if (data[16] & 0x80) puts (" Page");
932         if (data[16] & 0x08) puts (" 8");
933         if (data[16] & 0x04) puts (" 4");
934         if (data[16] & 0x02) puts (" 2");
935         if (data[16] & 0x01) puts (" 1");
936         putc ('\n');
937         printf ("Number of banks              %d\n", data[17]);
938
939         switch (type) {
940         case DDR2:
941                 puts ("CAS latency(s)              ");
942                 decode_bits (data[18], decode_CAS_DDR2, 0);
943                 putc ('\n');
944                 break;
945         default:
946                 puts ("CAS latency(s)              ");
947                 decode_bits (data[18], decode_CAS_default, 0);
948                 putc ('\n');
949                 break;
950         }
951
952         if (DDR2 != type) {
953                 puts ("CS latency(s)               ");
954                 decode_bits (data[19], decode_CS_WE_default, 0);
955                 putc ('\n');
956         }
957
958         if (DDR2 != type) {
959                 puts ("WE latency(s)               ");
960                 decode_bits (data[20], decode_CS_WE_default, 0);
961                 putc ('\n');
962         }
963
964         switch (type) {
965         case DDR2:
966                 puts ("Module attributes:\n");
967                 if (data[21] & 0x80)
968                         puts ("  TBD (bit 7)\n");
969                 if (data[21] & 0x40)
970                         puts ("  Analysis probe installed\n");
971                 if (data[21] & 0x20)
972                         puts ("  TBD (bit 5)\n");
973                 if (data[21] & 0x10)
974                         puts ("  FET switch external enable\n");
975                 printf ("  %d PLLs on DIMM\n", (data[21] >> 2) & 0x03);
976                 if (data[20] & 0x11) {
977                         printf ("  %d active registers on DIMM\n",
978                                 (data[21] & 0x03) + 1);
979                 }
980                 break;
981         default:
982                 puts ("Module attributes:\n");
983                 if (!data[21])
984                         puts ("  (none)\n");
985                 else
986                         decode_bits (data[21], decode_byte21_default, 0);
987                 break;
988         }
989
990         switch (type) {
991         case DDR2:
992                 decode_bits (data[22], decode_byte22_DDR2, 0);
993                 break;
994         default:
995                 puts ("Device attributes:\n");
996                 if (data[22] & 0x80) puts ("  TBD (bit 7)\n");
997                 if (data[22] & 0x40) puts ("  TBD (bit 6)\n");
998                 if (data[22] & 0x20) puts ("  Upper Vcc tolerance 5%\n");
999                 else                 puts ("  Upper Vcc tolerance 10%\n");
1000                 if (data[22] & 0x10) puts ("  Lower Vcc tolerance 5%\n");
1001                 else                 puts ("  Lower Vcc tolerance 10%\n");
1002                 if (data[22] & 0x08) puts ("  Supports write1/read burst\n");
1003                 if (data[22] & 0x04) puts ("  Supports precharge all\n");
1004                 if (data[22] & 0x02) puts ("  Supports auto precharge\n");
1005                 if (data[22] & 0x01) puts ("  Supports early RAS# precharge\n");
1006                 break;
1007         }
1008
1009         switch (type) {
1010         case DDR2:
1011                 printf ("SDRAM cycle time (2nd highest CAS latency)        ");
1012                 print_ddr2_tcyc (data[23]);
1013                 break;
1014         default:
1015                 printf ("SDRAM cycle time (2nd highest CAS latency)        %d."
1016                         "%d ns\n", (data[23] >> 4) & 0x0F, data[23] & 0x0F);
1017                 break;
1018         }
1019
1020         switch (type) {
1021         case DDR2:
1022                 printf ("SDRAM access from clock (2nd highest CAS latency) 0."
1023                         "%d%d ns\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F);
1024                 break;
1025         default:
1026                 printf ("SDRAM access from clock (2nd highest CAS latency) %d."
1027                         "%d ns\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F);
1028                 break;
1029         }
1030
1031         switch (type) {
1032         case DDR2:
1033                 printf ("SDRAM cycle time (3rd highest CAS latency)        ");
1034                 print_ddr2_tcyc (data[25]);
1035                 break;
1036         default:
1037                 printf ("SDRAM cycle time (3rd highest CAS latency)        %d."
1038                         "%d ns\n", (data[25] >> 4) & 0x0F, data[25] & 0x0F);
1039                 break;
1040         }
1041
1042         switch (type) {
1043         case DDR2:
1044                 printf ("SDRAM access from clock (3rd highest CAS latency) 0."
1045                         "%d%d ns\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F);
1046                 break;
1047         default:
1048                 printf ("SDRAM access from clock (3rd highest CAS latency) %d."
1049                         "%d ns\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F);
1050                 break;
1051         }
1052
1053         switch (type) {
1054         case DDR2:
1055                 printf ("Minimum row precharge        %d.%02d ns\n",
1056                         (data[27] >> 2) & 0x3F, 25 * (data[27] & 0x03));
1057                 break;
1058         default:
1059                 printf ("Minimum row precharge        %d ns\n", data[27]);
1060                 break;
1061         }
1062
1063         switch (type) {
1064         case DDR2:
1065                 printf ("Row active to row active min %d.%02d ns\n",
1066                         (data[28] >> 2) & 0x3F, 25 * (data[28] & 0x03));
1067                 break;
1068         default:
1069                 printf ("Row active to row active min %d ns\n", data[28]);
1070                 break;
1071         }
1072
1073         switch (type) {
1074         case DDR2:
1075                 printf ("RAS to CAS delay min         %d.%02d ns\n",
1076                         (data[29] >> 2) & 0x3F, 25 * (data[29] & 0x03));
1077                 break;
1078         default:
1079                 printf ("RAS to CAS delay min         %d ns\n", data[29]);
1080                 break;
1081         }
1082
1083         printf ("Minimum RAS pulse width      %d ns\n", data[30]);
1084
1085         switch (type) {
1086         case DDR2:
1087                 puts ("Density of each row          ");
1088                 decode_bits (data[31], decode_row_density_DDR2, 1);
1089                 putc ('\n');
1090                 break;
1091         default:
1092                 puts ("Density of each row          ");
1093                 decode_bits (data[31], decode_row_density_default, 1);
1094                 putc ('\n');
1095                 break;
1096         }
1097
1098         switch (type) {
1099         case DDR2:
1100                 puts ("Command and Address setup    ");
1101                 if (data[32] >= 0xA0) {
1102                         printf ("1.%d%d ns\n",
1103                                 ((data[32] >> 4) & 0x0F) - 10, data[32] & 0x0F);
1104                 } else {
1105                         printf ("0.%d%d ns\n",
1106                                 ((data[32] >> 4) & 0x0F), data[32] & 0x0F);
1107                 }
1108                 break;
1109         default:
1110                 printf ("Command and Address setup    %c%d.%d ns\n",
1111                         (data[32] & 0x80) ? '-' : '+',
1112                         (data[32] >> 4) & 0x07, data[32] & 0x0F);
1113                 break;
1114         }
1115
1116         switch (type) {
1117         case DDR2:
1118                 puts ("Command and Address hold     ");
1119                 if (data[33] >= 0xA0) {
1120                         printf ("1.%d%d ns\n",
1121                                 ((data[33] >> 4) & 0x0F) - 10, data[33] & 0x0F);
1122                 } else {
1123                         printf ("0.%d%d ns\n",
1124                                 ((data[33] >> 4) & 0x0F), data[33] & 0x0F);
1125                 }
1126                 break;
1127         default:
1128                 printf ("Command and Address hold     %c%d.%d ns\n",
1129                         (data[33] & 0x80) ? '-' : '+',
1130                         (data[33] >> 4) & 0x07, data[33] & 0x0F);
1131                 break;
1132         }
1133
1134         switch (type) {
1135         case DDR2:
1136                 printf ("Data signal input setup      0.%d%d ns\n",
1137                         (data[34] >> 4) & 0x0F, data[34] & 0x0F);
1138                 break;
1139         default:
1140                 printf ("Data signal input setup      %c%d.%d ns\n",
1141                         (data[34] & 0x80) ? '-' : '+',
1142                         (data[34] >> 4) & 0x07, data[34] & 0x0F);
1143                 break;
1144         }
1145
1146         switch (type) {
1147         case DDR2:
1148                 printf ("Data signal input hold       0.%d%d ns\n",
1149                         (data[35] >> 4) & 0x0F, data[35] & 0x0F);
1150                 break;
1151         default:
1152                 printf ("Data signal input hold       %c%d.%d ns\n",
1153                         (data[35] & 0x80) ? '-' : '+',
1154                         (data[35] >> 4) & 0x07, data[35] & 0x0F);
1155                 break;
1156         }
1157
1158         puts ("Manufacturer's JEDEC ID      ");
1159         for (j = 64; j <= 71; j++)
1160                 printf ("%02X ", data[j]);
1161         putc ('\n');
1162         printf ("Manufacturing Location       %02X\n", data[72]);
1163         puts ("Manufacturer's Part Number   ");
1164         for (j = 73; j <= 90; j++)
1165                 printf ("%02X ", data[j]);
1166         putc ('\n');
1167         printf ("Revision Code                %02X %02X\n", data[91], data[92]);
1168         printf ("Manufacturing Date           %02X %02X\n", data[93], data[94]);
1169         puts ("Assembly Serial Number       ");
1170         for (j = 95; j <= 98; j++)
1171                 printf ("%02X ", data[j]);
1172         putc ('\n');
1173
1174         if (DDR2 != type) {
1175                 printf ("Speed rating                 PC%d\n",
1176                         data[126] == 0x66 ? 66 : data[126]);
1177         }
1178         return 0;
1179 }
1180 #endif
1181
1182 #if defined(CONFIG_I2C_MUX)
1183 int do_i2c_add_bus(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
1184 {
1185         int ret=0;
1186
1187         if (argc == 1) {
1188                 /* show all busses */
1189                 I2C_MUX         *mux;
1190                 I2C_MUX_DEVICE  *device = i2c_mux_devices;
1191
1192                 printf ("Busses reached over muxes:\n");
1193                 while (device != NULL) {
1194                         printf ("Bus ID: %x\n", device->busid);
1195                         printf ("  reached over Mux(es):\n");
1196                         mux = device->mux;
1197                         while (mux != NULL) {
1198                                 printf ("    %s@%x ch: %x\n", mux->name, mux->chip, mux->channel);
1199                                 mux = mux->next;
1200                         }
1201                         device = device->next;
1202                 }
1203         } else {
1204                 I2C_MUX_DEVICE *dev;
1205
1206                 dev = i2c_mux_ident_muxstring ((uchar *)argv[1]);
1207                 ret = 0;
1208         }
1209         return ret;
1210 }
1211 #endif  /* CONFIG_I2C_MUX */
1212
1213 #if defined(CONFIG_I2C_MULTI_BUS)
1214 int do_i2c_bus_num(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
1215 {
1216         int bus_idx, ret=0;
1217
1218         if (argc == 1)
1219                 /* querying current setting */
1220                 printf("Current bus is %d\n", i2c_get_bus_num());
1221         else {
1222                 bus_idx = simple_strtoul(argv[1], NULL, 10);
1223                 printf("Setting bus to %d\n", bus_idx);
1224                 ret = i2c_set_bus_num(bus_idx);
1225                 if (ret)
1226                         printf("Failure changing bus number (%d)\n", ret);
1227         }
1228         return ret;
1229 }
1230 #endif  /* CONFIG_I2C_MULTI_BUS */
1231
1232 int do_i2c_bus_speed(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
1233 {
1234         int speed, ret=0;
1235
1236         if (argc == 1)
1237                 /* querying current speed */
1238                 printf("Current bus speed=%d\n", i2c_get_bus_speed());
1239         else {
1240                 speed = simple_strtoul(argv[1], NULL, 10);
1241                 printf("Setting bus speed to %d Hz\n", speed);
1242                 ret = i2c_set_bus_speed(speed);
1243                 if (ret)
1244                         printf("Failure changing bus speed (%d)\n", ret);
1245         }
1246         return ret;
1247 }
1248
1249 int do_i2c(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
1250 {
1251         /* Strip off leading 'i2c' command argument */
1252         argc--;
1253         argv++;
1254
1255 #if defined(CONFIG_I2C_MUX)
1256         if (!strncmp(argv[0], "bu", 2))
1257                 return do_i2c_add_bus(cmdtp, flag, argc, argv);
1258 #endif  /* CONFIG_I2C_MUX */
1259         if (!strncmp(argv[0], "sp", 2))
1260                 return do_i2c_bus_speed(cmdtp, flag, argc, argv);
1261 #if defined(CONFIG_I2C_MULTI_BUS)
1262         if (!strncmp(argv[0], "de", 2))
1263                 return do_i2c_bus_num(cmdtp, flag, argc, argv);
1264 #endif  /* CONFIG_I2C_MULTI_BUS */
1265         if (!strncmp(argv[0], "md", 2))
1266                 return do_i2c_md(cmdtp, flag, argc, argv);
1267         if (!strncmp(argv[0], "mm", 2))
1268                 return mod_i2c_mem (cmdtp, 1, flag, argc, argv);
1269         if (!strncmp(argv[0], "mw", 2))
1270                 return do_i2c_mw(cmdtp, flag, argc, argv);
1271         if (!strncmp(argv[0], "nm", 2))
1272                 return mod_i2c_mem (cmdtp, 0, flag, argc, argv);
1273         if (!strncmp(argv[0], "cr", 2))
1274                 return do_i2c_crc(cmdtp, flag, argc, argv);
1275         if (!strncmp(argv[0], "pr", 2))
1276                 return do_i2c_probe(cmdtp, flag, argc, argv);
1277         if (!strncmp(argv[0], "re", 2)) {
1278                 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
1279                 return 0;
1280         }
1281         if (!strncmp(argv[0], "lo", 2))
1282                 return do_i2c_loop(cmdtp, flag, argc, argv);
1283 #if defined(CONFIG_CMD_SDRAM)
1284         if (!strncmp(argv[0], "sd", 2))
1285                 return do_sdram(cmdtp, flag, argc, argv);
1286 #endif
1287         cmd_usage(cmdtp);
1288         return 0;
1289 }
1290
1291 /***************************************************/
1292
1293 U_BOOT_CMD(
1294         i2c, 6, 1, do_i2c,
1295         "I2C sub-system",
1296         "speed [speed] - show or set I2C bus speed\n"
1297 #if defined(CONFIG_I2C_MUX)
1298         "i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes\n"
1299 #endif  /* CONFIG_I2C_MUX */
1300 #if defined(CONFIG_I2C_MULTI_BUS)
1301         "i2c dev [dev] - show or set current I2C bus\n"
1302 #endif  /* CONFIG_I2C_MULTI_BUS */
1303         "i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device\n"
1304         "i2c mm chip address[.0, .1, .2] - write to I2C device (auto-incrementing)\n"
1305         "i2c mw chip address[.0, .1, .2] value [count] - write to I2C device (fill)\n"
1306         "i2c nm chip address[.0, .1, .2] - write to I2C device (constant address)\n"
1307         "i2c crc32 chip address[.0, .1, .2] count - compute CRC32 checksum\n"
1308         "i2c probe - show devices on the I2C bus\n"
1309         "i2c reset - re-init the I2C Controller\n"
1310         "i2c loop chip address[.0, .1, .2] [# of objects] - looping read of device"
1311 #if defined(CONFIG_CMD_SDRAM)
1312         "\n"
1313         "i2c sdram chip - print SDRAM configuration information"
1314 #endif
1315 );
1316
1317 #if defined(CONFIG_I2C_MUX)
1318
1319 int i2c_mux_add_device(I2C_MUX_DEVICE *dev)
1320 {
1321         I2C_MUX_DEVICE  *devtmp = i2c_mux_devices;
1322
1323         if (i2c_mux_devices == NULL) {
1324                 i2c_mux_devices = dev;
1325                 return 0;
1326         }
1327         while (devtmp->next != NULL)
1328                 devtmp = devtmp->next;
1329
1330         devtmp->next = dev;
1331         return 0;
1332 }
1333
1334 I2C_MUX_DEVICE  *i2c_mux_search_device(int id)
1335 {
1336         I2C_MUX_DEVICE  *device = i2c_mux_devices;
1337
1338         while (device != NULL) {
1339                 if (device->busid == id)
1340                         return device;
1341                 device = device->next;
1342         }
1343         return NULL;
1344 }
1345
1346 /* searches in the buf from *pos the next ':'.
1347  * returns:
1348  *     0 if found (with *pos = where)
1349  *   < 0 if an error occured
1350  *   > 0 if the end of buf is reached
1351  */
1352 static int i2c_mux_search_next (int *pos, uchar *buf, int len)
1353 {
1354         while ((buf[*pos] != ':') && (*pos < len)) {
1355                 *pos += 1;
1356         }
1357         if (*pos >= len)
1358                 return 1;
1359         if (buf[*pos] != ':')
1360                 return -1;
1361         return 0;
1362 }
1363
1364 static int i2c_mux_get_busid (void)
1365 {
1366         int     tmp = i2c_mux_busid;
1367
1368         i2c_mux_busid ++;
1369         return tmp;
1370 }
1371
1372 /* Analyses a Muxstring and sends immediately the
1373    Commands to the Muxes. Runs from Flash.
1374  */
1375 int i2c_mux_ident_muxstring_f (uchar *buf)
1376 {
1377         int     pos = 0;
1378         int     oldpos;
1379         int     ret = 0;
1380         int     len = strlen((char *)buf);
1381         int     chip;
1382         uchar   channel;
1383         int     was = 0;
1384
1385         while (ret == 0) {
1386                 oldpos = pos;
1387                 /* search name */
1388                 ret = i2c_mux_search_next(&pos, buf, len);
1389                 if (ret != 0)
1390                         printf ("ERROR\n");
1391                 /* search address */
1392                 pos ++;
1393                 oldpos = pos;
1394                 ret = i2c_mux_search_next(&pos, buf, len);
1395                 if (ret != 0)
1396                         printf ("ERROR\n");
1397                 buf[pos] = 0;
1398                 chip = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1399                 buf[pos] = ':';
1400                 /* search channel */
1401                 pos ++;
1402                 oldpos = pos;
1403                 ret = i2c_mux_search_next(&pos, buf, len);
1404                 if (ret < 0)
1405                         printf ("ERROR\n");
1406                 was = 0;
1407                 if (buf[pos] != 0) {
1408                         buf[pos] = 0;
1409                         was = 1;
1410                 }
1411                 channel = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1412                 if (was)
1413                         buf[pos] = ':';
1414                 if (i2c_write(chip, 0, 0, &channel, 1) != 0) {
1415                         printf ("Error setting Mux: chip:%x channel: \
1416                                 %x\n", chip, channel);
1417                         return -1;
1418                 }
1419                 pos ++;
1420                 oldpos = pos;
1421
1422         }
1423
1424         return 0;
1425 }
1426
1427 /* Analyses a Muxstring and if this String is correct
1428  * adds a new I2C Bus.
1429  */
1430 I2C_MUX_DEVICE *i2c_mux_ident_muxstring (uchar *buf)
1431 {
1432         I2C_MUX_DEVICE  *device;
1433         I2C_MUX         *mux;
1434         int     pos = 0;
1435         int     oldpos;
1436         int     ret = 0;
1437         int     len = strlen((char *)buf);
1438         int     was = 0;
1439
1440         device = (I2C_MUX_DEVICE *)malloc (sizeof(I2C_MUX_DEVICE));
1441         device->mux = NULL;
1442         device->busid = i2c_mux_get_busid ();
1443         device->next = NULL;
1444         while (ret == 0) {
1445                 mux = (I2C_MUX *)malloc (sizeof(I2C_MUX));
1446                 mux->next = NULL;
1447                 /* search name of mux */
1448                 oldpos = pos;
1449                 ret = i2c_mux_search_next(&pos, buf, len);
1450                 if (ret != 0)
1451                         printf ("%s no name.\n", __FUNCTION__);
1452                 mux->name = (char *)malloc (pos - oldpos + 1);
1453                 memcpy (mux->name, &buf[oldpos], pos - oldpos);
1454                 mux->name[pos - oldpos] = 0;
1455                 /* search address */
1456                 pos ++;
1457                 oldpos = pos;
1458                 ret = i2c_mux_search_next(&pos, buf, len);
1459                 if (ret != 0)
1460                         printf ("%s no mux address.\n", __FUNCTION__);
1461                 buf[pos] = 0;
1462                 mux->chip = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1463                 buf[pos] = ':';
1464                 /* search channel */
1465                 pos ++;
1466                 oldpos = pos;
1467                 ret = i2c_mux_search_next(&pos, buf, len);
1468                 if (ret < 0)
1469                         printf ("%s no mux channel.\n", __FUNCTION__);
1470                 was = 0;
1471                 if (buf[pos] != 0) {
1472                         buf[pos] = 0;
1473                         was = 1;
1474                 }
1475                 mux->channel = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1476                 if (was)
1477                         buf[pos] = ':';
1478                 if (device->mux == NULL)
1479                         device->mux = mux;
1480                 else {
1481                         I2C_MUX         *muxtmp = device->mux;
1482                         while (muxtmp->next != NULL) {
1483                                 muxtmp = muxtmp->next;
1484                         }
1485                         muxtmp->next = mux;
1486                 }
1487                 pos ++;
1488                 oldpos = pos;
1489         }
1490         if (ret > 0) {
1491                 /* Add Device */
1492                 i2c_mux_add_device (device);
1493                 return device;
1494         }
1495
1496         return NULL;
1497 }
1498
1499 int i2x_mux_select_mux(int bus)
1500 {
1501         I2C_MUX_DEVICE  *dev;
1502         I2C_MUX         *mux;
1503
1504         if ((gd->flags & GD_FLG_RELOC) != GD_FLG_RELOC) {
1505                 /* select Default Mux Bus */
1506 #if defined(CONFIG_SYS_I2C_IVM_BUS)
1507                 i2c_mux_ident_muxstring_f ((uchar *)CONFIG_SYS_I2C_IVM_BUS);
1508 #else
1509                 {
1510                 unsigned char *buf;
1511                 buf = (unsigned char *) getenv("EEprom_ivm");
1512                 if (buf != NULL)
1513                         i2c_mux_ident_muxstring_f (buf);
1514                 }
1515 #endif
1516                 return 0;
1517         }
1518         dev = i2c_mux_search_device(bus);
1519         if (dev == NULL)
1520                 return -1;
1521
1522         mux = dev->mux;
1523         while (mux != NULL) {
1524                 if (i2c_write(mux->chip, 0, 0, &mux->channel, 1) != 0) {
1525                         printf ("Error setting Mux: chip:%x channel: \
1526                                 %x\n", mux->chip, mux->channel);
1527                         return -1;
1528                 }
1529                 mux = mux->next;
1530         }
1531         return 0;
1532 }
1533 #endif /* CONFIG_I2C_MUX */