blob: 988f91d5340a77daffc42813a677af44405e238a [file] [log] [blame]
wdenk81a88242002-10-26 15:22:42 +00001/*
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 * 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.
34 *
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 :-/.
43 *
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.
50 *
51 * The default {addr} parameter is one byte (.1) which works well for
52 * memories and registers with 8 bits of address space.
53 *
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.
60 *
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).
63 *
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.
80 *
81 * Adapted from cmd_mem.c which is copyright Wolfgang Denk (wd@denx.de).
82 */
83
84#include <common.h>
85#include <command.h>
wdenk81a88242002-10-26 15:22:42 +000086#include <i2c.h>
87#include <asm/byteorder.h>
88
wdenk81a88242002-10-26 15:22:42 +000089/* Display values from last command.
90 * Memory modify remembered values are different from display memory.
91 */
92static uchar i2c_dp_last_chip;
93static uint i2c_dp_last_addr;
94static uint i2c_dp_last_alen;
95static uint i2c_dp_last_length = 0x10;
96
97static uchar i2c_mm_last_chip;
98static uint i2c_mm_last_addr;
99static uint i2c_mm_last_alen;
100
Ben Warren45657152006-09-07 16:50:54 -0400101/* 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 */
105
wdenk81a88242002-10-26 15:22:42 +0000106#if defined(CFG_I2C_NOPROBES)
Ben Warren45657152006-09-07 16:50:54 -0400107#if defined(CONFIG_I2C_MULTI_BUS)
108static struct
109{
110 uchar bus;
111 uchar addr;
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 */
wdenk81a88242002-10-26 15:22:42 +0000118static uchar i2c_no_probes[] = CFG_I2C_NOPROBES;
Ben Warren45657152006-09-07 16:50:54 -0400119#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 */
124
125#define NUM_ELEMENTS_NOPROBE (sizeof(i2c_no_probes)/sizeof(i2c_no_probes[0]))
wdenk81a88242002-10-26 15:22:42 +0000126#endif
127
128static int
129mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char *argv[]);
130extern int cmd_get_data_size(char* arg, int default_size);
131
132/*
133 * Syntax:
134 * imd {i2c_chip} {addr}{.0, .1, .2} {len}
135 */
136#define DISP_LINE_LEN 16
137
138int do_i2c_md ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
139{
140 u_char chip;
141 uint addr, alen, length;
142 int j, nbytes, linebytes;
143
144 /* We use the last specified parameters, unless new ones are
145 * entered.
146 */
147 chip = i2c_dp_last_chip;
148 addr = i2c_dp_last_addr;
149 alen = i2c_dp_last_alen;
150 length = i2c_dp_last_length;
151
152 if (argc < 3) {
153 printf ("Usage:\n%s\n", cmdtp->usage);
154 return 1;
155 }
156
157 if ((flag & CMD_FLAG_REPEAT) == 0) {
158 /*
159 * New command specified.
160 */
161 alen = 1;
162
163 /*
164 * I2C chip address
165 */
166 chip = simple_strtoul(argv[1], NULL, 16);
167
168 /*
169 * I2C data address within the chip. This can be 1 or
170 * 2 bytes long. Some day it might be 3 bytes long :-).
171 */
172 addr = simple_strtoul(argv[2], NULL, 16);
173 alen = 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600174 for (j = 0; j < 8; j++) {
wdenk81a88242002-10-26 15:22:42 +0000175 if (argv[2][j] == '.') {
176 alen = argv[2][j+1] - '0';
177 if (alen > 4) {
178 printf ("Usage:\n%s\n", cmdtp->usage);
179 return 1;
180 }
181 break;
Timur Tabiff0215a2006-11-28 12:09:35 -0600182 } else if (argv[2][j] == '\0')
wdenk81a88242002-10-26 15:22:42 +0000183 break;
wdenk81a88242002-10-26 15:22:42 +0000184 }
185
186 /*
187 * If another parameter, it is the length to display.
188 * Length is the number of objects, not number of bytes.
189 */
190 if (argc > 3)
191 length = simple_strtoul(argv[3], NULL, 16);
192 }
193
194 /*
195 * Print the lines.
196 *
197 * We buffer all read data, so we can make sure data is read only
198 * once.
199 */
200 nbytes = length;
201 do {
202 unsigned char linebuf[DISP_LINE_LEN];
203 unsigned char *cp;
204
205 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
206
Timur Tabiff0215a2006-11-28 12:09:35 -0600207 if (i2c_read(chip, addr, alen, linebuf, linebytes) != 0)
wdenk42c05472004-03-23 22:14:11 +0000208 puts ("Error reading the chip.\n");
Timur Tabiff0215a2006-11-28 12:09:35 -0600209 else {
wdenk81a88242002-10-26 15:22:42 +0000210 printf("%04x:", addr);
211 cp = linebuf;
212 for (j=0; j<linebytes; j++) {
213 printf(" %02x", *cp++);
214 addr++;
215 }
wdenk42c05472004-03-23 22:14:11 +0000216 puts (" ");
wdenk81a88242002-10-26 15:22:42 +0000217 cp = linebuf;
218 for (j=0; j<linebytes; j++) {
219 if ((*cp < 0x20) || (*cp > 0x7e))
wdenk42c05472004-03-23 22:14:11 +0000220 puts (".");
wdenk81a88242002-10-26 15:22:42 +0000221 else
222 printf("%c", *cp);
223 cp++;
224 }
wdenk42c05472004-03-23 22:14:11 +0000225 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000226 }
227 nbytes -= linebytes;
228 } while (nbytes > 0);
229
230 i2c_dp_last_chip = chip;
231 i2c_dp_last_addr = addr;
232 i2c_dp_last_alen = alen;
233 i2c_dp_last_length = length;
234
235 return 0;
236}
237
238int do_i2c_mm ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
239{
240 return mod_i2c_mem (cmdtp, 1, flag, argc, argv);
241}
242
243
244int do_i2c_nm ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
245{
246 return mod_i2c_mem (cmdtp, 0, flag, argc, argv);
247}
248
249/* Write (fill) memory
250 *
251 * Syntax:
252 * imw {i2c_chip} {addr}{.0, .1, .2} {data} [{count}]
253 */
254int do_i2c_mw ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
255{
256 uchar chip;
257 ulong addr;
258 uint alen;
259 uchar byte;
260 int count;
261 int j;
262
263 if ((argc < 4) || (argc > 5)) {
264 printf ("Usage:\n%s\n", cmdtp->usage);
265 return 1;
266 }
267
268 /*
269 * Chip is always specified.
270 */
271 chip = simple_strtoul(argv[1], NULL, 16);
272
273 /*
274 * Address is always specified.
275 */
276 addr = simple_strtoul(argv[2], NULL, 16);
277 alen = 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600278 for (j = 0; j < 8; j++) {
wdenk81a88242002-10-26 15:22:42 +0000279 if (argv[2][j] == '.') {
280 alen = argv[2][j+1] - '0';
Timur Tabiff0215a2006-11-28 12:09:35 -0600281 if (alen > 4) {
wdenk81a88242002-10-26 15:22:42 +0000282 printf ("Usage:\n%s\n", cmdtp->usage);
283 return 1;
284 }
285 break;
Timur Tabiff0215a2006-11-28 12:09:35 -0600286 } else if (argv[2][j] == '\0')
wdenk81a88242002-10-26 15:22:42 +0000287 break;
wdenk81a88242002-10-26 15:22:42 +0000288 }
289
290 /*
291 * Value to write is always specified.
292 */
293 byte = simple_strtoul(argv[3], NULL, 16);
294
295 /*
296 * Optional count
297 */
Timur Tabiff0215a2006-11-28 12:09:35 -0600298 if (argc == 5)
wdenk81a88242002-10-26 15:22:42 +0000299 count = simple_strtoul(argv[4], NULL, 16);
Timur Tabiff0215a2006-11-28 12:09:35 -0600300 else
wdenk81a88242002-10-26 15:22:42 +0000301 count = 1;
wdenk81a88242002-10-26 15:22:42 +0000302
303 while (count-- > 0) {
Timur Tabiff0215a2006-11-28 12:09:35 -0600304 if (i2c_write(chip, addr++, alen, &byte, 1) != 0)
wdenk42c05472004-03-23 22:14:11 +0000305 puts ("Error writing the chip.\n");
wdenk81a88242002-10-26 15:22:42 +0000306 /*
307 * Wait for the write to complete. The write can take
308 * up to 10mSec (we allow a little more time).
309 *
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.
313 */
m8a484c602005-08-12 21:16:13 +0200314/*
315 * No write delay with FRAM devices.
316 */
317#if !defined(CFG_I2C_FRAM)
wdenk81a88242002-10-26 15:22:42 +0000318 udelay(11000);
m8a484c602005-08-12 21:16:13 +0200319#endif
320
wdenk81a88242002-10-26 15:22:42 +0000321#if 0
Timur Tabiff0215a2006-11-28 12:09:35 -0600322 for (timeout = 0; timeout < 10; timeout++) {
wdenk81a88242002-10-26 15:22:42 +0000323 udelay(2000);
Timur Tabiff0215a2006-11-28 12:09:35 -0600324 if (i2c_probe(chip) == 0)
wdenk81a88242002-10-26 15:22:42 +0000325 break;
326 }
327#endif
328 }
329
330 return (0);
331}
332
333
334/* Calculate a CRC on memory
335 *
336 * Syntax:
337 * icrc32 {i2c_chip} {addr}{.0, .1, .2} {count}
338 */
339int 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 printf ("Usage:\n%s\n", cmdtp->usage);
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;
Timur Tabiff0215a2006-11-28 12:09:35 -0600365 for (j = 0; j < 8; j++) {
wdenk81a88242002-10-26 15:22:42 +0000366 if (argv[2][j] == '.') {
367 alen = argv[2][j+1] - '0';
Timur Tabiff0215a2006-11-28 12:09:35 -0600368 if (alen > 4) {
wdenk81a88242002-10-26 15:22:42 +0000369 printf ("Usage:\n%s\n", cmdtp->usage);
370 return 1;
371 }
372 break;
Timur Tabiff0215a2006-11-28 12:09:35 -0600373 } else if (argv[2][j] == '\0')
wdenk81a88242002-10-26 15:22:42 +0000374 break;
wdenk81a88242002-10-26 15:22:42 +0000375 }
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;
Timur Tabiff0215a2006-11-28 12:09:35 -0600389 while (count-- > 0) {
390 if (i2c_read(chip, addr, alen, &byte, 1) != 0)
wdenk81a88242002-10-26 15:22:42 +0000391 err++;
wdenk81a88242002-10-26 15:22:42 +0000392 crc = crc32 (crc, &byte, 1);
393 addr++;
394 }
Timur Tabiff0215a2006-11-28 12:09:35 -0600395 if (err > 0)
wdenk42c05472004-03-23 22:14:11 +0000396 puts ("Error reading the chip,\n");
Timur Tabiff0215a2006-11-28 12:09:35 -0600397 else
wdenk81a88242002-10-26 15:22:42 +0000398 printf ("%08lx\n", crc);
wdenk81a88242002-10-26 15:22:42 +0000399
400 return 0;
401}
402
403
404/* Modify memory.
405 *
406 * Syntax:
407 * imm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
408 * inm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
409 */
410
411static int
412mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char *argv[])
413{
414 uchar chip;
415 ulong addr;
416 uint alen;
417 ulong data;
418 int size = 1;
419 int nbytes;
420 int j;
421 extern char console_buffer[];
422
423 if (argc != 3) {
424 printf ("Usage:\n%s\n", cmdtp->usage);
425 return 1;
426 }
427
428#ifdef CONFIG_BOOT_RETRY_TIME
429 reset_cmd_timeout(); /* got a good command to get here */
430#endif
431 /*
432 * We use the last specified parameters, unless new ones are
433 * entered.
434 */
435 chip = i2c_mm_last_chip;
436 addr = i2c_mm_last_addr;
437 alen = i2c_mm_last_alen;
438
439 if ((flag & CMD_FLAG_REPEAT) == 0) {
440 /*
441 * New command specified. Check for a size specification.
442 * Defaults to byte if no or incorrect specification.
443 */
444 size = cmd_get_data_size(argv[0], 1);
445
446 /*
447 * Chip is always specified.
448 */
449 chip = simple_strtoul(argv[1], NULL, 16);
450
451 /*
452 * Address is always specified.
453 */
454 addr = simple_strtoul(argv[2], NULL, 16);
455 alen = 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600456 for (j = 0; j < 8; j++) {
wdenk81a88242002-10-26 15:22:42 +0000457 if (argv[2][j] == '.') {
458 alen = argv[2][j+1] - '0';
Timur Tabiff0215a2006-11-28 12:09:35 -0600459 if (alen > 4) {
wdenk81a88242002-10-26 15:22:42 +0000460 printf ("Usage:\n%s\n", cmdtp->usage);
461 return 1;
462 }
463 break;
Timur Tabiff0215a2006-11-28 12:09:35 -0600464 } else if (argv[2][j] == '\0')
wdenk81a88242002-10-26 15:22:42 +0000465 break;
wdenk81a88242002-10-26 15:22:42 +0000466 }
467 }
468
469 /*
470 * Print the address, followed by value. Then accept input for
471 * the next value. A non-converted value exits.
472 */
473 do {
474 printf("%08lx:", addr);
Timur Tabiff0215a2006-11-28 12:09:35 -0600475 if (i2c_read(chip, addr, alen, (uchar *)&data, size) != 0)
wdenk42c05472004-03-23 22:14:11 +0000476 puts ("\nError reading the chip,\n");
Timur Tabiff0215a2006-11-28 12:09:35 -0600477 else {
wdenk81a88242002-10-26 15:22:42 +0000478 data = cpu_to_be32(data);
Timur Tabiff0215a2006-11-28 12:09:35 -0600479 if (size == 1)
wdenk81a88242002-10-26 15:22:42 +0000480 printf(" %02lx", (data >> 24) & 0x000000FF);
Timur Tabiff0215a2006-11-28 12:09:35 -0600481 else if (size == 2)
wdenk81a88242002-10-26 15:22:42 +0000482 printf(" %04lx", (data >> 16) & 0x0000FFFF);
Timur Tabiff0215a2006-11-28 12:09:35 -0600483 else
wdenk81a88242002-10-26 15:22:42 +0000484 printf(" %08lx", data);
wdenk81a88242002-10-26 15:22:42 +0000485 }
486
487 nbytes = readline (" ? ");
488 if (nbytes == 0) {
489 /*
490 * <CR> pressed as only input, don't modify current
491 * location and move to next.
492 */
493 if (incrflag)
494 addr += size;
495 nbytes = size;
496#ifdef CONFIG_BOOT_RETRY_TIME
497 reset_cmd_timeout(); /* good enough to not time out */
498#endif
499 }
500#ifdef CONFIG_BOOT_RETRY_TIME
Timur Tabiff0215a2006-11-28 12:09:35 -0600501 else if (nbytes == -2)
wdenk81a88242002-10-26 15:22:42 +0000502 break; /* timed out, exit the command */
wdenk81a88242002-10-26 15:22:42 +0000503#endif
504 else {
505 char *endp;
506
507 data = simple_strtoul(console_buffer, &endp, 16);
Timur Tabiff0215a2006-11-28 12:09:35 -0600508 if (size == 1)
wdenk81a88242002-10-26 15:22:42 +0000509 data = data << 24;
Timur Tabiff0215a2006-11-28 12:09:35 -0600510 else if (size == 2)
wdenk81a88242002-10-26 15:22:42 +0000511 data = data << 16;
wdenk81a88242002-10-26 15:22:42 +0000512 data = be32_to_cpu(data);
513 nbytes = endp - console_buffer;
514 if (nbytes) {
515#ifdef CONFIG_BOOT_RETRY_TIME
516 /*
517 * good enough to not time out
518 */
519 reset_cmd_timeout();
520#endif
Timur Tabiff0215a2006-11-28 12:09:35 -0600521 if (i2c_write(chip, addr, alen, (uchar *)&data, size) != 0)
wdenk42c05472004-03-23 22:14:11 +0000522 puts ("Error writing the chip.\n");
wdenk2bb11052003-07-17 23:16:40 +0000523#ifdef CFG_EEPROM_PAGE_WRITE_DELAY_MS
524 udelay(CFG_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
525#endif
wdenk81a88242002-10-26 15:22:42 +0000526 if (incrflag)
527 addr += size;
528 }
529 }
530 } while (nbytes);
531
532 chip = i2c_mm_last_chip;
533 addr = i2c_mm_last_addr;
534 alen = i2c_mm_last_alen;
535
536 return 0;
537}
538
539/*
540 * Syntax:
541 * iprobe {addr}{.0, .1, .2}
542 */
543int do_i2c_probe (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
544{
545 int j;
546#if defined(CFG_I2C_NOPROBES)
547 int k, skip;
Ben Warren45657152006-09-07 16:50:54 -0400548 uchar bus = GET_BUS_NUM;
549#endif /* NOPROBES */
wdenk81a88242002-10-26 15:22:42 +0000550
wdenk42c05472004-03-23 22:14:11 +0000551 puts ("Valid chip addresses:");
Timur Tabiff0215a2006-11-28 12:09:35 -0600552 for (j = 0; j < 128; j++) {
wdenk81a88242002-10-26 15:22:42 +0000553#if defined(CFG_I2C_NOPROBES)
554 skip = 0;
Timur Tabiff0215a2006-11-28 12:09:35 -0600555 for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
556 if (COMPARE_BUS(bus, k) && COMPARE_ADDR(j, k)) {
wdenk81a88242002-10-26 15:22:42 +0000557 skip = 1;
558 break;
559 }
560 }
561 if (skip)
562 continue;
563#endif
Timur Tabiff0215a2006-11-28 12:09:35 -0600564 if (i2c_probe(j) == 0)
wdenk81a88242002-10-26 15:22:42 +0000565 printf(" %02X", j);
wdenk81a88242002-10-26 15:22:42 +0000566 }
wdenk42c05472004-03-23 22:14:11 +0000567 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000568
569#if defined(CFG_I2C_NOPROBES)
570 puts ("Excluded chip addresses:");
Timur Tabiff0215a2006-11-28 12:09:35 -0600571 for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
572 if (COMPARE_BUS(bus,k))
Ben Warren45657152006-09-07 16:50:54 -0400573 printf(" %02X", NO_PROBE_ADDR(k));
574 }
wdenk42c05472004-03-23 22:14:11 +0000575 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000576#endif
577
578 return 0;
579}
580
581
582/*
583 * Syntax:
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
587 */
588int do_i2c_loop(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
589{
590 u_char chip;
591 ulong alen;
592 uint addr;
593 uint length;
594 u_char bytes[16];
595 int delay;
596 int j;
597
598 if (argc < 3) {
599 printf ("Usage:\n%s\n", cmdtp->usage);
600 return 1;
601 }
602
603 /*
604 * Chip is always specified.
605 */
606 chip = simple_strtoul(argv[1], NULL, 16);
607
608 /*
609 * Address is always specified.
610 */
611 addr = simple_strtoul(argv[2], NULL, 16);
612 alen = 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600613 for (j = 0; j < 8; j++) {
wdenk81a88242002-10-26 15:22:42 +0000614 if (argv[2][j] == '.') {
615 alen = argv[2][j+1] - '0';
616 if (alen > 4) {
617 printf ("Usage:\n%s\n", cmdtp->usage);
618 return 1;
619 }
620 break;
Timur Tabiff0215a2006-11-28 12:09:35 -0600621 } else if (argv[2][j] == '\0')
wdenk81a88242002-10-26 15:22:42 +0000622 break;
wdenk81a88242002-10-26 15:22:42 +0000623 }
624
625 /*
626 * Length is the number of objects, not number of bytes.
627 */
628 length = 1;
629 length = simple_strtoul(argv[3], NULL, 16);
Timur Tabiff0215a2006-11-28 12:09:35 -0600630 if (length > sizeof(bytes))
wdenk81a88242002-10-26 15:22:42 +0000631 length = sizeof(bytes);
wdenk81a88242002-10-26 15:22:42 +0000632
633 /*
634 * The delay time (uSec) is optional.
635 */
636 delay = 1000;
Timur Tabiff0215a2006-11-28 12:09:35 -0600637 if (argc > 3)
wdenk81a88242002-10-26 15:22:42 +0000638 delay = simple_strtoul(argv[4], NULL, 10);
wdenk81a88242002-10-26 15:22:42 +0000639 /*
640 * Run the loop...
641 */
Timur Tabiff0215a2006-11-28 12:09:35 -0600642 while (1) {
643 if (i2c_read(chip, addr, alen, bytes, length) != 0)
wdenk42c05472004-03-23 22:14:11 +0000644 puts ("Error reading the chip.\n");
wdenk81a88242002-10-26 15:22:42 +0000645 udelay(delay);
646 }
647
648 /* NOTREACHED */
649 return 0;
650}
651
652
653/*
654 * The SDRAM command is separately configured because many
655 * (most?) embedded boards don't use SDRAM DIMMs.
656 */
Jon Loeligerd76b5c12007-07-08 18:02:23 -0500657#if defined(CONFIG_CMD_SDRAM)
wdenk81a88242002-10-26 15:22:42 +0000658
659/*
660 * Syntax:
661 * sdram {i2c_chip}
662 */
663int do_sdram ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
664{
Larry Johnson330d19a2008-01-10 22:23:39 -0500665 enum {unknown, EDO, SDRAM, DDR2} type;
wdenk81a88242002-10-26 15:22:42 +0000666 u_char chip;
667 u_char data[128];
668 u_char cksum;
669 int j;
670
671 if (argc < 2) {
672 printf ("Usage:\n%s\n", cmdtp->usage);
673 return 1;
674 }
675 /*
676 * Chip is always specified.
677 */
678 chip = simple_strtoul(argv[1], NULL, 16);
679
Timur Tabiff0215a2006-11-28 12:09:35 -0600680 if (i2c_read(chip, 0, 1, data, sizeof(data)) != 0) {
wdenk42c05472004-03-23 22:14:11 +0000681 puts ("No SDRAM Serial Presence Detect found.\n");
wdenk81a88242002-10-26 15:22:42 +0000682 return 1;
683 }
684
685 cksum = 0;
686 for (j = 0; j < 63; j++) {
687 cksum += data[j];
688 }
Timur Tabiff0215a2006-11-28 12:09:35 -0600689 if (cksum != data[63]) {
wdenk81a88242002-10-26 15:22:42 +0000690 printf ("WARNING: Configuration data checksum failure:\n"
691 " is 0x%02x, calculated 0x%02x\n",
692 data[63], cksum);
693 }
694 printf("SPD data revision %d.%d\n",
695 (data[62] >> 4) & 0x0F, data[62] & 0x0F);
696 printf("Bytes used 0x%02X\n", data[0]);
697 printf("Serial memory size 0x%02X\n", 1 << data[1]);
wdenk42c05472004-03-23 22:14:11 +0000698 puts ("Memory type ");
wdenk81a88242002-10-26 15:22:42 +0000699 switch(data[2]) {
Larry Johnson330d19a2008-01-10 22:23:39 -0500700 case 2:
701 type = EDO;
702 puts ("EDO\n");
703 break;
704 case 4:
705 type = SDRAM;
706 puts ("SDRAM\n");
707 break;
708 case 8:
709 type = DDR2;
710 puts ("DDR2\n");
711 break;
712 default:
713 type = unknown;
714 puts ("unknown\n");
715 break;
wdenk81a88242002-10-26 15:22:42 +0000716 }
wdenk42c05472004-03-23 22:14:11 +0000717 puts ("Row address bits ");
Timur Tabiff0215a2006-11-28 12:09:35 -0600718 if ((data[3] & 0x00F0) == 0)
wdenk81a88242002-10-26 15:22:42 +0000719 printf("%d\n", data[3] & 0x0F);
Timur Tabiff0215a2006-11-28 12:09:35 -0600720 else
wdenk81a88242002-10-26 15:22:42 +0000721 printf("%d/%d\n", data[3] & 0x0F, (data[3] >> 4) & 0x0F);
wdenk42c05472004-03-23 22:14:11 +0000722 puts ("Column address bits ");
Timur Tabiff0215a2006-11-28 12:09:35 -0600723 if ((data[4] & 0x00F0) == 0)
wdenk81a88242002-10-26 15:22:42 +0000724 printf("%d\n", data[4] & 0x0F);
Timur Tabiff0215a2006-11-28 12:09:35 -0600725 else
wdenk81a88242002-10-26 15:22:42 +0000726 printf("%d/%d\n", data[4] & 0x0F, (data[4] >> 4) & 0x0F);
Larry Johnson330d19a2008-01-10 22:23:39 -0500727
728 switch (type) {
729 case DDR2:
730 printf("Number of ranks %d\n",
731 (data[5] & 0x07) + 1);
732 break;
733 default:
734 printf("Module rows %d\n", data[5]);
735 break;
736 }
737
738 switch (type) {
739 case DDR2:
740 printf("Module data width %d bits\n", data[6]);
741 break;
742 default:
743 printf("Module data width %d bits\n",
744 (data[7] << 8) | data[6]);
745 break;
746 }
747
wdenk42c05472004-03-23 22:14:11 +0000748 puts ("Interface signal levels ");
wdenk81a88242002-10-26 15:22:42 +0000749 switch(data[8]) {
Larry Johnson330d19a2008-01-10 22:23:39 -0500750 case 0: puts ("TTL 5.0 V\n"); break;
wdenk42c05472004-03-23 22:14:11 +0000751 case 1: puts ("LVTTL\n"); break;
Larry Johnson330d19a2008-01-10 22:23:39 -0500752 case 2: puts ("HSTL 1.5 V\n"); break;
753 case 3: puts ("SSTL 3.3 V\n"); break;
754 case 4: puts ("SSTL 2.5 V\n"); break;
755 case 5: puts ("SSTL 1.8 V\n"); break;
wdenk42c05472004-03-23 22:14:11 +0000756 default: puts ("unknown\n"); break;
wdenk81a88242002-10-26 15:22:42 +0000757 }
Larry Johnson330d19a2008-01-10 22:23:39 -0500758
759 switch (type) {
760 case DDR2:
761 printf("SDRAM cycle time %d.",
762 (data[9] >> 4) & 0x0F);
763 switch (data[9] & 0x0F) {
764 case 0x0:
765 case 0x1:
766 case 0x2:
767 case 0x3:
768 case 0x4:
769 case 0x5:
770 case 0x6:
771 case 0x7:
772 case 0x8:
773 case 0x9:
774 printf("%d ns\n", data[9] & 0x0F);
775 break;
776 case 0xA:
777 puts("25 ns\n");
778 break;
779 case 0xB:
780 puts("33 ns\n");
781 break;
782 case 0xC:
783 puts("66 ns\n");
784 break;
785 case 0xD:
786 puts("75 ns\n");
787 break;
788 default:
789 puts("?? ns\n");
790 break;
791 }
792 break;
793 default:
794 printf("SDRAM cycle time %d.%d nS\n",
795 (data[9] >> 4) & 0x0F, data[9] & 0x0F);
796 break;
797 }
798
799 switch (type) {
800 case DDR2:
801 printf("SDRAM access time 0.%d%d ns\n",
802 (data[10] >> 4) & 0x0F, data[10] & 0x0F);
803 break;
804 default:
805 printf("SDRAM access time %d.%d nS\n",
806 (data[10] >> 4) & 0x0F, data[10] & 0x0F);
807 break;
808 }
809
wdenk42c05472004-03-23 22:14:11 +0000810 puts ("EDC configuration ");
wdenk81a88242002-10-26 15:22:42 +0000811 switch(data[11]) {
wdenk42c05472004-03-23 22:14:11 +0000812 case 0: puts ("None\n"); break;
813 case 1: puts ("Parity\n"); break;
814 case 2: puts ("ECC\n"); break;
815 default: puts ("unknown\n"); break;
wdenk81a88242002-10-26 15:22:42 +0000816 }
Timur Tabiff0215a2006-11-28 12:09:35 -0600817 if ((data[12] & 0x80) == 0)
wdenk42c05472004-03-23 22:14:11 +0000818 puts ("No self refresh, rate ");
Timur Tabiff0215a2006-11-28 12:09:35 -0600819 else
wdenk42c05472004-03-23 22:14:11 +0000820 puts ("Self refresh, rate ");
wdenk81a88242002-10-26 15:22:42 +0000821 switch(data[12] & 0x7F) {
Larry Johnson330d19a2008-01-10 22:23:39 -0500822 case 0: puts ("15.625 uS\n"); break;
823 case 1: puts ("3.9 uS\n"); break;
824 case 2: puts ("7.8 uS \n"); break;
825 case 3: puts ("31.3 uS\n"); break;
826 case 4: puts ("62.5 uS\n"); break;
827 case 5: puts ("125 uS\n"); break;
wdenk42c05472004-03-23 22:14:11 +0000828 default: puts ("unknown\n"); break;
wdenk81a88242002-10-26 15:22:42 +0000829 }
Larry Johnson330d19a2008-01-10 22:23:39 -0500830
831 switch (type) {
832 case DDR2:
833 printf("SDRAM width (primary) %d\n", data[13]);
834 break;
835 default:
836 printf("SDRAM width (primary) %d\n", data[13] & 0x7F);
837 if ((data[13] & 0x80) != 0) {
wdenk81a88242002-10-26 15:22:42 +0000838 printf(" (second bank) %d\n",
Larry Johnson330d19a2008-01-10 22:23:39 -0500839 2 * (data[13] & 0x7F));
840 }
841 break;
842 }
843
844 switch (type) {
845 case DDR2:
846 if (data[14] != 0)
847 printf("EDC width %d\n", data[14]);
848 break;
849 default:
850 if (data[14] != 0) {
851 printf("EDC width %d\n",
852 data[14] & 0x7F);
853
854 if ((data[14] & 0x80) != 0) {
855 printf(" (second bank) %d\n",
856 2 * (data[14] & 0x7F));
857 }
858 }
859 break;
wdenk81a88242002-10-26 15:22:42 +0000860 }
Larry Johnson330d19a2008-01-10 22:23:39 -0500861
862 if (DDR2 != type ) {
863 printf("Min clock delay, back-to-back random column addresses "
864 "%d\n", data[15]);
865 }
866
wdenk42c05472004-03-23 22:14:11 +0000867 puts ("Burst length(s) ");
868 if (data[16] & 0x80) puts (" Page");
869 if (data[16] & 0x08) puts (" 8");
870 if (data[16] & 0x04) puts (" 4");
871 if (data[16] & 0x02) puts (" 2");
872 if (data[16] & 0x01) puts (" 1");
873 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000874 printf("Number of banks %d\n", data[17]);
Larry Johnson330d19a2008-01-10 22:23:39 -0500875
876 switch (type) {
877 case DDR2:
878 puts ("CAS latency(s) ");
879 if (data[18] & 0x83) puts (" TBD");
880 if (data[18] & 0x40) puts (" 6");
881 if (data[18] & 0x20) puts (" 5");
882 if (data[18] & 0x10) puts (" 4");
883 if (data[18] & 0x08) puts (" 3");
884 if (data[18] & 0x04) puts (" 2");
885 putc ('\n');
886 break;
887 default:
888 puts ("CAS latency(s) ");
889 if (data[18] & 0x80) puts (" TBD");
890 if (data[18] & 0x40) puts (" 7");
891 if (data[18] & 0x20) puts (" 6");
892 if (data[18] & 0x10) puts (" 5");
893 if (data[18] & 0x08) puts (" 4");
894 if (data[18] & 0x04) puts (" 3");
895 if (data[18] & 0x02) puts (" 2");
896 if (data[18] & 0x01) puts (" 1");
897 putc ('\n');
898 break;
899 }
900
901 if (DDR2 != type) {
902 puts ("CS latency(s) ");
903 if (data[19] & 0x80) puts (" TBD");
904 if (data[19] & 0x40) puts (" 6");
905 if (data[19] & 0x20) puts (" 5");
906 if (data[19] & 0x10) puts (" 4");
907 if (data[19] & 0x08) puts (" 3");
908 if (data[19] & 0x04) puts (" 2");
909 if (data[19] & 0x02) puts (" 1");
910 if (data[19] & 0x01) puts (" 0");
911 putc ('\n');
912 }
913
914 if (DDR2 != type) {
915 puts ("WE latency(s) ");
916 if (data[20] & 0x80) puts (" TBD");
917 if (data[20] & 0x40) puts (" 6");
918 if (data[20] & 0x20) puts (" 5");
919 if (data[20] & 0x10) puts (" 4");
920 if (data[20] & 0x08) puts (" 3");
921 if (data[20] & 0x04) puts (" 2");
922 if (data[20] & 0x02) puts (" 1");
923 if (data[20] & 0x01) puts (" 0");
924 putc ('\n');
925 }
926
927 switch (type) {
928 case DDR2:
929 puts ("Module attributes:\n");
930 if (data[21] & 0x80)
931 puts (" TBD (bit 7)\n");
932 if (data[21] & 0x40)
933 puts (" Analysis probe installed\n");
934 if (data[21] & 0x20)
935 puts (" TBD (bit 5)\n");
936 if (data[21] & 0x10)
937 puts (" FET switch external enable\n");
938 printf(" %d PLLs on DIMM\n", (data[21] >> 2) & 0x03);
939 if (data[20] & 0x11) {
940 printf(" %d active registers on DIMM\n",
941 (data[21] & 0x03) + 1);
942 }
943 break;
944 default:
945 puts ("Module attributes:\n");
946 if (!data[21])
947 puts (" (none)\n");
948 if (data[21] & 0x80)
949 puts (" TBD (bit 7)\n");
950 if (data[21] & 0x40)
951 puts (" Redundant row address\n");
952 if (data[21] & 0x20)
953 puts (" Differential clock input\n");
954 if (data[21] & 0x10)
955 puts (" Registerd DQMB inputs\n");
956 if (data[21] & 0x08)
957 puts (" Buffered DQMB inputs\n");
958 if (data[21] & 0x04)
959 puts (" On-card PLL\n");
960 if (data[21] & 0x02)
961 puts (" Registered address/control lines\n");
962 if (data[21] & 0x01)
963 puts (" Buffered address/control lines\n");
964 break;
965 }
966
967 switch (type) {
968 case DDR2:
969 if (data[22] & 0x80) puts (" TBD (bit 7)\n");
970 if (data[22] & 0x40) puts (" TBD (bit 6)\n");
971 if (data[22] & 0x20) puts (" TBD (bit 5)\n");
972 if (data[22] & 0x10) puts (" TBD (bit 4)\n");
973 if (data[22] & 0x08) puts (" TBD (bit 3)\n");
974 if (data[22] & 0x04)
975 puts (" Supports parital array self refresh\n");
976 if (data[22] & 0x02)
977 puts (" Supports 50 ohm ODT\n");
978 if (data[22] & 0x01)
979 puts (" Supports weak driver\n");
980 break;
981 default:
982 puts ("Device attributes:\n");
983 if (data[22] & 0x80) puts (" TBD (bit 7)\n");
984 if (data[22] & 0x40) puts (" TBD (bit 6)\n");
985 if (data[22] & 0x20) puts (" Upper Vcc tolerance 5%\n");
986 else puts (" Upper Vcc tolerance 10%\n");
987 if (data[22] & 0x10) puts (" Lower Vcc tolerance 5%\n");
988 else puts (" Lower Vcc tolerance 10%\n");
989 if (data[22] & 0x08) puts (" Supports write1/read burst\n");
990 if (data[22] & 0x04) puts (" Supports precharge all\n");
991 if (data[22] & 0x02) puts (" Supports auto precharge\n");
992 if (data[22] & 0x01) puts (" Supports early RAS# precharge\n");
993 break;
994 }
995
996 switch (type) {
997 case DDR2:
998 printf("SDRAM cycle time (2nd highest CAS latency) %d.",
999 (data[23] >> 4) & 0x0F);
1000
1001 switch (data[23] & 0x0F) {
1002 case 0x0:
1003 case 0x1:
1004 case 0x2:
1005 case 0x3:
1006 case 0x4:
1007 case 0x5:
1008 case 0x6:
1009 case 0x7:
1010 case 0x8:
1011 case 0x9:
1012 printf("%d ns\n", data[23] & 0x0F);
1013 break;
1014 case 0xA:
1015 puts("25 ns\n");
1016 break;
1017 case 0xB:
1018 puts("33 ns\n");
1019 break;
1020 case 0xC:
1021 puts("66 ns\n");
1022 break;
1023 case 0xD:
1024 puts("75 ns\n");
1025 break;
1026 default:
1027 puts("?? ns\n");
1028 break;
1029 }
1030 break;
1031 default:
1032 printf("SDRAM cycle time (2nd highest CAS latency) %d."
1033 "%d nS\n", (data[23] >> 4) & 0x0F, data[23] & 0x0F);
1034 break;
1035 }
1036
1037 switch (type) {
1038 case DDR2:
1039 printf("SDRAM access from clock (2nd highest CAS latency) 0."
1040 "%d%d ns\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F);
1041 break;
1042 default:
1043 printf("SDRAM access from clock (2nd highest CAS latency) %d."
1044 "%d nS\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F);
1045 break;
1046 }
1047
1048 switch (type) {
1049 case DDR2:
1050 printf("SDRAM cycle time (3rd highest CAS latency) %d.",
1051 (data[25] >> 4) & 0x0F);
1052
1053 switch (data[25] & 0x0F) {
1054 case 0x0:
1055 case 0x1:
1056 case 0x2:
1057 case 0x3:
1058 case 0x4:
1059 case 0x5:
1060 case 0x6:
1061 case 0x7:
1062 case 0x8:
1063 case 0x9:
1064 printf("%d ns\n", data[25] & 0x0F);
1065 break;
1066 case 0xA:
1067 puts("25 ns\n");
1068 break;
1069 case 0xB:
1070 puts("33 ns\n");
1071 break;
1072 case 0xC:
1073 puts("66 ns\n");
1074 break;
1075 case 0xD:
1076 puts("75 ns\n");
1077 break;
1078 default:
1079 puts("?? ns\n");
1080 break;
1081 }
1082 break;
1083 default:
1084 printf("SDRAM cycle time (3rd highest CAS latency) %d."
1085 "%d nS\n", (data[25] >> 4) & 0x0F, data[25] & 0x0F);
1086 break;
1087 }
1088
1089 switch (type) {
1090 case DDR2:
1091 printf("SDRAM access from clock (3rd highest CAS latency) 0."
1092 "%d%d ns\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F);
1093 break;
1094 default:
1095 printf("SDRAM access from clock (3rd highest CAS latency) %d."
1096 "%d nS\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F);
1097 break;
1098 }
1099
1100 switch (type) {
1101 case DDR2:
1102 printf("Minimum row precharge %d", data[27] >> 2);
1103 switch (data[27] & 0x03) {
1104 case 0x0: puts(".00 ns\n"); break;
1105 case 0x1: puts(".25 ns\n"); break;
1106 case 0x2: puts(".50 ns\n"); break;
1107 case 0x3: puts(".75 ns\n"); break;
1108 }
1109 break;
1110 default:
1111 printf("Minimum row precharge %d nS\n", data[27]);
1112 break;
1113 }
1114
1115 switch (type) {
1116 case DDR2:
1117 printf("Row active to row active min %d", data[28] >> 2);
1118 switch (data[28] & 0x03) {
1119 case 0x0: puts(".00 ns\n"); break;
1120 case 0x1: puts(".25 ns\n"); break;
1121 case 0x2: puts(".50 ns\n"); break;
1122 case 0x3: puts(".75 ns\n"); break;
1123 }
1124 break;
1125 default:
1126 printf("Row active to row active min %d nS\n", data[28]);
1127 break;
1128 }
1129
1130 switch (type) {
1131 case DDR2:
1132 printf("RAS to CAS delay min %d", data[29] >> 2);
1133 switch (data[29] & 0x03) {
1134 case 0x0: puts(".00 ns\n"); break;
1135 case 0x1: puts(".25 ns\n"); break;
1136 case 0x2: puts(".50 ns\n"); break;
1137 case 0x3: puts(".75 ns\n"); break;
1138 }
1139 break;
1140 default:
1141 printf("RAS to CAS delay min %d nS\n", data[29]);
1142 break;
1143 }
1144
wdenk81a88242002-10-26 15:22:42 +00001145 printf("Minimum RAS pulse width %d nS\n", data[30]);
Larry Johnson330d19a2008-01-10 22:23:39 -05001146
1147 switch (type) {
1148 case DDR2:
1149 puts ("Density of each row ");
1150 if (data[31] & 0x80) puts (" 512 MiB\n");
1151 if (data[31] & 0x40) puts (" 256 MiB\n");
1152 if (data[31] & 0x20) puts (" 128 MiB\n");
1153 if (data[31] & 0x10) puts (" 16 GiB\n");
1154 if (data[31] & 0x08) puts (" 8 GiB\n");
1155 if (data[31] & 0x04) puts (" 4 GiB\n");
1156 if (data[31] & 0x02) puts (" 2 GiB\n");
1157 if (data[31] & 0x01) puts (" 1 GiB\n");
1158 break;
1159 default:
1160 puts ("Density of each row ");
1161 if (data[31] & 0x80) puts (" 512 MiB\n");
1162 if (data[31] & 0x40) puts (" 256 MiB\n");
1163 if (data[31] & 0x20) puts (" 128 MiB\n");
1164 if (data[31] & 0x10) puts (" 64 MiB\n");
1165 if (data[31] & 0x08) puts (" 32 MiB\n");
1166 if (data[31] & 0x04) puts (" 16 MiB\n");
1167 if (data[31] & 0x02) puts (" 8 MiB\n");
1168 if (data[31] & 0x01) puts (" 4 MiB\n");
1169 break;
1170 }
1171
1172 switch (type) {
1173 case DDR2:
1174 puts("Command and Address setup ");
1175 if (data[32] >= 0xA0) {
1176 printf("1.%d%d ns\n",
1177 ((data[32] >> 4) & 0x0F) - 10, data[32] & 0x0F);
1178 } else {
1179 printf("0.%d%d ns\n",
1180 ((data[32] >> 4) & 0x0F), data[32] & 0x0F);
1181 }
1182 break;
1183 default:
1184 printf("Command and Address setup %c%d.%d nS\n",
1185 (data[32] & 0x80) ? '-' : '+',
1186 (data[32] >> 4) & 0x07, data[32] & 0x0F);
1187 break;
1188 }
1189
1190 switch (type) {
1191 case DDR2:
1192 puts("Command and Address hold ");
1193 if (data[33] >= 0xA0) {
1194 printf("1.%d%d ns\n",
1195 ((data[33] >> 4) & 0x0F) - 10, data[33] & 0x0F);
1196 } else {
1197 printf("0.%d%d ns\n",
1198 ((data[33] >> 4) & 0x0F), data[33] & 0x0F);
1199 }
1200 break;
1201 default:
1202 printf("Command and Address hold %c%d.%d nS\n",
1203 (data[33] & 0x80) ? '-' : '+',
1204 (data[33] >> 4) & 0x07, data[33] & 0x0F);
1205 break;
1206 }
1207
1208 switch (type) {
1209 case DDR2:
1210 printf("Data signal input setup 0.%d%d ns\n",
1211 (data[34] >> 4) & 0x0F, data[34] & 0x0F);
1212 break;
1213 default:
1214 printf("Data signal input setup %c%d.%d nS\n",
1215 (data[34] & 0x80) ? '-' : '+',
1216 (data[34] >> 4) & 0x07, data[34] & 0x0F);
1217 break;
1218 }
1219
1220 switch (type) {
1221 case DDR2:
1222 printf("Data signal input hold 0.%d%d ns\n",
1223 (data[35] >> 4) & 0x0F, data[35] & 0x0F);
1224 break;
1225 default:
1226 printf("Data signal input hold %c%d.%d nS\n",
1227 (data[35] & 0x80) ? '-' : '+',
1228 (data[35] >> 4) & 0x07, data[35] & 0x0F);
1229 break;
1230 }
1231
wdenk42c05472004-03-23 22:14:11 +00001232 puts ("Manufacturer's JEDEC ID ");
Timur Tabiff0215a2006-11-28 12:09:35 -06001233 for (j = 64; j <= 71; j++)
wdenk81a88242002-10-26 15:22:42 +00001234 printf("%02X ", data[j]);
wdenk42c05472004-03-23 22:14:11 +00001235 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +00001236 printf("Manufacturing Location %02X\n", data[72]);
wdenk42c05472004-03-23 22:14:11 +00001237 puts ("Manufacturer's Part Number ");
Timur Tabiff0215a2006-11-28 12:09:35 -06001238 for (j = 73; j <= 90; j++)
wdenk81a88242002-10-26 15:22:42 +00001239 printf("%02X ", data[j]);
wdenk42c05472004-03-23 22:14:11 +00001240 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +00001241 printf("Revision Code %02X %02X\n", data[91], data[92]);
1242 printf("Manufacturing Date %02X %02X\n", data[93], data[94]);
wdenk42c05472004-03-23 22:14:11 +00001243 puts ("Assembly Serial Number ");
Timur Tabiff0215a2006-11-28 12:09:35 -06001244 for (j = 95; j <= 98; j++)
wdenk81a88242002-10-26 15:22:42 +00001245 printf("%02X ", data[j]);
wdenk42c05472004-03-23 22:14:11 +00001246 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +00001247
Larry Johnson330d19a2008-01-10 22:23:39 -05001248 if (DDR2 != type) {
1249 printf("Speed rating PC%d\n",
1250 data[126] == 0x66 ? 66 : data[126]);
1251 }
wdenk81a88242002-10-26 15:22:42 +00001252 return 0;
1253}
Jon Loeligerd704d912007-07-10 11:02:44 -05001254#endif
wdenk81a88242002-10-26 15:22:42 +00001255
Ben Warren45657152006-09-07 16:50:54 -04001256#if defined(CONFIG_I2C_CMD_TREE)
1257#if defined(CONFIG_I2C_MULTI_BUS)
1258int do_i2c_bus_num(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
1259{
1260 int bus_idx, ret=0;
1261
Timur Tabiff0215a2006-11-28 12:09:35 -06001262 if (argc == 1)
1263 /* querying current setting */
Ben Warren45657152006-09-07 16:50:54 -04001264 printf("Current bus is %d\n", i2c_get_bus_num());
Timur Tabiff0215a2006-11-28 12:09:35 -06001265 else {
Ben Warren45657152006-09-07 16:50:54 -04001266 bus_idx = simple_strtoul(argv[1], NULL, 10);
1267 printf("Setting bus to %d\n", bus_idx);
1268 ret = i2c_set_bus_num(bus_idx);
Timur Tabiff0215a2006-11-28 12:09:35 -06001269 if (ret)
Ben Warren45657152006-09-07 16:50:54 -04001270 printf("Failure changing bus number (%d)\n", ret);
Ben Warren45657152006-09-07 16:50:54 -04001271 }
1272 return ret;
1273}
1274#endif /* CONFIG_I2C_MULTI_BUS */
1275
1276int do_i2c_bus_speed(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
1277{
1278 int speed, ret=0;
1279
Timur Tabiff0215a2006-11-28 12:09:35 -06001280 if (argc == 1)
1281 /* querying current speed */
Ben Warren45657152006-09-07 16:50:54 -04001282 printf("Current bus speed=%d\n", i2c_get_bus_speed());
Timur Tabiff0215a2006-11-28 12:09:35 -06001283 else {
Ben Warren45657152006-09-07 16:50:54 -04001284 speed = simple_strtoul(argv[1], NULL, 10);
1285 printf("Setting bus speed to %d Hz\n", speed);
1286 ret = i2c_set_bus_speed(speed);
Timur Tabiff0215a2006-11-28 12:09:35 -06001287 if (ret)
Ben Warren45657152006-09-07 16:50:54 -04001288 printf("Failure changing bus speed (%d)\n", ret);
Ben Warren45657152006-09-07 16:50:54 -04001289 }
1290 return ret;
1291}
1292
1293int do_i2c(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
1294{
1295#if defined(CONFIG_I2C_MULTI_BUS)
Timur Tabiff0215a2006-11-28 12:09:35 -06001296 if (!strncmp(argv[1], "de", 2))
Ben Warren45657152006-09-07 16:50:54 -04001297 return do_i2c_bus_num(cmdtp, flag, --argc, ++argv);
Ben Warren45657152006-09-07 16:50:54 -04001298#endif /* CONFIG_I2C_MULTI_BUS */
Timur Tabiff0215a2006-11-28 12:09:35 -06001299 if (!strncmp(argv[1], "sp", 2))
Ben Warren45657152006-09-07 16:50:54 -04001300 return do_i2c_bus_speed(cmdtp, flag, --argc, ++argv);
Timur Tabiff0215a2006-11-28 12:09:35 -06001301 if (!strncmp(argv[1], "md", 2))
Ben Warren45657152006-09-07 16:50:54 -04001302 return do_i2c_md(cmdtp, flag, --argc, ++argv);
Timur Tabiff0215a2006-11-28 12:09:35 -06001303 if (!strncmp(argv[1], "mm", 2))
Ben Warren45657152006-09-07 16:50:54 -04001304 return do_i2c_mm(cmdtp, flag, --argc, ++argv);
Timur Tabiff0215a2006-11-28 12:09:35 -06001305 if (!strncmp(argv[1], "mw", 2))
Ben Warren45657152006-09-07 16:50:54 -04001306 return do_i2c_mw(cmdtp, flag, --argc, ++argv);
Timur Tabiff0215a2006-11-28 12:09:35 -06001307 if (!strncmp(argv[1], "nm", 2))
Ben Warren45657152006-09-07 16:50:54 -04001308 return do_i2c_nm(cmdtp, flag, --argc, ++argv);
Timur Tabiff0215a2006-11-28 12:09:35 -06001309 if (!strncmp(argv[1], "cr", 2))
Ben Warren45657152006-09-07 16:50:54 -04001310 return do_i2c_crc(cmdtp, flag, --argc, ++argv);
Timur Tabiff0215a2006-11-28 12:09:35 -06001311 if (!strncmp(argv[1], "pr", 2))
Ben Warren45657152006-09-07 16:50:54 -04001312 return do_i2c_probe(cmdtp, flag, --argc, ++argv);
Timur Tabiff0215a2006-11-28 12:09:35 -06001313 if (!strncmp(argv[1], "lo", 2))
Ben Warren45657152006-09-07 16:50:54 -04001314 return do_i2c_loop(cmdtp, flag, --argc, ++argv);
Jon Loeligerd76b5c12007-07-08 18:02:23 -05001315#if defined(CONFIG_CMD_SDRAM)
Timur Tabiff0215a2006-11-28 12:09:35 -06001316 if (!strncmp(argv[1], "sd", 2))
Ben Warren45657152006-09-07 16:50:54 -04001317 return do_sdram(cmdtp, flag, --argc, ++argv);
Jon Loeligerd704d912007-07-10 11:02:44 -05001318#endif
Ben Warren45657152006-09-07 16:50:54 -04001319 else
Ben Warren45657152006-09-07 16:50:54 -04001320 printf ("Usage:\n%s\n", cmdtp->usage);
Ben Warren45657152006-09-07 16:50:54 -04001321 return 0;
1322}
1323#endif /* CONFIG_I2C_CMD_TREE */
wdenk57b2d802003-06-27 21:31:46 +00001324
1325/***************************************************/
1326
Matthias Fuchsdd6cffc2007-03-08 16:25:47 +01001327#if defined(CONFIG_I2C_CMD_TREE)
1328U_BOOT_CMD(
1329 i2c, 6, 1, do_i2c,
1330 "i2c - I2C sub-system\n",
1331#if defined(CONFIG_I2C_MULTI_BUS)
1332 "dev [dev] - show or set current I2C bus\n"
1333#endif /* CONFIG_I2C_MULTI_BUS */
1334 "i2c speed [speed] - show or set I2C bus speed\n"
1335 "i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device\n"
1336 "i2c mm chip address[.0, .1, .2] - write to I2C device (auto-incrementing)\n"
1337 "i2c mw chip address[.0, .1, .2] value [count] - write to I2C device (fill)\n"
1338 "i2c nm chip address[.0, .1, .2] - write to I2C device (constant address)\n"
1339 "i2c crc32 chip address[.0, .1, .2] count - compute CRC32 checksum\n"
1340 "i2c probe - show devices on the I2C bus\n"
1341 "i2c loop chip address[.0, .1, .2] [# of objects] - looping read of device\n"
Jon Loeligerd76b5c12007-07-08 18:02:23 -05001342#if defined(CONFIG_CMD_SDRAM)
Matthias Fuchsdd6cffc2007-03-08 16:25:47 +01001343 "i2c sdram chip - print SDRAM configuration information\n"
Jon Loeligerd704d912007-07-10 11:02:44 -05001344#endif
Matthias Fuchsdd6cffc2007-03-08 16:25:47 +01001345);
Stefan Roesed09d6012007-03-28 14:52:12 +02001346#endif /* CONFIG_I2C_CMD_TREE */
wdenkf287a242003-07-01 21:06:45 +00001347U_BOOT_CMD(
1348 imd, 4, 1, do_i2c_md, \
wdenk57b2d802003-06-27 21:31:46 +00001349 "imd - i2c memory display\n", \
1350 "chip address[.0, .1, .2] [# of objects]\n - i2c memory display\n" \
1351);
1352
wdenkf287a242003-07-01 21:06:45 +00001353U_BOOT_CMD(
1354 imm, 3, 1, do_i2c_mm,
wdenk57b2d802003-06-27 21:31:46 +00001355 "imm - i2c memory modify (auto-incrementing)\n",
1356 "chip address[.0, .1, .2]\n"
1357 " - memory modify, auto increment address\n"
1358);
wdenkf287a242003-07-01 21:06:45 +00001359U_BOOT_CMD(
1360 inm, 3, 1, do_i2c_nm,
wdenk57b2d802003-06-27 21:31:46 +00001361 "inm - memory modify (constant address)\n",
1362 "chip address[.0, .1, .2]\n - memory modify, read and keep address\n"
1363);
1364
wdenkf287a242003-07-01 21:06:45 +00001365U_BOOT_CMD(
1366 imw, 5, 1, do_i2c_mw,
wdenk57b2d802003-06-27 21:31:46 +00001367 "imw - memory write (fill)\n",
1368 "chip address[.0, .1, .2] value [count]\n - memory write (fill)\n"
1369);
1370
wdenkf287a242003-07-01 21:06:45 +00001371U_BOOT_CMD(
1372 icrc32, 5, 1, do_i2c_crc,
wdenk57b2d802003-06-27 21:31:46 +00001373 "icrc32 - checksum calculation\n",
1374 "chip address[.0, .1, .2] count\n - compute CRC32 checksum\n"
1375);
1376
wdenkf287a242003-07-01 21:06:45 +00001377U_BOOT_CMD(
1378 iprobe, 1, 1, do_i2c_probe,
wdenk57b2d802003-06-27 21:31:46 +00001379 "iprobe - probe to discover valid I2C chip addresses\n",
1380 "\n -discover valid I2C chip addresses\n"
1381);
1382
1383/*
1384 * Require full name for "iloop" because it is an infinite loop!
1385 */
wdenkf287a242003-07-01 21:06:45 +00001386U_BOOT_CMD(
1387 iloop, 5, 1, do_i2c_loop,
wdenk57b2d802003-06-27 21:31:46 +00001388 "iloop - infinite loop on address range\n",
1389 "chip address[.0, .1, .2] [# of objects]\n"
1390 " - loop, reading a set of addresses\n"
1391);
1392
Jon Loeligerd76b5c12007-07-08 18:02:23 -05001393#if defined(CONFIG_CMD_SDRAM)
wdenkf287a242003-07-01 21:06:45 +00001394U_BOOT_CMD(
1395 isdram, 2, 1, do_sdram,
wdenk57b2d802003-06-27 21:31:46 +00001396 "isdram - print SDRAM configuration information\n",
1397 "chip\n - print SDRAM configuration information\n"
1398 " (valid chip values 50..57)\n"
1399);
1400#endif