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