blob: 12dbc1609c38782cbd3a0ffcfbdab4997e5a5643 [file] [log] [blame]
wdenk38635852002-08-27 05:55:31 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * Memory Functions
26 *
27 * Copied from FADS ROM, Dan Malek (dmalek@jlc.net)
28 */
29
30#include <common.h>
31#include <command.h>
wdenk381669a2003-06-16 23:50:08 +000032#ifdef CONFIG_HAS_DATAFLASH
33#include <dataflash.h>
34#endif
Sergei Poselenov474dbb82008-04-09 16:09:41 +020035#include <watchdog.h>
Simon Glasse6d0ca22013-02-24 17:33:15 +000036#include <asm/io.h>
Simon Glasseacd14f2012-11-30 13:01:20 +000037#include <linux/compiler.h>
38
39DECLARE_GLOBAL_DATA_PTR;
wdenk38635852002-08-27 05:55:31 +000040
Wolfgang Denk6262d0212010-06-28 22:00:46 +020041static int mod_mem(cmd_tbl_t *, int, int, int, char * const []);
wdenk38635852002-08-27 05:55:31 +000042
43/* Display values from last command.
44 * Memory modify remembered values are different from display memory.
45 */
Mike Frysinger1a4af8c2010-12-22 09:40:29 -050046static uint dp_last_addr, dp_last_size;
47static uint dp_last_length = 0x40;
48static uint mm_last_addr, mm_last_size;
wdenk38635852002-08-27 05:55:31 +000049
50static ulong base_address = 0;
51
52/* Memory Display
53 *
54 * Syntax:
55 * md{.b, .w, .l} {addr} {len}
56 */
57#define DISP_LINE_LEN 16
Kim Phillipsdc00a682012-10-29 13:34:31 +000058static int do_mem_md(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000059{
wdenk874ac262003-07-24 23:38:38 +000060 ulong addr, length;
Grant Likely02a00782007-02-20 09:05:00 +010061#if defined(CONFIG_HAS_DATAFLASH)
62 ulong nbytes, linebytes;
63#endif
wdenk874ac262003-07-24 23:38:38 +000064 int size;
wdenk38635852002-08-27 05:55:31 +000065 int rc = 0;
66
67 /* We use the last specified parameters, unless new ones are
68 * entered.
69 */
70 addr = dp_last_addr;
71 size = dp_last_size;
72 length = dp_last_length;
73
Wolfgang Denk3b683112010-07-17 01:06:04 +020074 if (argc < 2)
Simon Glassa06dfc72011-12-10 08:44:01 +000075 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +000076
77 if ((flag & CMD_FLAG_REPEAT) == 0) {
78 /* New command specified. Check for a size specification.
79 * Defaults to long if no or incorrect specification.
80 */
wdenk874ac262003-07-24 23:38:38 +000081 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
82 return 1;
wdenk38635852002-08-27 05:55:31 +000083
84 /* Address is specified since argc > 1
85 */
86 addr = simple_strtoul(argv[1], NULL, 16);
87 addr += base_address;
88
89 /* If another parameter, it is the length to display.
90 * Length is the number of objects, not number of bytes.
91 */
92 if (argc > 2)
93 length = simple_strtoul(argv[2], NULL, 16);
94 }
95
Grant Likely02a00782007-02-20 09:05:00 +010096#if defined(CONFIG_HAS_DATAFLASH)
wdenk38635852002-08-27 05:55:31 +000097 /* Print the lines.
98 *
99 * We buffer all read data, so we can make sure data is read only
100 * once, and all accesses are with the specified bus width.
101 */
102 nbytes = length * size;
103 do {
104 char linebuf[DISP_LINE_LEN];
Grant Likely02a00782007-02-20 09:05:00 +0100105 void* p;
wdenk38635852002-08-27 05:55:31 +0000106 linebytes = (nbytes>DISP_LINE_LEN)?DISP_LINE_LEN:nbytes;
wdenk381669a2003-06-16 23:50:08 +0000107
Grant Likely02a00782007-02-20 09:05:00 +0100108 rc = read_dataflash(addr, (linebytes/size)*size, linebuf);
109 p = (rc == DATAFLASH_OK) ? linebuf : (void*)addr;
110 print_buffer(addr, p, size, linebytes/size, DISP_LINE_LEN/size);
wdenk57b2d802003-06-27 21:31:46 +0000111
wdenk38635852002-08-27 05:55:31 +0000112 nbytes -= linebytes;
Grant Likely02a00782007-02-20 09:05:00 +0100113 addr += linebytes;
wdenk38635852002-08-27 05:55:31 +0000114 if (ctrlc()) {
115 rc = 1;
116 break;
117 }
118 } while (nbytes > 0);
Grant Likely02a00782007-02-20 09:05:00 +0100119#else
Mike Frysingere578d682008-02-04 19:26:56 -0500120
121# if defined(CONFIG_BLACKFIN)
122 /* See if we're trying to display L1 inst */
123 if (addr_bfin_on_chip_mem(addr)) {
124 char linebuf[DISP_LINE_LEN];
125 ulong linebytes, nbytes = length * size;
126 do {
127 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
128 memcpy(linebuf, (void *)addr, linebytes);
129 print_buffer(addr, linebuf, size, linebytes/size, DISP_LINE_LEN/size);
130
131 nbytes -= linebytes;
132 addr += linebytes;
133 if (ctrlc()) {
134 rc = 1;
135 break;
136 }
137 } while (nbytes > 0);
138 } else
139# endif
140
141 {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000142 ulong bytes = size * length;
143 const void *buf = map_sysmem(addr, bytes);
144
Mike Frysingere578d682008-02-04 19:26:56 -0500145 /* Print the lines. */
Simon Glasse6d0ca22013-02-24 17:33:15 +0000146 print_buffer(addr, buf, size, length, DISP_LINE_LEN / size);
147 addr += bytes;
148 unmap_sysmem(buf);
Mike Frysingere578d682008-02-04 19:26:56 -0500149 }
Grant Likely02a00782007-02-20 09:05:00 +0100150#endif
wdenk38635852002-08-27 05:55:31 +0000151
152 dp_last_addr = addr;
153 dp_last_length = length;
154 dp_last_size = size;
155 return (rc);
156}
157
Kim Phillipsdc00a682012-10-29 13:34:31 +0000158static int do_mem_mm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000159{
160 return mod_mem (cmdtp, 1, flag, argc, argv);
161}
Kim Phillipsdc00a682012-10-29 13:34:31 +0000162static int do_mem_nm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000163{
164 return mod_mem (cmdtp, 0, flag, argc, argv);
165}
166
Kim Phillipsdc00a682012-10-29 13:34:31 +0000167static int do_mem_mw(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000168{
wdenk874ac262003-07-24 23:38:38 +0000169 ulong addr, writeval, count;
170 int size;
Simon Glasse6d0ca22013-02-24 17:33:15 +0000171 void *buf;
172 ulong bytes;
wdenk38635852002-08-27 05:55:31 +0000173
Wolfgang Denk3b683112010-07-17 01:06:04 +0200174 if ((argc < 3) || (argc > 4))
Simon Glassa06dfc72011-12-10 08:44:01 +0000175 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000176
177 /* Check for size specification.
178 */
wdenk874ac262003-07-24 23:38:38 +0000179 if ((size = cmd_get_data_size(argv[0], 4)) < 1)
180 return 1;
wdenk38635852002-08-27 05:55:31 +0000181
182 /* Address is specified since argc > 1
183 */
184 addr = simple_strtoul(argv[1], NULL, 16);
185 addr += base_address;
186
187 /* Get the value to write.
188 */
189 writeval = simple_strtoul(argv[2], NULL, 16);
190
191 /* Count ? */
192 if (argc == 4) {
193 count = simple_strtoul(argv[3], NULL, 16);
194 } else {
195 count = 1;
196 }
197
Simon Glasse6d0ca22013-02-24 17:33:15 +0000198 bytes = size * count;
199 buf = map_sysmem(addr, bytes);
wdenk38635852002-08-27 05:55:31 +0000200 while (count-- > 0) {
201 if (size == 4)
Simon Glasse6d0ca22013-02-24 17:33:15 +0000202 *((ulong *)buf) = (ulong)writeval;
wdenk38635852002-08-27 05:55:31 +0000203 else if (size == 2)
Simon Glasse6d0ca22013-02-24 17:33:15 +0000204 *((ushort *)buf) = (ushort)writeval;
wdenk38635852002-08-27 05:55:31 +0000205 else
Simon Glasse6d0ca22013-02-24 17:33:15 +0000206 *((u_char *)buf) = (u_char)writeval;
207 buf += size;
wdenk38635852002-08-27 05:55:31 +0000208 }
Simon Glasse6d0ca22013-02-24 17:33:15 +0000209 unmap_sysmem(buf);
wdenk38635852002-08-27 05:55:31 +0000210 return 0;
211}
212
stroesefb5e0ac2004-12-16 17:42:39 +0000213#ifdef CONFIG_MX_CYCLIC
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200214int do_mem_mdc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroesefb5e0ac2004-12-16 17:42:39 +0000215{
216 int i;
217 ulong count;
218
Wolfgang Denk3b683112010-07-17 01:06:04 +0200219 if (argc < 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000220 return CMD_RET_USAGE;
stroesefb5e0ac2004-12-16 17:42:39 +0000221
222 count = simple_strtoul(argv[3], NULL, 10);
223
224 for (;;) {
225 do_mem_md (NULL, 0, 3, argv);
226
227 /* delay for <count> ms... */
228 for (i=0; i<count; i++)
229 udelay (1000);
230
231 /* check for ctrl-c to abort... */
232 if (ctrlc()) {
233 puts("Abort\n");
234 return 0;
235 }
236 }
237
238 return 0;
239}
240
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200241int do_mem_mwc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroesefb5e0ac2004-12-16 17:42:39 +0000242{
243 int i;
244 ulong count;
245
Wolfgang Denk3b683112010-07-17 01:06:04 +0200246 if (argc < 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000247 return CMD_RET_USAGE;
stroesefb5e0ac2004-12-16 17:42:39 +0000248
249 count = simple_strtoul(argv[3], NULL, 10);
250
251 for (;;) {
252 do_mem_mw (NULL, 0, 3, argv);
253
254 /* delay for <count> ms... */
255 for (i=0; i<count; i++)
256 udelay (1000);
257
258 /* check for ctrl-c to abort... */
259 if (ctrlc()) {
260 puts("Abort\n");
261 return 0;
262 }
263 }
264
265 return 0;
266}
267#endif /* CONFIG_MX_CYCLIC */
268
Kim Phillipsdc00a682012-10-29 13:34:31 +0000269static int do_mem_cmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000270{
Simon Glasse6d0ca22013-02-24 17:33:15 +0000271 ulong addr1, addr2, count, ngood, bytes;
wdenk874ac262003-07-24 23:38:38 +0000272 int size;
wdenk38635852002-08-27 05:55:31 +0000273 int rcode = 0;
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000274 const char *type;
Simon Glasse6d0ca22013-02-24 17:33:15 +0000275 const void *buf1, *buf2, *base;
wdenk38635852002-08-27 05:55:31 +0000276
Wolfgang Denk3b683112010-07-17 01:06:04 +0200277 if (argc != 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000278 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000279
280 /* Check for size specification.
281 */
wdenk874ac262003-07-24 23:38:38 +0000282 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
283 return 1;
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000284 type = size == 4 ? "word" : size == 2 ? "halfword" : "byte";
wdenk38635852002-08-27 05:55:31 +0000285
286 addr1 = simple_strtoul(argv[1], NULL, 16);
287 addr1 += base_address;
288
289 addr2 = simple_strtoul(argv[2], NULL, 16);
290 addr2 += base_address;
291
292 count = simple_strtoul(argv[3], NULL, 16);
293
wdenk381669a2003-06-16 23:50:08 +0000294#ifdef CONFIG_HAS_DATAFLASH
295 if (addr_dataflash(addr1) | addr_dataflash(addr2)){
wdenk42c05472004-03-23 22:14:11 +0000296 puts ("Comparison with DataFlash space not supported.\n\r");
wdenk381669a2003-06-16 23:50:08 +0000297 return 0;
298 }
299#endif
300
Mike Frysingere578d682008-02-04 19:26:56 -0500301#ifdef CONFIG_BLACKFIN
302 if (addr_bfin_on_chip_mem(addr1) || addr_bfin_on_chip_mem(addr2)) {
303 puts ("Comparison with L1 instruction memory not supported.\n\r");
304 return 0;
305 }
306#endif
307
Simon Glasse6d0ca22013-02-24 17:33:15 +0000308 bytes = size * count;
309 base = buf1 = map_sysmem(addr1, bytes);
310 buf2 = map_sysmem(addr2, bytes);
Mike Frysingera66afbd2012-01-20 09:07:22 +0000311 for (ngood = 0; ngood < count; ++ngood) {
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000312 ulong word1, word2;
wdenk38635852002-08-27 05:55:31 +0000313 if (size == 4) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000314 word1 = *(ulong *)buf1;
315 word2 = *(ulong *)buf2;
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000316 } else if (size == 2) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000317 word1 = *(ushort *)buf1;
318 word2 = *(ushort *)buf2;
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000319 } else {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000320 word1 = *(u_char *)buf1;
321 word2 = *(u_char *)buf2;
wdenk38635852002-08-27 05:55:31 +0000322 }
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000323 if (word1 != word2) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000324 ulong offset = buf1 - base;
325
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000326 printf("%s at 0x%08lx (%#0*lx) != %s at 0x%08lx (%#0*lx)\n",
Simon Glasse6d0ca22013-02-24 17:33:15 +0000327 type, (ulong)(addr1 + offset), size, word1,
328 type, (ulong)(addr2 + offset), size, word2);
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000329 rcode = 1;
330 break;
wdenk38635852002-08-27 05:55:31 +0000331 }
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000332
Simon Glasse6d0ca22013-02-24 17:33:15 +0000333 buf1 += size;
334 buf2 += size;
Stefan Roesed4ef82b2010-09-13 11:10:34 +0200335
336 /* reset watchdog from time to time */
Mike Frysingera66afbd2012-01-20 09:07:22 +0000337 if ((ngood % (64 << 10)) == 0)
Stefan Roesed4ef82b2010-09-13 11:10:34 +0200338 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000339 }
Simon Glasse6d0ca22013-02-24 17:33:15 +0000340 unmap_sysmem(buf1);
341 unmap_sysmem(buf2);
wdenk38635852002-08-27 05:55:31 +0000342
Mike Frysinger62a7ea72012-01-20 09:07:21 +0000343 printf("Total of %ld %s(s) were the same\n", ngood, type);
wdenk38635852002-08-27 05:55:31 +0000344 return rcode;
345}
346
Kim Phillipsdc00a682012-10-29 13:34:31 +0000347static int do_mem_cp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000348{
Simon Glasse6d0ca22013-02-24 17:33:15 +0000349 ulong addr, dest, count, bytes;
wdenk874ac262003-07-24 23:38:38 +0000350 int size;
Simon Glasse6d0ca22013-02-24 17:33:15 +0000351 const void *src;
352 void *buf;
wdenk38635852002-08-27 05:55:31 +0000353
Wolfgang Denk3b683112010-07-17 01:06:04 +0200354 if (argc != 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000355 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000356
357 /* Check for size specification.
358 */
wdenk874ac262003-07-24 23:38:38 +0000359 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
360 return 1;
wdenk38635852002-08-27 05:55:31 +0000361
362 addr = simple_strtoul(argv[1], NULL, 16);
363 addr += base_address;
364
365 dest = simple_strtoul(argv[2], NULL, 16);
366 dest += base_address;
367
368 count = simple_strtoul(argv[3], NULL, 16);
369
370 if (count == 0) {
371 puts ("Zero length ???\n");
372 return 1;
373 }
374
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200375#ifndef CONFIG_SYS_NO_FLASH
wdenk38635852002-08-27 05:55:31 +0000376 /* check if we are copying to Flash */
wdenk381669a2003-06-16 23:50:08 +0000377 if ( (addr2info(dest) != NULL)
378#ifdef CONFIG_HAS_DATAFLASH
Kim B. Heino1eb0fd52008-03-03 10:39:13 +0200379 && (!addr_dataflash(dest))
wdenk381669a2003-06-16 23:50:08 +0000380#endif
381 ) {
wdenk38635852002-08-27 05:55:31 +0000382 int rc;
383
wdenk42c05472004-03-23 22:14:11 +0000384 puts ("Copy to Flash... ");
wdenk38635852002-08-27 05:55:31 +0000385
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200386 rc = flash_write ((char *)addr, dest, count*size);
wdenk38635852002-08-27 05:55:31 +0000387 if (rc != 0) {
388 flash_perror (rc);
389 return (1);
390 }
391 puts ("done\n");
392 return 0;
393 }
394#endif
395
wdenk381669a2003-06-16 23:50:08 +0000396#ifdef CONFIG_HAS_DATAFLASH
397 /* Check if we are copying from RAM or Flash to DataFlash */
398 if (addr_dataflash(dest) && !addr_dataflash(addr)){
399 int rc;
400
wdenk42c05472004-03-23 22:14:11 +0000401 puts ("Copy to DataFlash... ");
wdenk381669a2003-06-16 23:50:08 +0000402
403 rc = write_dataflash (dest, addr, count*size);
404
405 if (rc != 1) {
406 dataflash_perror (rc);
407 return (1);
408 }
409 puts ("done\n");
410 return 0;
411 }
wdenk57b2d802003-06-27 21:31:46 +0000412
wdenk381669a2003-06-16 23:50:08 +0000413 /* Check if we are copying from DataFlash to RAM */
Stelian Popa63d2eb2008-03-26 22:52:35 +0100414 if (addr_dataflash(addr) && !addr_dataflash(dest)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200415#ifndef CONFIG_SYS_NO_FLASH
Stelian Popa63d2eb2008-03-26 22:52:35 +0100416 && (addr2info(dest) == NULL)
417#endif
418 ){
wdenk86765902003-12-06 23:55:10 +0000419 int rc;
420 rc = read_dataflash(addr, count * size, (char *) dest);
421 if (rc != 1) {
wdenk1ebf41e2004-01-02 14:00:00 +0000422 dataflash_perror (rc);
423 return (1);
424 }
wdenk381669a2003-06-16 23:50:08 +0000425 return 0;
426 }
427
428 if (addr_dataflash(addr) && addr_dataflash(dest)){
wdenk42c05472004-03-23 22:14:11 +0000429 puts ("Unsupported combination of source/destination.\n\r");
wdenk381669a2003-06-16 23:50:08 +0000430 return 1;
431 }
wdenk7a428cc2003-06-15 22:40:42 +0000432#endif
433
Mike Frysingere578d682008-02-04 19:26:56 -0500434#ifdef CONFIG_BLACKFIN
435 /* See if we're copying to/from L1 inst */
436 if (addr_bfin_on_chip_mem(dest) || addr_bfin_on_chip_mem(addr)) {
437 memcpy((void *)dest, (void *)addr, count * size);
438 return 0;
439 }
440#endif
441
Simon Glasse6d0ca22013-02-24 17:33:15 +0000442 bytes = size * count;
443 buf = map_sysmem(addr, bytes);
444 src = map_sysmem(addr, bytes);
wdenk38635852002-08-27 05:55:31 +0000445 while (count-- > 0) {
446 if (size == 4)
Simon Glasse6d0ca22013-02-24 17:33:15 +0000447 *((ulong *)buf) = *((ulong *)src);
wdenk38635852002-08-27 05:55:31 +0000448 else if (size == 2)
Simon Glasse6d0ca22013-02-24 17:33:15 +0000449 *((ushort *)buf) = *((ushort *)src);
wdenk38635852002-08-27 05:55:31 +0000450 else
Simon Glasse6d0ca22013-02-24 17:33:15 +0000451 *((u_char *)buf) = *((u_char *)src);
452 src += size;
453 buf += size;
Stefan Roesed4ef82b2010-09-13 11:10:34 +0200454
455 /* reset watchdog from time to time */
456 if ((count % (64 << 10)) == 0)
457 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000458 }
459 return 0;
460}
461
Kim Phillipsdc00a682012-10-29 13:34:31 +0000462static int do_mem_base(cmd_tbl_t *cmdtp, int flag, int argc,
463 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000464{
465 if (argc > 1) {
466 /* Set new base address.
467 */
468 base_address = simple_strtoul(argv[1], NULL, 16);
469 }
470 /* Print the current base address.
471 */
472 printf("Base Address: 0x%08lx\n", base_address);
473 return 0;
474}
475
Kim Phillipsdc00a682012-10-29 13:34:31 +0000476static int do_mem_loop(cmd_tbl_t *cmdtp, int flag, int argc,
477 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000478{
Simon Glasse6d0ca22013-02-24 17:33:15 +0000479 ulong addr, length, i, bytes;
wdenk874ac262003-07-24 23:38:38 +0000480 int size;
wdenk38635852002-08-27 05:55:31 +0000481 volatile uint *longp;
482 volatile ushort *shortp;
483 volatile u_char *cp;
Simon Glasse6d0ca22013-02-24 17:33:15 +0000484 const void *buf;
wdenk38635852002-08-27 05:55:31 +0000485
Wolfgang Denk3b683112010-07-17 01:06:04 +0200486 if (argc < 3)
Simon Glassa06dfc72011-12-10 08:44:01 +0000487 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000488
Robert P. J. Day21c9b782013-02-03 02:29:54 +0000489 /*
490 * Check for a size specification.
wdenk38635852002-08-27 05:55:31 +0000491 * Defaults to long if no or incorrect specification.
492 */
wdenk874ac262003-07-24 23:38:38 +0000493 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
494 return 1;
wdenk38635852002-08-27 05:55:31 +0000495
496 /* Address is always specified.
497 */
498 addr = simple_strtoul(argv[1], NULL, 16);
499
500 /* Length is the number of objects, not number of bytes.
501 */
502 length = simple_strtoul(argv[2], NULL, 16);
503
Simon Glasse6d0ca22013-02-24 17:33:15 +0000504 bytes = size * length;
505 buf = map_sysmem(addr, bytes);
506
wdenk38635852002-08-27 05:55:31 +0000507 /* We want to optimize the loops to run as fast as possible.
508 * If we have only one object, just run infinite loops.
509 */
510 if (length == 1) {
511 if (size == 4) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000512 longp = (uint *)buf;
wdenk38635852002-08-27 05:55:31 +0000513 for (;;)
514 i = *longp;
515 }
516 if (size == 2) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000517 shortp = (ushort *)buf;
wdenk38635852002-08-27 05:55:31 +0000518 for (;;)
519 i = *shortp;
520 }
Simon Glasse6d0ca22013-02-24 17:33:15 +0000521 cp = (u_char *)buf;
wdenk38635852002-08-27 05:55:31 +0000522 for (;;)
523 i = *cp;
524 }
525
526 if (size == 4) {
527 for (;;) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000528 longp = (uint *)buf;
wdenk38635852002-08-27 05:55:31 +0000529 i = length;
530 while (i-- > 0)
Marek Vasut7d335822011-09-26 02:26:06 +0200531 *longp++;
wdenk38635852002-08-27 05:55:31 +0000532 }
533 }
534 if (size == 2) {
535 for (;;) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000536 shortp = (ushort *)buf;
wdenk38635852002-08-27 05:55:31 +0000537 i = length;
538 while (i-- > 0)
Marek Vasut7d335822011-09-26 02:26:06 +0200539 *shortp++;
wdenk38635852002-08-27 05:55:31 +0000540 }
541 }
542 for (;;) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000543 cp = (u_char *)buf;
wdenk38635852002-08-27 05:55:31 +0000544 i = length;
545 while (i-- > 0)
Marek Vasut7d335822011-09-26 02:26:06 +0200546 *cp++;
wdenk38635852002-08-27 05:55:31 +0000547 }
Simon Glasse6d0ca22013-02-24 17:33:15 +0000548 unmap_sysmem(buf);
wdenk38635852002-08-27 05:55:31 +0000549}
550
wdenk64519362004-07-11 17:40:54 +0000551#ifdef CONFIG_LOOPW
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200552int do_mem_loopw (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk64519362004-07-11 17:40:54 +0000553{
Simon Glasse6d0ca22013-02-24 17:33:15 +0000554 ulong addr, length, i, data, bytes;
wdenk64519362004-07-11 17:40:54 +0000555 int size;
556 volatile uint *longp;
557 volatile ushort *shortp;
558 volatile u_char *cp;
Simon Glasse6d0ca22013-02-24 17:33:15 +0000559 void *buf;
wdenk7dd13292004-07-11 20:04:51 +0000560
Wolfgang Denk3b683112010-07-17 01:06:04 +0200561 if (argc < 4)
Simon Glassa06dfc72011-12-10 08:44:01 +0000562 return CMD_RET_USAGE;
wdenk64519362004-07-11 17:40:54 +0000563
Robert P. J. Day21c9b782013-02-03 02:29:54 +0000564 /*
565 * Check for a size specification.
wdenk64519362004-07-11 17:40:54 +0000566 * Defaults to long if no or incorrect specification.
567 */
568 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
569 return 1;
570
571 /* Address is always specified.
572 */
573 addr = simple_strtoul(argv[1], NULL, 16);
574
575 /* Length is the number of objects, not number of bytes.
576 */
577 length = simple_strtoul(argv[2], NULL, 16);
578
579 /* data to write */
580 data = simple_strtoul(argv[3], NULL, 16);
wdenk7dd13292004-07-11 20:04:51 +0000581
Simon Glasse6d0ca22013-02-24 17:33:15 +0000582 bytes = size * length;
583 buf = map_sysmem(addr, bytes);
584
wdenk64519362004-07-11 17:40:54 +0000585 /* We want to optimize the loops to run as fast as possible.
586 * If we have only one object, just run infinite loops.
587 */
588 if (length == 1) {
589 if (size == 4) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000590 longp = (uint *)buf;
wdenk64519362004-07-11 17:40:54 +0000591 for (;;)
592 *longp = data;
593 }
594 if (size == 2) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000595 shortp = (ushort *)buf;
wdenk64519362004-07-11 17:40:54 +0000596 for (;;)
597 *shortp = data;
598 }
Simon Glasse6d0ca22013-02-24 17:33:15 +0000599 cp = (u_char *)buf;
wdenk64519362004-07-11 17:40:54 +0000600 for (;;)
601 *cp = data;
602 }
603
604 if (size == 4) {
605 for (;;) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000606 longp = (uint *)buf;
wdenk64519362004-07-11 17:40:54 +0000607 i = length;
608 while (i-- > 0)
609 *longp++ = data;
610 }
611 }
612 if (size == 2) {
613 for (;;) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000614 shortp = (ushort *)buf;
wdenk64519362004-07-11 17:40:54 +0000615 i = length;
616 while (i-- > 0)
617 *shortp++ = data;
618 }
619 }
620 for (;;) {
Simon Glasse6d0ca22013-02-24 17:33:15 +0000621 cp = (u_char *)buf;
wdenk64519362004-07-11 17:40:54 +0000622 i = length;
623 while (i-- > 0)
624 *cp++ = data;
625 }
626}
627#endif /* CONFIG_LOOPW */
628
Simon Glass51075252013-02-24 17:33:20 +0000629static ulong mem_test_alt(ulong start_addr, ulong end_addr)
wdenk38635852002-08-27 05:55:31 +0000630{
Simon Glass51075252013-02-24 17:33:20 +0000631 vu_long *start, *end;
Simon Glass8f2c7582013-02-24 17:33:16 +0000632 vu_long *addr;
Simon Glass8f2c7582013-02-24 17:33:16 +0000633 ulong errs = 0;
634 ulong val, readback;
635 int j;
636 vu_long len;
637 vu_long offset;
638 vu_long test_offset;
639 vu_long pattern;
640 vu_long temp;
641 vu_long anti_pattern;
642 vu_long num_words;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200643#if defined(CONFIG_SYS_MEMTEST_SCRATCH)
Simon Glass8f2c7582013-02-24 17:33:16 +0000644 vu_long *dummy = (vu_long *)CONFIG_SYS_MEMTEST_SCRATCH;
wdenk5958f4a2003-09-18 09:21:33 +0000645#else
Kim Phillipsdc00a682012-10-29 13:34:31 +0000646 vu_long *dummy = NULL; /* yes, this is address 0x0, not NULL */
wdenk5958f4a2003-09-18 09:21:33 +0000647#endif
wdenk38635852002-08-27 05:55:31 +0000648 static const ulong bitpattern[] = {
649 0x00000001, /* single bit */
650 0x00000003, /* two adjacent bits */
651 0x00000007, /* three adjacent bits */
652 0x0000000F, /* four adjacent bits */
653 0x00000005, /* two non-adjacent bits */
654 0x00000015, /* three non-adjacent bits */
655 0x00000055, /* four non-adjacent bits */
656 0xaaaaaaaa, /* alternating 1/0 */
657 };
wdenk38635852002-08-27 05:55:31 +0000658
Simon Glass51075252013-02-24 17:33:20 +0000659 start = (vu_long *)start_addr;
660 end = (vu_long *)end_addr;
661
Simon Glass130103e2013-02-24 17:33:18 +0000662 /*
663 * Data line test: write a pattern to the first
664 * location, write the 1's complement to a 'parking'
665 * address (changes the state of the data bus so a
666 * floating bus doesn't give a false OK), and then
667 * read the value back. Note that we read it back
668 * into a variable because the next time we read it,
669 * it might be right (been there, tough to explain to
670 * the quality guys why it prints a failure when the
671 * "is" and "should be" are obviously the same in the
672 * error message).
673 *
674 * Rather than exhaustively testing, we test some
675 * patterns by shifting '1' bits through a field of
676 * '0's and '0' bits through a field of '1's (i.e.
677 * pattern and ~pattern).
678 */
679 addr = start;
680 for (j = 0; j < sizeof(bitpattern) / sizeof(bitpattern[0]); j++) {
681 val = bitpattern[j];
682 for (; val != 0; val <<= 1) {
wdenk38635852002-08-27 05:55:31 +0000683 *addr = val;
Simon Glass8f2c7582013-02-24 17:33:16 +0000684 *dummy = ~val; /* clear the test data off the bus */
wdenk38635852002-08-27 05:55:31 +0000685 readback = *addr;
Simon Glass130103e2013-02-24 17:33:18 +0000686 if (readback != val) {
Simon Glass8f2c7582013-02-24 17:33:16 +0000687 printf("FAILURE (data line): "
688 "expected %08lx, actual %08lx\n",
689 val, readback);
690 errs++;
Simon Glasseb4598b2013-02-24 17:33:19 +0000691 if (ctrlc())
Simon Glass57ee4432013-02-24 17:33:17 +0000692 return -1;
wdenk38635852002-08-27 05:55:31 +0000693 }
694 *addr = ~val;
695 *dummy = val;
696 readback = *addr;
Simon Glass8f2c7582013-02-24 17:33:16 +0000697 if (readback != ~val) {
698 printf("FAILURE (data line): "
699 "Is %08lx, should be %08lx\n",
700 readback, ~val);
701 errs++;
Simon Glasseb4598b2013-02-24 17:33:19 +0000702 if (ctrlc())
Simon Glass57ee4432013-02-24 17:33:17 +0000703 return -1;
wdenk38635852002-08-27 05:55:31 +0000704 }
wdenk38635852002-08-27 05:55:31 +0000705 }
Simon Glass130103e2013-02-24 17:33:18 +0000706 }
wdenk38635852002-08-27 05:55:31 +0000707
Simon Glass130103e2013-02-24 17:33:18 +0000708 /*
709 * Based on code whose Original Author and Copyright
710 * information follows: Copyright (c) 1998 by Michael
711 * Barr. This software is placed into the public
712 * domain and may be used for any purpose. However,
713 * this notice must not be changed or removed and no
714 * warranty is either expressed or implied by its
715 * publication or distribution.
716 */
wdenk38635852002-08-27 05:55:31 +0000717
Simon Glass130103e2013-02-24 17:33:18 +0000718 /*
719 * Address line test
wdenk38635852002-08-27 05:55:31 +0000720
Simon Glass130103e2013-02-24 17:33:18 +0000721 * Description: Test the address bus wiring in a
722 * memory region by performing a walking
723 * 1's test on the relevant bits of the
724 * address and checking for aliasing.
725 * This test will find single-bit
726 * address failures such as stuck-high,
727 * stuck-low, and shorted pins. The base
728 * address and size of the region are
729 * selected by the caller.
wdenk38635852002-08-27 05:55:31 +0000730
Simon Glass130103e2013-02-24 17:33:18 +0000731 * Notes: For best results, the selected base
732 * address should have enough LSB 0's to
733 * guarantee single address bit changes.
734 * For example, to test a 64-Kbyte
735 * region, select a base address on a
736 * 64-Kbyte boundary. Also, select the
737 * region size as a power-of-two if at
738 * all possible.
739 *
740 * Returns: 0 if the test succeeds, 1 if the test fails.
741 */
Simon Glass51075252013-02-24 17:33:20 +0000742 len = (end_addr - start_addr) / sizeof(vu_long);
Simon Glass130103e2013-02-24 17:33:18 +0000743 pattern = (vu_long) 0xaaaaaaaa;
744 anti_pattern = (vu_long) 0x55555555;
wdenk38635852002-08-27 05:55:31 +0000745
Simon Glass130103e2013-02-24 17:33:18 +0000746 debug("%s:%d: length = 0x%.8lx\n",
747 __func__, __LINE__, len);
748 /*
749 * Write the default pattern at each of the
750 * power-of-two offsets.
751 */
752 for (offset = 1; offset < len; offset <<= 1)
753 start[offset] = pattern;
754
755 /*
756 * Check for address bits stuck high.
757 */
758 test_offset = 0;
759 start[test_offset] = anti_pattern;
760
761 for (offset = 1; offset < len; offset <<= 1) {
762 temp = start[offset];
763 if (temp != pattern) {
Simon Glass8f2c7582013-02-24 17:33:16 +0000764 printf("\nFAILURE: Address bit stuck high @ 0x%.8lx:"
wdenk38635852002-08-27 05:55:31 +0000765 " expected 0x%.8lx, actual 0x%.8lx\n",
766 (ulong)&start[offset], pattern, temp);
Paul Gortmakercb47b4f2009-10-02 18:18:33 -0400767 errs++;
Simon Glasseb4598b2013-02-24 17:33:19 +0000768 if (ctrlc())
Simon Glass130103e2013-02-24 17:33:18 +0000769 return -1;
wdenk38635852002-08-27 05:55:31 +0000770 }
Simon Glass130103e2013-02-24 17:33:18 +0000771 }
772 start[test_offset] = pattern;
773 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000774
Simon Glass130103e2013-02-24 17:33:18 +0000775 /*
776 * Check for addr bits stuck low or shorted.
777 */
778 for (test_offset = 1; test_offset < len; test_offset <<= 1) {
779 start[test_offset] = anti_pattern;
wdenk38635852002-08-27 05:55:31 +0000780
Simon Glass130103e2013-02-24 17:33:18 +0000781 for (offset = 1; offset < len; offset <<= 1) {
wdenk38635852002-08-27 05:55:31 +0000782 temp = start[offset];
783 if ((temp != pattern) && (offset != test_offset)) {
Simon Glass130103e2013-02-24 17:33:18 +0000784 printf("\nFAILURE: Address bit stuck low or"
785 " shorted @ 0x%.8lx: expected 0x%.8lx,"
786 " actual 0x%.8lx\n",
787 (ulong)&start[offset], pattern, temp);
788 errs++;
Simon Glasseb4598b2013-02-24 17:33:19 +0000789 if (ctrlc())
Simon Glass130103e2013-02-24 17:33:18 +0000790 return -1;
wdenk38635852002-08-27 05:55:31 +0000791 }
wdenk38635852002-08-27 05:55:31 +0000792 }
Simon Glass130103e2013-02-24 17:33:18 +0000793 start[test_offset] = pattern;
794 }
wdenk38635852002-08-27 05:55:31 +0000795
Simon Glass130103e2013-02-24 17:33:18 +0000796 /*
797 * Description: Test the integrity of a physical
798 * memory device by performing an
799 * increment/decrement test over the
800 * entire region. In the process every
801 * storage bit in the device is tested
802 * as a zero and a one. The base address
803 * and the size of the region are
804 * selected by the caller.
805 *
806 * Returns: 0 if the test succeeds, 1 if the test fails.
807 */
808 num_words = ((ulong)end - (ulong)start)/sizeof(vu_long) + 1;
wdenk38635852002-08-27 05:55:31 +0000809
Simon Glass130103e2013-02-24 17:33:18 +0000810 /*
811 * Fill memory with a known pattern.
812 */
813 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
814 WATCHDOG_RESET();
815 start[offset] = pattern;
816 }
wdenk38635852002-08-27 05:55:31 +0000817
Simon Glass130103e2013-02-24 17:33:18 +0000818 /*
819 * Check each location and invert it for the second pass.
820 */
821 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
822 WATCHDOG_RESET();
823 temp = start[offset];
824 if (temp != pattern) {
Simon Glass8f2c7582013-02-24 17:33:16 +0000825 printf("\nFAILURE (read/write) @ 0x%.8lx:"
wdenk38635852002-08-27 05:55:31 +0000826 " expected 0x%.8lx, actual 0x%.8lx)\n",
827 (ulong)&start[offset], pattern, temp);
Paul Gortmakercb47b4f2009-10-02 18:18:33 -0400828 errs++;
Simon Glasseb4598b2013-02-24 17:33:19 +0000829 if (ctrlc())
Simon Glass57ee4432013-02-24 17:33:17 +0000830 return -1;
wdenk38635852002-08-27 05:55:31 +0000831 }
832
Simon Glass130103e2013-02-24 17:33:18 +0000833 anti_pattern = ~pattern;
834 start[offset] = anti_pattern;
835 }
836
837 /*
838 * Check each location for the inverted pattern and zero it.
839 */
840 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
841 WATCHDOG_RESET();
842 anti_pattern = ~pattern;
843 temp = start[offset];
844 if (temp != anti_pattern) {
Simon Glass8f2c7582013-02-24 17:33:16 +0000845 printf("\nFAILURE (read/write): @ 0x%.8lx:"
wdenk38635852002-08-27 05:55:31 +0000846 " expected 0x%.8lx, actual 0x%.8lx)\n",
847 (ulong)&start[offset], anti_pattern, temp);
Paul Gortmakercb47b4f2009-10-02 18:18:33 -0400848 errs++;
Simon Glasseb4598b2013-02-24 17:33:19 +0000849 if (ctrlc())
Simon Glass57ee4432013-02-24 17:33:17 +0000850 return -1;
wdenk38635852002-08-27 05:55:31 +0000851 }
Simon Glass130103e2013-02-24 17:33:18 +0000852 start[offset] = 0;
853 }
Simon Glass57ee4432013-02-24 17:33:17 +0000854
855 return 0;
Simon Glass8f2c7582013-02-24 17:33:16 +0000856}
857
Simon Glass51075252013-02-24 17:33:20 +0000858static ulong mem_test_quick(ulong start_addr, ulong end_addr, vu_long pattern,
Simon Glass57ee4432013-02-24 17:33:17 +0000859 int iteration)
Simon Glass8f2c7582013-02-24 17:33:16 +0000860{
Simon Glass51075252013-02-24 17:33:20 +0000861 vu_long *start, *end;
Simon Glass8f2c7582013-02-24 17:33:16 +0000862 vu_long *addr;
Simon Glass8f2c7582013-02-24 17:33:16 +0000863 ulong errs = 0;
864 ulong incr;
865 ulong val, readback;
wdenk38635852002-08-27 05:55:31 +0000866
Simon Glass57ee4432013-02-24 17:33:17 +0000867 /* Alternate the pattern */
wdenk38635852002-08-27 05:55:31 +0000868 incr = 1;
Simon Glass57ee4432013-02-24 17:33:17 +0000869 if (iteration & 1) {
870 incr = -incr;
871 /*
872 * Flip the pattern each time to make lots of zeros and
873 * then, the next time, lots of ones. We decrement
874 * the "negative" patterns and increment the "positive"
875 * patterns to preserve this feature.
876 */
877 if (pattern & 0x80000000)
878 pattern = -pattern; /* complement & increment */
879 else
880 pattern = ~pattern;
881 }
Simon Glass51075252013-02-24 17:33:20 +0000882 start = (vu_long *)start_addr;
883 end = (vu_long *)end_addr;
Simon Glass130103e2013-02-24 17:33:18 +0000884 printf("\rPattern %08lX Writing..."
885 "%12s"
886 "\b\b\b\b\b\b\b\b\b\b",
887 pattern, "");
wdenk38635852002-08-27 05:55:31 +0000888
Simon Glass130103e2013-02-24 17:33:18 +0000889 for (addr = start, val = pattern; addr < end; addr++) {
890 WATCHDOG_RESET();
891 *addr = val;
892 val += incr;
893 }
wdenk38635852002-08-27 05:55:31 +0000894
Simon Glass130103e2013-02-24 17:33:18 +0000895 puts("Reading...");
wdenk38635852002-08-27 05:55:31 +0000896
Simon Glass130103e2013-02-24 17:33:18 +0000897 for (addr = start, val = pattern; addr < end; addr++) {
898 WATCHDOG_RESET();
899 readback = *addr;
900 if (readback != val) {
901 printf("\nMem error @ 0x%08X: "
902 "found %08lX, expected %08lX\n",
903 (uint)(uintptr_t)addr, readback, val);
904 errs++;
Simon Glasseb4598b2013-02-24 17:33:19 +0000905 if (ctrlc())
Simon Glass130103e2013-02-24 17:33:18 +0000906 return -1;
wdenk38635852002-08-27 05:55:31 +0000907 }
Simon Glass130103e2013-02-24 17:33:18 +0000908 val += incr;
909 }
wdenk38635852002-08-27 05:55:31 +0000910
Simon Glass57ee4432013-02-24 17:33:17 +0000911 return 0;
Simon Glass8f2c7582013-02-24 17:33:16 +0000912}
913
914/*
915 * Perform a memory test. A more complete alternative test can be
916 * configured using CONFIG_SYS_ALT_MEMTEST. The complete test loops until
917 * interrupted by ctrl-c or by a failure of one of the sub-tests.
918 */
919static int do_mem_mtest(cmd_tbl_t *cmdtp, int flag, int argc,
920 char * const argv[])
921{
Simon Glass51075252013-02-24 17:33:20 +0000922 ulong start, end;
Simon Glass8f2c7582013-02-24 17:33:16 +0000923 int iteration_limit;
924 int ret;
Simon Glass57ee4432013-02-24 17:33:17 +0000925 ulong errs = 0; /* number of errors, or -1 if interrupted */
Simon Glass8f2c7582013-02-24 17:33:16 +0000926 ulong pattern;
Simon Glass57ee4432013-02-24 17:33:17 +0000927 int iteration;
Simon Glass8f2c7582013-02-24 17:33:16 +0000928#if defined(CONFIG_SYS_ALT_MEMTEST)
929 const int alt_test = 1;
930#else
931 const int alt_test = 0;
wdenk38635852002-08-27 05:55:31 +0000932#endif
Simon Glass8f2c7582013-02-24 17:33:16 +0000933
934 if (argc > 1)
Simon Glass51075252013-02-24 17:33:20 +0000935 start = simple_strtoul(argv[1], NULL, 16);
Simon Glass8f2c7582013-02-24 17:33:16 +0000936 else
Simon Glass51075252013-02-24 17:33:20 +0000937 start = CONFIG_SYS_MEMTEST_START;
Simon Glass8f2c7582013-02-24 17:33:16 +0000938
939 if (argc > 2)
Simon Glass51075252013-02-24 17:33:20 +0000940 end = simple_strtoul(argv[2], NULL, 16);
Simon Glass8f2c7582013-02-24 17:33:16 +0000941 else
Simon Glass51075252013-02-24 17:33:20 +0000942 end = CONFIG_SYS_MEMTEST_END;
Simon Glass8f2c7582013-02-24 17:33:16 +0000943
944 if (argc > 3)
945 pattern = (ulong)simple_strtoul(argv[3], NULL, 16);
946 else
947 pattern = 0;
948
949 if (argc > 4)
950 iteration_limit = (ulong)simple_strtoul(argv[4], NULL, 16);
951 else
952 iteration_limit = 0;
953
Simon Glass51075252013-02-24 17:33:20 +0000954 printf("Testing %08x ... %08x:\n", (uint)start, (uint)end);
955 debug("%s:%d: start %#08lx end %#08lx\n", __func__, __LINE__,
956 start, end);
Simon Glass57ee4432013-02-24 17:33:17 +0000957
958 for (iteration = 0;
959 !iteration_limit || iteration < iteration_limit;
960 iteration++) {
961 if (ctrlc()) {
Simon Glass57ee4432013-02-24 17:33:17 +0000962 errs = -1UL;
963 break;
964 }
965
966 printf("Iteration: %6d\r", iteration + 1);
967 debug("\n");
968 if (alt_test)
969 errs = mem_test_alt(start, end);
970 else
971 errs = mem_test_quick(start, end, pattern, iteration);
972 }
973
974 if (errs == -1UL) {
Simon Glasseb4598b2013-02-24 17:33:19 +0000975 /* Memory test was aborted - write a newline to finish off */
976 putc('\n');
Simon Glass57ee4432013-02-24 17:33:17 +0000977 ret = 1;
978 } else {
979 printf("Tested %d iteration(s) with %lu errors.\n",
980 iteration, errs);
981 ret = errs != 0;
982 }
Simon Glass8f2c7582013-02-24 17:33:16 +0000983
984 return ret; /* not reached */
wdenk38635852002-08-27 05:55:31 +0000985}
986
987
988/* Modify memory.
989 *
990 * Syntax:
991 * mm{.b, .w, .l} {addr}
992 * nm{.b, .w, .l} {addr}
993 */
994static int
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200995mod_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000996{
wdenk874ac262003-07-24 23:38:38 +0000997 ulong addr, i;
998 int nbytes, size;
Simon Glasse6d0ca22013-02-24 17:33:15 +0000999 void *ptr = NULL;
wdenk38635852002-08-27 05:55:31 +00001000
Wolfgang Denk3b683112010-07-17 01:06:04 +02001001 if (argc != 2)
Simon Glassa06dfc72011-12-10 08:44:01 +00001002 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +00001003
1004#ifdef CONFIG_BOOT_RETRY_TIME
1005 reset_cmd_timeout(); /* got a good command to get here */
1006#endif
1007 /* We use the last specified parameters, unless new ones are
1008 * entered.
1009 */
1010 addr = mm_last_addr;
1011 size = mm_last_size;
1012
1013 if ((flag & CMD_FLAG_REPEAT) == 0) {
1014 /* New command specified. Check for a size specification.
1015 * Defaults to long if no or incorrect specification.
1016 */
wdenk874ac262003-07-24 23:38:38 +00001017 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
1018 return 1;
wdenk38635852002-08-27 05:55:31 +00001019
1020 /* Address is specified since argc > 1
1021 */
1022 addr = simple_strtoul(argv[1], NULL, 16);
1023 addr += base_address;
1024 }
1025
wdenk381669a2003-06-16 23:50:08 +00001026#ifdef CONFIG_HAS_DATAFLASH
1027 if (addr_dataflash(addr)){
wdenk42c05472004-03-23 22:14:11 +00001028 puts ("Can't modify DataFlash in place. Use cp instead.\n\r");
wdenk381669a2003-06-16 23:50:08 +00001029 return 0;
1030 }
1031#endif
1032
Mike Frysingere578d682008-02-04 19:26:56 -05001033#ifdef CONFIG_BLACKFIN
1034 if (addr_bfin_on_chip_mem(addr)) {
1035 puts ("Can't modify L1 instruction in place. Use cp instead.\n\r");
1036 return 0;
1037 }
1038#endif
1039
wdenk38635852002-08-27 05:55:31 +00001040 /* Print the address, followed by value. Then accept input for
1041 * the next value. A non-converted value exits.
1042 */
1043 do {
Simon Glasse6d0ca22013-02-24 17:33:15 +00001044 ptr = map_sysmem(addr, size);
wdenk38635852002-08-27 05:55:31 +00001045 printf("%08lx:", addr);
1046 if (size == 4)
Simon Glasse6d0ca22013-02-24 17:33:15 +00001047 printf(" %08x", *((uint *)ptr));
wdenk38635852002-08-27 05:55:31 +00001048 else if (size == 2)
Simon Glasse6d0ca22013-02-24 17:33:15 +00001049 printf(" %04x", *((ushort *)ptr));
wdenk38635852002-08-27 05:55:31 +00001050 else
Simon Glasse6d0ca22013-02-24 17:33:15 +00001051 printf(" %02x", *((u_char *)ptr));
wdenk38635852002-08-27 05:55:31 +00001052
1053 nbytes = readline (" ? ");
1054 if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) {
1055 /* <CR> pressed as only input, don't modify current
1056 * location and move to next. "-" pressed will go back.
1057 */
1058 if (incrflag)
1059 addr += nbytes ? -size : size;
1060 nbytes = 1;
1061#ifdef CONFIG_BOOT_RETRY_TIME
1062 reset_cmd_timeout(); /* good enough to not time out */
1063#endif
1064 }
1065#ifdef CONFIG_BOOT_RETRY_TIME
1066 else if (nbytes == -2) {
1067 break; /* timed out, exit the command */
1068 }
1069#endif
1070 else {
1071 char *endp;
1072 i = simple_strtoul(console_buffer, &endp, 16);
1073 nbytes = endp - console_buffer;
1074 if (nbytes) {
1075#ifdef CONFIG_BOOT_RETRY_TIME
1076 /* good enough to not time out
1077 */
1078 reset_cmd_timeout();
1079#endif
1080 if (size == 4)
Simon Glasse6d0ca22013-02-24 17:33:15 +00001081 *((uint *)ptr) = i;
wdenk38635852002-08-27 05:55:31 +00001082 else if (size == 2)
Simon Glasse6d0ca22013-02-24 17:33:15 +00001083 *((ushort *)ptr) = i;
wdenk38635852002-08-27 05:55:31 +00001084 else
Simon Glasse6d0ca22013-02-24 17:33:15 +00001085 *((u_char *)ptr) = i;
wdenk38635852002-08-27 05:55:31 +00001086 if (incrflag)
1087 addr += size;
1088 }
1089 }
1090 } while (nbytes);
Simon Glasse6d0ca22013-02-24 17:33:15 +00001091 if (ptr)
1092 unmap_sysmem(ptr);
wdenk38635852002-08-27 05:55:31 +00001093
1094 mm_last_addr = addr;
1095 mm_last_size = size;
1096 return 0;
1097}
1098
Mike Frysinger321ab9e2010-12-21 14:19:51 -05001099#ifdef CONFIG_CMD_CRC32
1100
wdenk6203e402004-04-18 10:13:26 +00001101#ifndef CONFIG_CRC32_VERIFY
1102
Kim Phillipsdc00a682012-10-29 13:34:31 +00001103static int do_mem_crc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +00001104{
wdenk7a428cc2003-06-15 22:40:42 +00001105 ulong addr, length;
1106 ulong crc;
1107 ulong *ptr;
wdenk38635852002-08-27 05:55:31 +00001108
Wolfgang Denk3b683112010-07-17 01:06:04 +02001109 if (argc < 3)
Simon Glassa06dfc72011-12-10 08:44:01 +00001110 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +00001111
wdenk7a428cc2003-06-15 22:40:42 +00001112 addr = simple_strtoul (argv[1], NULL, 16);
wdenk38635852002-08-27 05:55:31 +00001113 addr += base_address;
1114
wdenk7a428cc2003-06-15 22:40:42 +00001115 length = simple_strtoul (argv[2], NULL, 16);
wdenk38635852002-08-27 05:55:31 +00001116
Jens Scharsig5b2e6c22011-07-18 08:46:26 +02001117 crc = crc32_wd (0, (const uchar *) addr, length, CHUNKSZ_CRC32);
wdenk38635852002-08-27 05:55:31 +00001118
1119 printf ("CRC32 for %08lx ... %08lx ==> %08lx\n",
wdenk7a428cc2003-06-15 22:40:42 +00001120 addr, addr + length - 1, crc);
wdenk38635852002-08-27 05:55:31 +00001121
wdenk7a428cc2003-06-15 22:40:42 +00001122 if (argc > 3) {
1123 ptr = (ulong *) simple_strtoul (argv[3], NULL, 16);
1124 *ptr = crc;
1125 }
wdenk38635852002-08-27 05:55:31 +00001126
1127 return 0;
1128}
1129
wdenk6203e402004-04-18 10:13:26 +00001130#else /* CONFIG_CRC32_VERIFY */
1131
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001132int do_mem_crc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk6203e402004-04-18 10:13:26 +00001133{
1134 ulong addr, length;
1135 ulong crc;
1136 ulong *ptr;
wdenk05939202004-04-18 17:39:38 +00001137 ulong vcrc;
wdenk6203e402004-04-18 10:13:26 +00001138 int verify;
1139 int ac;
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001140 char * const *av;
wdenk6203e402004-04-18 10:13:26 +00001141
1142 if (argc < 3) {
Wolfgang Denk3b683112010-07-17 01:06:04 +02001143usage:
Simon Glassa06dfc72011-12-10 08:44:01 +00001144 return CMD_RET_USAGE;
wdenk6203e402004-04-18 10:13:26 +00001145 }
1146
1147 av = argv + 1;
1148 ac = argc - 1;
1149 if (strcmp(*av, "-v") == 0) {
1150 verify = 1;
1151 av++;
1152 ac--;
1153 if (ac < 3)
1154 goto usage;
1155 } else
1156 verify = 0;
1157
1158 addr = simple_strtoul(*av++, NULL, 16);
1159 addr += base_address;
1160 length = simple_strtoul(*av++, NULL, 16);
1161
Jens Scharsig5b2e6c22011-07-18 08:46:26 +02001162 crc = crc32_wd (0, (const uchar *) addr, length, CHUNKSZ_CRC32);
wdenk6203e402004-04-18 10:13:26 +00001163
1164 if (!verify) {
1165 printf ("CRC32 for %08lx ... %08lx ==> %08lx\n",
1166 addr, addr + length - 1, crc);
1167 if (ac > 2) {
1168 ptr = (ulong *) simple_strtoul (*av++, NULL, 16);
1169 *ptr = crc;
1170 }
1171 } else {
1172 vcrc = simple_strtoul(*av++, NULL, 16);
1173 if (vcrc != crc) {
1174 printf ("CRC32 for %08lx ... %08lx ==> %08lx != %08lx ** ERROR **\n",
1175 addr, addr + length - 1, crc, vcrc);
1176 return 1;
1177 }
1178 }
1179
1180 return 0;
1181
1182}
1183#endif /* CONFIG_CRC32_VERIFY */
1184
Robin Getz93d6cb02009-07-27 00:07:59 -04001185#endif
1186
wdenk57b2d802003-06-27 21:31:46 +00001187/**************************************************/
wdenkf287a242003-07-01 21:06:45 +00001188U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001189 md, 3, 1, do_mem_md,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001190 "memory display",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001191 "[.b, .w, .l] address [# of objects]"
wdenk57b2d802003-06-27 21:31:46 +00001192);
1193
1194
wdenkf287a242003-07-01 21:06:45 +00001195U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001196 mm, 2, 1, do_mem_mm,
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001197 "memory modify (auto-incrementing address)",
1198 "[.b, .w, .l] address"
wdenk57b2d802003-06-27 21:31:46 +00001199);
1200
1201
wdenkf287a242003-07-01 21:06:45 +00001202U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001203 nm, 2, 1, do_mem_nm,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001204 "memory modify (constant address)",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001205 "[.b, .w, .l] address"
wdenk57b2d802003-06-27 21:31:46 +00001206);
1207
wdenkf287a242003-07-01 21:06:45 +00001208U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001209 mw, 4, 1, do_mem_mw,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001210 "memory write (fill)",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001211 "[.b, .w, .l] address value [count]"
wdenk57b2d802003-06-27 21:31:46 +00001212);
1213
wdenkf287a242003-07-01 21:06:45 +00001214U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001215 cp, 4, 1, do_mem_cp,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001216 "memory copy",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001217 "[.b, .w, .l] source target count"
wdenk57b2d802003-06-27 21:31:46 +00001218);
1219
wdenkf287a242003-07-01 21:06:45 +00001220U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001221 cmp, 4, 1, do_mem_cmp,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001222 "memory compare",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001223 "[.b, .w, .l] addr1 addr2 count"
wdenk57b2d802003-06-27 21:31:46 +00001224);
1225
Mike Frysinger321ab9e2010-12-21 14:19:51 -05001226#ifdef CONFIG_CMD_CRC32
1227
wdenk6203e402004-04-18 10:13:26 +00001228#ifndef CONFIG_CRC32_VERIFY
1229
wdenkf287a242003-07-01 21:06:45 +00001230U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001231 crc32, 4, 1, do_mem_crc,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001232 "checksum calculation",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001233 "address count [addr]\n - compute CRC32 checksum [save at addr]"
wdenk57b2d802003-06-27 21:31:46 +00001234);
1235
wdenk6203e402004-04-18 10:13:26 +00001236#else /* CONFIG_CRC32_VERIFY */
1237
1238U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001239 crc32, 5, 1, do_mem_crc,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001240 "checksum calculation",
wdenk6203e402004-04-18 10:13:26 +00001241 "address count [addr]\n - compute CRC32 checksum [save at addr]\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001242 "-v address count crc\n - verify crc of memory area"
wdenk6203e402004-04-18 10:13:26 +00001243);
1244
1245#endif /* CONFIG_CRC32_VERIFY */
1246
Mike Frysinger321ab9e2010-12-21 14:19:51 -05001247#endif
1248
Simon Glasseacd14f2012-11-30 13:01:20 +00001249#ifdef CONFIG_CMD_MEMINFO
1250__weak void board_show_dram(ulong size)
1251{
1252 puts("DRAM: ");
1253 print_size(size, "\n");
1254}
1255
1256static int do_mem_info(cmd_tbl_t *cmdtp, int flag, int argc,
1257 char * const argv[])
1258{
1259 board_show_dram(gd->ram_size);
1260
1261 return 0;
1262}
1263#endif
1264
wdenkf287a242003-07-01 21:06:45 +00001265U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001266 base, 2, 1, do_mem_base,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001267 "print or set address offset",
wdenk57b2d802003-06-27 21:31:46 +00001268 "\n - print address offset for memory commands\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001269 "base off\n - set address offset for memory commands to 'off'"
wdenk57b2d802003-06-27 21:31:46 +00001270);
1271
wdenkf287a242003-07-01 21:06:45 +00001272U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001273 loop, 3, 1, do_mem_loop,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001274 "infinite loop on address range",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001275 "[.b, .w, .l] address number_of_objects"
wdenk57b2d802003-06-27 21:31:46 +00001276);
wdenk64519362004-07-11 17:40:54 +00001277
1278#ifdef CONFIG_LOOPW
1279U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001280 loopw, 4, 1, do_mem_loopw,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001281 "infinite write loop on address range",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001282 "[.b, .w, .l] address number_of_objects data_to_write"
wdenk64519362004-07-11 17:40:54 +00001283);
1284#endif /* CONFIG_LOOPW */
wdenk57b2d802003-06-27 21:31:46 +00001285
wdenkf287a242003-07-01 21:06:45 +00001286U_BOOT_CMD(
Dirk Eibachb2659892008-12-16 14:51:56 +01001287 mtest, 5, 1, do_mem_mtest,
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001288 "simple RAM read/write test",
1289 "[start [end [pattern [iterations]]]]"
wdenk57b2d802003-06-27 21:31:46 +00001290);
stroesefb5e0ac2004-12-16 17:42:39 +00001291
1292#ifdef CONFIG_MX_CYCLIC
1293U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001294 mdc, 4, 1, do_mem_mdc,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001295 "memory display cyclic",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001296 "[.b, .w, .l] address count delay(ms)"
stroesefb5e0ac2004-12-16 17:42:39 +00001297);
1298
1299U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +02001300 mwc, 4, 1, do_mem_mwc,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001301 "memory write cyclic",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001302 "[.b, .w, .l] address value delay(ms)"
stroesefb5e0ac2004-12-16 17:42:39 +00001303);
1304#endif /* CONFIG_MX_CYCLIC */
Simon Glasseacd14f2012-11-30 13:01:20 +00001305
1306#ifdef CONFIG_CMD_MEMINFO
1307U_BOOT_CMD(
1308 meminfo, 3, 1, do_mem_info,
1309 "display memory information",
1310 ""
1311);
1312#endif