3 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
25 * I2C Functions similar to the standard memory functions.
27 * There are several parameters in many of the commands that bear further
30 * Two of the commands (imm and imw) take a byte/word/long modifier
31 * (e.g. imm.w specifies the word-length modifier). This was done to
32 * allow manipulating word-length registers. It was not done on any other
33 * commands because it was not deemed useful.
35 * {i2c_chip} is the I2C chip address (the first byte sent on the bus).
36 * Each I2C chip on the bus has a unique address. On the I2C data bus,
37 * the address is the upper seven bits and the LSB is the "read/write"
38 * bit. Note that the {i2c_chip} address specified on the command
39 * line is not shifted up: e.g. a typical EEPROM memory chip may have
40 * an I2C address of 0x50, but the data put on the bus will be 0xA0
41 * for write and 0xA1 for read. This "non shifted" address notation
42 * matches at least half of the data sheets :-/.
44 * {addr} is the address (or offset) within the chip. Small memory
45 * chips have 8 bit addresses. Large memory chips have 16 bit
46 * addresses. Other memory chips have 9, 10, or 11 bit addresses.
47 * Many non-memory chips have multiple registers and {addr} is used
48 * as the register index. Some non-memory chips have only one register
49 * and therefore don't need any {addr} parameter.
51 * The default {addr} parameter is one byte (.1) which works well for
52 * memories and registers with 8 bits of address space.
54 * You can specify the length of the {addr} field with the optional .0,
55 * .1, or .2 modifier (similar to the .b, .w, .l modifier). If you are
56 * manipulating a single register device which doesn't use an address
57 * field, use "0.0" for the address and the ".0" length field will
58 * suppress the address in the I2C data stream. This also works for
59 * successive reads using the I2C auto-incrementing memory pointer.
61 * If you are manipulating a large memory with 2-byte addresses, use
62 * the .2 address modifier, e.g. 210.2 addresses location 528 (decimal).
64 * Then there are the unfortunate memory chips that spill the most
65 * significant 1, 2, or 3 bits of address into the chip address byte.
66 * This effectively makes one chip (logically) look like 2, 4, or
67 * 8 chips. This is handled (awkwardly) by #defining
68 * CFG_I2C_EEPROM_ADDR_OVERFLOW and using the .1 modifier on the
69 * {addr} field (since .1 is the default, it doesn't actually have to
70 * be specified). Examples: given a memory chip at I2C chip address
71 * 0x50, the following would happen...
72 * imd 50 0 10 display 16 bytes starting at 0x000
73 * On the bus: <S> A0 00 <E> <S> A1 <rd> ... <rd>
74 * imd 50 100 10 display 16 bytes starting at 0x100
75 * On the bus: <S> A2 00 <E> <S> A3 <rd> ... <rd>
76 * imd 50 210 10 display 16 bytes starting at 0x210
77 * On the bus: <S> A4 10 <E> <S> A5 <rd> ... <rd>
78 * This is awfully ugly. It would be nice if someone would think up
79 * a better way of handling this.
81 * Adapted from cmd_mem.c which is copyright Wolfgang Denk (wd@denx.de).
87 #include <asm/byteorder.h>
89 /* Display values from last command.
90 * Memory modify remembered values are different from display memory.
92 static uchar i2c_dp_last_chip;
93 static uint i2c_dp_last_addr;
94 static uint i2c_dp_last_alen;
95 static uint i2c_dp_last_length = 0x10;
97 static uchar i2c_mm_last_chip;
98 static uint i2c_mm_last_addr;
99 static uint i2c_mm_last_alen;
101 /* If only one I2C bus is present, the list of devices to ignore when
102 * the probe command is issued is represented by a 1D array of addresses.
103 * When multiple buses are present, the list is an array of bus-address
104 * pairs. The following macros take care of this */
106 #if defined(CFG_I2C_NOPROBES)
107 #if defined(CONFIG_I2C_MULTI_BUS)
112 } i2c_no_probes[] = CFG_I2C_NOPROBES;
113 #define GET_BUS_NUM i2c_get_bus_num()
114 #define COMPARE_BUS(b,i) (i2c_no_probes[(i)].bus == (b))
115 #define COMPARE_ADDR(a,i) (i2c_no_probes[(i)].addr == (a))
116 #define NO_PROBE_ADDR(i) i2c_no_probes[(i)].addr
117 #else /* single bus */
118 static uchar i2c_no_probes[] = CFG_I2C_NOPROBES;
119 #define GET_BUS_NUM 0
120 #define COMPARE_BUS(b,i) ((b) == 0) /* Make compiler happy */
121 #define COMPARE_ADDR(a,i) (i2c_no_probes[(i)] == (a))
122 #define NO_PROBE_ADDR(i) i2c_no_probes[(i)]
123 #endif /* CONFIG_MULTI_BUS */
125 #define NUM_ELEMENTS_NOPROBE (sizeof(i2c_no_probes)/sizeof(i2c_no_probes[0]))
129 mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char *argv[]);
130 extern int cmd_get_data_size(char* arg, int default_size);
134 * imd {i2c_chip} {addr}{.0, .1, .2} {len}
136 #define DISP_LINE_LEN 16
138 int do_i2c_md ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
141 uint addr, alen, length;
142 int j, nbytes, linebytes;
144 /* We use the last specified parameters, unless new ones are
147 chip = i2c_dp_last_chip;
148 addr = i2c_dp_last_addr;
149 alen = i2c_dp_last_alen;
150 length = i2c_dp_last_length;
153 printf ("Usage:\n%s\n", cmdtp->usage);
157 if ((flag & CMD_FLAG_REPEAT) == 0) {
159 * New command specified.
166 chip = simple_strtoul(argv[1], NULL, 16);
169 * I2C data address within the chip. This can be 1 or
170 * 2 bytes long. Some day it might be 3 bytes long :-).
172 addr = simple_strtoul(argv[2], NULL, 16);
174 for (j = 0; j < 8; j++) {
175 if (argv[2][j] == '.') {
176 alen = argv[2][j+1] - '0';
178 printf ("Usage:\n%s\n", cmdtp->usage);
182 } else if (argv[2][j] == '\0')
187 * If another parameter, it is the length to display.
188 * Length is the number of objects, not number of bytes.
191 length = simple_strtoul(argv[3], NULL, 16);
197 * We buffer all read data, so we can make sure data is read only
202 unsigned char linebuf[DISP_LINE_LEN];
205 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
207 if (i2c_read(chip, addr, alen, linebuf, linebytes) != 0)
208 puts ("Error reading the chip.\n");
210 printf("%04x:", addr);
212 for (j=0; j<linebytes; j++) {
213 printf(" %02x", *cp++);
218 for (j=0; j<linebytes; j++) {
219 if ((*cp < 0x20) || (*cp > 0x7e))
228 } while (nbytes > 0);
230 i2c_dp_last_chip = chip;
231 i2c_dp_last_addr = addr;
232 i2c_dp_last_alen = alen;
233 i2c_dp_last_length = length;
238 int do_i2c_mm ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
240 return mod_i2c_mem (cmdtp, 1, flag, argc, argv);
244 int do_i2c_nm ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
246 return mod_i2c_mem (cmdtp, 0, flag, argc, argv);
249 /* Write (fill) memory
252 * imw {i2c_chip} {addr}{.0, .1, .2} {data} [{count}]
254 int do_i2c_mw ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
263 if ((argc < 4) || (argc > 5)) {
264 printf ("Usage:\n%s\n", cmdtp->usage);
269 * Chip is always specified.
271 chip = simple_strtoul(argv[1], NULL, 16);
274 * Address is always specified.
276 addr = simple_strtoul(argv[2], NULL, 16);
278 for (j = 0; j < 8; j++) {
279 if (argv[2][j] == '.') {
280 alen = argv[2][j+1] - '0';
282 printf ("Usage:\n%s\n", cmdtp->usage);
286 } else if (argv[2][j] == '\0')
291 * Value to write is always specified.
293 byte = simple_strtoul(argv[3], NULL, 16);
299 count = simple_strtoul(argv[4], NULL, 16);
303 while (count-- > 0) {
304 if (i2c_write(chip, addr++, alen, &byte, 1) != 0)
305 puts ("Error writing the chip.\n");
307 * Wait for the write to complete. The write can take
308 * up to 10mSec (we allow a little more time).
310 * On some chips, while the write is in progress, the
311 * chip doesn't respond. This apparently isn't a
312 * universal feature so we don't take advantage of it.
315 * No write delay with FRAM devices.
317 #if !defined(CFG_I2C_FRAM)
322 for (timeout = 0; timeout < 10; timeout++) {
324 if (i2c_probe(chip) == 0)
334 /* Calculate a CRC on memory
337 * icrc32 {i2c_chip} {addr}{.0, .1, .2} {count}
339 int do_i2c_crc (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
351 printf ("Usage:\n%s\n", cmdtp->usage);
356 * Chip is always specified.
358 chip = simple_strtoul(argv[1], NULL, 16);
361 * Address is always specified.
363 addr = simple_strtoul(argv[2], NULL, 16);
365 for (j = 0; j < 8; j++) {
366 if (argv[2][j] == '.') {
367 alen = argv[2][j+1] - '0';
369 printf ("Usage:\n%s\n", cmdtp->usage);
373 } else if (argv[2][j] == '\0')
378 * Count is always specified
380 count = simple_strtoul(argv[3], NULL, 16);
382 printf ("CRC32 for %08lx ... %08lx ==> ", addr, addr + count - 1);
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.
389 while (count-- > 0) {
390 if (i2c_read(chip, addr, alen, &byte, 1) != 0)
392 crc = crc32 (crc, &byte, 1);
396 puts ("Error reading the chip,\n");
398 printf ("%08lx\n", crc);
407 * imm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
408 * inm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
412 mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char *argv[])
421 extern char console_buffer[];
424 printf ("Usage:\n%s\n", cmdtp->usage);
428 #ifdef CONFIG_BOOT_RETRY_TIME
429 reset_cmd_timeout(); /* got a good command to get here */
432 * We use the last specified parameters, unless new ones are
435 chip = i2c_mm_last_chip;
436 addr = i2c_mm_last_addr;
437 alen = i2c_mm_last_alen;
439 if ((flag & CMD_FLAG_REPEAT) == 0) {
441 * New command specified. Check for a size specification.
442 * Defaults to byte if no or incorrect specification.
444 size = cmd_get_data_size(argv[0], 1);
447 * Chip is always specified.
449 chip = simple_strtoul(argv[1], NULL, 16);
452 * Address is always specified.
454 addr = simple_strtoul(argv[2], NULL, 16);
456 for (j = 0; j < 8; j++) {
457 if (argv[2][j] == '.') {
458 alen = argv[2][j+1] - '0';
460 printf ("Usage:\n%s\n", cmdtp->usage);
464 } else if (argv[2][j] == '\0')
470 * Print the address, followed by value. Then accept input for
471 * the next value. A non-converted value exits.
474 printf("%08lx:", addr);
475 if (i2c_read(chip, addr, alen, (uchar *)&data, size) != 0)
476 puts ("\nError reading the chip,\n");
478 data = cpu_to_be32(data);
480 printf(" %02lx", (data >> 24) & 0x000000FF);
482 printf(" %04lx", (data >> 16) & 0x0000FFFF);
484 printf(" %08lx", data);
487 nbytes = readline (" ? ");
490 * <CR> pressed as only input, don't modify current
491 * location and move to next.
496 #ifdef CONFIG_BOOT_RETRY_TIME
497 reset_cmd_timeout(); /* good enough to not time out */
500 #ifdef CONFIG_BOOT_RETRY_TIME
501 else if (nbytes == -2)
502 break; /* timed out, exit the command */
507 data = simple_strtoul(console_buffer, &endp, 16);
512 data = be32_to_cpu(data);
513 nbytes = endp - console_buffer;
515 #ifdef CONFIG_BOOT_RETRY_TIME
517 * good enough to not time out
521 if (i2c_write(chip, addr, alen, (uchar *)&data, size) != 0)
522 puts ("Error writing the chip.\n");
523 #ifdef CFG_EEPROM_PAGE_WRITE_DELAY_MS
524 udelay(CFG_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
532 chip = i2c_mm_last_chip;
533 addr = i2c_mm_last_addr;
534 alen = i2c_mm_last_alen;
541 * iprobe {addr}{.0, .1, .2}
543 int do_i2c_probe (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
546 #if defined(CFG_I2C_NOPROBES)
548 uchar bus = GET_BUS_NUM;
549 #endif /* NOPROBES */
551 puts ("Valid chip addresses:");
552 for (j = 0; j < 128; j++) {
553 #if defined(CFG_I2C_NOPROBES)
555 for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
556 if (COMPARE_BUS(bus, k) && COMPARE_ADDR(j, k)) {
564 if (i2c_probe(j) == 0)
569 #if defined(CFG_I2C_NOPROBES)
570 puts ("Excluded chip addresses:");
571 for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
572 if (COMPARE_BUS(bus,k))
573 printf(" %02X", NO_PROBE_ADDR(k));
584 * iloop {i2c_chip} {addr}{.0, .1, .2} [{length}] [{delay}]
585 * {length} - Number of bytes to read
586 * {delay} - A DECIMAL number and defaults to 1000 uSec
588 int do_i2c_loop(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
599 printf ("Usage:\n%s\n", cmdtp->usage);
604 * Chip is always specified.
606 chip = simple_strtoul(argv[1], NULL, 16);
609 * Address is always specified.
611 addr = simple_strtoul(argv[2], NULL, 16);
613 for (j = 0; j < 8; j++) {
614 if (argv[2][j] == '.') {
615 alen = argv[2][j+1] - '0';
617 printf ("Usage:\n%s\n", cmdtp->usage);
621 } else if (argv[2][j] == '\0')
626 * Length is the number of objects, not number of bytes.
629 length = simple_strtoul(argv[3], NULL, 16);
630 if (length > sizeof(bytes))
631 length = sizeof(bytes);
634 * The delay time (uSec) is optional.
638 delay = simple_strtoul(argv[4], NULL, 10);
643 if (i2c_read(chip, addr, alen, bytes, length) != 0)
644 puts ("Error reading the chip.\n");
654 * The SDRAM command is separately configured because many
655 * (most?) embedded boards don't use SDRAM DIMMs.
657 #if defined(CONFIG_CMD_SDRAM)
663 int do_sdram ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
671 printf ("Usage:\n%s\n", cmdtp->usage);
675 * Chip is always specified.
677 chip = simple_strtoul(argv[1], NULL, 16);
679 if (i2c_read(chip, 0, 1, data, sizeof(data)) != 0) {
680 puts ("No SDRAM Serial Presence Detect found.\n");
685 for (j = 0; j < 63; j++) {
688 if (cksum != data[63]) {
689 printf ("WARNING: Configuration data checksum failure:\n"
690 " is 0x%02x, calculated 0x%02x\n",
693 printf("SPD data revision %d.%d\n",
694 (data[62] >> 4) & 0x0F, data[62] & 0x0F);
695 printf("Bytes used 0x%02X\n", data[0]);
696 printf("Serial memory size 0x%02X\n", 1 << data[1]);
697 puts ("Memory type ");
699 case 2: puts ("EDO\n"); break;
700 case 4: puts ("SDRAM\n"); break;
701 case 8: puts ("DDR2\n"); break;
702 default: puts ("unknown\n"); break;
704 puts ("Row address bits ");
705 if ((data[3] & 0x00F0) == 0)
706 printf("%d\n", data[3] & 0x0F);
708 printf("%d/%d\n", data[3] & 0x0F, (data[3] >> 4) & 0x0F);
709 puts ("Column address bits ");
710 if ((data[4] & 0x00F0) == 0)
711 printf("%d\n", data[4] & 0x0F);
713 printf("%d/%d\n", data[4] & 0x0F, (data[4] >> 4) & 0x0F);
714 printf("Module rows %d\n", data[5]);
715 printf("Module data width %d bits\n", (data[7] << 8) | data[6]);
716 puts ("Interface signal levels ");
718 case 0: puts ("5.0v/TTL\n"); break;
719 case 1: puts ("LVTTL\n"); break;
720 case 2: puts ("HSTL 1.5\n"); break;
721 case 3: puts ("SSTL 3.3\n"); break;
722 case 4: puts ("SSTL 2.5\n"); break;
723 case 5: puts ("SSTL 1.8\n"); break;
724 default: puts ("unknown\n"); break;
726 printf("SDRAM cycle time %d.%d nS\n",
727 (data[9] >> 4) & 0x0F, data[9] & 0x0F);
728 printf("SDRAM access time %d.%d nS\n",
729 (data[10] >> 4) & 0x0F, data[10] & 0x0F);
730 puts ("EDC configuration ");
732 case 0: puts ("None\n"); break;
733 case 1: puts ("Parity\n"); break;
734 case 2: puts ("ECC\n"); break;
735 default: puts ("unknown\n"); break;
737 if ((data[12] & 0x80) == 0)
738 puts ("No self refresh, rate ");
740 puts ("Self refresh, rate ");
741 switch(data[12] & 0x7F) {
742 case 0: puts ("15.625uS\n"); break;
743 case 1: puts ("3.9uS\n"); break;
744 case 2: puts ("7.8uS\n"); break;
745 case 3: puts ("31.3uS\n"); break;
746 case 4: puts ("62.5uS\n"); break;
747 case 5: puts ("125uS\n"); break;
748 default: puts ("unknown\n"); break;
750 printf("SDRAM width (primary) %d\n", data[13] & 0x7F);
751 if ((data[13] & 0x80) != 0) {
752 printf(" (second bank) %d\n",
753 2 * (data[13] & 0x7F));
756 printf("EDC width %d\n",
758 if ((data[14] & 0x80) != 0)
759 printf(" (second bank) %d\n",
760 2 * (data[14] & 0x7F));
762 printf("Min clock delay, back-to-back random column addresses %d\n",
764 puts ("Burst length(s) ");
765 if (data[16] & 0x80) puts (" Page");
766 if (data[16] & 0x08) puts (" 8");
767 if (data[16] & 0x04) puts (" 4");
768 if (data[16] & 0x02) puts (" 2");
769 if (data[16] & 0x01) puts (" 1");
771 printf("Number of banks %d\n", data[17]);
772 puts ("CAS latency(s) ");
773 if (data[18] & 0x80) puts (" TBD");
774 if (data[18] & 0x40) puts (" 7");
775 if (data[18] & 0x20) puts (" 6");
776 if (data[18] & 0x10) puts (" 5");
777 if (data[18] & 0x08) puts (" 4");
778 if (data[18] & 0x04) puts (" 3");
779 if (data[18] & 0x02) puts (" 2");
780 if (data[18] & 0x01) puts (" 1");
782 puts ("CS latency(s) ");
783 if (data[19] & 0x80) puts (" TBD");
784 if (data[19] & 0x40) puts (" 6");
785 if (data[19] & 0x20) puts (" 5");
786 if (data[19] & 0x10) puts (" 4");
787 if (data[19] & 0x08) puts (" 3");
788 if (data[19] & 0x04) puts (" 2");
789 if (data[19] & 0x02) puts (" 1");
790 if (data[19] & 0x01) puts (" 0");
792 puts ("WE latency(s) ");
793 if (data[20] & 0x80) puts (" TBD");
794 if (data[20] & 0x40) puts (" 6");
795 if (data[20] & 0x20) puts (" 5");
796 if (data[20] & 0x10) puts (" 4");
797 if (data[20] & 0x08) puts (" 3");
798 if (data[20] & 0x04) puts (" 2");
799 if (data[20] & 0x02) puts (" 1");
800 if (data[20] & 0x01) puts (" 0");
802 puts ("Module attributes:\n");
803 if (!data[21]) puts (" (none)\n");
804 if (data[21] & 0x80) puts (" TBD (bit 7)\n");
805 if (data[21] & 0x40) puts (" Redundant row address\n");
806 if (data[21] & 0x20) puts (" Differential clock input\n");
807 if (data[21] & 0x10) puts (" Registerd DQMB inputs\n");
808 if (data[21] & 0x08) puts (" Buffered DQMB inputs\n");
809 if (data[21] & 0x04) puts (" On-card PLL\n");
810 if (data[21] & 0x02) puts (" Registered address/control lines\n");
811 if (data[21] & 0x01) puts (" Buffered address/control lines\n");
812 puts ("Device attributes:\n");
813 if (data[22] & 0x80) puts (" TBD (bit 7)\n");
814 if (data[22] & 0x40) puts (" TBD (bit 6)\n");
815 if (data[22] & 0x20) puts (" Upper Vcc tolerance 5%\n");
816 else puts (" Upper Vcc tolerance 10%\n");
817 if (data[22] & 0x10) puts (" Lower Vcc tolerance 5%\n");
818 else puts (" Lower Vcc tolerance 10%\n");
819 if (data[22] & 0x08) puts (" Supports write1/read burst\n");
820 if (data[22] & 0x04) puts (" Supports precharge all\n");
821 if (data[22] & 0x02) puts (" Supports auto precharge\n");
822 if (data[22] & 0x01) puts (" Supports early RAS# precharge\n");
823 printf("SDRAM cycle time (2nd highest CAS latency) %d.%d nS\n",
824 (data[23] >> 4) & 0x0F, data[23] & 0x0F);
825 printf("SDRAM access from clock (2nd highest CAS latency) %d.%d nS\n",
826 (data[24] >> 4) & 0x0F, data[24] & 0x0F);
827 printf("SDRAM cycle time (3rd highest CAS latency) %d.%d nS\n",
828 (data[25] >> 4) & 0x0F, data[25] & 0x0F);
829 printf("SDRAM access from clock (3rd highest CAS latency) %d.%d nS\n",
830 (data[26] >> 4) & 0x0F, data[26] & 0x0F);
831 printf("Minimum row precharge %d nS\n", data[27]);
832 printf("Row active to row active min %d nS\n", data[28]);
833 printf("RAS to CAS delay min %d nS\n", data[29]);
834 printf("Minimum RAS pulse width %d nS\n", data[30]);
835 puts ("Density of each row ");
836 if (data[31] & 0x80) puts (" 512");
837 if (data[31] & 0x40) puts (" 256");
838 if (data[31] & 0x20) puts (" 128");
839 if (data[31] & 0x10) puts (" 64");
840 if (data[31] & 0x08) puts (" 32");
841 if (data[31] & 0x04) puts (" 16");
842 if (data[31] & 0x02) puts (" 8");
843 if (data[31] & 0x01) puts (" 4");
845 printf("Command and Address setup %c%d.%d nS\n",
846 (data[32] & 0x80) ? '-' : '+',
847 (data[32] >> 4) & 0x07, data[32] & 0x0F);
848 printf("Command and Address hold %c%d.%d nS\n",
849 (data[33] & 0x80) ? '-' : '+',
850 (data[33] >> 4) & 0x07, data[33] & 0x0F);
851 printf("Data signal input setup %c%d.%d nS\n",
852 (data[34] & 0x80) ? '-' : '+',
853 (data[34] >> 4) & 0x07, data[34] & 0x0F);
854 printf("Data signal input hold %c%d.%d nS\n",
855 (data[35] & 0x80) ? '-' : '+',
856 (data[35] >> 4) & 0x07, data[35] & 0x0F);
857 puts ("Manufacturer's JEDEC ID ");
858 for (j = 64; j <= 71; j++)
859 printf("%02X ", data[j]);
861 printf("Manufacturing Location %02X\n", data[72]);
862 puts ("Manufacturer's Part Number ");
863 for (j = 73; j <= 90; j++)
864 printf("%02X ", data[j]);
866 printf("Revision Code %02X %02X\n", data[91], data[92]);
867 printf("Manufacturing Date %02X %02X\n", data[93], data[94]);
868 puts ("Assembly Serial Number ");
869 for (j = 95; j <= 98; j++)
870 printf("%02X ", data[j]);
872 printf("Speed rating PC%d\n",
873 data[126] == 0x66 ? 66 : data[126]);
879 #if defined(CONFIG_I2C_CMD_TREE)
880 #if defined(CONFIG_I2C_MULTI_BUS)
881 int do_i2c_bus_num(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
886 /* querying current setting */
887 printf("Current bus is %d\n", i2c_get_bus_num());
889 bus_idx = simple_strtoul(argv[1], NULL, 10);
890 printf("Setting bus to %d\n", bus_idx);
891 ret = i2c_set_bus_num(bus_idx);
893 printf("Failure changing bus number (%d)\n", ret);
897 #endif /* CONFIG_I2C_MULTI_BUS */
899 int do_i2c_bus_speed(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
904 /* querying current speed */
905 printf("Current bus speed=%d\n", i2c_get_bus_speed());
907 speed = simple_strtoul(argv[1], NULL, 10);
908 printf("Setting bus speed to %d Hz\n", speed);
909 ret = i2c_set_bus_speed(speed);
911 printf("Failure changing bus speed (%d)\n", ret);
916 int do_i2c(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
918 #if defined(CONFIG_I2C_MULTI_BUS)
919 if (!strncmp(argv[1], "de", 2))
920 return do_i2c_bus_num(cmdtp, flag, --argc, ++argv);
921 #endif /* CONFIG_I2C_MULTI_BUS */
922 if (!strncmp(argv[1], "sp", 2))
923 return do_i2c_bus_speed(cmdtp, flag, --argc, ++argv);
924 if (!strncmp(argv[1], "md", 2))
925 return do_i2c_md(cmdtp, flag, --argc, ++argv);
926 if (!strncmp(argv[1], "mm", 2))
927 return do_i2c_mm(cmdtp, flag, --argc, ++argv);
928 if (!strncmp(argv[1], "mw", 2))
929 return do_i2c_mw(cmdtp, flag, --argc, ++argv);
930 if (!strncmp(argv[1], "nm", 2))
931 return do_i2c_nm(cmdtp, flag, --argc, ++argv);
932 if (!strncmp(argv[1], "cr", 2))
933 return do_i2c_crc(cmdtp, flag, --argc, ++argv);
934 if (!strncmp(argv[1], "pr", 2))
935 return do_i2c_probe(cmdtp, flag, --argc, ++argv);
936 if (!strncmp(argv[1], "lo", 2))
937 return do_i2c_loop(cmdtp, flag, --argc, ++argv);
938 #if defined(CONFIG_CMD_SDRAM)
939 if (!strncmp(argv[1], "sd", 2))
940 return do_sdram(cmdtp, flag, --argc, ++argv);
943 printf ("Usage:\n%s\n", cmdtp->usage);
946 #endif /* CONFIG_I2C_CMD_TREE */
948 /***************************************************/
950 #if defined(CONFIG_I2C_CMD_TREE)
953 "i2c - I2C sub-system\n",
954 #if defined(CONFIG_I2C_MULTI_BUS)
955 "dev [dev] - show or set current I2C bus\n"
956 #endif /* CONFIG_I2C_MULTI_BUS */
957 "i2c speed [speed] - show or set I2C bus speed\n"
958 "i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device\n"
959 "i2c mm chip address[.0, .1, .2] - write to I2C device (auto-incrementing)\n"
960 "i2c mw chip address[.0, .1, .2] value [count] - write to I2C device (fill)\n"
961 "i2c nm chip address[.0, .1, .2] - write to I2C device (constant address)\n"
962 "i2c crc32 chip address[.0, .1, .2] count - compute CRC32 checksum\n"
963 "i2c probe - show devices on the I2C bus\n"
964 "i2c loop chip address[.0, .1, .2] [# of objects] - looping read of device\n"
965 #if defined(CONFIG_CMD_SDRAM)
966 "i2c sdram chip - print SDRAM configuration information\n"
969 #endif /* CONFIG_I2C_CMD_TREE */
971 imd, 4, 1, do_i2c_md, \
972 "imd - i2c memory display\n", \
973 "chip address[.0, .1, .2] [# of objects]\n - i2c memory display\n" \
977 imm, 3, 1, do_i2c_mm,
978 "imm - i2c memory modify (auto-incrementing)\n",
979 "chip address[.0, .1, .2]\n"
980 " - memory modify, auto increment address\n"
983 inm, 3, 1, do_i2c_nm,
984 "inm - memory modify (constant address)\n",
985 "chip address[.0, .1, .2]\n - memory modify, read and keep address\n"
989 imw, 5, 1, do_i2c_mw,
990 "imw - memory write (fill)\n",
991 "chip address[.0, .1, .2] value [count]\n - memory write (fill)\n"
995 icrc32, 5, 1, do_i2c_crc,
996 "icrc32 - checksum calculation\n",
997 "chip address[.0, .1, .2] count\n - compute CRC32 checksum\n"
1001 iprobe, 1, 1, do_i2c_probe,
1002 "iprobe - probe to discover valid I2C chip addresses\n",
1003 "\n -discover valid I2C chip addresses\n"
1007 * Require full name for "iloop" because it is an infinite loop!
1010 iloop, 5, 1, do_i2c_loop,
1011 "iloop - infinite loop on address range\n",
1012 "chip address[.0, .1, .2] [# of objects]\n"
1013 " - loop, reading a set of addresses\n"
1016 #if defined(CONFIG_CMD_SDRAM)
1018 isdram, 2, 1, do_sdram,
1019 "isdram - print SDRAM configuration information\n",
1020 "chip\n - print SDRAM configuration information\n"
1021 " (valid chip values 50..57)\n"