]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_mem.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.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 static 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 static 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         unmap_sysmem(buf);
484         unmap_sysmem(src);
485
486         return 0;
487 }
488
489 static int do_mem_base(cmd_tbl_t *cmdtp, int flag, int argc,
490                        char * const argv[])
491 {
492         if (argc > 1) {
493                 /* Set new base address.
494                 */
495                 base_address = simple_strtoul(argv[1], NULL, 16);
496         }
497         /* Print the current base address.
498         */
499         printf("Base Address: 0x%08lx\n", base_address);
500         return 0;
501 }
502
503 static int do_mem_loop(cmd_tbl_t *cmdtp, int flag, int argc,
504                        char * const argv[])
505 {
506         ulong   addr, length, i, bytes;
507         int     size;
508 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
509         volatile u64 *llp;
510 #endif
511         volatile u32 *longp;
512         volatile u16 *shortp;
513         volatile u8 *cp;
514         const void *buf;
515
516         if (argc < 3)
517                 return CMD_RET_USAGE;
518
519         /*
520          * Check for a size specification.
521          * Defaults to long if no or incorrect specification.
522          */
523         if ((size = cmd_get_data_size(argv[0], 4)) < 0)
524                 return 1;
525
526         /* Address is always specified.
527         */
528         addr = simple_strtoul(argv[1], NULL, 16);
529
530         /* Length is the number of objects, not number of bytes.
531         */
532         length = simple_strtoul(argv[2], NULL, 16);
533
534         bytes = size * length;
535         buf = map_sysmem(addr, bytes);
536
537         /* We want to optimize the loops to run as fast as possible.
538          * If we have only one object, just run infinite loops.
539          */
540         if (length == 1) {
541 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
542                 if (size == 8) {
543                         llp = (u64 *)buf;
544                         for (;;)
545                                 i = *llp;
546                 }
547 #endif
548                 if (size == 4) {
549                         longp = (u32 *)buf;
550                         for (;;)
551                                 i = *longp;
552                 }
553                 if (size == 2) {
554                         shortp = (u16 *)buf;
555                         for (;;)
556                                 i = *shortp;
557                 }
558                 cp = (u8 *)buf;
559                 for (;;)
560                         i = *cp;
561         }
562
563 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
564         if (size == 8) {
565                 for (;;) {
566                         llp = (u64 *)buf;
567                         i = length;
568                         while (i-- > 0)
569                                 *llp++;
570                 }
571         }
572 #endif
573         if (size == 4) {
574                 for (;;) {
575                         longp = (u32 *)buf;
576                         i = length;
577                         while (i-- > 0)
578                                 *longp++;
579                 }
580         }
581         if (size == 2) {
582                 for (;;) {
583                         shortp = (u16 *)buf;
584                         i = length;
585                         while (i-- > 0)
586                                 *shortp++;
587                 }
588         }
589         for (;;) {
590                 cp = (u8 *)buf;
591                 i = length;
592                 while (i-- > 0)
593                         *cp++;
594         }
595         unmap_sysmem(buf);
596
597         return 0;
598 }
599
600 #ifdef CONFIG_LOOPW
601 static int do_mem_loopw(cmd_tbl_t *cmdtp, int flag, int argc,
602                         char * const argv[])
603 {
604         ulong   addr, length, i, bytes;
605         int     size;
606 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
607         volatile u64 *llp;
608         u64 data;
609 #else
610         ulong   data;
611 #endif
612         volatile u32 *longp;
613         volatile u16 *shortp;
614         volatile u8 *cp;
615         void *buf;
616
617         if (argc < 4)
618                 return CMD_RET_USAGE;
619
620         /*
621          * Check for a size specification.
622          * Defaults to long if no or incorrect specification.
623          */
624         if ((size = cmd_get_data_size(argv[0], 4)) < 0)
625                 return 1;
626
627         /* Address is always specified.
628         */
629         addr = simple_strtoul(argv[1], NULL, 16);
630
631         /* Length is the number of objects, not number of bytes.
632         */
633         length = simple_strtoul(argv[2], NULL, 16);
634
635         /* data to write */
636 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
637         data = simple_strtoull(argv[3], NULL, 16);
638 #else
639         data = simple_strtoul(argv[3], NULL, 16);
640 #endif
641
642         bytes = size * length;
643         buf = map_sysmem(addr, bytes);
644
645         /* We want to optimize the loops to run as fast as possible.
646          * If we have only one object, just run infinite loops.
647          */
648         if (length == 1) {
649 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
650                 if (size == 8) {
651                         llp = (u64 *)buf;
652                         for (;;)
653                                 *llp = data;
654                 }
655 #endif
656                 if (size == 4) {
657                         longp = (u32 *)buf;
658                         for (;;)
659                                 *longp = data;
660                 }
661                 if (size == 2) {
662                         shortp = (u16 *)buf;
663                         for (;;)
664                                 *shortp = data;
665                 }
666                 cp = (u8 *)buf;
667                 for (;;)
668                         *cp = data;
669         }
670
671 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
672         if (size == 8) {
673                 for (;;) {
674                         llp = (u64 *)buf;
675                         i = length;
676                         while (i-- > 0)
677                                 *llp++ = data;
678                 }
679         }
680 #endif
681         if (size == 4) {
682                 for (;;) {
683                         longp = (u32 *)buf;
684                         i = length;
685                         while (i-- > 0)
686                                 *longp++ = data;
687                 }
688         }
689         if (size == 2) {
690                 for (;;) {
691                         shortp = (u16 *)buf;
692                         i = length;
693                         while (i-- > 0)
694                                 *shortp++ = data;
695                 }
696         }
697         for (;;) {
698                 cp = (u8 *)buf;
699                 i = length;
700                 while (i-- > 0)
701                         *cp++ = data;
702         }
703 }
704 #endif /* CONFIG_LOOPW */
705
706 #ifdef CONFIG_CMD_MEMTEST
707 static ulong mem_test_alt(vu_long *buf, ulong start_addr, ulong end_addr,
708                           vu_long *dummy)
709 {
710         vu_long *addr;
711         ulong errs = 0;
712         ulong val, readback;
713         int j;
714         vu_long offset;
715         vu_long test_offset;
716         vu_long pattern;
717         vu_long temp;
718         vu_long anti_pattern;
719         vu_long num_words;
720         static const ulong bitpattern[] = {
721                 0x00000001,     /* single bit */
722                 0x00000003,     /* two adjacent bits */
723                 0x00000007,     /* three adjacent bits */
724                 0x0000000F,     /* four adjacent bits */
725                 0x00000005,     /* two non-adjacent bits */
726                 0x00000015,     /* three non-adjacent bits */
727                 0x00000055,     /* four non-adjacent bits */
728                 0xaaaaaaaa,     /* alternating 1/0 */
729         };
730
731         num_words = (end_addr - start_addr) / sizeof(vu_long);
732
733         /*
734          * Data line test: write a pattern to the first
735          * location, write the 1's complement to a 'parking'
736          * address (changes the state of the data bus so a
737          * floating bus doesn't give a false OK), and then
738          * read the value back. Note that we read it back
739          * into a variable because the next time we read it,
740          * it might be right (been there, tough to explain to
741          * the quality guys why it prints a failure when the
742          * "is" and "should be" are obviously the same in the
743          * error message).
744          *
745          * Rather than exhaustively testing, we test some
746          * patterns by shifting '1' bits through a field of
747          * '0's and '0' bits through a field of '1's (i.e.
748          * pattern and ~pattern).
749          */
750         addr = buf;
751         for (j = 0; j < sizeof(bitpattern) / sizeof(bitpattern[0]); j++) {
752                 val = bitpattern[j];
753                 for (; val != 0; val <<= 1) {
754                         *addr = val;
755                         *dummy  = ~val; /* clear the test data off the bus */
756                         readback = *addr;
757                         if (readback != val) {
758                                 printf("FAILURE (data line): "
759                                         "expected %08lx, actual %08lx\n",
760                                                 val, readback);
761                                 errs++;
762                                 if (ctrlc())
763                                         return -1;
764                         }
765                         *addr  = ~val;
766                         *dummy  = val;
767                         readback = *addr;
768                         if (readback != ~val) {
769                                 printf("FAILURE (data line): "
770                                         "Is %08lx, should be %08lx\n",
771                                                 readback, ~val);
772                                 errs++;
773                                 if (ctrlc())
774                                         return -1;
775                         }
776                 }
777         }
778
779         /*
780          * Based on code whose Original Author and Copyright
781          * information follows: Copyright (c) 1998 by Michael
782          * Barr. This software is placed into the public
783          * domain and may be used for any purpose. However,
784          * this notice must not be changed or removed and no
785          * warranty is either expressed or implied by its
786          * publication or distribution.
787          */
788
789         /*
790         * Address line test
791
792          * Description: Test the address bus wiring in a
793          *              memory region by performing a walking
794          *              1's test on the relevant bits of the
795          *              address and checking for aliasing.
796          *              This test will find single-bit
797          *              address failures such as stuck-high,
798          *              stuck-low, and shorted pins. The base
799          *              address and size of the region are
800          *              selected by the caller.
801
802          * Notes:       For best results, the selected base
803          *              address should have enough LSB 0's to
804          *              guarantee single address bit changes.
805          *              For example, to test a 64-Kbyte
806          *              region, select a base address on a
807          *              64-Kbyte boundary. Also, select the
808          *              region size as a power-of-two if at
809          *              all possible.
810          *
811          * Returns:     0 if the test succeeds, 1 if the test fails.
812          */
813         pattern = (vu_long) 0xaaaaaaaa;
814         anti_pattern = (vu_long) 0x55555555;
815
816         debug("%s:%d: length = 0x%.8lx\n", __func__, __LINE__, num_words);
817         /*
818          * Write the default pattern at each of the
819          * power-of-two offsets.
820          */
821         for (offset = 1; offset < num_words; offset <<= 1)
822                 addr[offset] = pattern;
823
824         /*
825          * Check for address bits stuck high.
826          */
827         test_offset = 0;
828         addr[test_offset] = anti_pattern;
829
830         for (offset = 1; offset < num_words; offset <<= 1) {
831                 temp = addr[offset];
832                 if (temp != pattern) {
833                         printf("\nFAILURE: Address bit stuck high @ 0x%.8lx:"
834                                 " expected 0x%.8lx, actual 0x%.8lx\n",
835                                 start_addr + offset*sizeof(vu_long),
836                                 pattern, temp);
837                         errs++;
838                         if (ctrlc())
839                                 return -1;
840                 }
841         }
842         addr[test_offset] = pattern;
843         WATCHDOG_RESET();
844
845         /*
846          * Check for addr bits stuck low or shorted.
847          */
848         for (test_offset = 1; test_offset < num_words; test_offset <<= 1) {
849                 addr[test_offset] = anti_pattern;
850
851                 for (offset = 1; offset < num_words; offset <<= 1) {
852                         temp = addr[offset];
853                         if ((temp != pattern) && (offset != test_offset)) {
854                                 printf("\nFAILURE: Address bit stuck low or"
855                                         " shorted @ 0x%.8lx: expected 0x%.8lx,"
856                                         " actual 0x%.8lx\n",
857                                         start_addr + offset*sizeof(vu_long),
858                                         pattern, temp);
859                                 errs++;
860                                 if (ctrlc())
861                                         return -1;
862                         }
863                 }
864                 addr[test_offset] = pattern;
865         }
866
867         /*
868          * Description: Test the integrity of a physical
869          *              memory device by performing an
870          *              increment/decrement test over the
871          *              entire region. In the process every
872          *              storage bit in the device is tested
873          *              as a zero and a one. The base address
874          *              and the size of the region are
875          *              selected by the caller.
876          *
877          * Returns:     0 if the test succeeds, 1 if the test fails.
878          */
879         num_words++;
880
881         /*
882          * Fill memory with a known pattern.
883          */
884         for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
885                 WATCHDOG_RESET();
886                 addr[offset] = pattern;
887         }
888
889         /*
890          * Check each location and invert it for the second pass.
891          */
892         for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
893                 WATCHDOG_RESET();
894                 temp = addr[offset];
895                 if (temp != pattern) {
896                         printf("\nFAILURE (read/write) @ 0x%.8lx:"
897                                 " expected 0x%.8lx, actual 0x%.8lx)\n",
898                                 start_addr + offset*sizeof(vu_long),
899                                 pattern, temp);
900                         errs++;
901                         if (ctrlc())
902                                 return -1;
903                 }
904
905                 anti_pattern = ~pattern;
906                 addr[offset] = anti_pattern;
907         }
908
909         /*
910          * Check each location for the inverted pattern and zero it.
911          */
912         for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
913                 WATCHDOG_RESET();
914                 anti_pattern = ~pattern;
915                 temp = addr[offset];
916                 if (temp != anti_pattern) {
917                         printf("\nFAILURE (read/write): @ 0x%.8lx:"
918                                 " expected 0x%.8lx, actual 0x%.8lx)\n",
919                                 start_addr + offset*sizeof(vu_long),
920                                 anti_pattern, temp);
921                         errs++;
922                         if (ctrlc())
923                                 return -1;
924                 }
925                 addr[offset] = 0;
926         }
927
928         return 0;
929 }
930
931 static ulong mem_test_quick(vu_long *buf, ulong start_addr, ulong end_addr,
932                             vu_long pattern, int iteration)
933 {
934         vu_long *end;
935         vu_long *addr;
936         ulong errs = 0;
937         ulong incr, length;
938         ulong val, readback;
939
940         /* Alternate the pattern */
941         incr = 1;
942         if (iteration & 1) {
943                 incr = -incr;
944                 /*
945                  * Flip the pattern each time to make lots of zeros and
946                  * then, the next time, lots of ones.  We decrement
947                  * the "negative" patterns and increment the "positive"
948                  * patterns to preserve this feature.
949                  */
950                 if (pattern & 0x80000000)
951                         pattern = -pattern;     /* complement & increment */
952                 else
953                         pattern = ~pattern;
954         }
955         length = (end_addr - start_addr) / sizeof(ulong);
956         end = buf + length;
957         printf("\rPattern %08lX  Writing..."
958                 "%12s"
959                 "\b\b\b\b\b\b\b\b\b\b",
960                 pattern, "");
961
962         for (addr = buf, val = pattern; addr < end; addr++) {
963                 WATCHDOG_RESET();
964                 *addr = val;
965                 val += incr;
966         }
967
968         puts("Reading...");
969
970         for (addr = buf, val = pattern; addr < end; addr++) {
971                 WATCHDOG_RESET();
972                 readback = *addr;
973                 if (readback != val) {
974                         ulong offset = addr - buf;
975
976                         printf("\nMem error @ 0x%08X: "
977                                 "found %08lX, expected %08lX\n",
978                                 (uint)(uintptr_t)(start_addr + offset*sizeof(vu_long)),
979                                 readback, val);
980                         errs++;
981                         if (ctrlc())
982                                 return -1;
983                 }
984                 val += incr;
985         }
986
987         return 0;
988 }
989
990 /*
991  * Perform a memory test. A more complete alternative test can be
992  * configured using CONFIG_SYS_ALT_MEMTEST. The complete test loops until
993  * interrupted by ctrl-c or by a failure of one of the sub-tests.
994  */
995 static int do_mem_mtest(cmd_tbl_t *cmdtp, int flag, int argc,
996                         char * const argv[])
997 {
998         ulong start, end;
999         vu_long *buf, *dummy;
1000         int iteration_limit;
1001         int ret;
1002         ulong errs = 0; /* number of errors, or -1 if interrupted */
1003         ulong pattern;
1004         int iteration;
1005 #if defined(CONFIG_SYS_ALT_MEMTEST)
1006         const int alt_test = 1;
1007 #else
1008         const int alt_test = 0;
1009 #endif
1010
1011         if (argc > 1)
1012                 start = simple_strtoul(argv[1], NULL, 16);
1013         else
1014                 start = CONFIG_SYS_MEMTEST_START;
1015
1016         if (argc > 2)
1017                 end = simple_strtoul(argv[2], NULL, 16);
1018         else
1019                 end = CONFIG_SYS_MEMTEST_END;
1020
1021         if (argc > 3)
1022                 pattern = (ulong)simple_strtoul(argv[3], NULL, 16);
1023         else
1024                 pattern = 0;
1025
1026         if (argc > 4)
1027                 iteration_limit = (ulong)simple_strtoul(argv[4], NULL, 16);
1028         else
1029                 iteration_limit = 0;
1030
1031         printf("Testing %08x ... %08x:\n", (uint)start, (uint)end);
1032         debug("%s:%d: start %#08lx end %#08lx\n", __func__, __LINE__,
1033               start, end);
1034
1035         buf = map_sysmem(start, end - start);
1036         dummy = map_sysmem(CONFIG_SYS_MEMTEST_SCRATCH, sizeof(vu_long));
1037         for (iteration = 0;
1038                         !iteration_limit || iteration < iteration_limit;
1039                         iteration++) {
1040                 if (ctrlc()) {
1041                         errs = -1UL;
1042                         break;
1043                 }
1044
1045                 printf("Iteration: %6d\r", iteration + 1);
1046                 debug("\n");
1047                 if (alt_test) {
1048                         errs = mem_test_alt(buf, start, end, dummy);
1049                 } else {
1050                         errs = mem_test_quick(buf, start, end, pattern,
1051                                               iteration);
1052                 }
1053                 if (errs == -1UL)
1054                         break;
1055         }
1056
1057         /*
1058          * Work-around for eldk-4.2 which gives this warning if we try to
1059          * case in the unmap_sysmem() call:
1060          * warning: initialization discards qualifiers from pointer target type
1061          */
1062         {
1063                 void *vbuf = (void *)buf;
1064                 void *vdummy = (void *)dummy;
1065
1066                 unmap_sysmem(vbuf);
1067                 unmap_sysmem(vdummy);
1068         }
1069
1070         if (errs == -1UL) {
1071                 /* Memory test was aborted - write a newline to finish off */
1072                 putc('\n');
1073                 ret = 1;
1074         } else {
1075                 printf("Tested %d iteration(s) with %lu errors.\n",
1076                         iteration, errs);
1077                 ret = errs != 0;
1078         }
1079
1080         return ret;     /* not reached */
1081 }
1082 #endif  /* CONFIG_CMD_MEMTEST */
1083
1084 /* Modify memory.
1085  *
1086  * Syntax:
1087  *      mm{.b, .w, .l, .q} {addr}
1088  *      nm{.b, .w, .l, .q} {addr}
1089  */
1090 static int
1091 mod_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const argv[])
1092 {
1093         ulong   addr;
1094 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1095         u64 i;
1096 #else
1097         ulong i;
1098 #endif
1099         int     nbytes, size;
1100         void *ptr = NULL;
1101
1102         if (argc != 2)
1103                 return CMD_RET_USAGE;
1104
1105         bootretry_reset_cmd_timeout();  /* got a good command to get here */
1106         /* We use the last specified parameters, unless new ones are
1107          * entered.
1108          */
1109         addr = mm_last_addr;
1110         size = mm_last_size;
1111
1112         if ((flag & CMD_FLAG_REPEAT) == 0) {
1113                 /* New command specified.  Check for a size specification.
1114                  * Defaults to long if no or incorrect specification.
1115                  */
1116                 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
1117                         return 1;
1118
1119                 /* Address is specified since argc > 1
1120                 */
1121                 addr = simple_strtoul(argv[1], NULL, 16);
1122                 addr += base_address;
1123         }
1124
1125 #ifdef CONFIG_HAS_DATAFLASH
1126         if (addr_dataflash(addr)){
1127                 puts ("Can't modify DataFlash in place. Use cp instead.\n\r");
1128                 return 0;
1129         }
1130 #endif
1131
1132 #ifdef CONFIG_BLACKFIN
1133         if (addr_bfin_on_chip_mem(addr)) {
1134                 puts ("Can't modify L1 instruction in place. Use cp instead.\n\r");
1135                 return 0;
1136         }
1137 #endif
1138
1139         /* Print the address, followed by value.  Then accept input for
1140          * the next value.  A non-converted value exits.
1141          */
1142         do {
1143                 ptr = map_sysmem(addr, size);
1144                 printf("%08lx:", addr);
1145                 if (size == 4)
1146                         printf(" %08x", *((u32 *)ptr));
1147 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1148                 else if (size == 8)
1149                         printf(" %016llx", *((u64 *)ptr));
1150 #endif
1151                 else if (size == 2)
1152                         printf(" %04x", *((u16 *)ptr));
1153                 else
1154                         printf(" %02x", *((u8 *)ptr));
1155
1156                 nbytes = cli_readline(" ? ");
1157                 if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) {
1158                         /* <CR> pressed as only input, don't modify current
1159                          * location and move to next. "-" pressed will go back.
1160                          */
1161                         if (incrflag)
1162                                 addr += nbytes ? -size : size;
1163                         nbytes = 1;
1164                         /* good enough to not time out */
1165                         bootretry_reset_cmd_timeout();
1166                 }
1167 #ifdef CONFIG_BOOT_RETRY_TIME
1168                 else if (nbytes == -2) {
1169                         break;  /* timed out, exit the command  */
1170                 }
1171 #endif
1172                 else {
1173                         char *endp;
1174 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1175                         i = simple_strtoull(console_buffer, &endp, 16);
1176 #else
1177                         i = simple_strtoul(console_buffer, &endp, 16);
1178 #endif
1179                         nbytes = endp - console_buffer;
1180                         if (nbytes) {
1181                                 /* good enough to not time out
1182                                  */
1183                                 bootretry_reset_cmd_timeout();
1184                                 if (size == 4)
1185                                         *((u32 *)ptr) = i;
1186 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1187                                 else if (size == 8)
1188                                         *((u64 *)ptr) = i;
1189 #endif
1190                                 else if (size == 2)
1191                                         *((u16 *)ptr) = i;
1192                                 else
1193                                         *((u8 *)ptr) = i;
1194                                 if (incrflag)
1195                                         addr += size;
1196                         }
1197                 }
1198         } while (nbytes);
1199         if (ptr)
1200                 unmap_sysmem(ptr);
1201
1202         mm_last_addr = addr;
1203         mm_last_size = size;
1204         return 0;
1205 }
1206
1207 #ifdef CONFIG_CMD_CRC32
1208
1209 static int do_mem_crc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1210 {
1211         int flags = 0;
1212         int ac;
1213         char * const *av;
1214
1215         if (argc < 3)
1216                 return CMD_RET_USAGE;
1217
1218         av = argv + 1;
1219         ac = argc - 1;
1220 #ifdef CONFIG_HASH_VERIFY
1221         if (strcmp(*av, "-v") == 0) {
1222                 flags |= HASH_FLAG_VERIFY;
1223                 av++;
1224                 ac--;
1225         }
1226 #endif
1227
1228         return hash_command("crc32", flags, cmdtp, flag, ac, av);
1229 }
1230
1231 #endif
1232
1233 /**************************************************/
1234 U_BOOT_CMD(
1235         md,     3,      1,      do_mem_md,
1236         "memory display",
1237 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1238         "[.b, .w, .l, .q] address [# of objects]"
1239 #else
1240         "[.b, .w, .l] address [# of objects]"
1241 #endif
1242 );
1243
1244
1245 U_BOOT_CMD(
1246         mm,     2,      1,      do_mem_mm,
1247         "memory modify (auto-incrementing address)",
1248 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1249         "[.b, .w, .l, .q] address"
1250 #else
1251         "[.b, .w, .l] address"
1252 #endif
1253 );
1254
1255
1256 U_BOOT_CMD(
1257         nm,     2,      1,      do_mem_nm,
1258         "memory modify (constant address)",
1259 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1260         "[.b, .w, .l, .q] address"
1261 #else
1262         "[.b, .w, .l] address"
1263 #endif
1264 );
1265
1266 U_BOOT_CMD(
1267         mw,     4,      1,      do_mem_mw,
1268         "memory write (fill)",
1269 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1270         "[.b, .w, .l, .q] address value [count]"
1271 #else
1272         "[.b, .w, .l] address value [count]"
1273 #endif
1274 );
1275
1276 U_BOOT_CMD(
1277         cp,     4,      1,      do_mem_cp,
1278         "memory copy",
1279 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1280         "[.b, .w, .l, .q] source target count"
1281 #else
1282         "[.b, .w, .l] source target count"
1283 #endif
1284 );
1285
1286 U_BOOT_CMD(
1287         cmp,    4,      1,      do_mem_cmp,
1288         "memory compare",
1289 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1290         "[.b, .w, .l, .q] addr1 addr2 count"
1291 #else
1292         "[.b, .w, .l] addr1 addr2 count"
1293 #endif
1294 );
1295
1296 #ifdef CONFIG_CMD_CRC32
1297
1298 #ifndef CONFIG_CRC32_VERIFY
1299
1300 U_BOOT_CMD(
1301         crc32,  4,      1,      do_mem_crc,
1302         "checksum calculation",
1303         "address count [addr]\n    - compute CRC32 checksum [save at addr]"
1304 );
1305
1306 #else   /* CONFIG_CRC32_VERIFY */
1307
1308 U_BOOT_CMD(
1309         crc32,  5,      1,      do_mem_crc,
1310         "checksum calculation",
1311         "address count [addr]\n    - compute CRC32 checksum [save at addr]\n"
1312         "-v address count crc\n    - verify crc of memory area"
1313 );
1314
1315 #endif  /* CONFIG_CRC32_VERIFY */
1316
1317 #endif
1318
1319 #ifdef CONFIG_CMD_MEMINFO
1320 __weak void board_show_dram(ulong size)
1321 {
1322         puts("DRAM:  ");
1323         print_size(size, "\n");
1324 }
1325
1326 static int do_mem_info(cmd_tbl_t *cmdtp, int flag, int argc,
1327                        char * const argv[])
1328 {
1329         board_show_dram(gd->ram_size);
1330
1331         return 0;
1332 }
1333 #endif
1334
1335 U_BOOT_CMD(
1336         base,   2,      1,      do_mem_base,
1337         "print or set address offset",
1338         "\n    - print address offset for memory commands\n"
1339         "base off\n    - set address offset for memory commands to 'off'"
1340 );
1341
1342 U_BOOT_CMD(
1343         loop,   3,      1,      do_mem_loop,
1344         "infinite loop on address range",
1345 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1346         "[.b, .w, .l, .q] address number_of_objects"
1347 #else
1348         "[.b, .w, .l] address number_of_objects"
1349 #endif
1350 );
1351
1352 #ifdef CONFIG_LOOPW
1353 U_BOOT_CMD(
1354         loopw,  4,      1,      do_mem_loopw,
1355         "infinite write loop on address range",
1356 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1357         "[.b, .w, .l, .q] address number_of_objects data_to_write"
1358 #else
1359         "[.b, .w, .l] address number_of_objects data_to_write"
1360 #endif
1361 );
1362 #endif /* CONFIG_LOOPW */
1363
1364 #ifdef CONFIG_CMD_MEMTEST
1365 U_BOOT_CMD(
1366         mtest,  5,      1,      do_mem_mtest,
1367         "simple RAM read/write test",
1368         "[start [end [pattern [iterations]]]]"
1369 );
1370 #endif  /* CONFIG_CMD_MEMTEST */
1371
1372 #ifdef CONFIG_MX_CYCLIC
1373 U_BOOT_CMD(
1374         mdc,    4,      1,      do_mem_mdc,
1375         "memory display cyclic",
1376 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1377         "[.b, .w, .l, .q] address count delay(ms)"
1378 #else
1379         "[.b, .w, .l] address count delay(ms)"
1380 #endif
1381 );
1382
1383 U_BOOT_CMD(
1384         mwc,    4,      1,      do_mem_mwc,
1385         "memory write cyclic",
1386 #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1387         "[.b, .w, .l, .q] address value delay(ms)"
1388 #else
1389         "[.b, .w, .l] address value delay(ms)"
1390 #endif
1391 );
1392 #endif /* CONFIG_MX_CYCLIC */
1393
1394 #ifdef CONFIG_CMD_MEMINFO
1395 U_BOOT_CMD(
1396         meminfo,        3,      1,      do_mem_info,
1397         "display memory information",
1398         ""
1399 );
1400 #endif