]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_mem.c
keymile-common.h: remove IO mux stuff
[people/ms/u-boot.git] / common / cmd_mem.c
CommitLineData
3863585b
WD
1/*
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>
2abbe075
WD
32#ifdef CONFIG_HAS_DATAFLASH
33#include <dataflash.h>
34#endif
a6e6fc61 35#include <watchdog.h>
3863585b 36
3863585b
WD
37#ifdef CMD_MEM_DEBUG
38#define PRINTF(fmt,args...) printf (fmt ,##args)
39#else
40#define PRINTF(fmt,args...)
41#endif
42
54841ab5 43static int mod_mem(cmd_tbl_t *, int, int, int, char * const []);
3863585b
WD
44
45/* Display values from last command.
46 * Memory modify remembered values are different from display memory.
47 */
d6efe244
MF
48static uint dp_last_addr, dp_last_size;
49static uint dp_last_length = 0x40;
50static uint mm_last_addr, mm_last_size;
3863585b
WD
51
52static ulong base_address = 0;
53
54/* Memory Display
55 *
56 * Syntax:
57 * md{.b, .w, .l} {addr} {len}
58 */
59#define DISP_LINE_LEN 16
54841ab5 60int do_mem_md ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b 61{
27b207fd 62 ulong addr, length;
c95c4280
GL
63#if defined(CONFIG_HAS_DATAFLASH)
64 ulong nbytes, linebytes;
65#endif
27b207fd 66 int size;
3863585b
WD
67 int rc = 0;
68
69 /* We use the last specified parameters, unless new ones are
70 * entered.
71 */
72 addr = dp_last_addr;
73 size = dp_last_size;
74 length = dp_last_length;
75
47e26b1b
WD
76 if (argc < 2)
77 return cmd_usage(cmdtp);
3863585b
WD
78
79 if ((flag & CMD_FLAG_REPEAT) == 0) {
80 /* New command specified. Check for a size specification.
81 * Defaults to long if no or incorrect specification.
82 */
27b207fd
WD
83 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
84 return 1;
3863585b
WD
85
86 /* Address is specified since argc > 1
87 */
88 addr = simple_strtoul(argv[1], NULL, 16);
89 addr += base_address;
90
91 /* If another parameter, it is the length to display.
92 * Length is the number of objects, not number of bytes.
93 */
94 if (argc > 2)
95 length = simple_strtoul(argv[2], NULL, 16);
96 }
97
c95c4280 98#if defined(CONFIG_HAS_DATAFLASH)
3863585b
WD
99 /* Print the lines.
100 *
101 * We buffer all read data, so we can make sure data is read only
102 * once, and all accesses are with the specified bus width.
103 */
104 nbytes = length * size;
105 do {
106 char linebuf[DISP_LINE_LEN];
c95c4280 107 void* p;
3863585b 108 linebytes = (nbytes>DISP_LINE_LEN)?DISP_LINE_LEN:nbytes;
2abbe075 109
c95c4280
GL
110 rc = read_dataflash(addr, (linebytes/size)*size, linebuf);
111 p = (rc == DATAFLASH_OK) ? linebuf : (void*)addr;
112 print_buffer(addr, p, size, linebytes/size, DISP_LINE_LEN/size);
113
3863585b 114 nbytes -= linebytes;
c95c4280 115 addr += linebytes;
3863585b
WD
116 if (ctrlc()) {
117 rc = 1;
118 break;
119 }
120 } while (nbytes > 0);
c95c4280 121#else
4c727c77
MF
122
123# if defined(CONFIG_BLACKFIN)
124 /* See if we're trying to display L1 inst */
125 if (addr_bfin_on_chip_mem(addr)) {
126 char linebuf[DISP_LINE_LEN];
127 ulong linebytes, nbytes = length * size;
128 do {
129 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
130 memcpy(linebuf, (void *)addr, linebytes);
131 print_buffer(addr, linebuf, size, linebytes/size, DISP_LINE_LEN/size);
132
133 nbytes -= linebytes;
134 addr += linebytes;
135 if (ctrlc()) {
136 rc = 1;
137 break;
138 }
139 } while (nbytes > 0);
140 } else
141# endif
142
143 {
144 /* Print the lines. */
145 print_buffer(addr, (void*)addr, size, length, DISP_LINE_LEN/size);
146 addr += size*length;
147 }
c95c4280 148#endif
3863585b
WD
149
150 dp_last_addr = addr;
151 dp_last_length = length;
152 dp_last_size = size;
153 return (rc);
154}
155
54841ab5 156int do_mem_mm ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b
WD
157{
158 return mod_mem (cmdtp, 1, flag, argc, argv);
159}
54841ab5 160int do_mem_nm ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b
WD
161{
162 return mod_mem (cmdtp, 0, flag, argc, argv);
163}
164
54841ab5 165int do_mem_mw ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b 166{
27b207fd
WD
167 ulong addr, writeval, count;
168 int size;
3863585b 169
47e26b1b
WD
170 if ((argc < 3) || (argc > 4))
171 return cmd_usage(cmdtp);
3863585b
WD
172
173 /* Check for size specification.
174 */
27b207fd
WD
175 if ((size = cmd_get_data_size(argv[0], 4)) < 1)
176 return 1;
3863585b
WD
177
178 /* Address is specified since argc > 1
179 */
180 addr = simple_strtoul(argv[1], NULL, 16);
181 addr += base_address;
182
183 /* Get the value to write.
184 */
185 writeval = simple_strtoul(argv[2], NULL, 16);
186
187 /* Count ? */
188 if (argc == 4) {
189 count = simple_strtoul(argv[3], NULL, 16);
190 } else {
191 count = 1;
192 }
193
194 while (count-- > 0) {
195 if (size == 4)
196 *((ulong *)addr) = (ulong )writeval;
197 else if (size == 2)
198 *((ushort *)addr) = (ushort)writeval;
199 else
200 *((u_char *)addr) = (u_char)writeval;
201 addr += size;
202 }
203 return 0;
204}
205
4aaf29b2 206#ifdef CONFIG_MX_CYCLIC
54841ab5 207int do_mem_mdc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
4aaf29b2
SR
208{
209 int i;
210 ulong count;
211
47e26b1b
WD
212 if (argc < 4)
213 return cmd_usage(cmdtp);
4aaf29b2
SR
214
215 count = simple_strtoul(argv[3], NULL, 10);
216
217 for (;;) {
218 do_mem_md (NULL, 0, 3, argv);
219
220 /* delay for <count> ms... */
221 for (i=0; i<count; i++)
222 udelay (1000);
223
224 /* check for ctrl-c to abort... */
225 if (ctrlc()) {
226 puts("Abort\n");
227 return 0;
228 }
229 }
230
231 return 0;
232}
233
54841ab5 234int do_mem_mwc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
4aaf29b2
SR
235{
236 int i;
237 ulong count;
238
47e26b1b
WD
239 if (argc < 4)
240 return cmd_usage(cmdtp);
4aaf29b2
SR
241
242 count = simple_strtoul(argv[3], NULL, 10);
243
244 for (;;) {
245 do_mem_mw (NULL, 0, 3, argv);
246
247 /* delay for <count> ms... */
248 for (i=0; i<count; i++)
249 udelay (1000);
250
251 /* check for ctrl-c to abort... */
252 if (ctrlc()) {
253 puts("Abort\n");
254 return 0;
255 }
256 }
257
258 return 0;
259}
260#endif /* CONFIG_MX_CYCLIC */
261
54841ab5 262int do_mem_cmp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b 263{
27b207fd
WD
264 ulong addr1, addr2, count, ngood;
265 int size;
3863585b
WD
266 int rcode = 0;
267
47e26b1b
WD
268 if (argc != 4)
269 return cmd_usage(cmdtp);
3863585b
WD
270
271 /* Check for size specification.
272 */
27b207fd
WD
273 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
274 return 1;
3863585b
WD
275
276 addr1 = simple_strtoul(argv[1], NULL, 16);
277 addr1 += base_address;
278
279 addr2 = simple_strtoul(argv[2], NULL, 16);
280 addr2 += base_address;
281
282 count = simple_strtoul(argv[3], NULL, 16);
283
2abbe075
WD
284#ifdef CONFIG_HAS_DATAFLASH
285 if (addr_dataflash(addr1) | addr_dataflash(addr2)){
4b9206ed 286 puts ("Comparison with DataFlash space not supported.\n\r");
2abbe075
WD
287 return 0;
288 }
289#endif
290
4c727c77
MF
291#ifdef CONFIG_BLACKFIN
292 if (addr_bfin_on_chip_mem(addr1) || addr_bfin_on_chip_mem(addr2)) {
293 puts ("Comparison with L1 instruction memory not supported.\n\r");
294 return 0;
295 }
296#endif
297
3863585b
WD
298 ngood = 0;
299
300 while (count-- > 0) {
301 if (size == 4) {
302 ulong word1 = *(ulong *)addr1;
303 ulong word2 = *(ulong *)addr2;
304 if (word1 != word2) {
305 printf("word at 0x%08lx (0x%08lx) "
306 "!= word at 0x%08lx (0x%08lx)\n",
307 addr1, word1, addr2, word2);
308 rcode = 1;
309 break;
310 }
311 }
312 else if (size == 2) {
313 ushort hword1 = *(ushort *)addr1;
314 ushort hword2 = *(ushort *)addr2;
315 if (hword1 != hword2) {
316 printf("halfword at 0x%08lx (0x%04x) "
317 "!= halfword at 0x%08lx (0x%04x)\n",
318 addr1, hword1, addr2, hword2);
319 rcode = 1;
320 break;
321 }
322 }
323 else {
324 u_char byte1 = *(u_char *)addr1;
325 u_char byte2 = *(u_char *)addr2;
326 if (byte1 != byte2) {
327 printf("byte at 0x%08lx (0x%02x) "
328 "!= byte at 0x%08lx (0x%02x)\n",
329 addr1, byte1, addr2, byte2);
330 rcode = 1;
331 break;
332 }
333 }
334 ngood++;
335 addr1 += size;
336 addr2 += size;
eaadb44e
SR
337
338 /* reset watchdog from time to time */
339 if ((count % (64 << 10)) == 0)
340 WATCHDOG_RESET();
3863585b
WD
341 }
342
343 printf("Total of %ld %s%s were the same\n",
344 ngood, size == 4 ? "word" : size == 2 ? "halfword" : "byte",
345 ngood == 1 ? "" : "s");
346 return rcode;
347}
348
54841ab5 349int do_mem_cp ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b 350{
27b207fd
WD
351 ulong addr, dest, count;
352 int size;
3863585b 353
47e26b1b
WD
354 if (argc != 4)
355 return cmd_usage(cmdtp);
3863585b
WD
356
357 /* Check for size specification.
358 */
27b207fd
WD
359 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
360 return 1;
3863585b
WD
361
362 addr = simple_strtoul(argv[1], NULL, 16);
363 addr += base_address;
364
365 dest = simple_strtoul(argv[2], NULL, 16);
366 dest += base_address;
367
368 count = simple_strtoul(argv[3], NULL, 16);
369
370 if (count == 0) {
371 puts ("Zero length ???\n");
372 return 1;
373 }
374
6d0f6bcf 375#ifndef CONFIG_SYS_NO_FLASH
3863585b 376 /* check if we are copying to Flash */
2abbe075
WD
377 if ( (addr2info(dest) != NULL)
378#ifdef CONFIG_HAS_DATAFLASH
84d0c2f1 379 && (!addr_dataflash(dest))
2abbe075
WD
380#endif
381 ) {
3863585b
WD
382 int rc;
383
4b9206ed 384 puts ("Copy to Flash... ");
3863585b 385
77ddac94 386 rc = flash_write ((char *)addr, dest, count*size);
3863585b
WD
387 if (rc != 0) {
388 flash_perror (rc);
389 return (1);
390 }
391 puts ("done\n");
392 return 0;
393 }
394#endif
395
2abbe075
WD
396#ifdef CONFIG_HAS_DATAFLASH
397 /* Check if we are copying from RAM or Flash to DataFlash */
398 if (addr_dataflash(dest) && !addr_dataflash(addr)){
399 int rc;
400
4b9206ed 401 puts ("Copy to DataFlash... ");
2abbe075
WD
402
403 rc = write_dataflash (dest, addr, count*size);
404
405 if (rc != 1) {
406 dataflash_perror (rc);
407 return (1);
408 }
409 puts ("done\n");
410 return 0;
411 }
8bde7f77 412
2abbe075 413 /* Check if we are copying from DataFlash to RAM */
880cc438 414 if (addr_dataflash(addr) && !addr_dataflash(dest)
6d0f6bcf 415#ifndef CONFIG_SYS_NO_FLASH
880cc438
SP
416 && (addr2info(dest) == NULL)
417#endif
418 ){
5779d8d9
WD
419 int rc;
420 rc = read_dataflash(addr, count * size, (char *) dest);
421 if (rc != 1) {
d4ca31c4
WD
422 dataflash_perror (rc);
423 return (1);
424 }
2abbe075
WD
425 return 0;
426 }
427
428 if (addr_dataflash(addr) && addr_dataflash(dest)){
4b9206ed 429 puts ("Unsupported combination of source/destination.\n\r");
2abbe075
WD
430 return 1;
431 }
432#endif
433
4c727c77
MF
434#ifdef CONFIG_BLACKFIN
435 /* See if we're copying to/from L1 inst */
436 if (addr_bfin_on_chip_mem(dest) || addr_bfin_on_chip_mem(addr)) {
437 memcpy((void *)dest, (void *)addr, count * size);
438 return 0;
439 }
440#endif
441
3863585b
WD
442 while (count-- > 0) {
443 if (size == 4)
444 *((ulong *)dest) = *((ulong *)addr);
445 else if (size == 2)
446 *((ushort *)dest) = *((ushort *)addr);
447 else
448 *((u_char *)dest) = *((u_char *)addr);
449 addr += size;
450 dest += size;
eaadb44e
SR
451
452 /* reset watchdog from time to time */
453 if ((count % (64 << 10)) == 0)
454 WATCHDOG_RESET();
3863585b
WD
455 }
456 return 0;
457}
458
54841ab5 459int do_mem_base (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b
WD
460{
461 if (argc > 1) {
462 /* Set new base address.
463 */
464 base_address = simple_strtoul(argv[1], NULL, 16);
465 }
466 /* Print the current base address.
467 */
468 printf("Base Address: 0x%08lx\n", base_address);
469 return 0;
470}
471
54841ab5 472int do_mem_loop (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b 473{
27b207fd
WD
474 ulong addr, length, i, junk;
475 int size;
3863585b
WD
476 volatile uint *longp;
477 volatile ushort *shortp;
478 volatile u_char *cp;
479
47e26b1b
WD
480 if (argc < 3)
481 return cmd_usage(cmdtp);
3863585b
WD
482
483 /* Check for a size spefication.
484 * Defaults to long if no or incorrect specification.
485 */
27b207fd
WD
486 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
487 return 1;
3863585b
WD
488
489 /* Address is always specified.
490 */
491 addr = simple_strtoul(argv[1], NULL, 16);
492
493 /* Length is the number of objects, not number of bytes.
494 */
495 length = simple_strtoul(argv[2], NULL, 16);
496
497 /* We want to optimize the loops to run as fast as possible.
498 * If we have only one object, just run infinite loops.
499 */
500 if (length == 1) {
501 if (size == 4) {
502 longp = (uint *)addr;
503 for (;;)
504 i = *longp;
505 }
506 if (size == 2) {
507 shortp = (ushort *)addr;
508 for (;;)
509 i = *shortp;
510 }
511 cp = (u_char *)addr;
512 for (;;)
513 i = *cp;
514 }
515
516 if (size == 4) {
517 for (;;) {
518 longp = (uint *)addr;
519 i = length;
520 while (i-- > 0)
521 junk = *longp++;
522 }
523 }
524 if (size == 2) {
525 for (;;) {
526 shortp = (ushort *)addr;
527 i = length;
528 while (i-- > 0)
529 junk = *shortp++;
530 }
531 }
532 for (;;) {
533 cp = (u_char *)addr;
534 i = length;
535 while (i-- > 0)
536 junk = *cp++;
537 }
538}
539
56523f12 540#ifdef CONFIG_LOOPW
54841ab5 541int do_mem_loopw (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
56523f12
WD
542{
543 ulong addr, length, i, data;
544 int size;
545 volatile uint *longp;
546 volatile ushort *shortp;
547 volatile u_char *cp;
81050926 548
47e26b1b
WD
549 if (argc < 4)
550 return cmd_usage(cmdtp);
56523f12
WD
551
552 /* Check for a size spefication.
553 * Defaults to long if no or incorrect specification.
554 */
555 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
556 return 1;
557
558 /* Address is always specified.
559 */
560 addr = simple_strtoul(argv[1], NULL, 16);
561
562 /* Length is the number of objects, not number of bytes.
563 */
564 length = simple_strtoul(argv[2], NULL, 16);
565
566 /* data to write */
567 data = simple_strtoul(argv[3], NULL, 16);
81050926 568
56523f12
WD
569 /* We want to optimize the loops to run as fast as possible.
570 * If we have only one object, just run infinite loops.
571 */
572 if (length == 1) {
573 if (size == 4) {
574 longp = (uint *)addr;
575 for (;;)
576 *longp = data;
577 }
578 if (size == 2) {
579 shortp = (ushort *)addr;
580 for (;;)
581 *shortp = data;
582 }
583 cp = (u_char *)addr;
584 for (;;)
585 *cp = data;
586 }
587
588 if (size == 4) {
589 for (;;) {
590 longp = (uint *)addr;
591 i = length;
592 while (i-- > 0)
593 *longp++ = data;
594 }
595 }
596 if (size == 2) {
597 for (;;) {
598 shortp = (ushort *)addr;
599 i = length;
600 while (i-- > 0)
601 *shortp++ = data;
602 }
603 }
604 for (;;) {
605 cp = (u_char *)addr;
606 i = length;
607 while (i-- > 0)
608 *cp++ = data;
609 }
610}
611#endif /* CONFIG_LOOPW */
612
3863585b
WD
613/*
614 * Perform a memory test. A more complete alternative test can be
6d0f6bcf 615 * configured using CONFIG_SYS_ALT_MEMTEST. The complete test loops until
3863585b
WD
616 * interrupted by ctrl-c or by a failure of one of the sub-tests.
617 */
54841ab5 618int do_mem_mtest (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b
WD
619{
620 vu_long *addr, *start, *end;
621 ulong val;
622 ulong readback;
87b22b77 623 ulong errs = 0;
b6fc6fd4
DE
624 int iterations = 1;
625 int iteration_limit;
3863585b 626
6d0f6bcf 627#if defined(CONFIG_SYS_ALT_MEMTEST)
6f4abee7 628 vu_long len;
3863585b
WD
629 vu_long offset;
630 vu_long test_offset;
631 vu_long pattern;
632 vu_long temp;
633 vu_long anti_pattern;
634 vu_long num_words;
6d0f6bcf
JCPV
635#if defined(CONFIG_SYS_MEMTEST_SCRATCH)
636 vu_long *dummy = (vu_long*)CONFIG_SYS_MEMTEST_SCRATCH;
5f535fe1 637#else
029b6dc7 638 vu_long *dummy = 0; /* yes, this is address 0x0, not NULL */
5f535fe1 639#endif
3863585b 640 int j;
3863585b
WD
641
642 static const ulong bitpattern[] = {
643 0x00000001, /* single bit */
644 0x00000003, /* two adjacent bits */
645 0x00000007, /* three adjacent bits */
646 0x0000000F, /* four adjacent bits */
647 0x00000005, /* two non-adjacent bits */
648 0x00000015, /* three non-adjacent bits */
649 0x00000055, /* four non-adjacent bits */
650 0xaaaaaaaa, /* alternating 1/0 */
651 };
652#else
653 ulong incr;
654 ulong pattern;
3863585b
WD
655#endif
656
b6fc6fd4 657 if (argc > 1)
3863585b 658 start = (ulong *)simple_strtoul(argv[1], NULL, 16);
b6fc6fd4 659 else
6d0f6bcf 660 start = (ulong *)CONFIG_SYS_MEMTEST_START;
3863585b 661
b6fc6fd4 662 if (argc > 2)
3863585b 663 end = (ulong *)simple_strtoul(argv[2], NULL, 16);
b6fc6fd4 664 else
6d0f6bcf 665 end = (ulong *)(CONFIG_SYS_MEMTEST_END);
3863585b 666
b6fc6fd4 667 if (argc > 3)
3863585b 668 pattern = (ulong)simple_strtoul(argv[3], NULL, 16);
b6fc6fd4 669 else
3863585b 670 pattern = 0;
b6fc6fd4
DE
671
672 if (argc > 4)
673 iteration_limit = (ulong)simple_strtoul(argv[4], NULL, 16);
674 else
675 iteration_limit = 0;
3863585b 676
6d0f6bcf 677#if defined(CONFIG_SYS_ALT_MEMTEST)
3863585b
WD
678 printf ("Testing %08x ... %08x:\n", (uint)start, (uint)end);
679 PRINTF("%s:%d: start 0x%p end 0x%p\n",
680 __FUNCTION__, __LINE__, start, end);
681
682 for (;;) {
683 if (ctrlc()) {
684 putc ('\n');
685 return 1;
686 }
687
b6fc6fd4
DE
688
689 if (iteration_limit && iterations > iteration_limit) {
87b22b77
PG
690 printf("Tested %d iteration(s) with %lu errors.\n",
691 iterations-1, errs);
692 return errs != 0;
b6fc6fd4
DE
693 }
694
3863585b 695 printf("Iteration: %6d\r", iterations);
b6fc6fd4 696 PRINTF("\n");
3863585b
WD
697 iterations++;
698
699 /*
700 * Data line test: write a pattern to the first
701 * location, write the 1's complement to a 'parking'
702 * address (changes the state of the data bus so a
703 * floating bus doen't give a false OK), and then
704 * read the value back. Note that we read it back
705 * into a variable because the next time we read it,
706 * it might be right (been there, tough to explain to
707 * the quality guys why it prints a failure when the
708 * "is" and "should be" are obviously the same in the
709 * error message).
710 *
711 * Rather than exhaustively testing, we test some
712 * patterns by shifting '1' bits through a field of
713 * '0's and '0' bits through a field of '1's (i.e.
714 * pattern and ~pattern).
715 */
716 addr = start;
717 for (j = 0; j < sizeof(bitpattern)/sizeof(bitpattern[0]); j++) {
718 val = bitpattern[j];
719 for(; val != 0; val <<= 1) {
720 *addr = val;
721 *dummy = ~val; /* clear the test data off of the bus */
722 readback = *addr;
723 if(readback != val) {
87b22b77 724 printf ("FAILURE (data line): "
3863585b
WD
725 "expected %08lx, actual %08lx\n",
726 val, readback);
87b22b77
PG
727 errs++;
728 if (ctrlc()) {
729 putc ('\n');
730 return 1;
731 }
3863585b
WD
732 }
733 *addr = ~val;
734 *dummy = val;
735 readback = *addr;
736 if(readback != ~val) {
737 printf ("FAILURE (data line): "
738 "Is %08lx, should be %08lx\n",
e1599e83 739 readback, ~val);
87b22b77
PG
740 errs++;
741 if (ctrlc()) {
742 putc ('\n');
743 return 1;
744 }
3863585b
WD
745 }
746 }
747 }
748
749 /*
750 * Based on code whose Original Author and Copyright
751 * information follows: Copyright (c) 1998 by Michael
752 * Barr. This software is placed into the public
753 * domain and may be used for any purpose. However,
754 * this notice must not be changed or removed and no
755 * warranty is either expressed or implied by its
756 * publication or distribution.
757 */
758
759 /*
760 * Address line test
761 *
762 * Description: Test the address bus wiring in a
763 * memory region by performing a walking
764 * 1's test on the relevant bits of the
765 * address and checking for aliasing.
766 * This test will find single-bit
767 * address failures such as stuck -high,
768 * stuck-low, and shorted pins. The base
769 * address and size of the region are
770 * selected by the caller.
771 *
772 * Notes: For best results, the selected base
773 * address should have enough LSB 0's to
774 * guarantee single address bit changes.
775 * For example, to test a 64-Kbyte
776 * region, select a base address on a
777 * 64-Kbyte boundary. Also, select the
778 * region size as a power-of-two if at
779 * all possible.
780 *
781 * Returns: 0 if the test succeeds, 1 if the test fails.
3863585b 782 */
6f4abee7 783 len = ((ulong)end - (ulong)start)/sizeof(vu_long);
3863585b
WD
784 pattern = (vu_long) 0xaaaaaaaa;
785 anti_pattern = (vu_long) 0x55555555;
786
6f4abee7 787 PRINTF("%s:%d: length = 0x%.8lx\n",
3863585b 788 __FUNCTION__, __LINE__,
6f4abee7 789 len);
3863585b
WD
790 /*
791 * Write the default pattern at each of the
792 * power-of-two offsets.
793 */
6f4abee7 794 for (offset = 1; offset < len; offset <<= 1) {
3863585b
WD
795 start[offset] = pattern;
796 }
797
798 /*
799 * Check for address bits stuck high.
800 */
801 test_offset = 0;
802 start[test_offset] = anti_pattern;
803
6f4abee7 804 for (offset = 1; offset < len; offset <<= 1) {
3863585b
WD
805 temp = start[offset];
806 if (temp != pattern) {
807 printf ("\nFAILURE: Address bit stuck high @ 0x%.8lx:"
808 " expected 0x%.8lx, actual 0x%.8lx\n",
809 (ulong)&start[offset], pattern, temp);
87b22b77
PG
810 errs++;
811 if (ctrlc()) {
812 putc ('\n');
813 return 1;
814 }
3863585b
WD
815 }
816 }
817 start[test_offset] = pattern;
a6e6fc61 818 WATCHDOG_RESET();
3863585b
WD
819
820 /*
821 * Check for addr bits stuck low or shorted.
822 */
6f4abee7 823 for (test_offset = 1; test_offset < len; test_offset <<= 1) {
3863585b
WD
824 start[test_offset] = anti_pattern;
825
6f4abee7 826 for (offset = 1; offset < len; offset <<= 1) {
3863585b
WD
827 temp = start[offset];
828 if ((temp != pattern) && (offset != test_offset)) {
829 printf ("\nFAILURE: Address bit stuck low or shorted @"
830 " 0x%.8lx: expected 0x%.8lx, actual 0x%.8lx\n",
831 (ulong)&start[offset], pattern, temp);
87b22b77
PG
832 errs++;
833 if (ctrlc()) {
834 putc ('\n');
835 return 1;
836 }
3863585b
WD
837 }
838 }
839 start[test_offset] = pattern;
840 }
841
842 /*
843 * Description: Test the integrity of a physical
844 * memory device by performing an
845 * increment/decrement test over the
846 * entire region. In the process every
847 * storage bit in the device is tested
848 * as a zero and a one. The base address
849 * and the size of the region are
850 * selected by the caller.
851 *
852 * Returns: 0 if the test succeeds, 1 if the test fails.
853 */
854 num_words = ((ulong)end - (ulong)start)/sizeof(vu_long) + 1;
855
856 /*
857 * Fill memory with a known pattern.
858 */
859 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
a6e6fc61 860 WATCHDOG_RESET();
3863585b
WD
861 start[offset] = pattern;
862 }
863
864 /*
865 * Check each location and invert it for the second pass.
866 */
867 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
a6e6fc61 868 WATCHDOG_RESET();
3863585b
WD
869 temp = start[offset];
870 if (temp != pattern) {
871 printf ("\nFAILURE (read/write) @ 0x%.8lx:"
872 " expected 0x%.8lx, actual 0x%.8lx)\n",
873 (ulong)&start[offset], pattern, temp);
87b22b77
PG
874 errs++;
875 if (ctrlc()) {
876 putc ('\n');
877 return 1;
878 }
3863585b
WD
879 }
880
881 anti_pattern = ~pattern;
882 start[offset] = anti_pattern;
883 }
884
885 /*
886 * Check each location for the inverted pattern and zero it.
887 */
888 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
a6e6fc61 889 WATCHDOG_RESET();
3863585b
WD
890 anti_pattern = ~pattern;
891 temp = start[offset];
892 if (temp != anti_pattern) {
893 printf ("\nFAILURE (read/write): @ 0x%.8lx:"
894 " expected 0x%.8lx, actual 0x%.8lx)\n",
895 (ulong)&start[offset], anti_pattern, temp);
87b22b77
PG
896 errs++;
897 if (ctrlc()) {
898 putc ('\n');
899 return 1;
900 }
3863585b
WD
901 }
902 start[offset] = 0;
903 }
904 }
905
906#else /* The original, quickie test */
907 incr = 1;
908 for (;;) {
909 if (ctrlc()) {
910 putc ('\n');
911 return 1;
912 }
913
b6fc6fd4 914 if (iteration_limit && iterations > iteration_limit) {
87b22b77
PG
915 printf("Tested %d iteration(s) with %lu errors.\n",
916 iterations-1, errs);
917 return errs != 0;
b6fc6fd4
DE
918 }
919 ++iterations;
920
3863585b
WD
921 printf ("\rPattern %08lX Writing..."
922 "%12s"
923 "\b\b\b\b\b\b\b\b\b\b",
924 pattern, "");
925
926 for (addr=start,val=pattern; addr<end; addr++) {
a6e6fc61 927 WATCHDOG_RESET();
3863585b
WD
928 *addr = val;
929 val += incr;
930 }
931
4b9206ed 932 puts ("Reading...");
3863585b
WD
933
934 for (addr=start,val=pattern; addr<end; addr++) {
a6e6fc61 935 WATCHDOG_RESET();
3863585b
WD
936 readback = *addr;
937 if (readback != val) {
938 printf ("\nMem error @ 0x%08X: "
939 "found %08lX, expected %08lX\n",
940 (uint)addr, readback, val);
87b22b77
PG
941 errs++;
942 if (ctrlc()) {
943 putc ('\n');
944 return 1;
945 }
3863585b
WD
946 }
947 val += incr;
948 }
949
950 /*
951 * Flip the pattern each time to make lots of zeros and
952 * then, the next time, lots of ones. We decrement
953 * the "negative" patterns and increment the "positive"
954 * patterns to preserve this feature.
955 */
956 if(pattern & 0x80000000) {
957 pattern = -pattern; /* complement & increment */
958 }
959 else {
960 pattern = ~pattern;
961 }
962 incr = -incr;
963 }
3863585b 964#endif
87b22b77 965 return 0; /* not reached */
3863585b
WD
966}
967
968
969/* Modify memory.
970 *
971 * Syntax:
972 * mm{.b, .w, .l} {addr}
973 * nm{.b, .w, .l} {addr}
974 */
975static int
54841ab5 976mod_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const argv[])
3863585b 977{
27b207fd
WD
978 ulong addr, i;
979 int nbytes, size;
3863585b
WD
980 extern char console_buffer[];
981
47e26b1b
WD
982 if (argc != 2)
983 return cmd_usage(cmdtp);
3863585b
WD
984
985#ifdef CONFIG_BOOT_RETRY_TIME
986 reset_cmd_timeout(); /* got a good command to get here */
987#endif
988 /* We use the last specified parameters, unless new ones are
989 * entered.
990 */
991 addr = mm_last_addr;
992 size = mm_last_size;
993
994 if ((flag & CMD_FLAG_REPEAT) == 0) {
995 /* New command specified. Check for a size specification.
996 * Defaults to long if no or incorrect specification.
997 */
27b207fd
WD
998 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
999 return 1;
3863585b
WD
1000
1001 /* Address is specified since argc > 1
1002 */
1003 addr = simple_strtoul(argv[1], NULL, 16);
1004 addr += base_address;
1005 }
1006
2abbe075
WD
1007#ifdef CONFIG_HAS_DATAFLASH
1008 if (addr_dataflash(addr)){
4b9206ed 1009 puts ("Can't modify DataFlash in place. Use cp instead.\n\r");
2abbe075
WD
1010 return 0;
1011 }
1012#endif
1013
4c727c77
MF
1014#ifdef CONFIG_BLACKFIN
1015 if (addr_bfin_on_chip_mem(addr)) {
1016 puts ("Can't modify L1 instruction in place. Use cp instead.\n\r");
1017 return 0;
1018 }
1019#endif
1020
3863585b
WD
1021 /* Print the address, followed by value. Then accept input for
1022 * the next value. A non-converted value exits.
1023 */
1024 do {
1025 printf("%08lx:", addr);
1026 if (size == 4)
1027 printf(" %08x", *((uint *)addr));
1028 else if (size == 2)
1029 printf(" %04x", *((ushort *)addr));
1030 else
1031 printf(" %02x", *((u_char *)addr));
1032
1033 nbytes = readline (" ? ");
1034 if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) {
1035 /* <CR> pressed as only input, don't modify current
1036 * location and move to next. "-" pressed will go back.
1037 */
1038 if (incrflag)
1039 addr += nbytes ? -size : size;
1040 nbytes = 1;
1041#ifdef CONFIG_BOOT_RETRY_TIME
1042 reset_cmd_timeout(); /* good enough to not time out */
1043#endif
1044 }
1045#ifdef CONFIG_BOOT_RETRY_TIME
1046 else if (nbytes == -2) {
1047 break; /* timed out, exit the command */
1048 }
1049#endif
1050 else {
1051 char *endp;
1052 i = simple_strtoul(console_buffer, &endp, 16);
1053 nbytes = endp - console_buffer;
1054 if (nbytes) {
1055#ifdef CONFIG_BOOT_RETRY_TIME
1056 /* good enough to not time out
1057 */
1058 reset_cmd_timeout();
1059#endif
1060 if (size == 4)
1061 *((uint *)addr) = i;
1062 else if (size == 2)
1063 *((ushort *)addr) = i;
1064 else
1065 *((u_char *)addr) = i;
1066 if (incrflag)
1067 addr += size;
1068 }
1069 }
1070 } while (nbytes);
1071
1072 mm_last_addr = addr;
1073 mm_last_size = size;
1074 return 0;
1075}
1076
710b9938
MF
1077#ifdef CONFIG_CMD_CRC32
1078
c26e454d
WD
1079#ifndef CONFIG_CRC32_VERIFY
1080
54841ab5 1081int do_mem_crc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
3863585b 1082{
71f95118
WD
1083 ulong addr, length;
1084 ulong crc;
1085 ulong *ptr;
3863585b 1086
47e26b1b
WD
1087 if (argc < 3)
1088 return cmd_usage(cmdtp);
3863585b 1089
71f95118 1090 addr = simple_strtoul (argv[1], NULL, 16);
3863585b
WD
1091 addr += base_address;
1092
71f95118 1093 length = simple_strtoul (argv[2], NULL, 16);
3863585b 1094
71f95118 1095 crc = crc32 (0, (const uchar *) addr, length);
3863585b
WD
1096
1097 printf ("CRC32 for %08lx ... %08lx ==> %08lx\n",
71f95118 1098 addr, addr + length - 1, crc);
3863585b 1099
71f95118
WD
1100 if (argc > 3) {
1101 ptr = (ulong *) simple_strtoul (argv[3], NULL, 16);
1102 *ptr = crc;
1103 }
3863585b
WD
1104
1105 return 0;
1106}
1107
c26e454d
WD
1108#else /* CONFIG_CRC32_VERIFY */
1109
54841ab5 1110int do_mem_crc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
c26e454d
WD
1111{
1112 ulong addr, length;
1113 ulong crc;
1114 ulong *ptr;
6e592385 1115 ulong vcrc;
c26e454d
WD
1116 int verify;
1117 int ac;
54841ab5 1118 char * const *av;
c26e454d
WD
1119
1120 if (argc < 3) {
47e26b1b
WD
1121usage:
1122 return cmd_usage(cmdtp);
c26e454d
WD
1123 }
1124
1125 av = argv + 1;
1126 ac = argc - 1;
1127 if (strcmp(*av, "-v") == 0) {
1128 verify = 1;
1129 av++;
1130 ac--;
1131 if (ac < 3)
1132 goto usage;
1133 } else
1134 verify = 0;
1135
1136 addr = simple_strtoul(*av++, NULL, 16);
1137 addr += base_address;
1138 length = simple_strtoul(*av++, NULL, 16);
1139
1140 crc = crc32(0, (const uchar *) addr, length);
1141
1142 if (!verify) {
1143 printf ("CRC32 for %08lx ... %08lx ==> %08lx\n",
1144 addr, addr + length - 1, crc);
1145 if (ac > 2) {
1146 ptr = (ulong *) simple_strtoul (*av++, NULL, 16);
1147 *ptr = crc;
1148 }
1149 } else {
1150 vcrc = simple_strtoul(*av++, NULL, 16);
1151 if (vcrc != crc) {
1152 printf ("CRC32 for %08lx ... %08lx ==> %08lx != %08lx ** ERROR **\n",
1153 addr, addr + length - 1, crc, vcrc);
1154 return 1;
1155 }
1156 }
1157
1158 return 0;
1159
1160}
1161#endif /* CONFIG_CRC32_VERIFY */
1162
710b9938
MF
1163#endif
1164
8bde7f77 1165/**************************************************/
0d498393 1166U_BOOT_CMD(
53677ef1 1167 md, 3, 1, do_mem_md,
2fb2604d 1168 "memory display",
a89c33db 1169 "[.b, .w, .l] address [# of objects]"
8bde7f77
WD
1170);
1171
1172
0d498393 1173U_BOOT_CMD(
53677ef1 1174 mm, 2, 1, do_mem_mm,
a89c33db
WD
1175 "memory modify (auto-incrementing address)",
1176 "[.b, .w, .l] address"
8bde7f77
WD
1177);
1178
1179
0d498393 1180U_BOOT_CMD(
53677ef1 1181 nm, 2, 1, do_mem_nm,
2fb2604d 1182 "memory modify (constant address)",
a89c33db 1183 "[.b, .w, .l] address"
8bde7f77
WD
1184);
1185
0d498393 1186U_BOOT_CMD(
53677ef1 1187 mw, 4, 1, do_mem_mw,
2fb2604d 1188 "memory write (fill)",
a89c33db 1189 "[.b, .w, .l] address value [count]"
8bde7f77
WD
1190);
1191
0d498393 1192U_BOOT_CMD(
53677ef1 1193 cp, 4, 1, do_mem_cp,
2fb2604d 1194 "memory copy",
a89c33db 1195 "[.b, .w, .l] source target count"
8bde7f77
WD
1196);
1197
0d498393 1198U_BOOT_CMD(
53677ef1 1199 cmp, 4, 1, do_mem_cmp,
2fb2604d 1200 "memory compare",
a89c33db 1201 "[.b, .w, .l] addr1 addr2 count"
8bde7f77
WD
1202);
1203
710b9938
MF
1204#ifdef CONFIG_CMD_CRC32
1205
c26e454d
WD
1206#ifndef CONFIG_CRC32_VERIFY
1207
0d498393 1208U_BOOT_CMD(
53677ef1 1209 crc32, 4, 1, do_mem_crc,
2fb2604d 1210 "checksum calculation",
a89c33db 1211 "address count [addr]\n - compute CRC32 checksum [save at addr]"
8bde7f77
WD
1212);
1213
c26e454d
WD
1214#else /* CONFIG_CRC32_VERIFY */
1215
1216U_BOOT_CMD(
53677ef1 1217 crc32, 5, 1, do_mem_crc,
2fb2604d 1218 "checksum calculation",
c26e454d 1219 "address count [addr]\n - compute CRC32 checksum [save at addr]\n"
a89c33db 1220 "-v address count crc\n - verify crc of memory area"
c26e454d
WD
1221);
1222
1223#endif /* CONFIG_CRC32_VERIFY */
1224
710b9938
MF
1225#endif
1226
0d498393 1227U_BOOT_CMD(
53677ef1 1228 base, 2, 1, do_mem_base,
2fb2604d 1229 "print or set address offset",
8bde7f77 1230 "\n - print address offset for memory commands\n"
a89c33db 1231 "base off\n - set address offset for memory commands to 'off'"
8bde7f77
WD
1232);
1233
0d498393 1234U_BOOT_CMD(
53677ef1 1235 loop, 3, 1, do_mem_loop,
2fb2604d 1236 "infinite loop on address range",
a89c33db 1237 "[.b, .w, .l] address number_of_objects"
8bde7f77
WD
1238);
1239
56523f12
WD
1240#ifdef CONFIG_LOOPW
1241U_BOOT_CMD(
53677ef1 1242 loopw, 4, 1, do_mem_loopw,
2fb2604d 1243 "infinite write loop on address range",
a89c33db 1244 "[.b, .w, .l] address number_of_objects data_to_write"
56523f12
WD
1245);
1246#endif /* CONFIG_LOOPW */
1247
0d498393 1248U_BOOT_CMD(
b6fc6fd4 1249 mtest, 5, 1, do_mem_mtest,
a89c33db
WD
1250 "simple RAM read/write test",
1251 "[start [end [pattern [iterations]]]]"
8bde7f77
WD
1252);
1253
4aaf29b2
SR
1254#ifdef CONFIG_MX_CYCLIC
1255U_BOOT_CMD(
53677ef1 1256 mdc, 4, 1, do_mem_mdc,
2fb2604d 1257 "memory display cyclic",
a89c33db 1258 "[.b, .w, .l] address count delay(ms)"
4aaf29b2
SR
1259);
1260
1261U_BOOT_CMD(
53677ef1 1262 mwc, 4, 1, do_mem_mwc,
2fb2604d 1263 "memory write cyclic",
a89c33db 1264 "[.b, .w, .l] address value delay(ms)"
4aaf29b2
SR
1265);
1266#endif /* CONFIG_MX_CYCLIC */