blob: 77eafa0b8920409259acb5fbde8225a575b19af0 [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>
wdenk2abbe072003-06-16 23:50:08 +000032#ifdef CONFIG_HAS_DATAFLASH
33#include <dataflash.h>
34#endif
Simon Glassd20a40d2013-02-24 20:30:22 +000035#include <hash.h>
Sergei Poselenova6e6fc62008-04-09 16:09:41 +020036#include <watchdog.h>
Simon Glass0628ab82013-02-24 17:33:15 +000037#include <asm/io.h>
Simon Glass15a33e42012-11-30 13:01:20 +000038#include <linux/compiler.h>
39
40DECLARE_GLOBAL_DATA_PTR;
wdenk38635852002-08-27 05:55:31 +000041
Simon Glass8e169cc2013-02-24 17:33:29 +000042#ifndef CONFIG_SYS_MEMTEST_SCRATCH
43#define CONFIG_SYS_MEMTEST_SCRATCH 0
44#endif
45
Wolfgang Denk54841ab2010-06-28 22:00:46 +020046static int mod_mem(cmd_tbl_t *, int, int, int, char * const []);
wdenk38635852002-08-27 05:55:31 +000047
48/* Display values from last command.
49 * Memory modify remembered values are different from display memory.
50 */
Mike Frysingerd6efe242010-12-22 09:40:29 -050051static uint dp_last_addr, dp_last_size;
52static uint dp_last_length = 0x40;
53static uint mm_last_addr, mm_last_size;
wdenk38635852002-08-27 05:55:31 +000054
55static ulong base_address = 0;
56
57/* Memory Display
58 *
59 * Syntax:
60 * md{.b, .w, .l} {addr} {len}
61 */
62#define DISP_LINE_LEN 16
Kim Phillips088f1b12012-10-29 13:34:31 +000063static int do_mem_md(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000064{
wdenk27b207f2003-07-24 23:38:38 +000065 ulong addr, length;
Grant Likelyc95c4282007-02-20 09:05:00 +010066#if defined(CONFIG_HAS_DATAFLASH)
67 ulong nbytes, linebytes;
68#endif
wdenk27b207f2003-07-24 23:38:38 +000069 int size;
wdenk38635852002-08-27 05:55:31 +000070 int rc = 0;
71
72 /* We use the last specified parameters, unless new ones are
73 * entered.
74 */
75 addr = dp_last_addr;
76 size = dp_last_size;
77 length = dp_last_length;
78
Wolfgang Denk47e26b12010-07-17 01:06:04 +020079 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +000080 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +000081
82 if ((flag & CMD_FLAG_REPEAT) == 0) {
83 /* New command specified. Check for a size specification.
84 * Defaults to long if no or incorrect specification.
85 */
wdenk27b207f2003-07-24 23:38:38 +000086 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
87 return 1;
wdenk38635852002-08-27 05:55:31 +000088
89 /* Address is specified since argc > 1
90 */
91 addr = simple_strtoul(argv[1], NULL, 16);
92 addr += base_address;
93
94 /* If another parameter, it is the length to display.
95 * Length is the number of objects, not number of bytes.
96 */
97 if (argc > 2)
98 length = simple_strtoul(argv[2], NULL, 16);
99 }
100
Grant Likelyc95c4282007-02-20 09:05:00 +0100101#if defined(CONFIG_HAS_DATAFLASH)
wdenk38635852002-08-27 05:55:31 +0000102 /* Print the lines.
103 *
104 * We buffer all read data, so we can make sure data is read only
105 * once, and all accesses are with the specified bus width.
106 */
107 nbytes = length * size;
108 do {
109 char linebuf[DISP_LINE_LEN];
Grant Likelyc95c4282007-02-20 09:05:00 +0100110 void* p;
wdenk38635852002-08-27 05:55:31 +0000111 linebytes = (nbytes>DISP_LINE_LEN)?DISP_LINE_LEN:nbytes;
wdenk2abbe072003-06-16 23:50:08 +0000112
Grant Likelyc95c4282007-02-20 09:05:00 +0100113 rc = read_dataflash(addr, (linebytes/size)*size, linebuf);
114 p = (rc == DATAFLASH_OK) ? linebuf : (void*)addr;
115 print_buffer(addr, p, size, linebytes/size, DISP_LINE_LEN/size);
wdenk8bde7f72003-06-27 21:31:46 +0000116
wdenk38635852002-08-27 05:55:31 +0000117 nbytes -= linebytes;
Grant Likelyc95c4282007-02-20 09:05:00 +0100118 addr += linebytes;
wdenk38635852002-08-27 05:55:31 +0000119 if (ctrlc()) {
120 rc = 1;
121 break;
122 }
123 } while (nbytes > 0);
Grant Likelyc95c4282007-02-20 09:05:00 +0100124#else
Mike Frysinger4c727c72008-02-04 19:26:56 -0500125
126# if defined(CONFIG_BLACKFIN)
127 /* See if we're trying to display L1 inst */
128 if (addr_bfin_on_chip_mem(addr)) {
129 char linebuf[DISP_LINE_LEN];
130 ulong linebytes, nbytes = length * size;
131 do {
132 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
133 memcpy(linebuf, (void *)addr, linebytes);
134 print_buffer(addr, linebuf, size, linebytes/size, DISP_LINE_LEN/size);
135
136 nbytes -= linebytes;
137 addr += linebytes;
138 if (ctrlc()) {
139 rc = 1;
140 break;
141 }
142 } while (nbytes > 0);
143 } else
144# endif
145
146 {
Simon Glass0628ab82013-02-24 17:33:15 +0000147 ulong bytes = size * length;
148 const void *buf = map_sysmem(addr, bytes);
149
Mike Frysinger4c727c72008-02-04 19:26:56 -0500150 /* Print the lines. */
Simon Glass0628ab82013-02-24 17:33:15 +0000151 print_buffer(addr, buf, size, length, DISP_LINE_LEN / size);
152 addr += bytes;
153 unmap_sysmem(buf);
Mike Frysinger4c727c72008-02-04 19:26:56 -0500154 }
Grant Likelyc95c4282007-02-20 09:05:00 +0100155#endif
wdenk38635852002-08-27 05:55:31 +0000156
157 dp_last_addr = addr;
158 dp_last_length = length;
159 dp_last_size = size;
160 return (rc);
161}
162
Kim Phillips088f1b12012-10-29 13:34:31 +0000163static int do_mem_mm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000164{
165 return mod_mem (cmdtp, 1, flag, argc, argv);
166}
Kim Phillips088f1b12012-10-29 13:34:31 +0000167static int do_mem_nm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000168{
169 return mod_mem (cmdtp, 0, flag, argc, argv);
170}
171
Kim Phillips088f1b12012-10-29 13:34:31 +0000172static int do_mem_mw(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000173{
wdenk27b207f2003-07-24 23:38:38 +0000174 ulong addr, writeval, count;
175 int size;
Simon Glass0628ab82013-02-24 17:33:15 +0000176 void *buf;
177 ulong bytes;
wdenk38635852002-08-27 05:55:31 +0000178
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200179 if ((argc < 3) || (argc > 4))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000180 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000181
182 /* Check for size specification.
183 */
wdenk27b207f2003-07-24 23:38:38 +0000184 if ((size = cmd_get_data_size(argv[0], 4)) < 1)
185 return 1;
wdenk38635852002-08-27 05:55:31 +0000186
187 /* Address is specified since argc > 1
188 */
189 addr = simple_strtoul(argv[1], NULL, 16);
190 addr += base_address;
191
192 /* Get the value to write.
193 */
194 writeval = simple_strtoul(argv[2], NULL, 16);
195
196 /* Count ? */
197 if (argc == 4) {
198 count = simple_strtoul(argv[3], NULL, 16);
199 } else {
200 count = 1;
201 }
202
Simon Glass0628ab82013-02-24 17:33:15 +0000203 bytes = size * count;
204 buf = map_sysmem(addr, bytes);
wdenk38635852002-08-27 05:55:31 +0000205 while (count-- > 0) {
206 if (size == 4)
Simon Glass0628ab82013-02-24 17:33:15 +0000207 *((ulong *)buf) = (ulong)writeval;
wdenk38635852002-08-27 05:55:31 +0000208 else if (size == 2)
Simon Glass0628ab82013-02-24 17:33:15 +0000209 *((ushort *)buf) = (ushort)writeval;
wdenk38635852002-08-27 05:55:31 +0000210 else
Simon Glass0628ab82013-02-24 17:33:15 +0000211 *((u_char *)buf) = (u_char)writeval;
212 buf += size;
wdenk38635852002-08-27 05:55:31 +0000213 }
Simon Glass0628ab82013-02-24 17:33:15 +0000214 unmap_sysmem(buf);
wdenk38635852002-08-27 05:55:31 +0000215 return 0;
216}
217
stroese4aaf29b2004-12-16 17:42:39 +0000218#ifdef CONFIG_MX_CYCLIC
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200219int do_mem_mdc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroese4aaf29b2004-12-16 17:42:39 +0000220{
221 int i;
222 ulong count;
223
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200224 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000225 return CMD_RET_USAGE;
stroese4aaf29b2004-12-16 17:42:39 +0000226
227 count = simple_strtoul(argv[3], NULL, 10);
228
229 for (;;) {
230 do_mem_md (NULL, 0, 3, argv);
231
232 /* delay for <count> ms... */
233 for (i=0; i<count; i++)
234 udelay (1000);
235
236 /* check for ctrl-c to abort... */
237 if (ctrlc()) {
238 puts("Abort\n");
239 return 0;
240 }
241 }
242
243 return 0;
244}
245
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200246int do_mem_mwc ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroese4aaf29b2004-12-16 17:42:39 +0000247{
248 int i;
249 ulong count;
250
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200251 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000252 return CMD_RET_USAGE;
stroese4aaf29b2004-12-16 17:42:39 +0000253
254 count = simple_strtoul(argv[3], NULL, 10);
255
256 for (;;) {
257 do_mem_mw (NULL, 0, 3, argv);
258
259 /* delay for <count> ms... */
260 for (i=0; i<count; i++)
261 udelay (1000);
262
263 /* check for ctrl-c to abort... */
264 if (ctrlc()) {
265 puts("Abort\n");
266 return 0;
267 }
268 }
269
270 return 0;
271}
272#endif /* CONFIG_MX_CYCLIC */
273
Kim Phillips088f1b12012-10-29 13:34:31 +0000274static int do_mem_cmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000275{
Simon Glass0628ab82013-02-24 17:33:15 +0000276 ulong addr1, addr2, count, ngood, bytes;
wdenk27b207f2003-07-24 23:38:38 +0000277 int size;
wdenk38635852002-08-27 05:55:31 +0000278 int rcode = 0;
Mike Frysinger054ea172012-01-20 09:07:21 +0000279 const char *type;
Simon Glass0628ab82013-02-24 17:33:15 +0000280 const void *buf1, *buf2, *base;
wdenk38635852002-08-27 05:55:31 +0000281
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200282 if (argc != 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000283 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000284
285 /* Check for size specification.
286 */
wdenk27b207f2003-07-24 23:38:38 +0000287 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
288 return 1;
Mike Frysinger054ea172012-01-20 09:07:21 +0000289 type = size == 4 ? "word" : size == 2 ? "halfword" : "byte";
wdenk38635852002-08-27 05:55:31 +0000290
291 addr1 = simple_strtoul(argv[1], NULL, 16);
292 addr1 += base_address;
293
294 addr2 = simple_strtoul(argv[2], NULL, 16);
295 addr2 += base_address;
296
297 count = simple_strtoul(argv[3], NULL, 16);
298
wdenk2abbe072003-06-16 23:50:08 +0000299#ifdef CONFIG_HAS_DATAFLASH
300 if (addr_dataflash(addr1) | addr_dataflash(addr2)){
wdenk4b9206e2004-03-23 22:14:11 +0000301 puts ("Comparison with DataFlash space not supported.\n\r");
wdenk2abbe072003-06-16 23:50:08 +0000302 return 0;
303 }
304#endif
305
Mike Frysinger4c727c72008-02-04 19:26:56 -0500306#ifdef CONFIG_BLACKFIN
307 if (addr_bfin_on_chip_mem(addr1) || addr_bfin_on_chip_mem(addr2)) {
308 puts ("Comparison with L1 instruction memory not supported.\n\r");
309 return 0;
310 }
311#endif
312
Simon Glass0628ab82013-02-24 17:33:15 +0000313 bytes = size * count;
314 base = buf1 = map_sysmem(addr1, bytes);
315 buf2 = map_sysmem(addr2, bytes);
Mike Frysingerfeb12a12012-01-20 09:07:22 +0000316 for (ngood = 0; ngood < count; ++ngood) {
Mike Frysinger054ea172012-01-20 09:07:21 +0000317 ulong word1, word2;
wdenk38635852002-08-27 05:55:31 +0000318 if (size == 4) {
Simon Glass0628ab82013-02-24 17:33:15 +0000319 word1 = *(ulong *)buf1;
320 word2 = *(ulong *)buf2;
Mike Frysinger054ea172012-01-20 09:07:21 +0000321 } else if (size == 2) {
Simon Glass0628ab82013-02-24 17:33:15 +0000322 word1 = *(ushort *)buf1;
323 word2 = *(ushort *)buf2;
Mike Frysinger054ea172012-01-20 09:07:21 +0000324 } else {
Simon Glass0628ab82013-02-24 17:33:15 +0000325 word1 = *(u_char *)buf1;
326 word2 = *(u_char *)buf2;
wdenk38635852002-08-27 05:55:31 +0000327 }
Mike Frysinger054ea172012-01-20 09:07:21 +0000328 if (word1 != word2) {
Simon Glass0628ab82013-02-24 17:33:15 +0000329 ulong offset = buf1 - base;
330
Mike Frysinger054ea172012-01-20 09:07:21 +0000331 printf("%s at 0x%08lx (%#0*lx) != %s at 0x%08lx (%#0*lx)\n",
Simon Glass0628ab82013-02-24 17:33:15 +0000332 type, (ulong)(addr1 + offset), size, word1,
333 type, (ulong)(addr2 + offset), size, word2);
Mike Frysinger054ea172012-01-20 09:07:21 +0000334 rcode = 1;
335 break;
wdenk38635852002-08-27 05:55:31 +0000336 }
Mike Frysinger054ea172012-01-20 09:07:21 +0000337
Simon Glass0628ab82013-02-24 17:33:15 +0000338 buf1 += size;
339 buf2 += size;
Stefan Roeseeaadb442010-09-13 11:10:34 +0200340
341 /* reset watchdog from time to time */
Mike Frysingerfeb12a12012-01-20 09:07:22 +0000342 if ((ngood % (64 << 10)) == 0)
Stefan Roeseeaadb442010-09-13 11:10:34 +0200343 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000344 }
Simon Glass0628ab82013-02-24 17:33:15 +0000345 unmap_sysmem(buf1);
346 unmap_sysmem(buf2);
wdenk38635852002-08-27 05:55:31 +0000347
Mike Frysinger054ea172012-01-20 09:07:21 +0000348 printf("Total of %ld %s(s) were the same\n", ngood, type);
wdenk38635852002-08-27 05:55:31 +0000349 return rcode;
350}
351
Kim Phillips088f1b12012-10-29 13:34:31 +0000352static int do_mem_cp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000353{
Simon Glass0628ab82013-02-24 17:33:15 +0000354 ulong addr, dest, count, bytes;
wdenk27b207f2003-07-24 23:38:38 +0000355 int size;
Simon Glass0628ab82013-02-24 17:33:15 +0000356 const void *src;
357 void *buf;
wdenk38635852002-08-27 05:55:31 +0000358
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200359 if (argc != 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000360 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000361
362 /* Check for size specification.
363 */
wdenk27b207f2003-07-24 23:38:38 +0000364 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
365 return 1;
wdenk38635852002-08-27 05:55:31 +0000366
367 addr = simple_strtoul(argv[1], NULL, 16);
368 addr += base_address;
369
370 dest = simple_strtoul(argv[2], NULL, 16);
371 dest += base_address;
372
373 count = simple_strtoul(argv[3], NULL, 16);
374
375 if (count == 0) {
376 puts ("Zero length ???\n");
377 return 1;
378 }
379
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200380#ifndef CONFIG_SYS_NO_FLASH
wdenk38635852002-08-27 05:55:31 +0000381 /* check if we are copying to Flash */
wdenk2abbe072003-06-16 23:50:08 +0000382 if ( (addr2info(dest) != NULL)
383#ifdef CONFIG_HAS_DATAFLASH
Kim B. Heino84d0c2f2008-03-03 10:39:13 +0200384 && (!addr_dataflash(dest))
wdenk2abbe072003-06-16 23:50:08 +0000385#endif
386 ) {
wdenk38635852002-08-27 05:55:31 +0000387 int rc;
388
wdenk4b9206e2004-03-23 22:14:11 +0000389 puts ("Copy to Flash... ");
wdenk38635852002-08-27 05:55:31 +0000390
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200391 rc = flash_write ((char *)addr, dest, count*size);
wdenk38635852002-08-27 05:55:31 +0000392 if (rc != 0) {
393 flash_perror (rc);
394 return (1);
395 }
396 puts ("done\n");
397 return 0;
398 }
399#endif
400
wdenk2abbe072003-06-16 23:50:08 +0000401#ifdef CONFIG_HAS_DATAFLASH
402 /* Check if we are copying from RAM or Flash to DataFlash */
403 if (addr_dataflash(dest) && !addr_dataflash(addr)){
404 int rc;
405
wdenk4b9206e2004-03-23 22:14:11 +0000406 puts ("Copy to DataFlash... ");
wdenk2abbe072003-06-16 23:50:08 +0000407
408 rc = write_dataflash (dest, addr, count*size);
409
410 if (rc != 1) {
411 dataflash_perror (rc);
412 return (1);
413 }
414 puts ("done\n");
415 return 0;
416 }
wdenk8bde7f72003-06-27 21:31:46 +0000417
wdenk2abbe072003-06-16 23:50:08 +0000418 /* Check if we are copying from DataFlash to RAM */
Stelian Pop880cc432008-03-26 22:52:35 +0100419 if (addr_dataflash(addr) && !addr_dataflash(dest)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200420#ifndef CONFIG_SYS_NO_FLASH
Stelian Pop880cc432008-03-26 22:52:35 +0100421 && (addr2info(dest) == NULL)
422#endif
423 ){
wdenk5779d8d2003-12-06 23:55:10 +0000424 int rc;
425 rc = read_dataflash(addr, count * size, (char *) dest);
426 if (rc != 1) {
wdenkd4ca31c2004-01-02 14:00:00 +0000427 dataflash_perror (rc);
428 return (1);
429 }
wdenk2abbe072003-06-16 23:50:08 +0000430 return 0;
431 }
432
433 if (addr_dataflash(addr) && addr_dataflash(dest)){
wdenk4b9206e2004-03-23 22:14:11 +0000434 puts ("Unsupported combination of source/destination.\n\r");
wdenk2abbe072003-06-16 23:50:08 +0000435 return 1;
436 }
437#endif
438
Mike Frysinger4c727c72008-02-04 19:26:56 -0500439#ifdef CONFIG_BLACKFIN
440 /* See if we're copying to/from L1 inst */
441 if (addr_bfin_on_chip_mem(dest) || addr_bfin_on_chip_mem(addr)) {
442 memcpy((void *)dest, (void *)addr, count * size);
443 return 0;
444 }
445#endif
446
Simon Glass0628ab82013-02-24 17:33:15 +0000447 bytes = size * count;
Masahiro Yamada53237af2013-05-20 21:08:08 +0000448 buf = map_sysmem(dest, bytes);
Simon Glass0628ab82013-02-24 17:33:15 +0000449 src = map_sysmem(addr, bytes);
wdenk38635852002-08-27 05:55:31 +0000450 while (count-- > 0) {
451 if (size == 4)
Simon Glass0628ab82013-02-24 17:33:15 +0000452 *((ulong *)buf) = *((ulong *)src);
wdenk38635852002-08-27 05:55:31 +0000453 else if (size == 2)
Simon Glass0628ab82013-02-24 17:33:15 +0000454 *((ushort *)buf) = *((ushort *)src);
wdenk38635852002-08-27 05:55:31 +0000455 else
Simon Glass0628ab82013-02-24 17:33:15 +0000456 *((u_char *)buf) = *((u_char *)src);
457 src += size;
458 buf += size;
Stefan Roeseeaadb442010-09-13 11:10:34 +0200459
460 /* reset watchdog from time to time */
461 if ((count % (64 << 10)) == 0)
462 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000463 }
464 return 0;
465}
466
Kim Phillips088f1b12012-10-29 13:34:31 +0000467static int do_mem_base(cmd_tbl_t *cmdtp, int flag, int argc,
468 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000469{
470 if (argc > 1) {
471 /* Set new base address.
472 */
473 base_address = simple_strtoul(argv[1], NULL, 16);
474 }
475 /* Print the current base address.
476 */
477 printf("Base Address: 0x%08lx\n", base_address);
478 return 0;
479}
480
Kim Phillips088f1b12012-10-29 13:34:31 +0000481static int do_mem_loop(cmd_tbl_t *cmdtp, int flag, int argc,
482 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000483{
Simon Glass0628ab82013-02-24 17:33:15 +0000484 ulong addr, length, i, bytes;
wdenk27b207f2003-07-24 23:38:38 +0000485 int size;
wdenk38635852002-08-27 05:55:31 +0000486 volatile uint *longp;
487 volatile ushort *shortp;
488 volatile u_char *cp;
Simon Glass0628ab82013-02-24 17:33:15 +0000489 const void *buf;
wdenk38635852002-08-27 05:55:31 +0000490
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200491 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000492 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000493
Robert P. J. Day85de63e2013-02-03 02:29:54 +0000494 /*
495 * Check for a size specification.
wdenk38635852002-08-27 05:55:31 +0000496 * Defaults to long if no or incorrect specification.
497 */
wdenk27b207f2003-07-24 23:38:38 +0000498 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
499 return 1;
wdenk38635852002-08-27 05:55:31 +0000500
501 /* Address is always specified.
502 */
503 addr = simple_strtoul(argv[1], NULL, 16);
504
505 /* Length is the number of objects, not number of bytes.
506 */
507 length = simple_strtoul(argv[2], NULL, 16);
508
Simon Glass0628ab82013-02-24 17:33:15 +0000509 bytes = size * length;
510 buf = map_sysmem(addr, bytes);
511
wdenk38635852002-08-27 05:55:31 +0000512 /* We want to optimize the loops to run as fast as possible.
513 * If we have only one object, just run infinite loops.
514 */
515 if (length == 1) {
516 if (size == 4) {
Simon Glass0628ab82013-02-24 17:33:15 +0000517 longp = (uint *)buf;
wdenk38635852002-08-27 05:55:31 +0000518 for (;;)
519 i = *longp;
520 }
521 if (size == 2) {
Simon Glass0628ab82013-02-24 17:33:15 +0000522 shortp = (ushort *)buf;
wdenk38635852002-08-27 05:55:31 +0000523 for (;;)
524 i = *shortp;
525 }
Simon Glass0628ab82013-02-24 17:33:15 +0000526 cp = (u_char *)buf;
wdenk38635852002-08-27 05:55:31 +0000527 for (;;)
528 i = *cp;
529 }
530
531 if (size == 4) {
532 for (;;) {
Simon Glass0628ab82013-02-24 17:33:15 +0000533 longp = (uint *)buf;
wdenk38635852002-08-27 05:55:31 +0000534 i = length;
535 while (i-- > 0)
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200536 *longp++;
wdenk38635852002-08-27 05:55:31 +0000537 }
538 }
539 if (size == 2) {
540 for (;;) {
Simon Glass0628ab82013-02-24 17:33:15 +0000541 shortp = (ushort *)buf;
wdenk38635852002-08-27 05:55:31 +0000542 i = length;
543 while (i-- > 0)
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200544 *shortp++;
wdenk38635852002-08-27 05:55:31 +0000545 }
546 }
547 for (;;) {
Simon Glass0628ab82013-02-24 17:33:15 +0000548 cp = (u_char *)buf;
wdenk38635852002-08-27 05:55:31 +0000549 i = length;
550 while (i-- > 0)
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200551 *cp++;
wdenk38635852002-08-27 05:55:31 +0000552 }
Simon Glass0628ab82013-02-24 17:33:15 +0000553 unmap_sysmem(buf);
Simon Glass92765f422013-06-11 11:14:35 -0700554
555 return 0;
wdenk38635852002-08-27 05:55:31 +0000556}
557
wdenk56523f12004-07-11 17:40:54 +0000558#ifdef CONFIG_LOOPW
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200559int do_mem_loopw (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk56523f12004-07-11 17:40:54 +0000560{
Simon Glass0628ab82013-02-24 17:33:15 +0000561 ulong addr, length, i, data, bytes;
wdenk56523f12004-07-11 17:40:54 +0000562 int size;
563 volatile uint *longp;
564 volatile ushort *shortp;
565 volatile u_char *cp;
Simon Glass0628ab82013-02-24 17:33:15 +0000566 void *buf;
wdenk81050922004-07-11 20:04:51 +0000567
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200568 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000569 return CMD_RET_USAGE;
wdenk56523f12004-07-11 17:40:54 +0000570
Robert P. J. Day85de63e2013-02-03 02:29:54 +0000571 /*
572 * Check for a size specification.
wdenk56523f12004-07-11 17:40:54 +0000573 * Defaults to long if no or incorrect specification.
574 */
575 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
576 return 1;
577
578 /* Address is always specified.
579 */
580 addr = simple_strtoul(argv[1], NULL, 16);
581
582 /* Length is the number of objects, not number of bytes.
583 */
584 length = simple_strtoul(argv[2], NULL, 16);
585
586 /* data to write */
587 data = simple_strtoul(argv[3], NULL, 16);
wdenk81050922004-07-11 20:04:51 +0000588
Simon Glass0628ab82013-02-24 17:33:15 +0000589 bytes = size * length;
590 buf = map_sysmem(addr, bytes);
591
wdenk56523f12004-07-11 17:40:54 +0000592 /* We want to optimize the loops to run as fast as possible.
593 * If we have only one object, just run infinite loops.
594 */
595 if (length == 1) {
596 if (size == 4) {
Simon Glass0628ab82013-02-24 17:33:15 +0000597 longp = (uint *)buf;
wdenk56523f12004-07-11 17:40:54 +0000598 for (;;)
599 *longp = data;
600 }
601 if (size == 2) {
Simon Glass0628ab82013-02-24 17:33:15 +0000602 shortp = (ushort *)buf;
wdenk56523f12004-07-11 17:40:54 +0000603 for (;;)
604 *shortp = data;
605 }
Simon Glass0628ab82013-02-24 17:33:15 +0000606 cp = (u_char *)buf;
wdenk56523f12004-07-11 17:40:54 +0000607 for (;;)
608 *cp = data;
609 }
610
611 if (size == 4) {
612 for (;;) {
Simon Glass0628ab82013-02-24 17:33:15 +0000613 longp = (uint *)buf;
wdenk56523f12004-07-11 17:40:54 +0000614 i = length;
615 while (i-- > 0)
616 *longp++ = data;
617 }
618 }
619 if (size == 2) {
620 for (;;) {
Simon Glass0628ab82013-02-24 17:33:15 +0000621 shortp = (ushort *)buf;
wdenk56523f12004-07-11 17:40:54 +0000622 i = length;
623 while (i-- > 0)
624 *shortp++ = data;
625 }
626 }
627 for (;;) {
Simon Glass0628ab82013-02-24 17:33:15 +0000628 cp = (u_char *)buf;
wdenk56523f12004-07-11 17:40:54 +0000629 i = length;
630 while (i-- > 0)
631 *cp++ = data;
632 }
633}
634#endif /* CONFIG_LOOPW */
635
Tom Rini68149e92013-03-12 10:07:19 -0400636#ifdef CONFIG_CMD_MEMTEST
Simon Glass5512d5b2013-02-28 17:47:14 +0000637static ulong mem_test_alt(vu_long *buf, ulong start_addr, ulong end_addr,
638 vu_long *dummy)
wdenk38635852002-08-27 05:55:31 +0000639{
Simon Glassc9638f52013-02-24 17:33:16 +0000640 vu_long *addr;
Simon Glassc9638f52013-02-24 17:33:16 +0000641 ulong errs = 0;
642 ulong val, readback;
643 int j;
Simon Glassc9638f52013-02-24 17:33:16 +0000644 vu_long offset;
645 vu_long test_offset;
646 vu_long pattern;
647 vu_long temp;
648 vu_long anti_pattern;
649 vu_long num_words;
wdenk38635852002-08-27 05:55:31 +0000650 static const ulong bitpattern[] = {
651 0x00000001, /* single bit */
652 0x00000003, /* two adjacent bits */
653 0x00000007, /* three adjacent bits */
654 0x0000000F, /* four adjacent bits */
655 0x00000005, /* two non-adjacent bits */
656 0x00000015, /* three non-adjacent bits */
657 0x00000055, /* four non-adjacent bits */
658 0xaaaaaaaa, /* alternating 1/0 */
659 };
wdenk38635852002-08-27 05:55:31 +0000660
Simon Glass5512d5b2013-02-28 17:47:14 +0000661 num_words = (end_addr - start_addr) / sizeof(vu_long);
Simon Glass8c86bbe2013-02-24 17:33:20 +0000662
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000663 /*
664 * Data line test: write a pattern to the first
665 * location, write the 1's complement to a 'parking'
666 * address (changes the state of the data bus so a
667 * floating bus doesn't give a false OK), and then
668 * read the value back. Note that we read it back
669 * into a variable because the next time we read it,
670 * it might be right (been there, tough to explain to
671 * the quality guys why it prints a failure when the
672 * "is" and "should be" are obviously the same in the
673 * error message).
674 *
675 * Rather than exhaustively testing, we test some
676 * patterns by shifting '1' bits through a field of
677 * '0's and '0' bits through a field of '1's (i.e.
678 * pattern and ~pattern).
679 */
Simon Glass5512d5b2013-02-28 17:47:14 +0000680 addr = buf;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000681 for (j = 0; j < sizeof(bitpattern) / sizeof(bitpattern[0]); j++) {
682 val = bitpattern[j];
683 for (; val != 0; val <<= 1) {
Simon Glass5512d5b2013-02-28 17:47:14 +0000684 *addr = val;
Simon Glassc9638f52013-02-24 17:33:16 +0000685 *dummy = ~val; /* clear the test data off the bus */
wdenk38635852002-08-27 05:55:31 +0000686 readback = *addr;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000687 if (readback != val) {
Simon Glassc9638f52013-02-24 17:33:16 +0000688 printf("FAILURE (data line): "
689 "expected %08lx, actual %08lx\n",
690 val, readback);
691 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000692 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000693 return -1;
wdenk38635852002-08-27 05:55:31 +0000694 }
695 *addr = ~val;
696 *dummy = val;
697 readback = *addr;
Simon Glassc9638f52013-02-24 17:33:16 +0000698 if (readback != ~val) {
699 printf("FAILURE (data line): "
700 "Is %08lx, should be %08lx\n",
701 readback, ~val);
702 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000703 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000704 return -1;
wdenk38635852002-08-27 05:55:31 +0000705 }
wdenk38635852002-08-27 05:55:31 +0000706 }
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000707 }
wdenk38635852002-08-27 05:55:31 +0000708
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000709 /*
710 * Based on code whose Original Author and Copyright
711 * information follows: Copyright (c) 1998 by Michael
712 * Barr. This software is placed into the public
713 * domain and may be used for any purpose. However,
714 * this notice must not be changed or removed and no
715 * warranty is either expressed or implied by its
716 * publication or distribution.
717 */
wdenk38635852002-08-27 05:55:31 +0000718
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000719 /*
720 * Address line test
wdenk38635852002-08-27 05:55:31 +0000721
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000722 * Description: Test the address bus wiring in a
723 * memory region by performing a walking
724 * 1's test on the relevant bits of the
725 * address and checking for aliasing.
726 * This test will find single-bit
727 * address failures such as stuck-high,
728 * stuck-low, and shorted pins. The base
729 * address and size of the region are
730 * selected by the caller.
wdenk38635852002-08-27 05:55:31 +0000731
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000732 * Notes: For best results, the selected base
733 * address should have enough LSB 0's to
734 * guarantee single address bit changes.
735 * For example, to test a 64-Kbyte
736 * region, select a base address on a
737 * 64-Kbyte boundary. Also, select the
738 * region size as a power-of-two if at
739 * all possible.
740 *
741 * Returns: 0 if the test succeeds, 1 if the test fails.
742 */
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000743 pattern = (vu_long) 0xaaaaaaaa;
744 anti_pattern = (vu_long) 0x55555555;
wdenk38635852002-08-27 05:55:31 +0000745
Simon Glass5512d5b2013-02-28 17:47:14 +0000746 debug("%s:%d: length = 0x%.8lx\n", __func__, __LINE__, num_words);
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000747 /*
748 * Write the default pattern at each of the
749 * power-of-two offsets.
750 */
Simon Glass5512d5b2013-02-28 17:47:14 +0000751 for (offset = 1; offset < num_words; offset <<= 1)
752 addr[offset] = pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000753
754 /*
755 * Check for address bits stuck high.
756 */
757 test_offset = 0;
Simon Glass5512d5b2013-02-28 17:47:14 +0000758 addr[test_offset] = anti_pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000759
Simon Glass5512d5b2013-02-28 17:47:14 +0000760 for (offset = 1; offset < num_words; offset <<= 1) {
761 temp = addr[offset];
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000762 if (temp != pattern) {
Simon Glassc9638f52013-02-24 17:33:16 +0000763 printf("\nFAILURE: Address bit stuck high @ 0x%.8lx:"
wdenk38635852002-08-27 05:55:31 +0000764 " expected 0x%.8lx, actual 0x%.8lx\n",
Simon Glass5512d5b2013-02-28 17:47:14 +0000765 start_addr + offset, pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400766 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000767 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000768 return -1;
wdenk38635852002-08-27 05:55:31 +0000769 }
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000770 }
Simon Glass5512d5b2013-02-28 17:47:14 +0000771 addr[test_offset] = pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000772 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000773
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000774 /*
775 * Check for addr bits stuck low or shorted.
776 */
Simon Glass5512d5b2013-02-28 17:47:14 +0000777 for (test_offset = 1; test_offset < num_words; test_offset <<= 1) {
778 addr[test_offset] = anti_pattern;
wdenk38635852002-08-27 05:55:31 +0000779
Simon Glass5512d5b2013-02-28 17:47:14 +0000780 for (offset = 1; offset < num_words; offset <<= 1) {
781 temp = addr[offset];
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000782 if ((temp != pattern) && (offset != test_offset)) {
783 printf("\nFAILURE: Address bit stuck low or"
784 " shorted @ 0x%.8lx: expected 0x%.8lx,"
785 " actual 0x%.8lx\n",
Simon Glass5512d5b2013-02-28 17:47:14 +0000786 start_addr + offset, pattern, temp);
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000787 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000788 if (ctrlc())
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000789 return -1;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000790 }
wdenk38635852002-08-27 05:55:31 +0000791 }
Simon Glass5512d5b2013-02-28 17:47:14 +0000792 addr[test_offset] = pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000793 }
wdenk38635852002-08-27 05:55:31 +0000794
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000795 /*
796 * Description: Test the integrity of a physical
797 * memory device by performing an
798 * increment/decrement test over the
799 * entire region. In the process every
800 * storage bit in the device is tested
801 * as a zero and a one. The base address
802 * and the size of the region are
803 * selected by the caller.
804 *
805 * Returns: 0 if the test succeeds, 1 if the test fails.
806 */
Simon Glass5512d5b2013-02-28 17:47:14 +0000807 num_words++;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000808
809 /*
810 * Fill memory with a known pattern.
811 */
812 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
813 WATCHDOG_RESET();
Simon Glass5512d5b2013-02-28 17:47:14 +0000814 addr[offset] = pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000815 }
816
817 /*
818 * Check each location and invert it for the second pass.
819 */
820 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
821 WATCHDOG_RESET();
Simon Glass5512d5b2013-02-28 17:47:14 +0000822 temp = addr[offset];
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000823 if (temp != pattern) {
Simon Glassc9638f52013-02-24 17:33:16 +0000824 printf("\nFAILURE (read/write) @ 0x%.8lx:"
wdenk38635852002-08-27 05:55:31 +0000825 " expected 0x%.8lx, actual 0x%.8lx)\n",
Simon Glass5512d5b2013-02-28 17:47:14 +0000826 start_addr + offset, pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400827 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000828 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000829 return -1;
wdenk38635852002-08-27 05:55:31 +0000830 }
831
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000832 anti_pattern = ~pattern;
Simon Glass5512d5b2013-02-28 17:47:14 +0000833 addr[offset] = anti_pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000834 }
835
836 /*
837 * Check each location for the inverted pattern and zero it.
838 */
839 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
840 WATCHDOG_RESET();
841 anti_pattern = ~pattern;
Simon Glass5512d5b2013-02-28 17:47:14 +0000842 temp = addr[offset];
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000843 if (temp != anti_pattern) {
Simon Glassc9638f52013-02-24 17:33:16 +0000844 printf("\nFAILURE (read/write): @ 0x%.8lx:"
wdenk38635852002-08-27 05:55:31 +0000845 " expected 0x%.8lx, actual 0x%.8lx)\n",
Simon Glass5512d5b2013-02-28 17:47:14 +0000846 start_addr + offset, anti_pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400847 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000848 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000849 return -1;
wdenk38635852002-08-27 05:55:31 +0000850 }
Simon Glass5512d5b2013-02-28 17:47:14 +0000851 addr[offset] = 0;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000852 }
Simon Glass51209b12013-02-24 17:33:17 +0000853
854 return 0;
Simon Glassc9638f52013-02-24 17:33:16 +0000855}
wdenk38635852002-08-27 05:55:31 +0000856
Simon Glass5512d5b2013-02-28 17:47:14 +0000857static ulong mem_test_quick(vu_long *buf, ulong start_addr, ulong end_addr,
858 vu_long pattern, int iteration)
Simon Glassc9638f52013-02-24 17:33:16 +0000859{
Simon Glass5512d5b2013-02-28 17:47:14 +0000860 vu_long *end;
Simon Glassc9638f52013-02-24 17:33:16 +0000861 vu_long *addr;
Simon Glassc9638f52013-02-24 17:33:16 +0000862 ulong errs = 0;
Simon Glass5512d5b2013-02-28 17:47:14 +0000863 ulong incr, length;
Simon Glassc9638f52013-02-24 17:33:16 +0000864 ulong val, readback;
865
Simon Glass51209b12013-02-24 17:33:17 +0000866 /* Alternate the pattern */
wdenk38635852002-08-27 05:55:31 +0000867 incr = 1;
Simon Glass51209b12013-02-24 17:33:17 +0000868 if (iteration & 1) {
869 incr = -incr;
870 /*
871 * Flip the pattern each time to make lots of zeros and
872 * then, the next time, lots of ones. We decrement
873 * the "negative" patterns and increment the "positive"
874 * patterns to preserve this feature.
875 */
876 if (pattern & 0x80000000)
877 pattern = -pattern; /* complement & increment */
878 else
879 pattern = ~pattern;
880 }
Simon Glass5512d5b2013-02-28 17:47:14 +0000881 length = (end_addr - start_addr) / sizeof(ulong);
882 end = buf + length;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000883 printf("\rPattern %08lX Writing..."
884 "%12s"
885 "\b\b\b\b\b\b\b\b\b\b",
886 pattern, "");
wdenk38635852002-08-27 05:55:31 +0000887
Simon Glass5512d5b2013-02-28 17:47:14 +0000888 for (addr = buf, val = pattern; addr < end; addr++) {
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000889 WATCHDOG_RESET();
890 *addr = val;
891 val += incr;
892 }
wdenk38635852002-08-27 05:55:31 +0000893
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000894 puts("Reading...");
wdenk38635852002-08-27 05:55:31 +0000895
Simon Glass5512d5b2013-02-28 17:47:14 +0000896 for (addr = buf, val = pattern; addr < end; addr++) {
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000897 WATCHDOG_RESET();
898 readback = *addr;
899 if (readback != val) {
Simon Glass5512d5b2013-02-28 17:47:14 +0000900 ulong offset = addr - buf;
901
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000902 printf("\nMem error @ 0x%08X: "
903 "found %08lX, expected %08lX\n",
Simon Glass5512d5b2013-02-28 17:47:14 +0000904 (uint)(uintptr_t)(start_addr + offset),
905 readback, val);
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000906 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000907 if (ctrlc())
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000908 return -1;
wdenk38635852002-08-27 05:55:31 +0000909 }
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000910 val += incr;
911 }
wdenk38635852002-08-27 05:55:31 +0000912
Simon Glass51209b12013-02-24 17:33:17 +0000913 return 0;
Simon Glassc9638f52013-02-24 17:33:16 +0000914}
915
916/*
917 * Perform a memory test. A more complete alternative test can be
918 * configured using CONFIG_SYS_ALT_MEMTEST. The complete test loops until
919 * interrupted by ctrl-c or by a failure of one of the sub-tests.
920 */
921static int do_mem_mtest(cmd_tbl_t *cmdtp, int flag, int argc,
922 char * const argv[])
923{
Simon Glass8c86bbe2013-02-24 17:33:20 +0000924 ulong start, end;
Simon Glass5512d5b2013-02-28 17:47:14 +0000925 vu_long *buf, *dummy;
Simon Glassc9638f52013-02-24 17:33:16 +0000926 int iteration_limit;
927 int ret;
Simon Glass51209b12013-02-24 17:33:17 +0000928 ulong errs = 0; /* number of errors, or -1 if interrupted */
Simon Glassc9638f52013-02-24 17:33:16 +0000929 ulong pattern;
Simon Glass51209b12013-02-24 17:33:17 +0000930 int iteration;
Simon Glassc9638f52013-02-24 17:33:16 +0000931#if defined(CONFIG_SYS_ALT_MEMTEST)
932 const int alt_test = 1;
933#else
934 const int alt_test = 0;
wdenk38635852002-08-27 05:55:31 +0000935#endif
Simon Glassc9638f52013-02-24 17:33:16 +0000936
937 if (argc > 1)
Simon Glass8c86bbe2013-02-24 17:33:20 +0000938 start = simple_strtoul(argv[1], NULL, 16);
Simon Glassc9638f52013-02-24 17:33:16 +0000939 else
Simon Glass8c86bbe2013-02-24 17:33:20 +0000940 start = CONFIG_SYS_MEMTEST_START;
Simon Glassc9638f52013-02-24 17:33:16 +0000941
942 if (argc > 2)
Simon Glass8c86bbe2013-02-24 17:33:20 +0000943 end = simple_strtoul(argv[2], NULL, 16);
Simon Glassc9638f52013-02-24 17:33:16 +0000944 else
Simon Glass8c86bbe2013-02-24 17:33:20 +0000945 end = CONFIG_SYS_MEMTEST_END;
Simon Glassc9638f52013-02-24 17:33:16 +0000946
947 if (argc > 3)
948 pattern = (ulong)simple_strtoul(argv[3], NULL, 16);
949 else
950 pattern = 0;
951
952 if (argc > 4)
953 iteration_limit = (ulong)simple_strtoul(argv[4], NULL, 16);
954 else
955 iteration_limit = 0;
956
Simon Glass8c86bbe2013-02-24 17:33:20 +0000957 printf("Testing %08x ... %08x:\n", (uint)start, (uint)end);
958 debug("%s:%d: start %#08lx end %#08lx\n", __func__, __LINE__,
959 start, end);
Simon Glass51209b12013-02-24 17:33:17 +0000960
Simon Glass5512d5b2013-02-28 17:47:14 +0000961 buf = map_sysmem(start, end - start);
962 dummy = map_sysmem(CONFIG_SYS_MEMTEST_SCRATCH, sizeof(vu_long));
Simon Glass51209b12013-02-24 17:33:17 +0000963 for (iteration = 0;
964 !iteration_limit || iteration < iteration_limit;
965 iteration++) {
966 if (ctrlc()) {
Simon Glass51209b12013-02-24 17:33:17 +0000967 errs = -1UL;
968 break;
969 }
970
971 printf("Iteration: %6d\r", iteration + 1);
972 debug("\n");
Simon Glass5512d5b2013-02-28 17:47:14 +0000973 if (alt_test) {
974 errs = mem_test_alt(buf, start, end, dummy);
975 } else {
976 errs = mem_test_quick(buf, start, end, pattern,
977 iteration);
978 }
979 if (errs == -1UL)
980 break;
981 }
982
983 /*
984 * Work-around for eldk-4.2 which gives this warning if we try to
985 * case in the unmap_sysmem() call:
986 * warning: initialization discards qualifiers from pointer target type
987 */
988 {
989 void *vbuf = (void *)buf;
990 void *vdummy = (void *)dummy;
991
992 unmap_sysmem(vbuf);
993 unmap_sysmem(vdummy);
Simon Glass51209b12013-02-24 17:33:17 +0000994 }
995
996 if (errs == -1UL) {
Simon Glassc44d4382013-02-24 17:33:19 +0000997 /* Memory test was aborted - write a newline to finish off */
998 putc('\n');
Simon Glass51209b12013-02-24 17:33:17 +0000999 ret = 1;
1000 } else {
1001 printf("Tested %d iteration(s) with %lu errors.\n",
1002 iteration, errs);
1003 ret = errs != 0;
1004 }
Simon Glassc9638f52013-02-24 17:33:16 +00001005
1006 return ret; /* not reached */
wdenk38635852002-08-27 05:55:31 +00001007}
Wolfgang Denka2681702013-03-08 10:51:32 +00001008#endif /* CONFIG_CMD_MEMTEST */
wdenk38635852002-08-27 05:55:31 +00001009
1010/* Modify memory.
1011 *
1012 * Syntax:
1013 * mm{.b, .w, .l} {addr}
1014 * nm{.b, .w, .l} {addr}
1015 */
1016static int
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001017mod_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +00001018{
wdenk27b207f2003-07-24 23:38:38 +00001019 ulong addr, i;
1020 int nbytes, size;
Simon Glass0628ab82013-02-24 17:33:15 +00001021 void *ptr = NULL;
wdenk38635852002-08-27 05:55:31 +00001022
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001023 if (argc != 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001024 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +00001025
1026#ifdef CONFIG_BOOT_RETRY_TIME
1027 reset_cmd_timeout(); /* got a good command to get here */
1028#endif
1029 /* We use the last specified parameters, unless new ones are
1030 * entered.
1031 */
1032 addr = mm_last_addr;
1033 size = mm_last_size;
1034
1035 if ((flag & CMD_FLAG_REPEAT) == 0) {
1036 /* New command specified. Check for a size specification.
1037 * Defaults to long if no or incorrect specification.
1038 */
wdenk27b207f2003-07-24 23:38:38 +00001039 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
1040 return 1;
wdenk38635852002-08-27 05:55:31 +00001041
1042 /* Address is specified since argc > 1
1043 */
1044 addr = simple_strtoul(argv[1], NULL, 16);
1045 addr += base_address;
1046 }
1047
wdenk2abbe072003-06-16 23:50:08 +00001048#ifdef CONFIG_HAS_DATAFLASH
1049 if (addr_dataflash(addr)){
wdenk4b9206e2004-03-23 22:14:11 +00001050 puts ("Can't modify DataFlash in place. Use cp instead.\n\r");
wdenk2abbe072003-06-16 23:50:08 +00001051 return 0;
1052 }
1053#endif
1054
Mike Frysinger4c727c72008-02-04 19:26:56 -05001055#ifdef CONFIG_BLACKFIN
1056 if (addr_bfin_on_chip_mem(addr)) {
1057 puts ("Can't modify L1 instruction in place. Use cp instead.\n\r");
1058 return 0;
1059 }
1060#endif
1061
wdenk38635852002-08-27 05:55:31 +00001062 /* Print the address, followed by value. Then accept input for
1063 * the next value. A non-converted value exits.
1064 */
1065 do {
Simon Glass0628ab82013-02-24 17:33:15 +00001066 ptr = map_sysmem(addr, size);
wdenk38635852002-08-27 05:55:31 +00001067 printf("%08lx:", addr);
1068 if (size == 4)
Simon Glass0628ab82013-02-24 17:33:15 +00001069 printf(" %08x", *((uint *)ptr));
wdenk38635852002-08-27 05:55:31 +00001070 else if (size == 2)
Simon Glass0628ab82013-02-24 17:33:15 +00001071 printf(" %04x", *((ushort *)ptr));
wdenk38635852002-08-27 05:55:31 +00001072 else
Simon Glass0628ab82013-02-24 17:33:15 +00001073 printf(" %02x", *((u_char *)ptr));
wdenk38635852002-08-27 05:55:31 +00001074
1075 nbytes = readline (" ? ");
1076 if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) {
1077 /* <CR> pressed as only input, don't modify current
1078 * location and move to next. "-" pressed will go back.
1079 */
1080 if (incrflag)
1081 addr += nbytes ? -size : size;
1082 nbytes = 1;
1083#ifdef CONFIG_BOOT_RETRY_TIME
1084 reset_cmd_timeout(); /* good enough to not time out */
1085#endif
1086 }
1087#ifdef CONFIG_BOOT_RETRY_TIME
1088 else if (nbytes == -2) {
1089 break; /* timed out, exit the command */
1090 }
1091#endif
1092 else {
1093 char *endp;
1094 i = simple_strtoul(console_buffer, &endp, 16);
1095 nbytes = endp - console_buffer;
1096 if (nbytes) {
1097#ifdef CONFIG_BOOT_RETRY_TIME
1098 /* good enough to not time out
1099 */
1100 reset_cmd_timeout();
1101#endif
1102 if (size == 4)
Simon Glass0628ab82013-02-24 17:33:15 +00001103 *((uint *)ptr) = i;
wdenk38635852002-08-27 05:55:31 +00001104 else if (size == 2)
Simon Glass0628ab82013-02-24 17:33:15 +00001105 *((ushort *)ptr) = i;
wdenk38635852002-08-27 05:55:31 +00001106 else
Simon Glass0628ab82013-02-24 17:33:15 +00001107 *((u_char *)ptr) = i;
wdenk38635852002-08-27 05:55:31 +00001108 if (incrflag)
1109 addr += size;
1110 }
1111 }
1112 } while (nbytes);
Simon Glass0628ab82013-02-24 17:33:15 +00001113 if (ptr)
1114 unmap_sysmem(ptr);
wdenk38635852002-08-27 05:55:31 +00001115
1116 mm_last_addr = addr;
1117 mm_last_size = size;
1118 return 0;
1119}
1120
Mike Frysinger710b9932010-12-21 14:19:51 -05001121#ifdef CONFIG_CMD_CRC32
1122
Kim Phillips088f1b12012-10-29 13:34:31 +00001123static int do_mem_crc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +00001124{
Simon Glassd20a40d2013-02-24 20:30:22 +00001125 int flags = 0;
1126 int ac;
1127 char * const *av;
wdenk38635852002-08-27 05:55:31 +00001128
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001129 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001130 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +00001131
wdenkc26e4542004-04-18 10:13:26 +00001132 av = argv + 1;
1133 ac = argc - 1;
Simon Glassd20a40d2013-02-24 20:30:22 +00001134#ifdef CONFIG_HASH_VERIFY
wdenkc26e4542004-04-18 10:13:26 +00001135 if (strcmp(*av, "-v") == 0) {
Simon Glassd20a40d2013-02-24 20:30:22 +00001136 flags |= HASH_FLAG_VERIFY;
wdenkc26e4542004-04-18 10:13:26 +00001137 av++;
1138 ac--;
wdenkc26e4542004-04-18 10:13:26 +00001139 }
Simon Glassd20a40d2013-02-24 20:30:22 +00001140#endif
wdenkc26e4542004-04-18 10:13:26 +00001141
Simon Glassd20a40d2013-02-24 20:30:22 +00001142 return hash_command("crc32", flags, cmdtp, flag, ac, av);
wdenkc26e4542004-04-18 10:13:26 +00001143}
wdenkc26e4542004-04-18 10:13:26 +00001144
Mike Frysinger710b9932010-12-21 14:19:51 -05001145#endif
1146
wdenk8bde7f72003-06-27 21:31:46 +00001147/**************************************************/
wdenk0d498392003-07-01 21:06:45 +00001148U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001149 md, 3, 1, do_mem_md,
Peter Tyser2fb26042009-01-27 18:03:12 -06001150 "memory display",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001151 "[.b, .w, .l] address [# of objects]"
wdenk8bde7f72003-06-27 21:31:46 +00001152);
1153
1154
wdenk0d498392003-07-01 21:06:45 +00001155U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001156 mm, 2, 1, do_mem_mm,
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001157 "memory modify (auto-incrementing address)",
1158 "[.b, .w, .l] address"
wdenk8bde7f72003-06-27 21:31:46 +00001159);
1160
1161
wdenk0d498392003-07-01 21:06:45 +00001162U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001163 nm, 2, 1, do_mem_nm,
Peter Tyser2fb26042009-01-27 18:03:12 -06001164 "memory modify (constant address)",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001165 "[.b, .w, .l] address"
wdenk8bde7f72003-06-27 21:31:46 +00001166);
1167
wdenk0d498392003-07-01 21:06:45 +00001168U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001169 mw, 4, 1, do_mem_mw,
Peter Tyser2fb26042009-01-27 18:03:12 -06001170 "memory write (fill)",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001171 "[.b, .w, .l] address value [count]"
wdenk8bde7f72003-06-27 21:31:46 +00001172);
1173
wdenk0d498392003-07-01 21:06:45 +00001174U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001175 cp, 4, 1, do_mem_cp,
Peter Tyser2fb26042009-01-27 18:03:12 -06001176 "memory copy",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001177 "[.b, .w, .l] source target count"
wdenk8bde7f72003-06-27 21:31:46 +00001178);
1179
wdenk0d498392003-07-01 21:06:45 +00001180U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001181 cmp, 4, 1, do_mem_cmp,
Peter Tyser2fb26042009-01-27 18:03:12 -06001182 "memory compare",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001183 "[.b, .w, .l] addr1 addr2 count"
wdenk8bde7f72003-06-27 21:31:46 +00001184);
1185
Mike Frysinger710b9932010-12-21 14:19:51 -05001186#ifdef CONFIG_CMD_CRC32
1187
wdenkc26e4542004-04-18 10:13:26 +00001188#ifndef CONFIG_CRC32_VERIFY
1189
wdenk0d498392003-07-01 21:06:45 +00001190U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001191 crc32, 4, 1, do_mem_crc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001192 "checksum calculation",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001193 "address count [addr]\n - compute CRC32 checksum [save at addr]"
wdenk8bde7f72003-06-27 21:31:46 +00001194);
1195
wdenkc26e4542004-04-18 10:13:26 +00001196#else /* CONFIG_CRC32_VERIFY */
1197
1198U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001199 crc32, 5, 1, do_mem_crc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001200 "checksum calculation",
wdenkc26e4542004-04-18 10:13:26 +00001201 "address count [addr]\n - compute CRC32 checksum [save at addr]\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001202 "-v address count crc\n - verify crc of memory area"
wdenkc26e4542004-04-18 10:13:26 +00001203);
1204
1205#endif /* CONFIG_CRC32_VERIFY */
1206
Mike Frysinger710b9932010-12-21 14:19:51 -05001207#endif
1208
Simon Glass15a33e42012-11-30 13:01:20 +00001209#ifdef CONFIG_CMD_MEMINFO
1210__weak void board_show_dram(ulong size)
1211{
1212 puts("DRAM: ");
1213 print_size(size, "\n");
1214}
1215
1216static int do_mem_info(cmd_tbl_t *cmdtp, int flag, int argc,
1217 char * const argv[])
1218{
1219 board_show_dram(gd->ram_size);
1220
1221 return 0;
1222}
1223#endif
1224
wdenk0d498392003-07-01 21:06:45 +00001225U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001226 base, 2, 1, do_mem_base,
Peter Tyser2fb26042009-01-27 18:03:12 -06001227 "print or set address offset",
wdenk8bde7f72003-06-27 21:31:46 +00001228 "\n - print address offset for memory commands\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001229 "base off\n - set address offset for memory commands to 'off'"
wdenk8bde7f72003-06-27 21:31:46 +00001230);
1231
wdenk0d498392003-07-01 21:06:45 +00001232U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001233 loop, 3, 1, do_mem_loop,
Peter Tyser2fb26042009-01-27 18:03:12 -06001234 "infinite loop on address range",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001235 "[.b, .w, .l] address number_of_objects"
wdenk8bde7f72003-06-27 21:31:46 +00001236);
1237
wdenk56523f12004-07-11 17:40:54 +00001238#ifdef CONFIG_LOOPW
1239U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001240 loopw, 4, 1, do_mem_loopw,
Peter Tyser2fb26042009-01-27 18:03:12 -06001241 "infinite write loop on address range",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001242 "[.b, .w, .l] address number_of_objects data_to_write"
wdenk56523f12004-07-11 17:40:54 +00001243);
1244#endif /* CONFIG_LOOPW */
1245
Wolfgang Denka2681702013-03-08 10:51:32 +00001246#ifdef CONFIG_CMD_MEMTEST
wdenk0d498392003-07-01 21:06:45 +00001247U_BOOT_CMD(
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +01001248 mtest, 5, 1, do_mem_mtest,
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001249 "simple RAM read/write test",
1250 "[start [end [pattern [iterations]]]]"
wdenk8bde7f72003-06-27 21:31:46 +00001251);
Wolfgang Denka2681702013-03-08 10:51:32 +00001252#endif /* CONFIG_CMD_MEMTEST */
wdenk8bde7f72003-06-27 21:31:46 +00001253
stroese4aaf29b2004-12-16 17:42:39 +00001254#ifdef CONFIG_MX_CYCLIC
1255U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001256 mdc, 4, 1, do_mem_mdc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001257 "memory display cyclic",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001258 "[.b, .w, .l] address count delay(ms)"
stroese4aaf29b2004-12-16 17:42:39 +00001259);
1260
1261U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001262 mwc, 4, 1, do_mem_mwc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001263 "memory write cyclic",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001264 "[.b, .w, .l] address value delay(ms)"
stroese4aaf29b2004-12-16 17:42:39 +00001265);
1266#endif /* CONFIG_MX_CYCLIC */
Simon Glass15a33e42012-11-30 13:01:20 +00001267
1268#ifdef CONFIG_CMD_MEMINFO
1269U_BOOT_CMD(
1270 meminfo, 3, 1, do_mem_info,
1271 "display memory information",
1272 ""
1273);
1274#endif