3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
11 * Copied from FADS ROM, Dan Malek (dmalek@jlc.net)
15 #include <bootretry.h>
18 #ifdef CONFIG_HAS_DATAFLASH
19 #include <dataflash.h>
24 #include <linux/compiler.h>
26 DECLARE_GLOBAL_DATA_PTR;
28 #ifndef CONFIG_SYS_MEMTEST_SCRATCH
29 #define CONFIG_SYS_MEMTEST_SCRATCH 0
32 static int mod_mem(cmd_tbl_t *, int, int, int, char * const []);
34 /* Display values from last command.
35 * Memory modify remembered values are different from display memory.
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;
41 static ulong base_address = 0;
46 * md{.b, .w, .l, .q} {addr} {len}
48 #define DISP_LINE_LEN 16
49 static int do_mem_md(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
52 #if defined(CONFIG_HAS_DATAFLASH)
53 ulong nbytes, linebytes;
58 /* We use the last specified parameters, unless new ones are
63 length = dp_last_length;
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.
72 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
75 /* Address is specified since argc > 1
77 addr = simple_strtoul(argv[1], NULL, 16);
80 /* If another parameter, it is the length to display.
81 * Length is the number of objects, not number of bytes.
84 length = simple_strtoul(argv[2], NULL, 16);
87 #if defined(CONFIG_HAS_DATAFLASH)
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.
93 nbytes = length * size;
95 char linebuf[DISP_LINE_LEN];
97 linebytes = (nbytes>DISP_LINE_LEN)?DISP_LINE_LEN:nbytes;
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);
109 } while (nbytes > 0);
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;
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);
128 } while (nbytes > 0);
133 ulong bytes = size * length;
134 const void *buf = map_sysmem(addr, bytes);
136 /* Print the lines. */
137 print_buffer(addr, buf, size, length, DISP_LINE_LEN / size);
144 dp_last_length = length;
149 static int do_mem_mm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
151 return mod_mem (cmdtp, 1, flag, argc, argv);
153 static int do_mem_nm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
155 return mod_mem (cmdtp, 0, flag, argc, argv);
158 static int do_mem_mw(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
160 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
170 if ((argc < 3) || (argc > 4))
171 return CMD_RET_USAGE;
173 /* Check for size specification.
175 if ((size = cmd_get_data_size(argv[0], 4)) < 1)
178 /* Address is specified since argc > 1
180 addr = simple_strtoul(argv[1], NULL, 16);
181 addr += base_address;
183 /* Get the value to write.
185 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
186 writeval = simple_strtoull(argv[2], NULL, 16);
188 writeval = simple_strtoul(argv[2], NULL, 16);
193 count = simple_strtoul(argv[3], NULL, 16);
198 bytes = size * count;
199 buf = map_sysmem(addr, bytes);
200 while (count-- > 0) {
202 *((u32 *)buf) = (u32)writeval;
203 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
205 *((u64 *)buf) = (u64)writeval;
208 *((u16 *)buf) = (u16)writeval;
210 *((u8 *)buf) = (u8)writeval;
217 #ifdef CONFIG_MX_CYCLIC
218 int do_mem_mdc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
224 return CMD_RET_USAGE;
226 count = simple_strtoul(argv[3], NULL, 10);
229 do_mem_md (NULL, 0, 3, argv);
231 /* delay for <count> ms... */
232 for (i=0; i<count; i++)
235 /* check for ctrl-c to abort... */
245 int do_mem_mwc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
251 return CMD_RET_USAGE;
253 count = simple_strtoul(argv[3], NULL, 10);
256 do_mem_mw (NULL, 0, 3, argv);
258 /* delay for <count> ms... */
259 for (i=0; i<count; i++)
262 /* check for ctrl-c to abort... */
271 #endif /* CONFIG_MX_CYCLIC */
273 static int do_mem_cmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
275 ulong addr1, addr2, count, ngood, bytes;
279 const void *buf1, *buf2, *base;
280 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
287 return CMD_RET_USAGE;
289 /* Check for size specification.
291 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
293 type = size == 8 ? "double word" :
295 size == 2 ? "halfword" : "byte";
297 addr1 = simple_strtoul(argv[1], NULL, 16);
298 addr1 += base_address;
300 addr2 = simple_strtoul(argv[2], NULL, 16);
301 addr2 += base_address;
303 count = simple_strtoul(argv[3], NULL, 16);
305 #ifdef CONFIG_HAS_DATAFLASH
306 if (addr_dataflash(addr1) | addr_dataflash(addr2)){
307 puts ("Comparison with DataFlash space not supported.\n\r");
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");
319 bytes = size * count;
320 base = buf1 = map_sysmem(addr1, bytes);
321 buf2 = map_sysmem(addr2, bytes);
322 for (ngood = 0; ngood < count; ++ngood) {
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;
331 } else if (size == 2) {
332 word1 = *(u16 *)buf1;
333 word2 = *(u16 *)buf2;
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);
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);
356 /* reset watchdog from time to time */
357 if ((ngood % (64 << 10)) == 0)
363 printf("Total of %ld %s(s) were the same\n", ngood, type);
367 static int do_mem_cp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
369 ulong addr, dest, count, bytes;
375 return CMD_RET_USAGE;
377 /* Check for size specification.
379 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
382 addr = simple_strtoul(argv[1], NULL, 16);
383 addr += base_address;
385 dest = simple_strtoul(argv[2], NULL, 16);
386 dest += base_address;
388 count = simple_strtoul(argv[3], NULL, 16);
391 puts ("Zero length ???\n");
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))
404 puts ("Copy to Flash... ");
406 rc = flash_write ((char *)addr, dest, count*size);
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)){
421 puts ("Copy to DataFlash... ");
423 rc = write_dataflash (dest, addr, count*size);
426 dataflash_perror (rc);
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)
440 rc = read_dataflash(addr, count * size, (char *) dest);
442 dataflash_perror (rc);
448 if (addr_dataflash(addr) && addr_dataflash(dest)){
449 puts ("Unsupported combination of source/destination.\n\r");
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);
462 bytes = size * count;
463 buf = map_sysmem(dest, bytes);
464 src = map_sysmem(addr, bytes);
465 while (count-- > 0) {
467 *((u32 *)buf) = *((u32 *)src);
468 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
470 *((u64 *)buf) = *((u64 *)src);
473 *((u16 *)buf) = *((u16 *)src);
475 *((u8 *)buf) = *((u8 *)src);
479 /* reset watchdog from time to time */
480 if ((count % (64 << 10)) == 0)
486 static int do_mem_base(cmd_tbl_t *cmdtp, int flag, int argc,
490 /* Set new base address.
492 base_address = simple_strtoul(argv[1], NULL, 16);
494 /* Print the current base address.
496 printf("Base Address: 0x%08lx\n", base_address);
500 static int do_mem_loop(cmd_tbl_t *cmdtp, int flag, int argc,
503 ulong addr, length, i, bytes;
505 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
509 volatile u16 *shortp;
514 return CMD_RET_USAGE;
517 * Check for a size specification.
518 * Defaults to long if no or incorrect specification.
520 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
523 /* Address is always specified.
525 addr = simple_strtoul(argv[1], NULL, 16);
527 /* Length is the number of objects, not number of bytes.
529 length = simple_strtoul(argv[2], NULL, 16);
531 bytes = size * length;
532 buf = map_sysmem(addr, bytes);
534 /* We want to optimize the loops to run as fast as possible.
535 * If we have only one object, just run infinite loops.
538 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
560 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
598 int do_mem_loopw (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
600 ulong addr, length, i, bytes;
602 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
609 volatile u16 *shortp;
614 return CMD_RET_USAGE;
617 * Check for a size specification.
618 * Defaults to long if no or incorrect specification.
620 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
623 /* Address is always specified.
625 addr = simple_strtoul(argv[1], NULL, 16);
627 /* Length is the number of objects, not number of bytes.
629 length = simple_strtoul(argv[2], NULL, 16);
632 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
633 data = simple_strtoull(argv[3], NULL, 16);
635 data = simple_strtoul(argv[3], NULL, 16);
638 bytes = size * length;
639 buf = map_sysmem(addr, bytes);
641 /* We want to optimize the loops to run as fast as possible.
642 * If we have only one object, just run infinite loops.
645 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
667 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
700 #endif /* CONFIG_LOOPW */
702 #ifdef CONFIG_CMD_MEMTEST
703 static ulong mem_test_alt(vu_long *buf, ulong start_addr, ulong end_addr,
714 vu_long anti_pattern;
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 */
727 num_words = (end_addr - start_addr) / sizeof(vu_long);
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
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).
747 for (j = 0; j < sizeof(bitpattern) / sizeof(bitpattern[0]); j++) {
749 for (; val != 0; val <<= 1) {
751 *dummy = ~val; /* clear the test data off the bus */
753 if (readback != val) {
754 printf("FAILURE (data line): "
755 "expected %08lx, actual %08lx\n",
764 if (readback != ~val) {
765 printf("FAILURE (data line): "
766 "Is %08lx, should be %08lx\n",
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.
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.
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
807 * Returns: 0 if the test succeeds, 1 if the test fails.
809 pattern = (vu_long) 0xaaaaaaaa;
810 anti_pattern = (vu_long) 0x55555555;
812 debug("%s:%d: length = 0x%.8lx\n", __func__, __LINE__, num_words);
814 * Write the default pattern at each of the
815 * power-of-two offsets.
817 for (offset = 1; offset < num_words; offset <<= 1)
818 addr[offset] = pattern;
821 * Check for address bits stuck high.
824 addr[test_offset] = anti_pattern;
826 for (offset = 1; offset < num_words; offset <<= 1) {
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),
838 addr[test_offset] = pattern;
842 * Check for addr bits stuck low or shorted.
844 for (test_offset = 1; test_offset < num_words; test_offset <<= 1) {
845 addr[test_offset] = anti_pattern;
847 for (offset = 1; offset < num_words; offset <<= 1) {
849 if ((temp != pattern) && (offset != test_offset)) {
850 printf("\nFAILURE: Address bit stuck low or"
851 " shorted @ 0x%.8lx: expected 0x%.8lx,"
853 start_addr + offset*sizeof(vu_long),
860 addr[test_offset] = pattern;
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.
873 * Returns: 0 if the test succeeds, 1 if the test fails.
878 * Fill memory with a known pattern.
880 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
882 addr[offset] = pattern;
886 * Check each location and invert it for the second pass.
888 for (pattern = 1, offset = 0; offset < num_words; pattern++, 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),
901 anti_pattern = ~pattern;
902 addr[offset] = anti_pattern;
906 * Check each location for the inverted pattern and zero it.
908 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
910 anti_pattern = ~pattern;
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),
927 static ulong mem_test_quick(vu_long *buf, ulong start_addr, ulong end_addr,
928 vu_long pattern, int iteration)
936 /* Alternate the pattern */
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.
946 if (pattern & 0x80000000)
947 pattern = -pattern; /* complement & increment */
951 length = (end_addr - start_addr) / sizeof(ulong);
953 printf("\rPattern %08lX Writing..."
955 "\b\b\b\b\b\b\b\b\b\b",
958 for (addr = buf, val = pattern; addr < end; addr++) {
966 for (addr = buf, val = pattern; addr < end; addr++) {
969 if (readback != val) {
970 ulong offset = addr - buf;
972 printf("\nMem error @ 0x%08X: "
973 "found %08lX, expected %08lX\n",
974 (uint)(uintptr_t)(start_addr + offset*sizeof(vu_long)),
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.
991 static int do_mem_mtest(cmd_tbl_t *cmdtp, int flag, int argc,
995 vu_long *buf, *dummy;
998 ulong errs = 0; /* number of errors, or -1 if interrupted */
1001 #if defined(CONFIG_SYS_ALT_MEMTEST)
1002 const int alt_test = 1;
1004 const int alt_test = 0;
1008 start = simple_strtoul(argv[1], NULL, 16);
1010 start = CONFIG_SYS_MEMTEST_START;
1013 end = simple_strtoul(argv[2], NULL, 16);
1015 end = CONFIG_SYS_MEMTEST_END;
1018 pattern = (ulong)simple_strtoul(argv[3], NULL, 16);
1023 iteration_limit = (ulong)simple_strtoul(argv[4], NULL, 16);
1025 iteration_limit = 0;
1027 printf("Testing %08x ... %08x:\n", (uint)start, (uint)end);
1028 debug("%s:%d: start %#08lx end %#08lx\n", __func__, __LINE__,
1031 buf = map_sysmem(start, end - start);
1032 dummy = map_sysmem(CONFIG_SYS_MEMTEST_SCRATCH, sizeof(vu_long));
1034 !iteration_limit || iteration < iteration_limit;
1041 printf("Iteration: %6d\r", iteration + 1);
1044 errs = mem_test_alt(buf, start, end, dummy);
1046 errs = mem_test_quick(buf, start, end, pattern,
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
1059 void *vbuf = (void *)buf;
1060 void *vdummy = (void *)dummy;
1063 unmap_sysmem(vdummy);
1067 /* Memory test was aborted - write a newline to finish off */
1071 printf("Tested %d iteration(s) with %lu errors.\n",
1076 return ret; /* not reached */
1078 #endif /* CONFIG_CMD_MEMTEST */
1083 * mm{.b, .w, .l, .q} {addr}
1084 * nm{.b, .w, .l, .q} {addr}
1087 mod_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const argv[])
1090 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1099 return CMD_RET_USAGE;
1101 bootretry_reset_cmd_timeout(); /* got a good command to get here */
1102 /* We use the last specified parameters, unless new ones are
1105 addr = mm_last_addr;
1106 size = mm_last_size;
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.
1112 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
1115 /* Address is specified since argc > 1
1117 addr = simple_strtoul(argv[1], NULL, 16);
1118 addr += base_address;
1121 #ifdef CONFIG_HAS_DATAFLASH
1122 if (addr_dataflash(addr)){
1123 puts ("Can't modify DataFlash in place. Use cp instead.\n\r");
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");
1135 /* Print the address, followed by value. Then accept input for
1136 * the next value. A non-converted value exits.
1139 ptr = map_sysmem(addr, size);
1140 printf("%08lx:", addr);
1142 printf(" %08x", *((u32 *)ptr));
1143 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1145 printf(" %016llx", *((u64 *)ptr));
1148 printf(" %04x", *((u16 *)ptr));
1150 printf(" %02x", *((u8 *)ptr));
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.
1158 addr += nbytes ? -size : size;
1160 /* good enough to not time out */
1161 bootretry_reset_cmd_timeout();
1163 #ifdef CONFIG_BOOT_RETRY_TIME
1164 else if (nbytes == -2) {
1165 break; /* timed out, exit the command */
1170 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1171 i = simple_strtoull(console_buffer, &endp, 16);
1173 i = simple_strtoul(console_buffer, &endp, 16);
1175 nbytes = endp - console_buffer;
1177 /* good enough to not time out
1179 bootretry_reset_cmd_timeout();
1182 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1198 mm_last_addr = addr;
1199 mm_last_size = size;
1203 #ifdef CONFIG_CMD_CRC32
1205 static int do_mem_crc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1212 return CMD_RET_USAGE;
1216 #ifdef CONFIG_HASH_VERIFY
1217 if (strcmp(*av, "-v") == 0) {
1218 flags |= HASH_FLAG_VERIFY;
1224 return hash_command("crc32", flags, cmdtp, flag, ac, av);
1229 /**************************************************/
1231 md, 3, 1, do_mem_md,
1233 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1234 "[.b, .w, .l, .q] address [# of objects]"
1236 "[.b, .w, .l] address [# of objects]"
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"
1247 "[.b, .w, .l] address"
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"
1258 "[.b, .w, .l] address"
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]"
1268 "[.b, .w, .l] address value [count]"
1273 cp, 4, 1, do_mem_cp,
1275 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1276 "[.b, .w, .l, .q] source target count"
1278 "[.b, .w, .l] source target count"
1283 cmp, 4, 1, do_mem_cmp,
1285 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1286 "[.b, .w, .l, .q] addr1 addr2 count"
1288 "[.b, .w, .l] addr1 addr2 count"
1292 #ifdef CONFIG_CMD_CRC32
1294 #ifndef CONFIG_CRC32_VERIFY
1297 crc32, 4, 1, do_mem_crc,
1298 "checksum calculation",
1299 "address count [addr]\n - compute CRC32 checksum [save at addr]"
1302 #else /* CONFIG_CRC32_VERIFY */
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"
1311 #endif /* CONFIG_CRC32_VERIFY */
1315 #ifdef CONFIG_CMD_MEMINFO
1316 __weak void board_show_dram(ulong size)
1319 print_size(size, "\n");
1322 static int do_mem_info(cmd_tbl_t *cmdtp, int flag, int argc,
1323 char * const argv[])
1325 board_show_dram(gd->ram_size);
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'"
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"
1344 "[.b, .w, .l] address number_of_objects"
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"
1355 "[.b, .w, .l] address number_of_objects data_to_write"
1358 #endif /* CONFIG_LOOPW */
1360 #ifdef CONFIG_CMD_MEMTEST
1362 mtest, 5, 1, do_mem_mtest,
1363 "simple RAM read/write test",
1364 "[start [end [pattern [iterations]]]]"
1366 #endif /* CONFIG_CMD_MEMTEST */
1368 #ifdef CONFIG_MX_CYCLIC
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)"
1375 "[.b, .w, .l] address count delay(ms)"
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)"
1385 "[.b, .w, .l] address value delay(ms)"
1388 #endif /* CONFIG_MX_CYCLIC */
1390 #ifdef CONFIG_CMD_MEMINFO
1392 meminfo, 3, 1, do_mem_info,
1393 "display memory information",