blob: 0f3ffc84ff568f5f8f01c94fd75f316d4d5cc6ad [file] [log] [blame]
wdenk38635852002-08-27 05:55:31 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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 * Memory Functions
26 *
27 * Copied from FADS ROM, Dan Malek (dmalek@jlc.net)
28 */
29
30#include <common.h>
31#include <command.h>
wdenk2abbe072003-06-16 23:50:08 +000032#ifdef CONFIG_HAS_DATAFLASH
33#include <dataflash.h>
34#endif
Sergei Poselenova6e6fc62008-04-09 16:09:41 +020035#include <watchdog.h>
Simon Glass15a33e42012-11-30 13:01:20 +000036#include <linux/compiler.h>
37
38DECLARE_GLOBAL_DATA_PTR;
wdenk38635852002-08-27 05:55:31 +000039
Wolfgang Denk54841ab2010-06-28 22:00:46 +020040static int mod_mem(cmd_tbl_t *, int, int, int, char * const []);
wdenk38635852002-08-27 05:55:31 +000041
42/* Display values from last command.
43 * Memory modify remembered values are different from display memory.
44 */
Mike Frysingerd6efe242010-12-22 09:40:29 -050045static uint dp_last_addr, dp_last_size;
46static uint dp_last_length = 0x40;
47static uint mm_last_addr, mm_last_size;
wdenk38635852002-08-27 05:55:31 +000048
49static ulong base_address = 0;
50
51/* Memory Display
52 *
53 * Syntax:
54 * md{.b, .w, .l} {addr} {len}
55 */
56#define DISP_LINE_LEN 16
Kim Phillips088f1b12012-10-29 13:34:31 +000057static int do_mem_md(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000058{
wdenk27b207f2003-07-24 23:38:38 +000059 ulong addr, length;
Grant Likelyc95c4282007-02-20 09:05:00 +010060#if defined(CONFIG_HAS_DATAFLASH)
61 ulong nbytes, linebytes;
62#endif
wdenk27b207f2003-07-24 23:38:38 +000063 int size;
wdenk38635852002-08-27 05:55:31 +000064 int rc = 0;
65
66 /* We use the last specified parameters, unless new ones are
67 * entered.
68 */
69 addr = dp_last_addr;
70 size = dp_last_size;
71 length = dp_last_length;
72
Wolfgang Denk47e26b12010-07-17 01:06:04 +020073 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +000074 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +000075
76 if ((flag & CMD_FLAG_REPEAT) == 0) {
77 /* New command specified. Check for a size specification.
78 * Defaults to long if no or incorrect specification.
79 */
wdenk27b207f2003-07-24 23:38:38 +000080 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
81 return 1;
wdenk38635852002-08-27 05:55:31 +000082
83 /* Address is specified since argc > 1
84 */
85 addr = simple_strtoul(argv[1], NULL, 16);
86 addr += base_address;
87
88 /* If another parameter, it is the length to display.
89 * Length is the number of objects, not number of bytes.
90 */
91 if (argc > 2)
92 length = simple_strtoul(argv[2], NULL, 16);
93 }
94
Grant Likelyc95c4282007-02-20 09:05:00 +010095#if defined(CONFIG_HAS_DATAFLASH)
wdenk38635852002-08-27 05:55:31 +000096 /* Print the lines.
97 *
98 * We buffer all read data, so we can make sure data is read only
99 * once, and all accesses are with the specified bus width.
100 */
101 nbytes = length * size;
102 do {
103 char linebuf[DISP_LINE_LEN];
Grant Likelyc95c4282007-02-20 09:05:00 +0100104 void* p;
wdenk38635852002-08-27 05:55:31 +0000105 linebytes = (nbytes>DISP_LINE_LEN)?DISP_LINE_LEN:nbytes;
wdenk2abbe072003-06-16 23:50:08 +0000106
Grant Likelyc95c4282007-02-20 09:05:00 +0100107 rc = read_dataflash(addr, (linebytes/size)*size, linebuf);
108 p = (rc == DATAFLASH_OK) ? linebuf : (void*)addr;
109 print_buffer(addr, p, size, linebytes/size, DISP_LINE_LEN/size);
wdenk8bde7f72003-06-27 21:31:46 +0000110
wdenk38635852002-08-27 05:55:31 +0000111 nbytes -= linebytes;
Grant Likelyc95c4282007-02-20 09:05:00 +0100112 addr += linebytes;
wdenk38635852002-08-27 05:55:31 +0000113 if (ctrlc()) {
114 rc = 1;
115 break;
116 }
117 } while (nbytes > 0);
Grant Likelyc95c4282007-02-20 09:05:00 +0100118#else
Mike Frysinger4c727c72008-02-04 19:26:56 -0500119
120# if defined(CONFIG_BLACKFIN)
121 /* See if we're trying to display L1 inst */
122 if (addr_bfin_on_chip_mem(addr)) {
123 char linebuf[DISP_LINE_LEN];
124 ulong linebytes, nbytes = length * size;
125 do {
126 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
127 memcpy(linebuf, (void *)addr, linebytes);
128 print_buffer(addr, linebuf, size, linebytes/size, DISP_LINE_LEN/size);
129
130 nbytes -= linebytes;
131 addr += linebytes;
132 if (ctrlc()) {
133 rc = 1;
134 break;
135 }
136 } while (nbytes > 0);
137 } else
138# endif
139
140 {
141 /* Print the lines. */
Kumar Gala94c50f12011-11-12 08:02:12 +0000142 print_buffer(addr, (void*)addr, size, length, DISP_LINE_LEN/size);
143 addr += size*length;
Mike Frysinger4c727c72008-02-04 19:26:56 -0500144 }
Grant Likelyc95c4282007-02-20 09:05:00 +0100145#endif
wdenk38635852002-08-27 05:55:31 +0000146
147 dp_last_addr = addr;
148 dp_last_length = length;
149 dp_last_size = size;
150 return (rc);
151}
152
Kim Phillips088f1b12012-10-29 13:34:31 +0000153static int do_mem_mm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000154{
155 return mod_mem (cmdtp, 1, flag, argc, argv);
156}
Kim Phillips088f1b12012-10-29 13:34:31 +0000157static int do_mem_nm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000158{
159 return mod_mem (cmdtp, 0, flag, argc, argv);
160}
161
Kim Phillips088f1b12012-10-29 13:34:31 +0000162static int do_mem_mw(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000163{
wdenk27b207f2003-07-24 23:38:38 +0000164 ulong addr, writeval, count;
165 int size;
wdenk38635852002-08-27 05:55:31 +0000166
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200167 if ((argc < 3) || (argc > 4))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000168 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000169
170 /* Check for size specification.
171 */
wdenk27b207f2003-07-24 23:38:38 +0000172 if ((size = cmd_get_data_size(argv[0], 4)) < 1)
173 return 1;
wdenk38635852002-08-27 05:55:31 +0000174
175 /* Address is specified since argc > 1
176 */
177 addr = simple_strtoul(argv[1], NULL, 16);
178 addr += base_address;
179
180 /* Get the value to write.
181 */
182 writeval = simple_strtoul(argv[2], NULL, 16);
183
184 /* Count ? */
185 if (argc == 4) {
186 count = simple_strtoul(argv[3], NULL, 16);
187 } else {
188 count = 1;
189 }
190
191 while (count-- > 0) {
192 if (size == 4)
193 *((ulong *)addr) = (ulong )writeval;
194 else if (size == 2)
195 *((ushort *)addr) = (ushort)writeval;
196 else
197 *((u_char *)addr) = (u_char)writeval;
198 addr += size;
199 }
200 return 0;
201}
202
stroese4aaf29b2004-12-16 17:42:39 +0000203#ifdef CONFIG_MX_CYCLIC
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200204int do_mem_mdc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroese4aaf29b2004-12-16 17:42:39 +0000205{
206 int i;
207 ulong count;
208
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200209 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000210 return CMD_RET_USAGE;
stroese4aaf29b2004-12-16 17:42:39 +0000211
212 count = simple_strtoul(argv[3], NULL, 10);
213
214 for (;;) {
215 do_mem_md (NULL, 0, 3, argv);
216
217 /* delay for <count> ms... */
218 for (i=0; i<count; i++)
219 udelay (1000);
220
221 /* check for ctrl-c to abort... */
222 if (ctrlc()) {
223 puts("Abort\n");
224 return 0;
225 }
226 }
227
228 return 0;
229}
230
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200231int do_mem_mwc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroese4aaf29b2004-12-16 17:42:39 +0000232{
233 int i;
234 ulong count;
235
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200236 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000237 return CMD_RET_USAGE;
stroese4aaf29b2004-12-16 17:42:39 +0000238
239 count = simple_strtoul(argv[3], NULL, 10);
240
241 for (;;) {
242 do_mem_mw (NULL, 0, 3, argv);
243
244 /* delay for <count> ms... */
245 for (i=0; i<count; i++)
246 udelay (1000);
247
248 /* check for ctrl-c to abort... */
249 if (ctrlc()) {
250 puts("Abort\n");
251 return 0;
252 }
253 }
254
255 return 0;
256}
257#endif /* CONFIG_MX_CYCLIC */
258
Kim Phillips088f1b12012-10-29 13:34:31 +0000259static int do_mem_cmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000260{
wdenk27b207f2003-07-24 23:38:38 +0000261 ulong addr1, addr2, count, ngood;
262 int size;
wdenk38635852002-08-27 05:55:31 +0000263 int rcode = 0;
Mike Frysinger054ea172012-01-20 09:07:21 +0000264 const char *type;
wdenk38635852002-08-27 05:55:31 +0000265
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200266 if (argc != 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000267 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000268
269 /* Check for size specification.
270 */
wdenk27b207f2003-07-24 23:38:38 +0000271 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
272 return 1;
Mike Frysinger054ea172012-01-20 09:07:21 +0000273 type = size == 4 ? "word" : size == 2 ? "halfword" : "byte";
wdenk38635852002-08-27 05:55:31 +0000274
275 addr1 = simple_strtoul(argv[1], NULL, 16);
276 addr1 += base_address;
277
278 addr2 = simple_strtoul(argv[2], NULL, 16);
279 addr2 += base_address;
280
281 count = simple_strtoul(argv[3], NULL, 16);
282
wdenk2abbe072003-06-16 23:50:08 +0000283#ifdef CONFIG_HAS_DATAFLASH
284 if (addr_dataflash(addr1) | addr_dataflash(addr2)){
wdenk4b9206e2004-03-23 22:14:11 +0000285 puts ("Comparison with DataFlash space not supported.\n\r");
wdenk2abbe072003-06-16 23:50:08 +0000286 return 0;
287 }
288#endif
289
Mike Frysinger4c727c72008-02-04 19:26:56 -0500290#ifdef CONFIG_BLACKFIN
291 if (addr_bfin_on_chip_mem(addr1) || addr_bfin_on_chip_mem(addr2)) {
292 puts ("Comparison with L1 instruction memory not supported.\n\r");
293 return 0;
294 }
295#endif
296
Mike Frysingerfeb12a12012-01-20 09:07:22 +0000297 for (ngood = 0; ngood < count; ++ngood) {
Mike Frysinger054ea172012-01-20 09:07:21 +0000298 ulong word1, word2;
wdenk38635852002-08-27 05:55:31 +0000299 if (size == 4) {
Mike Frysinger054ea172012-01-20 09:07:21 +0000300 word1 = *(ulong *)addr1;
301 word2 = *(ulong *)addr2;
302 } else if (size == 2) {
303 word1 = *(ushort *)addr1;
304 word2 = *(ushort *)addr2;
305 } else {
306 word1 = *(u_char *)addr1;
307 word2 = *(u_char *)addr2;
wdenk38635852002-08-27 05:55:31 +0000308 }
Mike Frysinger054ea172012-01-20 09:07:21 +0000309 if (word1 != word2) {
310 printf("%s at 0x%08lx (%#0*lx) != %s at 0x%08lx (%#0*lx)\n",
311 type, addr1, size, word1,
312 type, addr2, size, word2);
313 rcode = 1;
314 break;
wdenk38635852002-08-27 05:55:31 +0000315 }
Mike Frysinger054ea172012-01-20 09:07:21 +0000316
wdenk38635852002-08-27 05:55:31 +0000317 addr1 += size;
318 addr2 += size;
Stefan Roeseeaadb442010-09-13 11:10:34 +0200319
320 /* reset watchdog from time to time */
Mike Frysingerfeb12a12012-01-20 09:07:22 +0000321 if ((ngood % (64 << 10)) == 0)
Stefan Roeseeaadb442010-09-13 11:10:34 +0200322 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000323 }
324
Mike Frysinger054ea172012-01-20 09:07:21 +0000325 printf("Total of %ld %s(s) were the same\n", ngood, type);
wdenk38635852002-08-27 05:55:31 +0000326 return rcode;
327}
328
Kim Phillips088f1b12012-10-29 13:34:31 +0000329static int do_mem_cp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000330{
wdenk27b207f2003-07-24 23:38:38 +0000331 ulong addr, dest, count;
332 int size;
wdenk38635852002-08-27 05:55:31 +0000333
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200334 if (argc != 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000335 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000336
337 /* Check for size specification.
338 */
wdenk27b207f2003-07-24 23:38:38 +0000339 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
340 return 1;
wdenk38635852002-08-27 05:55:31 +0000341
342 addr = simple_strtoul(argv[1], NULL, 16);
343 addr += base_address;
344
345 dest = simple_strtoul(argv[2], NULL, 16);
346 dest += base_address;
347
348 count = simple_strtoul(argv[3], NULL, 16);
349
350 if (count == 0) {
351 puts ("Zero length ???\n");
352 return 1;
353 }
354
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200355#ifndef CONFIG_SYS_NO_FLASH
wdenk38635852002-08-27 05:55:31 +0000356 /* check if we are copying to Flash */
wdenk2abbe072003-06-16 23:50:08 +0000357 if ( (addr2info(dest) != NULL)
358#ifdef CONFIG_HAS_DATAFLASH
Kim B. Heino84d0c2f2008-03-03 10:39:13 +0200359 && (!addr_dataflash(dest))
wdenk2abbe072003-06-16 23:50:08 +0000360#endif
361 ) {
wdenk38635852002-08-27 05:55:31 +0000362 int rc;
363
wdenk4b9206e2004-03-23 22:14:11 +0000364 puts ("Copy to Flash... ");
wdenk38635852002-08-27 05:55:31 +0000365
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200366 rc = flash_write ((char *)addr, dest, count*size);
wdenk38635852002-08-27 05:55:31 +0000367 if (rc != 0) {
368 flash_perror (rc);
369 return (1);
370 }
371 puts ("done\n");
372 return 0;
373 }
374#endif
375
wdenk2abbe072003-06-16 23:50:08 +0000376#ifdef CONFIG_HAS_DATAFLASH
377 /* Check if we are copying from RAM or Flash to DataFlash */
378 if (addr_dataflash(dest) && !addr_dataflash(addr)){
379 int rc;
380
wdenk4b9206e2004-03-23 22:14:11 +0000381 puts ("Copy to DataFlash... ");
wdenk2abbe072003-06-16 23:50:08 +0000382
383 rc = write_dataflash (dest, addr, count*size);
384
385 if (rc != 1) {
386 dataflash_perror (rc);
387 return (1);
388 }
389 puts ("done\n");
390 return 0;
391 }
wdenk8bde7f72003-06-27 21:31:46 +0000392
wdenk2abbe072003-06-16 23:50:08 +0000393 /* Check if we are copying from DataFlash to RAM */
Stelian Pop880cc432008-03-26 22:52:35 +0100394 if (addr_dataflash(addr) && !addr_dataflash(dest)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200395#ifndef CONFIG_SYS_NO_FLASH
Stelian Pop880cc432008-03-26 22:52:35 +0100396 && (addr2info(dest) == NULL)
397#endif
398 ){
wdenk5779d8d2003-12-06 23:55:10 +0000399 int rc;
400 rc = read_dataflash(addr, count * size, (char *) dest);
401 if (rc != 1) {
wdenkd4ca31c2004-01-02 14:00:00 +0000402 dataflash_perror (rc);
403 return (1);
404 }
wdenk2abbe072003-06-16 23:50:08 +0000405 return 0;
406 }
407
408 if (addr_dataflash(addr) && addr_dataflash(dest)){
wdenk4b9206e2004-03-23 22:14:11 +0000409 puts ("Unsupported combination of source/destination.\n\r");
wdenk2abbe072003-06-16 23:50:08 +0000410 return 1;
411 }
412#endif
413
Mike Frysinger4c727c72008-02-04 19:26:56 -0500414#ifdef CONFIG_BLACKFIN
415 /* See if we're copying to/from L1 inst */
416 if (addr_bfin_on_chip_mem(dest) || addr_bfin_on_chip_mem(addr)) {
417 memcpy((void *)dest, (void *)addr, count * size);
418 return 0;
419 }
420#endif
421
wdenk38635852002-08-27 05:55:31 +0000422 while (count-- > 0) {
423 if (size == 4)
424 *((ulong *)dest) = *((ulong *)addr);
425 else if (size == 2)
426 *((ushort *)dest) = *((ushort *)addr);
427 else
428 *((u_char *)dest) = *((u_char *)addr);
429 addr += size;
430 dest += size;
Stefan Roeseeaadb442010-09-13 11:10:34 +0200431
432 /* reset watchdog from time to time */
433 if ((count % (64 << 10)) == 0)
434 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000435 }
436 return 0;
437}
438
Kim Phillips088f1b12012-10-29 13:34:31 +0000439static int do_mem_base(cmd_tbl_t *cmdtp, int flag, int argc,
440 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000441{
442 if (argc > 1) {
443 /* Set new base address.
444 */
445 base_address = simple_strtoul(argv[1], NULL, 16);
446 }
447 /* Print the current base address.
448 */
449 printf("Base Address: 0x%08lx\n", base_address);
450 return 0;
451}
452
Kim Phillips088f1b12012-10-29 13:34:31 +0000453static int do_mem_loop(cmd_tbl_t *cmdtp, int flag, int argc,
454 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000455{
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200456 ulong addr, length, i;
wdenk27b207f2003-07-24 23:38:38 +0000457 int size;
wdenk38635852002-08-27 05:55:31 +0000458 volatile uint *longp;
459 volatile ushort *shortp;
460 volatile u_char *cp;
461
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200462 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000463 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000464
465 /* Check for a size spefication.
466 * Defaults to long if no or incorrect specification.
467 */
wdenk27b207f2003-07-24 23:38:38 +0000468 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
469 return 1;
wdenk38635852002-08-27 05:55:31 +0000470
471 /* Address is always specified.
472 */
473 addr = simple_strtoul(argv[1], NULL, 16);
474
475 /* Length is the number of objects, not number of bytes.
476 */
477 length = simple_strtoul(argv[2], NULL, 16);
478
479 /* We want to optimize the loops to run as fast as possible.
480 * If we have only one object, just run infinite loops.
481 */
482 if (length == 1) {
483 if (size == 4) {
484 longp = (uint *)addr;
485 for (;;)
486 i = *longp;
487 }
488 if (size == 2) {
489 shortp = (ushort *)addr;
490 for (;;)
491 i = *shortp;
492 }
493 cp = (u_char *)addr;
494 for (;;)
495 i = *cp;
496 }
497
498 if (size == 4) {
499 for (;;) {
500 longp = (uint *)addr;
501 i = length;
502 while (i-- > 0)
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200503 *longp++;
wdenk38635852002-08-27 05:55:31 +0000504 }
505 }
506 if (size == 2) {
507 for (;;) {
508 shortp = (ushort *)addr;
509 i = length;
510 while (i-- > 0)
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200511 *shortp++;
wdenk38635852002-08-27 05:55:31 +0000512 }
513 }
514 for (;;) {
515 cp = (u_char *)addr;
516 i = length;
517 while (i-- > 0)
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200518 *cp++;
wdenk38635852002-08-27 05:55:31 +0000519 }
520}
521
wdenk56523f12004-07-11 17:40:54 +0000522#ifdef CONFIG_LOOPW
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200523int do_mem_loopw (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk56523f12004-07-11 17:40:54 +0000524{
525 ulong addr, length, i, data;
526 int size;
527 volatile uint *longp;
528 volatile ushort *shortp;
529 volatile u_char *cp;
wdenk81050922004-07-11 20:04:51 +0000530
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200531 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000532 return CMD_RET_USAGE;
wdenk56523f12004-07-11 17:40:54 +0000533
534 /* Check for a size spefication.
535 * Defaults to long if no or incorrect specification.
536 */
537 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
538 return 1;
539
540 /* Address is always specified.
541 */
542 addr = simple_strtoul(argv[1], NULL, 16);
543
544 /* Length is the number of objects, not number of bytes.
545 */
546 length = simple_strtoul(argv[2], NULL, 16);
547
548 /* data to write */
549 data = simple_strtoul(argv[3], NULL, 16);
wdenk81050922004-07-11 20:04:51 +0000550
wdenk56523f12004-07-11 17:40:54 +0000551 /* We want to optimize the loops to run as fast as possible.
552 * If we have only one object, just run infinite loops.
553 */
554 if (length == 1) {
555 if (size == 4) {
556 longp = (uint *)addr;
557 for (;;)
558 *longp = data;
559 }
560 if (size == 2) {
561 shortp = (ushort *)addr;
562 for (;;)
563 *shortp = data;
564 }
565 cp = (u_char *)addr;
566 for (;;)
567 *cp = data;
568 }
569
570 if (size == 4) {
571 for (;;) {
572 longp = (uint *)addr;
573 i = length;
574 while (i-- > 0)
575 *longp++ = data;
576 }
577 }
578 if (size == 2) {
579 for (;;) {
580 shortp = (ushort *)addr;
581 i = length;
582 while (i-- > 0)
583 *shortp++ = data;
584 }
585 }
586 for (;;) {
587 cp = (u_char *)addr;
588 i = length;
589 while (i-- > 0)
590 *cp++ = data;
591 }
592}
593#endif /* CONFIG_LOOPW */
594
wdenk38635852002-08-27 05:55:31 +0000595/*
596 * Perform a memory test. A more complete alternative test can be
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200597 * configured using CONFIG_SYS_ALT_MEMTEST. The complete test loops until
wdenk38635852002-08-27 05:55:31 +0000598 * interrupted by ctrl-c or by a failure of one of the sub-tests.
599 */
Kim Phillips088f1b12012-10-29 13:34:31 +0000600static int do_mem_mtest(cmd_tbl_t *cmdtp, int flag, int argc,
601 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000602{
603 vu_long *addr, *start, *end;
604 ulong val;
605 ulong readback;
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400606 ulong errs = 0;
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100607 int iterations = 1;
608 int iteration_limit;
wdenk38635852002-08-27 05:55:31 +0000609
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200610#if defined(CONFIG_SYS_ALT_MEMTEST)
Guennadi Liakhovetski6f4abee2008-02-08 21:25:58 +0100611 vu_long len;
wdenk38635852002-08-27 05:55:31 +0000612 vu_long offset;
613 vu_long test_offset;
614 vu_long pattern;
615 vu_long temp;
616 vu_long anti_pattern;
617 vu_long num_words;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200618#if defined(CONFIG_SYS_MEMTEST_SCRATCH)
619 vu_long *dummy = (vu_long*)CONFIG_SYS_MEMTEST_SCRATCH;
wdenk5f535fe2003-09-18 09:21:33 +0000620#else
Kim Phillips088f1b12012-10-29 13:34:31 +0000621 vu_long *dummy = NULL; /* yes, this is address 0x0, not NULL */
wdenk5f535fe2003-09-18 09:21:33 +0000622#endif
wdenk38635852002-08-27 05:55:31 +0000623 int j;
wdenk38635852002-08-27 05:55:31 +0000624
625 static const ulong bitpattern[] = {
626 0x00000001, /* single bit */
627 0x00000003, /* two adjacent bits */
628 0x00000007, /* three adjacent bits */
629 0x0000000F, /* four adjacent bits */
630 0x00000005, /* two non-adjacent bits */
631 0x00000015, /* three non-adjacent bits */
632 0x00000055, /* four non-adjacent bits */
633 0xaaaaaaaa, /* alternating 1/0 */
634 };
635#else
636 ulong incr;
637 ulong pattern;
wdenk38635852002-08-27 05:55:31 +0000638#endif
639
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100640 if (argc > 1)
wdenk38635852002-08-27 05:55:31 +0000641 start = (ulong *)simple_strtoul(argv[1], NULL, 16);
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100642 else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200643 start = (ulong *)CONFIG_SYS_MEMTEST_START;
wdenk38635852002-08-27 05:55:31 +0000644
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100645 if (argc > 2)
wdenk38635852002-08-27 05:55:31 +0000646 end = (ulong *)simple_strtoul(argv[2], NULL, 16);
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100647 else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200648 end = (ulong *)(CONFIG_SYS_MEMTEST_END);
wdenk38635852002-08-27 05:55:31 +0000649
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100650 if (argc > 3)
wdenk38635852002-08-27 05:55:31 +0000651 pattern = (ulong)simple_strtoul(argv[3], NULL, 16);
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100652 else
wdenk38635852002-08-27 05:55:31 +0000653 pattern = 0;
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100654
655 if (argc > 4)
656 iteration_limit = (ulong)simple_strtoul(argv[4], NULL, 16);
657 else
658 iteration_limit = 0;
wdenk38635852002-08-27 05:55:31 +0000659
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200660#if defined(CONFIG_SYS_ALT_MEMTEST)
wdenk38635852002-08-27 05:55:31 +0000661 printf ("Testing %08x ... %08x:\n", (uint)start, (uint)end);
Mike Frysinger9504a552012-01-20 09:07:20 +0000662 debug("%s:%d: start 0x%p end 0x%p\n",
wdenk38635852002-08-27 05:55:31 +0000663 __FUNCTION__, __LINE__, start, end);
664
665 for (;;) {
666 if (ctrlc()) {
667 putc ('\n');
668 return 1;
669 }
670
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100671
672 if (iteration_limit && iterations > iteration_limit) {
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400673 printf("Tested %d iteration(s) with %lu errors.\n",
674 iterations-1, errs);
675 return errs != 0;
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100676 }
677
wdenk38635852002-08-27 05:55:31 +0000678 printf("Iteration: %6d\r", iterations);
Mike Frysinger9504a552012-01-20 09:07:20 +0000679 debug("\n");
wdenk38635852002-08-27 05:55:31 +0000680 iterations++;
681
682 /*
683 * Data line test: write a pattern to the first
684 * location, write the 1's complement to a 'parking'
685 * address (changes the state of the data bus so a
686 * floating bus doen't give a false OK), and then
687 * read the value back. Note that we read it back
688 * into a variable because the next time we read it,
689 * it might be right (been there, tough to explain to
690 * the quality guys why it prints a failure when the
691 * "is" and "should be" are obviously the same in the
692 * error message).
693 *
694 * Rather than exhaustively testing, we test some
695 * patterns by shifting '1' bits through a field of
696 * '0's and '0' bits through a field of '1's (i.e.
697 * pattern and ~pattern).
698 */
699 addr = start;
700 for (j = 0; j < sizeof(bitpattern)/sizeof(bitpattern[0]); j++) {
701 val = bitpattern[j];
702 for(; val != 0; val <<= 1) {
703 *addr = val;
704 *dummy = ~val; /* clear the test data off of the bus */
705 readback = *addr;
706 if(readback != val) {
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400707 printf ("FAILURE (data line): "
wdenk38635852002-08-27 05:55:31 +0000708 "expected %08lx, actual %08lx\n",
709 val, readback);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400710 errs++;
711 if (ctrlc()) {
712 putc ('\n');
713 return 1;
714 }
wdenk38635852002-08-27 05:55:31 +0000715 }
716 *addr = ~val;
717 *dummy = val;
718 readback = *addr;
719 if(readback != ~val) {
720 printf ("FAILURE (data line): "
721 "Is %08lx, should be %08lx\n",
wdenke1599e82004-10-10 23:27:33 +0000722 readback, ~val);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400723 errs++;
724 if (ctrlc()) {
725 putc ('\n');
726 return 1;
727 }
wdenk38635852002-08-27 05:55:31 +0000728 }
729 }
730 }
731
732 /*
733 * Based on code whose Original Author and Copyright
734 * information follows: Copyright (c) 1998 by Michael
735 * Barr. This software is placed into the public
736 * domain and may be used for any purpose. However,
737 * this notice must not be changed or removed and no
738 * warranty is either expressed or implied by its
739 * publication or distribution.
740 */
741
742 /*
743 * Address line test
744 *
745 * Description: Test the address bus wiring in a
746 * memory region by performing a walking
747 * 1's test on the relevant bits of the
748 * address and checking for aliasing.
749 * This test will find single-bit
750 * address failures such as stuck -high,
751 * stuck-low, and shorted pins. The base
752 * address and size of the region are
753 * selected by the caller.
754 *
755 * Notes: For best results, the selected base
756 * address should have enough LSB 0's to
757 * guarantee single address bit changes.
758 * For example, to test a 64-Kbyte
759 * region, select a base address on a
760 * 64-Kbyte boundary. Also, select the
761 * region size as a power-of-two if at
762 * all possible.
763 *
764 * Returns: 0 if the test succeeds, 1 if the test fails.
wdenk38635852002-08-27 05:55:31 +0000765 */
Guennadi Liakhovetski6f4abee2008-02-08 21:25:58 +0100766 len = ((ulong)end - (ulong)start)/sizeof(vu_long);
wdenk38635852002-08-27 05:55:31 +0000767 pattern = (vu_long) 0xaaaaaaaa;
768 anti_pattern = (vu_long) 0x55555555;
769
Mike Frysinger9504a552012-01-20 09:07:20 +0000770 debug("%s:%d: length = 0x%.8lx\n",
wdenk38635852002-08-27 05:55:31 +0000771 __FUNCTION__, __LINE__,
Guennadi Liakhovetski6f4abee2008-02-08 21:25:58 +0100772 len);
wdenk38635852002-08-27 05:55:31 +0000773 /*
774 * Write the default pattern at each of the
775 * power-of-two offsets.
776 */
Guennadi Liakhovetski6f4abee2008-02-08 21:25:58 +0100777 for (offset = 1; offset < len; offset <<= 1) {
wdenk38635852002-08-27 05:55:31 +0000778 start[offset] = pattern;
779 }
780
781 /*
782 * Check for address bits stuck high.
783 */
784 test_offset = 0;
785 start[test_offset] = anti_pattern;
786
Guennadi Liakhovetski6f4abee2008-02-08 21:25:58 +0100787 for (offset = 1; offset < len; offset <<= 1) {
wdenk38635852002-08-27 05:55:31 +0000788 temp = start[offset];
789 if (temp != pattern) {
790 printf ("\nFAILURE: Address bit stuck high @ 0x%.8lx:"
791 " expected 0x%.8lx, actual 0x%.8lx\n",
792 (ulong)&start[offset], pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400793 errs++;
794 if (ctrlc()) {
795 putc ('\n');
796 return 1;
797 }
wdenk38635852002-08-27 05:55:31 +0000798 }
799 }
800 start[test_offset] = pattern;
Sergei Poselenova6e6fc62008-04-09 16:09:41 +0200801 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000802
803 /*
804 * Check for addr bits stuck low or shorted.
805 */
Guennadi Liakhovetski6f4abee2008-02-08 21:25:58 +0100806 for (test_offset = 1; test_offset < len; test_offset <<= 1) {
wdenk38635852002-08-27 05:55:31 +0000807 start[test_offset] = anti_pattern;
808
Guennadi Liakhovetski6f4abee2008-02-08 21:25:58 +0100809 for (offset = 1; offset < len; offset <<= 1) {
wdenk38635852002-08-27 05:55:31 +0000810 temp = start[offset];
811 if ((temp != pattern) && (offset != test_offset)) {
812 printf ("\nFAILURE: Address bit stuck low or shorted @"
813 " 0x%.8lx: expected 0x%.8lx, actual 0x%.8lx\n",
814 (ulong)&start[offset], pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400815 errs++;
816 if (ctrlc()) {
817 putc ('\n');
818 return 1;
819 }
wdenk38635852002-08-27 05:55:31 +0000820 }
821 }
822 start[test_offset] = pattern;
823 }
824
825 /*
826 * Description: Test the integrity of a physical
827 * memory device by performing an
828 * increment/decrement test over the
829 * entire region. In the process every
830 * storage bit in the device is tested
831 * as a zero and a one. The base address
832 * and the size of the region are
833 * selected by the caller.
834 *
835 * Returns: 0 if the test succeeds, 1 if the test fails.
836 */
837 num_words = ((ulong)end - (ulong)start)/sizeof(vu_long) + 1;
838
839 /*
840 * Fill memory with a known pattern.
841 */
842 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
Sergei Poselenova6e6fc62008-04-09 16:09:41 +0200843 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000844 start[offset] = pattern;
845 }
846
847 /*
848 * Check each location and invert it for the second pass.
849 */
850 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
Sergei Poselenova6e6fc62008-04-09 16:09:41 +0200851 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000852 temp = start[offset];
853 if (temp != pattern) {
854 printf ("\nFAILURE (read/write) @ 0x%.8lx:"
855 " expected 0x%.8lx, actual 0x%.8lx)\n",
856 (ulong)&start[offset], pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400857 errs++;
858 if (ctrlc()) {
859 putc ('\n');
860 return 1;
861 }
wdenk38635852002-08-27 05:55:31 +0000862 }
863
864 anti_pattern = ~pattern;
865 start[offset] = anti_pattern;
866 }
867
868 /*
869 * Check each location for the inverted pattern and zero it.
870 */
871 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
Sergei Poselenova6e6fc62008-04-09 16:09:41 +0200872 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000873 anti_pattern = ~pattern;
874 temp = start[offset];
875 if (temp != anti_pattern) {
876 printf ("\nFAILURE (read/write): @ 0x%.8lx:"
877 " expected 0x%.8lx, actual 0x%.8lx)\n",
878 (ulong)&start[offset], anti_pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400879 errs++;
880 if (ctrlc()) {
881 putc ('\n');
882 return 1;
883 }
wdenk38635852002-08-27 05:55:31 +0000884 }
885 start[offset] = 0;
886 }
887 }
888
889#else /* The original, quickie test */
890 incr = 1;
891 for (;;) {
892 if (ctrlc()) {
893 putc ('\n');
894 return 1;
895 }
896
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100897 if (iteration_limit && iterations > iteration_limit) {
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400898 printf("Tested %d iteration(s) with %lu errors.\n",
899 iterations-1, errs);
900 return errs != 0;
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +0100901 }
902 ++iterations;
903
wdenk38635852002-08-27 05:55:31 +0000904 printf ("\rPattern %08lX Writing..."
905 "%12s"
906 "\b\b\b\b\b\b\b\b\b\b",
907 pattern, "");
908
909 for (addr=start,val=pattern; addr<end; addr++) {
Sergei Poselenova6e6fc62008-04-09 16:09:41 +0200910 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000911 *addr = val;
912 val += incr;
913 }
914
wdenk4b9206e2004-03-23 22:14:11 +0000915 puts ("Reading...");
wdenk38635852002-08-27 05:55:31 +0000916
917 for (addr=start,val=pattern; addr<end; addr++) {
Sergei Poselenova6e6fc62008-04-09 16:09:41 +0200918 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000919 readback = *addr;
920 if (readback != val) {
921 printf ("\nMem error @ 0x%08X: "
922 "found %08lX, expected %08lX\n",
Simon Glass92549352011-09-17 06:48:58 +0000923 (uint)(uintptr_t)addr, readback, val);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400924 errs++;
925 if (ctrlc()) {
926 putc ('\n');
927 return 1;
928 }
wdenk38635852002-08-27 05:55:31 +0000929 }
930 val += incr;
931 }
932
933 /*
934 * Flip the pattern each time to make lots of zeros and
935 * then, the next time, lots of ones. We decrement
936 * the "negative" patterns and increment the "positive"
937 * patterns to preserve this feature.
938 */
939 if(pattern & 0x80000000) {
940 pattern = -pattern; /* complement & increment */
941 }
942 else {
943 pattern = ~pattern;
944 }
945 incr = -incr;
946 }
wdenk38635852002-08-27 05:55:31 +0000947#endif
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400948 return 0; /* not reached */
wdenk38635852002-08-27 05:55:31 +0000949}
950
951
952/* Modify memory.
953 *
954 * Syntax:
955 * mm{.b, .w, .l} {addr}
956 * nm{.b, .w, .l} {addr}
957 */
958static int
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200959mod_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000960{
wdenk27b207f2003-07-24 23:38:38 +0000961 ulong addr, i;
962 int nbytes, size;
wdenk38635852002-08-27 05:55:31 +0000963
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200964 if (argc != 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000965 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000966
967#ifdef CONFIG_BOOT_RETRY_TIME
968 reset_cmd_timeout(); /* got a good command to get here */
969#endif
970 /* We use the last specified parameters, unless new ones are
971 * entered.
972 */
973 addr = mm_last_addr;
974 size = mm_last_size;
975
976 if ((flag & CMD_FLAG_REPEAT) == 0) {
977 /* New command specified. Check for a size specification.
978 * Defaults to long if no or incorrect specification.
979 */
wdenk27b207f2003-07-24 23:38:38 +0000980 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
981 return 1;
wdenk38635852002-08-27 05:55:31 +0000982
983 /* Address is specified since argc > 1
984 */
985 addr = simple_strtoul(argv[1], NULL, 16);
986 addr += base_address;
987 }
988
wdenk2abbe072003-06-16 23:50:08 +0000989#ifdef CONFIG_HAS_DATAFLASH
990 if (addr_dataflash(addr)){
wdenk4b9206e2004-03-23 22:14:11 +0000991 puts ("Can't modify DataFlash in place. Use cp instead.\n\r");
wdenk2abbe072003-06-16 23:50:08 +0000992 return 0;
993 }
994#endif
995
Mike Frysinger4c727c72008-02-04 19:26:56 -0500996#ifdef CONFIG_BLACKFIN
997 if (addr_bfin_on_chip_mem(addr)) {
998 puts ("Can't modify L1 instruction in place. Use cp instead.\n\r");
999 return 0;
1000 }
1001#endif
1002
wdenk38635852002-08-27 05:55:31 +00001003 /* Print the address, followed by value. Then accept input for
1004 * the next value. A non-converted value exits.
1005 */
1006 do {
1007 printf("%08lx:", addr);
1008 if (size == 4)
1009 printf(" %08x", *((uint *)addr));
1010 else if (size == 2)
1011 printf(" %04x", *((ushort *)addr));
1012 else
1013 printf(" %02x", *((u_char *)addr));
1014
1015 nbytes = readline (" ? ");
1016 if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) {
1017 /* <CR> pressed as only input, don't modify current
1018 * location and move to next. "-" pressed will go back.
1019 */
1020 if (incrflag)
1021 addr += nbytes ? -size : size;
1022 nbytes = 1;
1023#ifdef CONFIG_BOOT_RETRY_TIME
1024 reset_cmd_timeout(); /* good enough to not time out */
1025#endif
1026 }
1027#ifdef CONFIG_BOOT_RETRY_TIME
1028 else if (nbytes == -2) {
1029 break; /* timed out, exit the command */
1030 }
1031#endif
1032 else {
1033 char *endp;
1034 i = simple_strtoul(console_buffer, &endp, 16);
1035 nbytes = endp - console_buffer;
1036 if (nbytes) {
1037#ifdef CONFIG_BOOT_RETRY_TIME
1038 /* good enough to not time out
1039 */
1040 reset_cmd_timeout();
1041#endif
1042 if (size == 4)
1043 *((uint *)addr) = i;
1044 else if (size == 2)
1045 *((ushort *)addr) = i;
1046 else
1047 *((u_char *)addr) = i;
1048 if (incrflag)
1049 addr += size;
1050 }
1051 }
1052 } while (nbytes);
1053
1054 mm_last_addr = addr;
1055 mm_last_size = size;
1056 return 0;
1057}
1058
Mike Frysinger710b9932010-12-21 14:19:51 -05001059#ifdef CONFIG_CMD_CRC32
1060
wdenkc26e4542004-04-18 10:13:26 +00001061#ifndef CONFIG_CRC32_VERIFY
1062
Kim Phillips088f1b12012-10-29 13:34:31 +00001063static int do_mem_crc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +00001064{
wdenk71f95112003-06-15 22:40:42 +00001065 ulong addr, length;
1066 ulong crc;
1067 ulong *ptr;
wdenk38635852002-08-27 05:55:31 +00001068
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001069 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001070 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +00001071
wdenk71f95112003-06-15 22:40:42 +00001072 addr = simple_strtoul (argv[1], NULL, 16);
wdenk38635852002-08-27 05:55:31 +00001073 addr += base_address;
1074
wdenk71f95112003-06-15 22:40:42 +00001075 length = simple_strtoul (argv[2], NULL, 16);
wdenk38635852002-08-27 05:55:31 +00001076
Jens Scharsig39c6e032011-07-18 08:46:26 +02001077 crc = crc32_wd (0, (const uchar *) addr, length, CHUNKSZ_CRC32);
wdenk38635852002-08-27 05:55:31 +00001078
1079 printf ("CRC32 for %08lx ... %08lx ==> %08lx\n",
wdenk71f95112003-06-15 22:40:42 +00001080 addr, addr + length - 1, crc);
wdenk38635852002-08-27 05:55:31 +00001081
wdenk71f95112003-06-15 22:40:42 +00001082 if (argc > 3) {
1083 ptr = (ulong *) simple_strtoul (argv[3], NULL, 16);
1084 *ptr = crc;
1085 }
wdenk38635852002-08-27 05:55:31 +00001086
1087 return 0;
1088}
1089
wdenkc26e4542004-04-18 10:13:26 +00001090#else /* CONFIG_CRC32_VERIFY */
1091
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001092int do_mem_crc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkc26e4542004-04-18 10:13:26 +00001093{
1094 ulong addr, length;
1095 ulong crc;
1096 ulong *ptr;
wdenk6e592382004-04-18 17:39:38 +00001097 ulong vcrc;
wdenkc26e4542004-04-18 10:13:26 +00001098 int verify;
1099 int ac;
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001100 char * const *av;
wdenkc26e4542004-04-18 10:13:26 +00001101
1102 if (argc < 3) {
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001103usage:
Simon Glass4c12eeb2011-12-10 08:44:01 +00001104 return CMD_RET_USAGE;
wdenkc26e4542004-04-18 10:13:26 +00001105 }
1106
1107 av = argv + 1;
1108 ac = argc - 1;
1109 if (strcmp(*av, "-v") == 0) {
1110 verify = 1;
1111 av++;
1112 ac--;
1113 if (ac < 3)
1114 goto usage;
1115 } else
1116 verify = 0;
1117
1118 addr = simple_strtoul(*av++, NULL, 16);
1119 addr += base_address;
1120 length = simple_strtoul(*av++, NULL, 16);
1121
Jens Scharsig39c6e032011-07-18 08:46:26 +02001122 crc = crc32_wd (0, (const uchar *) addr, length, CHUNKSZ_CRC32);
wdenkc26e4542004-04-18 10:13:26 +00001123
1124 if (!verify) {
1125 printf ("CRC32 for %08lx ... %08lx ==> %08lx\n",
1126 addr, addr + length - 1, crc);
1127 if (ac > 2) {
1128 ptr = (ulong *) simple_strtoul (*av++, NULL, 16);
1129 *ptr = crc;
1130 }
1131 } else {
1132 vcrc = simple_strtoul(*av++, NULL, 16);
1133 if (vcrc != crc) {
1134 printf ("CRC32 for %08lx ... %08lx ==> %08lx != %08lx ** ERROR **\n",
1135 addr, addr + length - 1, crc, vcrc);
1136 return 1;
1137 }
1138 }
1139
1140 return 0;
1141
1142}
1143#endif /* CONFIG_CRC32_VERIFY */
1144
Mike Frysinger710b9932010-12-21 14:19:51 -05001145#endif
1146
wdenk8bde7f72003-06-27 21:31:46 +00001147/**************************************************/
wdenk0d498392003-07-01 21:06:45 +00001148U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001149 md, 3, 1, do_mem_md,
Peter Tyser2fb26042009-01-27 18:03:12 -06001150 "memory display",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001151 "[.b, .w, .l] address [# of objects]"
wdenk8bde7f72003-06-27 21:31:46 +00001152);
1153
1154
wdenk0d498392003-07-01 21:06:45 +00001155U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001156 mm, 2, 1, do_mem_mm,
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001157 "memory modify (auto-incrementing address)",
1158 "[.b, .w, .l] address"
wdenk8bde7f72003-06-27 21:31:46 +00001159);
1160
1161
wdenk0d498392003-07-01 21:06:45 +00001162U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001163 nm, 2, 1, do_mem_nm,
Peter Tyser2fb26042009-01-27 18:03:12 -06001164 "memory modify (constant address)",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001165 "[.b, .w, .l] address"
wdenk8bde7f72003-06-27 21:31:46 +00001166);
1167
wdenk0d498392003-07-01 21:06:45 +00001168U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001169 mw, 4, 1, do_mem_mw,
Peter Tyser2fb26042009-01-27 18:03:12 -06001170 "memory write (fill)",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001171 "[.b, .w, .l] address value [count]"
wdenk8bde7f72003-06-27 21:31:46 +00001172);
1173
wdenk0d498392003-07-01 21:06:45 +00001174U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001175 cp, 4, 1, do_mem_cp,
Peter Tyser2fb26042009-01-27 18:03:12 -06001176 "memory copy",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001177 "[.b, .w, .l] source target count"
wdenk8bde7f72003-06-27 21:31:46 +00001178);
1179
wdenk0d498392003-07-01 21:06:45 +00001180U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001181 cmp, 4, 1, do_mem_cmp,
Peter Tyser2fb26042009-01-27 18:03:12 -06001182 "memory compare",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001183 "[.b, .w, .l] addr1 addr2 count"
wdenk8bde7f72003-06-27 21:31:46 +00001184);
1185
Mike Frysinger710b9932010-12-21 14:19:51 -05001186#ifdef CONFIG_CMD_CRC32
1187
wdenkc26e4542004-04-18 10:13:26 +00001188#ifndef CONFIG_CRC32_VERIFY
1189
wdenk0d498392003-07-01 21:06:45 +00001190U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001191 crc32, 4, 1, do_mem_crc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001192 "checksum calculation",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001193 "address count [addr]\n - compute CRC32 checksum [save at addr]"
wdenk8bde7f72003-06-27 21:31:46 +00001194);
1195
wdenkc26e4542004-04-18 10:13:26 +00001196#else /* CONFIG_CRC32_VERIFY */
1197
1198U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001199 crc32, 5, 1, do_mem_crc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001200 "checksum calculation",
wdenkc26e4542004-04-18 10:13:26 +00001201 "address count [addr]\n - compute CRC32 checksum [save at addr]\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001202 "-v address count crc\n - verify crc of memory area"
wdenkc26e4542004-04-18 10:13:26 +00001203);
1204
1205#endif /* CONFIG_CRC32_VERIFY */
1206
Mike Frysinger710b9932010-12-21 14:19:51 -05001207#endif
1208
Simon Glass15a33e42012-11-30 13:01:20 +00001209#ifdef CONFIG_CMD_MEMINFO
1210__weak void board_show_dram(ulong size)
1211{
1212 puts("DRAM: ");
1213 print_size(size, "\n");
1214}
1215
1216static int do_mem_info(cmd_tbl_t *cmdtp, int flag, int argc,
1217 char * const argv[])
1218{
1219 board_show_dram(gd->ram_size);
1220
1221 return 0;
1222}
1223#endif
1224
wdenk0d498392003-07-01 21:06:45 +00001225U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001226 base, 2, 1, do_mem_base,
Peter Tyser2fb26042009-01-27 18:03:12 -06001227 "print or set address offset",
wdenk8bde7f72003-06-27 21:31:46 +00001228 "\n - print address offset for memory commands\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001229 "base off\n - set address offset for memory commands to 'off'"
wdenk8bde7f72003-06-27 21:31:46 +00001230);
1231
wdenk0d498392003-07-01 21:06:45 +00001232U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001233 loop, 3, 1, do_mem_loop,
Peter Tyser2fb26042009-01-27 18:03:12 -06001234 "infinite loop on address range",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001235 "[.b, .w, .l] address number_of_objects"
wdenk8bde7f72003-06-27 21:31:46 +00001236);
1237
wdenk56523f12004-07-11 17:40:54 +00001238#ifdef CONFIG_LOOPW
1239U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001240 loopw, 4, 1, do_mem_loopw,
Peter Tyser2fb26042009-01-27 18:03:12 -06001241 "infinite write loop on address range",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001242 "[.b, .w, .l] address number_of_objects data_to_write"
wdenk56523f12004-07-11 17:40:54 +00001243);
1244#endif /* CONFIG_LOOPW */
1245
wdenk0d498392003-07-01 21:06:45 +00001246U_BOOT_CMD(
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +01001247 mtest, 5, 1, do_mem_mtest,
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001248 "simple RAM read/write test",
1249 "[start [end [pattern [iterations]]]]"
wdenk8bde7f72003-06-27 21:31:46 +00001250);
1251
stroese4aaf29b2004-12-16 17:42:39 +00001252#ifdef CONFIG_MX_CYCLIC
1253U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001254 mdc, 4, 1, do_mem_mdc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001255 "memory display cyclic",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001256 "[.b, .w, .l] address count delay(ms)"
stroese4aaf29b2004-12-16 17:42:39 +00001257);
1258
1259U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001260 mwc, 4, 1, do_mem_mwc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001261 "memory write cyclic",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001262 "[.b, .w, .l] address value delay(ms)"
stroese4aaf29b2004-12-16 17:42:39 +00001263);
1264#endif /* CONFIG_MX_CYCLIC */
Simon Glass15a33e42012-11-30 13:01:20 +00001265
1266#ifdef CONFIG_CMD_MEMINFO
1267U_BOOT_CMD(
1268 meminfo, 3, 1, do_mem_info,
1269 "display memory information",
1270 ""
1271);
1272#endif