blob: 509b400b240fd66d7161a54b2060e8d83551ccde [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk38635852002-08-27 05:55:31 +00002/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk38635852002-08-27 05:55:31 +00005 */
6
7/*
8 * Memory Functions
9 *
10 * Copied from FADS ROM, Dan Malek (dmalek@jlc.net)
11 */
12
13#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -070014#include <console.h>
Simon Glass0098e172014-04-10 20:01:30 -060015#include <bootretry.h>
Simon Glass18d66532014-04-10 20:01:25 -060016#include <cli.h>
wdenk38635852002-08-27 05:55:31 +000017#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070018#include <console.h>
Simon Glassd20a40d2013-02-24 20:30:22 +000019#include <hash.h>
Simon Glasse48f3742014-11-11 12:47:07 -070020#include <inttypes.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050021#include <mapmem.h>
Sergei Poselenova6e6fc62008-04-09 16:09:41 +020022#include <watchdog.h>
Simon Glass0628ab82013-02-24 17:33:15 +000023#include <asm/io.h>
Simon Glass15a33e42012-11-30 13:01:20 +000024#include <linux/compiler.h>
25
26DECLARE_GLOBAL_DATA_PTR;
wdenk38635852002-08-27 05:55:31 +000027
Simon Glass8e169cc2013-02-24 17:33:29 +000028#ifndef CONFIG_SYS_MEMTEST_SCRATCH
29#define CONFIG_SYS_MEMTEST_SCRATCH 0
30#endif
31
Wolfgang Denk54841ab2010-06-28 22:00:46 +020032static int mod_mem(cmd_tbl_t *, int, int, int, char * const []);
wdenk38635852002-08-27 05:55:31 +000033
34/* Display values from last command.
35 * Memory modify remembered values are different from display memory.
36 */
Scott Wood581508b2015-03-19 09:43:12 -070037static ulong dp_last_addr, dp_last_size;
38static ulong dp_last_length = 0x40;
39static ulong mm_last_addr, mm_last_size;
wdenk38635852002-08-27 05:55:31 +000040
41static ulong base_address = 0;
42
43/* Memory Display
44 *
45 * Syntax:
York Sun4d1fd7f2014-02-26 17:03:19 -080046 * md{.b, .w, .l, .q} {addr} {len}
wdenk38635852002-08-27 05:55:31 +000047 */
48#define DISP_LINE_LEN 16
Kim Phillips088f1b12012-10-29 13:34:31 +000049static int do_mem_md(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000050{
Tuomas Tynkkynenc68c03f2017-10-10 21:59:42 +030051 ulong addr, length, bytes;
52 const void *buf;
wdenk27b207f2003-07-24 23:38:38 +000053 int size;
wdenk38635852002-08-27 05:55:31 +000054 int rc = 0;
55
56 /* We use the last specified parameters, unless new ones are
57 * entered.
58 */
59 addr = dp_last_addr;
60 size = dp_last_size;
61 length = dp_last_length;
62
Wolfgang Denk47e26b12010-07-17 01:06:04 +020063 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +000064 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +000065
66 if ((flag & CMD_FLAG_REPEAT) == 0) {
67 /* New command specified. Check for a size specification.
68 * Defaults to long if no or incorrect specification.
69 */
wdenk27b207f2003-07-24 23:38:38 +000070 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
71 return 1;
wdenk38635852002-08-27 05:55:31 +000072
73 /* Address is specified since argc > 1
74 */
75 addr = simple_strtoul(argv[1], NULL, 16);
76 addr += base_address;
77
78 /* If another parameter, it is the length to display.
79 * Length is the number of objects, not number of bytes.
80 */
81 if (argc > 2)
82 length = simple_strtoul(argv[2], NULL, 16);
83 }
84
Tuomas Tynkkynenc68c03f2017-10-10 21:59:42 +030085 bytes = size * length;
86 buf = map_sysmem(addr, bytes);
wdenk2abbe072003-06-16 23:50:08 +000087
Tuomas Tynkkynenc68c03f2017-10-10 21:59:42 +030088 /* Print the lines. */
89 print_buffer(addr, buf, size, length, DISP_LINE_LEN / size);
90 addr += bytes;
91 unmap_sysmem(buf);
wdenk38635852002-08-27 05:55:31 +000092
93 dp_last_addr = addr;
94 dp_last_length = length;
95 dp_last_size = size;
96 return (rc);
97}
98
Kim Phillips088f1b12012-10-29 13:34:31 +000099static int do_mem_mm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000100{
101 return mod_mem (cmdtp, 1, flag, argc, argv);
102}
Kim Phillips088f1b12012-10-29 13:34:31 +0000103static int do_mem_nm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000104{
105 return mod_mem (cmdtp, 0, flag, argc, argv);
106}
107
Kim Phillips088f1b12012-10-29 13:34:31 +0000108static int do_mem_mw(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000109{
York Sun4d1fd7f2014-02-26 17:03:19 -0800110#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
111 u64 writeval;
112#else
113 ulong writeval;
114#endif
115 ulong addr, count;
wdenk27b207f2003-07-24 23:38:38 +0000116 int size;
Simon Glasscc5e1962015-03-05 12:25:18 -0700117 void *buf, *start;
Simon Glass0628ab82013-02-24 17:33:15 +0000118 ulong bytes;
wdenk38635852002-08-27 05:55:31 +0000119
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200120 if ((argc < 3) || (argc > 4))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000121 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000122
123 /* Check for size specification.
124 */
wdenk27b207f2003-07-24 23:38:38 +0000125 if ((size = cmd_get_data_size(argv[0], 4)) < 1)
126 return 1;
wdenk38635852002-08-27 05:55:31 +0000127
128 /* Address is specified since argc > 1
129 */
130 addr = simple_strtoul(argv[1], NULL, 16);
131 addr += base_address;
132
133 /* Get the value to write.
134 */
York Sun4d1fd7f2014-02-26 17:03:19 -0800135#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
136 writeval = simple_strtoull(argv[2], NULL, 16);
137#else
wdenk38635852002-08-27 05:55:31 +0000138 writeval = simple_strtoul(argv[2], NULL, 16);
York Sun4d1fd7f2014-02-26 17:03:19 -0800139#endif
wdenk38635852002-08-27 05:55:31 +0000140
141 /* Count ? */
142 if (argc == 4) {
143 count = simple_strtoul(argv[3], NULL, 16);
144 } else {
145 count = 1;
146 }
147
Simon Glass0628ab82013-02-24 17:33:15 +0000148 bytes = size * count;
Simon Glasscc5e1962015-03-05 12:25:18 -0700149 start = map_sysmem(addr, bytes);
150 buf = start;
wdenk38635852002-08-27 05:55:31 +0000151 while (count-- > 0) {
152 if (size == 4)
York Sun76698b42014-02-12 15:55:35 -0800153 *((u32 *)buf) = (u32)writeval;
York Sun4d1fd7f2014-02-26 17:03:19 -0800154#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
155 else if (size == 8)
156 *((u64 *)buf) = (u64)writeval;
157#endif
wdenk38635852002-08-27 05:55:31 +0000158 else if (size == 2)
York Sun76698b42014-02-12 15:55:35 -0800159 *((u16 *)buf) = (u16)writeval;
wdenk38635852002-08-27 05:55:31 +0000160 else
York Sun76698b42014-02-12 15:55:35 -0800161 *((u8 *)buf) = (u8)writeval;
Simon Glass0628ab82013-02-24 17:33:15 +0000162 buf += size;
wdenk38635852002-08-27 05:55:31 +0000163 }
Simon Glasscc5e1962015-03-05 12:25:18 -0700164 unmap_sysmem(start);
wdenk38635852002-08-27 05:55:31 +0000165 return 0;
166}
167
stroese4aaf29b2004-12-16 17:42:39 +0000168#ifdef CONFIG_MX_CYCLIC
Masahiro Yamada5a8608e2014-09-04 00:38:26 +0900169static int do_mem_mdc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroese4aaf29b2004-12-16 17:42:39 +0000170{
171 int i;
172 ulong count;
173
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200174 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000175 return CMD_RET_USAGE;
stroese4aaf29b2004-12-16 17:42:39 +0000176
177 count = simple_strtoul(argv[3], NULL, 10);
178
179 for (;;) {
180 do_mem_md (NULL, 0, 3, argv);
181
182 /* delay for <count> ms... */
183 for (i=0; i<count; i++)
184 udelay (1000);
185
186 /* check for ctrl-c to abort... */
187 if (ctrlc()) {
188 puts("Abort\n");
189 return 0;
190 }
191 }
192
193 return 0;
194}
195
Masahiro Yamada5a8608e2014-09-04 00:38:26 +0900196static int do_mem_mwc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroese4aaf29b2004-12-16 17:42:39 +0000197{
198 int i;
199 ulong count;
200
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200201 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000202 return CMD_RET_USAGE;
stroese4aaf29b2004-12-16 17:42:39 +0000203
204 count = simple_strtoul(argv[3], NULL, 10);
205
206 for (;;) {
207 do_mem_mw (NULL, 0, 3, argv);
208
209 /* delay for <count> ms... */
210 for (i=0; i<count; i++)
211 udelay (1000);
212
213 /* check for ctrl-c to abort... */
214 if (ctrlc()) {
215 puts("Abort\n");
216 return 0;
217 }
218 }
219
220 return 0;
221}
222#endif /* CONFIG_MX_CYCLIC */
223
Kim Phillips088f1b12012-10-29 13:34:31 +0000224static int do_mem_cmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000225{
Simon Glass0628ab82013-02-24 17:33:15 +0000226 ulong addr1, addr2, count, ngood, bytes;
wdenk27b207f2003-07-24 23:38:38 +0000227 int size;
wdenk38635852002-08-27 05:55:31 +0000228 int rcode = 0;
Mike Frysinger054ea172012-01-20 09:07:21 +0000229 const char *type;
Simon Glass0628ab82013-02-24 17:33:15 +0000230 const void *buf1, *buf2, *base;
York Sun4d1fd7f2014-02-26 17:03:19 -0800231#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
232 u64 word1, word2;
233#else
234 ulong word1, word2;
235#endif
wdenk38635852002-08-27 05:55:31 +0000236
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200237 if (argc != 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000238 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000239
240 /* Check for size specification.
241 */
wdenk27b207f2003-07-24 23:38:38 +0000242 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
243 return 1;
York Sun4d1fd7f2014-02-26 17:03:19 -0800244 type = size == 8 ? "double word" :
245 size == 4 ? "word" :
246 size == 2 ? "halfword" : "byte";
wdenk38635852002-08-27 05:55:31 +0000247
248 addr1 = simple_strtoul(argv[1], NULL, 16);
249 addr1 += base_address;
250
251 addr2 = simple_strtoul(argv[2], NULL, 16);
252 addr2 += base_address;
253
254 count = simple_strtoul(argv[3], NULL, 16);
255
Simon Glass0628ab82013-02-24 17:33:15 +0000256 bytes = size * count;
257 base = buf1 = map_sysmem(addr1, bytes);
258 buf2 = map_sysmem(addr2, bytes);
Mike Frysingerfeb12a12012-01-20 09:07:22 +0000259 for (ngood = 0; ngood < count; ++ngood) {
wdenk38635852002-08-27 05:55:31 +0000260 if (size == 4) {
York Sun76698b42014-02-12 15:55:35 -0800261 word1 = *(u32 *)buf1;
262 word2 = *(u32 *)buf2;
York Sun4d1fd7f2014-02-26 17:03:19 -0800263#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
264 } else if (size == 8) {
265 word1 = *(u64 *)buf1;
266 word2 = *(u64 *)buf2;
267#endif
Mike Frysinger054ea172012-01-20 09:07:21 +0000268 } else if (size == 2) {
York Sun76698b42014-02-12 15:55:35 -0800269 word1 = *(u16 *)buf1;
270 word2 = *(u16 *)buf2;
Mike Frysinger054ea172012-01-20 09:07:21 +0000271 } else {
York Sun76698b42014-02-12 15:55:35 -0800272 word1 = *(u8 *)buf1;
273 word2 = *(u8 *)buf2;
wdenk38635852002-08-27 05:55:31 +0000274 }
Mike Frysinger054ea172012-01-20 09:07:21 +0000275 if (word1 != word2) {
Simon Glass0628ab82013-02-24 17:33:15 +0000276 ulong offset = buf1 - base;
York Sun4d1fd7f2014-02-26 17:03:19 -0800277#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
Simon Glasse48f3742014-11-11 12:47:07 -0700278 printf("%s at 0x%p (%#0*"PRIx64") != %s at 0x%p (%#0*"
279 PRIx64 ")\n",
York Sun4d1fd7f2014-02-26 17:03:19 -0800280 type, (void *)(addr1 + offset), size, word1,
281 type, (void *)(addr2 + offset), size, word2);
282#else
Mike Frysinger054ea172012-01-20 09:07:21 +0000283 printf("%s at 0x%08lx (%#0*lx) != %s at 0x%08lx (%#0*lx)\n",
Simon Glass0628ab82013-02-24 17:33:15 +0000284 type, (ulong)(addr1 + offset), size, word1,
285 type, (ulong)(addr2 + offset), size, word2);
York Sun4d1fd7f2014-02-26 17:03:19 -0800286#endif
Mike Frysinger054ea172012-01-20 09:07:21 +0000287 rcode = 1;
288 break;
wdenk38635852002-08-27 05:55:31 +0000289 }
Mike Frysinger054ea172012-01-20 09:07:21 +0000290
Simon Glass0628ab82013-02-24 17:33:15 +0000291 buf1 += size;
292 buf2 += size;
Stefan Roeseeaadb442010-09-13 11:10:34 +0200293
294 /* reset watchdog from time to time */
Mike Frysingerfeb12a12012-01-20 09:07:22 +0000295 if ((ngood % (64 << 10)) == 0)
Stefan Roeseeaadb442010-09-13 11:10:34 +0200296 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000297 }
Simon Glass0628ab82013-02-24 17:33:15 +0000298 unmap_sysmem(buf1);
299 unmap_sysmem(buf2);
wdenk38635852002-08-27 05:55:31 +0000300
Mike Frysinger054ea172012-01-20 09:07:21 +0000301 printf("Total of %ld %s(s) were the same\n", ngood, type);
wdenk38635852002-08-27 05:55:31 +0000302 return rcode;
303}
304
Kim Phillips088f1b12012-10-29 13:34:31 +0000305static int do_mem_cp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000306{
Fabio Estevamc2538422016-12-15 16:00:13 -0200307 ulong addr, dest, count;
wdenk27b207f2003-07-24 23:38:38 +0000308 int size;
wdenk38635852002-08-27 05:55:31 +0000309
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200310 if (argc != 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000311 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000312
313 /* Check for size specification.
314 */
wdenk27b207f2003-07-24 23:38:38 +0000315 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
316 return 1;
wdenk38635852002-08-27 05:55:31 +0000317
318 addr = simple_strtoul(argv[1], NULL, 16);
319 addr += base_address;
320
321 dest = simple_strtoul(argv[2], NULL, 16);
322 dest += base_address;
323
324 count = simple_strtoul(argv[3], NULL, 16);
325
326 if (count == 0) {
327 puts ("Zero length ???\n");
328 return 1;
329 }
330
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900331#ifdef CONFIG_MTD_NOR_FLASH
wdenk38635852002-08-27 05:55:31 +0000332 /* check if we are copying to Flash */
Tuomas Tynkkynenc68c03f2017-10-10 21:59:42 +0300333 if (addr2info(dest) != NULL) {
wdenk38635852002-08-27 05:55:31 +0000334 int rc;
335
wdenk4b9206e2004-03-23 22:14:11 +0000336 puts ("Copy to Flash... ");
wdenk38635852002-08-27 05:55:31 +0000337
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200338 rc = flash_write ((char *)addr, dest, count*size);
wdenk38635852002-08-27 05:55:31 +0000339 if (rc != 0) {
340 flash_perror (rc);
341 return (1);
342 }
343 puts ("done\n");
344 return 0;
345 }
346#endif
347
Fabio Estevamc2538422016-12-15 16:00:13 -0200348 memcpy((void *)dest, (void *)addr, count * size);
Masahiro Yamadaa3a47492014-10-23 17:46:24 +0900349
wdenk38635852002-08-27 05:55:31 +0000350 return 0;
351}
352
Kim Phillips088f1b12012-10-29 13:34:31 +0000353static int do_mem_base(cmd_tbl_t *cmdtp, int flag, int argc,
354 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000355{
356 if (argc > 1) {
357 /* Set new base address.
358 */
359 base_address = simple_strtoul(argv[1], NULL, 16);
360 }
361 /* Print the current base address.
362 */
363 printf("Base Address: 0x%08lx\n", base_address);
364 return 0;
365}
366
Kim Phillips088f1b12012-10-29 13:34:31 +0000367static int do_mem_loop(cmd_tbl_t *cmdtp, int flag, int argc,
368 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000369{
Simon Glass0628ab82013-02-24 17:33:15 +0000370 ulong addr, length, i, bytes;
wdenk27b207f2003-07-24 23:38:38 +0000371 int size;
York Sun4d1fd7f2014-02-26 17:03:19 -0800372#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
373 volatile u64 *llp;
374#endif
York Sun76698b42014-02-12 15:55:35 -0800375 volatile u32 *longp;
376 volatile u16 *shortp;
377 volatile u8 *cp;
Simon Glass0628ab82013-02-24 17:33:15 +0000378 const void *buf;
wdenk38635852002-08-27 05:55:31 +0000379
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200380 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000381 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000382
Robert P. J. Day85de63e2013-02-03 02:29:54 +0000383 /*
384 * Check for a size specification.
wdenk38635852002-08-27 05:55:31 +0000385 * Defaults to long if no or incorrect specification.
386 */
wdenk27b207f2003-07-24 23:38:38 +0000387 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
388 return 1;
wdenk38635852002-08-27 05:55:31 +0000389
390 /* Address is always specified.
391 */
392 addr = simple_strtoul(argv[1], NULL, 16);
393
394 /* Length is the number of objects, not number of bytes.
395 */
396 length = simple_strtoul(argv[2], NULL, 16);
397
Simon Glass0628ab82013-02-24 17:33:15 +0000398 bytes = size * length;
399 buf = map_sysmem(addr, bytes);
400
wdenk38635852002-08-27 05:55:31 +0000401 /* We want to optimize the loops to run as fast as possible.
402 * If we have only one object, just run infinite loops.
403 */
404 if (length == 1) {
York Sun4d1fd7f2014-02-26 17:03:19 -0800405#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
406 if (size == 8) {
407 llp = (u64 *)buf;
408 for (;;)
409 i = *llp;
410 }
411#endif
wdenk38635852002-08-27 05:55:31 +0000412 if (size == 4) {
York Sun76698b42014-02-12 15:55:35 -0800413 longp = (u32 *)buf;
wdenk38635852002-08-27 05:55:31 +0000414 for (;;)
415 i = *longp;
416 }
417 if (size == 2) {
York Sun76698b42014-02-12 15:55:35 -0800418 shortp = (u16 *)buf;
wdenk38635852002-08-27 05:55:31 +0000419 for (;;)
420 i = *shortp;
421 }
York Sun76698b42014-02-12 15:55:35 -0800422 cp = (u8 *)buf;
wdenk38635852002-08-27 05:55:31 +0000423 for (;;)
424 i = *cp;
425 }
426
York Sun4d1fd7f2014-02-26 17:03:19 -0800427#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
428 if (size == 8) {
429 for (;;) {
430 llp = (u64 *)buf;
431 i = length;
432 while (i-- > 0)
433 *llp++;
434 }
435 }
436#endif
wdenk38635852002-08-27 05:55:31 +0000437 if (size == 4) {
438 for (;;) {
York Sun76698b42014-02-12 15:55:35 -0800439 longp = (u32 *)buf;
wdenk38635852002-08-27 05:55:31 +0000440 i = length;
441 while (i-- > 0)
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200442 *longp++;
wdenk38635852002-08-27 05:55:31 +0000443 }
444 }
445 if (size == 2) {
446 for (;;) {
York Sun76698b42014-02-12 15:55:35 -0800447 shortp = (u16 *)buf;
wdenk38635852002-08-27 05:55:31 +0000448 i = length;
449 while (i-- > 0)
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200450 *shortp++;
wdenk38635852002-08-27 05:55:31 +0000451 }
452 }
453 for (;;) {
York Sun76698b42014-02-12 15:55:35 -0800454 cp = (u8 *)buf;
wdenk38635852002-08-27 05:55:31 +0000455 i = length;
456 while (i-- > 0)
Marek Vasutf3b3c3d2011-09-26 02:26:06 +0200457 *cp++;
wdenk38635852002-08-27 05:55:31 +0000458 }
Simon Glass0628ab82013-02-24 17:33:15 +0000459 unmap_sysmem(buf);
Simon Glass92765f422013-06-11 11:14:35 -0700460
461 return 0;
wdenk38635852002-08-27 05:55:31 +0000462}
463
wdenk56523f12004-07-11 17:40:54 +0000464#ifdef CONFIG_LOOPW
Masahiro Yamada5a8608e2014-09-04 00:38:26 +0900465static int do_mem_loopw(cmd_tbl_t *cmdtp, int flag, int argc,
466 char * const argv[])
wdenk56523f12004-07-11 17:40:54 +0000467{
York Sun4d1fd7f2014-02-26 17:03:19 -0800468 ulong addr, length, i, bytes;
wdenk56523f12004-07-11 17:40:54 +0000469 int size;
York Sun4d1fd7f2014-02-26 17:03:19 -0800470#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
471 volatile u64 *llp;
472 u64 data;
473#else
474 ulong data;
475#endif
York Sun76698b42014-02-12 15:55:35 -0800476 volatile u32 *longp;
477 volatile u16 *shortp;
478 volatile u8 *cp;
Simon Glass0628ab82013-02-24 17:33:15 +0000479 void *buf;
wdenk81050922004-07-11 20:04:51 +0000480
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200481 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000482 return CMD_RET_USAGE;
wdenk56523f12004-07-11 17:40:54 +0000483
Robert P. J. Day85de63e2013-02-03 02:29:54 +0000484 /*
485 * Check for a size specification.
wdenk56523f12004-07-11 17:40:54 +0000486 * Defaults to long if no or incorrect specification.
487 */
488 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
489 return 1;
490
491 /* Address is always specified.
492 */
493 addr = simple_strtoul(argv[1], NULL, 16);
494
495 /* Length is the number of objects, not number of bytes.
496 */
497 length = simple_strtoul(argv[2], NULL, 16);
498
499 /* data to write */
York Sun4d1fd7f2014-02-26 17:03:19 -0800500#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
501 data = simple_strtoull(argv[3], NULL, 16);
502#else
wdenk56523f12004-07-11 17:40:54 +0000503 data = simple_strtoul(argv[3], NULL, 16);
York Sun4d1fd7f2014-02-26 17:03:19 -0800504#endif
wdenk81050922004-07-11 20:04:51 +0000505
Simon Glass0628ab82013-02-24 17:33:15 +0000506 bytes = size * length;
507 buf = map_sysmem(addr, bytes);
508
wdenk56523f12004-07-11 17:40:54 +0000509 /* We want to optimize the loops to run as fast as possible.
510 * If we have only one object, just run infinite loops.
511 */
512 if (length == 1) {
York Sun4d1fd7f2014-02-26 17:03:19 -0800513#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
514 if (size == 8) {
515 llp = (u64 *)buf;
516 for (;;)
517 *llp = data;
518 }
519#endif
wdenk56523f12004-07-11 17:40:54 +0000520 if (size == 4) {
York Sun76698b42014-02-12 15:55:35 -0800521 longp = (u32 *)buf;
wdenk56523f12004-07-11 17:40:54 +0000522 for (;;)
523 *longp = data;
York Sun4d1fd7f2014-02-26 17:03:19 -0800524 }
wdenk56523f12004-07-11 17:40:54 +0000525 if (size == 2) {
York Sun76698b42014-02-12 15:55:35 -0800526 shortp = (u16 *)buf;
wdenk56523f12004-07-11 17:40:54 +0000527 for (;;)
528 *shortp = data;
529 }
York Sun76698b42014-02-12 15:55:35 -0800530 cp = (u8 *)buf;
wdenk56523f12004-07-11 17:40:54 +0000531 for (;;)
532 *cp = data;
533 }
534
York Sun4d1fd7f2014-02-26 17:03:19 -0800535#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
536 if (size == 8) {
537 for (;;) {
538 llp = (u64 *)buf;
539 i = length;
540 while (i-- > 0)
541 *llp++ = data;
542 }
543 }
544#endif
wdenk56523f12004-07-11 17:40:54 +0000545 if (size == 4) {
546 for (;;) {
York Sun76698b42014-02-12 15:55:35 -0800547 longp = (u32 *)buf;
wdenk56523f12004-07-11 17:40:54 +0000548 i = length;
549 while (i-- > 0)
550 *longp++ = data;
551 }
552 }
553 if (size == 2) {
554 for (;;) {
York Sun76698b42014-02-12 15:55:35 -0800555 shortp = (u16 *)buf;
wdenk56523f12004-07-11 17:40:54 +0000556 i = length;
557 while (i-- > 0)
558 *shortp++ = data;
559 }
560 }
561 for (;;) {
York Sun76698b42014-02-12 15:55:35 -0800562 cp = (u8 *)buf;
wdenk56523f12004-07-11 17:40:54 +0000563 i = length;
564 while (i-- > 0)
565 *cp++ = data;
566 }
567}
568#endif /* CONFIG_LOOPW */
569
Tom Rini68149e92013-03-12 10:07:19 -0400570#ifdef CONFIG_CMD_MEMTEST
Simon Glass5512d5b2013-02-28 17:47:14 +0000571static ulong mem_test_alt(vu_long *buf, ulong start_addr, ulong end_addr,
572 vu_long *dummy)
wdenk38635852002-08-27 05:55:31 +0000573{
Simon Glassc9638f52013-02-24 17:33:16 +0000574 vu_long *addr;
Simon Glassc9638f52013-02-24 17:33:16 +0000575 ulong errs = 0;
576 ulong val, readback;
577 int j;
Simon Glassc9638f52013-02-24 17:33:16 +0000578 vu_long offset;
579 vu_long test_offset;
580 vu_long pattern;
581 vu_long temp;
582 vu_long anti_pattern;
583 vu_long num_words;
wdenk38635852002-08-27 05:55:31 +0000584 static const ulong bitpattern[] = {
585 0x00000001, /* single bit */
586 0x00000003, /* two adjacent bits */
587 0x00000007, /* three adjacent bits */
588 0x0000000F, /* four adjacent bits */
589 0x00000005, /* two non-adjacent bits */
590 0x00000015, /* three non-adjacent bits */
591 0x00000055, /* four non-adjacent bits */
592 0xaaaaaaaa, /* alternating 1/0 */
593 };
wdenk38635852002-08-27 05:55:31 +0000594
Simon Glass5512d5b2013-02-28 17:47:14 +0000595 num_words = (end_addr - start_addr) / sizeof(vu_long);
Simon Glass8c86bbe2013-02-24 17:33:20 +0000596
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000597 /*
598 * Data line test: write a pattern to the first
599 * location, write the 1's complement to a 'parking'
600 * address (changes the state of the data bus so a
601 * floating bus doesn't give a false OK), and then
602 * read the value back. Note that we read it back
603 * into a variable because the next time we read it,
604 * it might be right (been there, tough to explain to
605 * the quality guys why it prints a failure when the
606 * "is" and "should be" are obviously the same in the
607 * error message).
608 *
609 * Rather than exhaustively testing, we test some
610 * patterns by shifting '1' bits through a field of
611 * '0's and '0' bits through a field of '1's (i.e.
612 * pattern and ~pattern).
613 */
Simon Glass5512d5b2013-02-28 17:47:14 +0000614 addr = buf;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000615 for (j = 0; j < sizeof(bitpattern) / sizeof(bitpattern[0]); j++) {
616 val = bitpattern[j];
617 for (; val != 0; val <<= 1) {
Simon Glass5512d5b2013-02-28 17:47:14 +0000618 *addr = val;
Simon Glassc9638f52013-02-24 17:33:16 +0000619 *dummy = ~val; /* clear the test data off the bus */
wdenk38635852002-08-27 05:55:31 +0000620 readback = *addr;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000621 if (readback != val) {
Simon Glassc9638f52013-02-24 17:33:16 +0000622 printf("FAILURE (data line): "
623 "expected %08lx, actual %08lx\n",
624 val, readback);
625 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000626 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000627 return -1;
wdenk38635852002-08-27 05:55:31 +0000628 }
629 *addr = ~val;
630 *dummy = val;
631 readback = *addr;
Simon Glassc9638f52013-02-24 17:33:16 +0000632 if (readback != ~val) {
633 printf("FAILURE (data line): "
634 "Is %08lx, should be %08lx\n",
635 readback, ~val);
636 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000637 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000638 return -1;
wdenk38635852002-08-27 05:55:31 +0000639 }
wdenk38635852002-08-27 05:55:31 +0000640 }
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000641 }
wdenk38635852002-08-27 05:55:31 +0000642
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000643 /*
644 * Based on code whose Original Author and Copyright
645 * information follows: Copyright (c) 1998 by Michael
646 * Barr. This software is placed into the public
647 * domain and may be used for any purpose. However,
648 * this notice must not be changed or removed and no
649 * warranty is either expressed or implied by its
650 * publication or distribution.
651 */
wdenk38635852002-08-27 05:55:31 +0000652
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000653 /*
654 * Address line test
wdenk38635852002-08-27 05:55:31 +0000655
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000656 * Description: Test the address bus wiring in a
657 * memory region by performing a walking
658 * 1's test on the relevant bits of the
659 * address and checking for aliasing.
660 * This test will find single-bit
661 * address failures such as stuck-high,
662 * stuck-low, and shorted pins. The base
663 * address and size of the region are
664 * selected by the caller.
wdenk38635852002-08-27 05:55:31 +0000665
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000666 * Notes: For best results, the selected base
667 * address should have enough LSB 0's to
668 * guarantee single address bit changes.
669 * For example, to test a 64-Kbyte
670 * region, select a base address on a
671 * 64-Kbyte boundary. Also, select the
672 * region size as a power-of-two if at
673 * all possible.
674 *
675 * Returns: 0 if the test succeeds, 1 if the test fails.
676 */
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000677 pattern = (vu_long) 0xaaaaaaaa;
678 anti_pattern = (vu_long) 0x55555555;
wdenk38635852002-08-27 05:55:31 +0000679
Simon Glass5512d5b2013-02-28 17:47:14 +0000680 debug("%s:%d: length = 0x%.8lx\n", __func__, __LINE__, num_words);
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000681 /*
682 * Write the default pattern at each of the
683 * power-of-two offsets.
684 */
Simon Glass5512d5b2013-02-28 17:47:14 +0000685 for (offset = 1; offset < num_words; offset <<= 1)
686 addr[offset] = pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000687
688 /*
689 * Check for address bits stuck high.
690 */
691 test_offset = 0;
Simon Glass5512d5b2013-02-28 17:47:14 +0000692 addr[test_offset] = anti_pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000693
Simon Glass5512d5b2013-02-28 17:47:14 +0000694 for (offset = 1; offset < num_words; offset <<= 1) {
695 temp = addr[offset];
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000696 if (temp != pattern) {
Simon Glassc9638f52013-02-24 17:33:16 +0000697 printf("\nFAILURE: Address bit stuck high @ 0x%.8lx:"
wdenk38635852002-08-27 05:55:31 +0000698 " expected 0x%.8lx, actual 0x%.8lx\n",
David Feng102c0512014-02-12 16:10:08 +0800699 start_addr + offset*sizeof(vu_long),
700 pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400701 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000702 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000703 return -1;
wdenk38635852002-08-27 05:55:31 +0000704 }
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000705 }
Simon Glass5512d5b2013-02-28 17:47:14 +0000706 addr[test_offset] = pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000707 WATCHDOG_RESET();
wdenk38635852002-08-27 05:55:31 +0000708
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000709 /*
710 * Check for addr bits stuck low or shorted.
711 */
Simon Glass5512d5b2013-02-28 17:47:14 +0000712 for (test_offset = 1; test_offset < num_words; test_offset <<= 1) {
713 addr[test_offset] = anti_pattern;
wdenk38635852002-08-27 05:55:31 +0000714
Simon Glass5512d5b2013-02-28 17:47:14 +0000715 for (offset = 1; offset < num_words; offset <<= 1) {
716 temp = addr[offset];
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000717 if ((temp != pattern) && (offset != test_offset)) {
718 printf("\nFAILURE: Address bit stuck low or"
719 " shorted @ 0x%.8lx: expected 0x%.8lx,"
720 " actual 0x%.8lx\n",
David Feng102c0512014-02-12 16:10:08 +0800721 start_addr + offset*sizeof(vu_long),
722 pattern, temp);
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000723 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000724 if (ctrlc())
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000725 return -1;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000726 }
wdenk38635852002-08-27 05:55:31 +0000727 }
Simon Glass5512d5b2013-02-28 17:47:14 +0000728 addr[test_offset] = pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000729 }
wdenk38635852002-08-27 05:55:31 +0000730
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000731 /*
732 * Description: Test the integrity of a physical
733 * memory device by performing an
734 * increment/decrement test over the
735 * entire region. In the process every
736 * storage bit in the device is tested
737 * as a zero and a one. The base address
738 * and the size of the region are
739 * selected by the caller.
740 *
741 * Returns: 0 if the test succeeds, 1 if the test fails.
742 */
Simon Glass5512d5b2013-02-28 17:47:14 +0000743 num_words++;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000744
745 /*
746 * Fill memory with a known pattern.
747 */
748 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
749 WATCHDOG_RESET();
Simon Glass5512d5b2013-02-28 17:47:14 +0000750 addr[offset] = pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000751 }
752
753 /*
754 * Check each location and invert it for the second pass.
755 */
756 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
757 WATCHDOG_RESET();
Simon Glass5512d5b2013-02-28 17:47:14 +0000758 temp = addr[offset];
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000759 if (temp != pattern) {
Simon Glassc9638f52013-02-24 17:33:16 +0000760 printf("\nFAILURE (read/write) @ 0x%.8lx:"
wdenk38635852002-08-27 05:55:31 +0000761 " expected 0x%.8lx, actual 0x%.8lx)\n",
David Feng102c0512014-02-12 16:10:08 +0800762 start_addr + offset*sizeof(vu_long),
763 pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400764 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000765 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000766 return -1;
wdenk38635852002-08-27 05:55:31 +0000767 }
768
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000769 anti_pattern = ~pattern;
Simon Glass5512d5b2013-02-28 17:47:14 +0000770 addr[offset] = anti_pattern;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000771 }
772
773 /*
774 * Check each location for the inverted pattern and zero it.
775 */
776 for (pattern = 1, offset = 0; offset < num_words; pattern++, offset++) {
777 WATCHDOG_RESET();
778 anti_pattern = ~pattern;
Simon Glass5512d5b2013-02-28 17:47:14 +0000779 temp = addr[offset];
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000780 if (temp != anti_pattern) {
Simon Glassc9638f52013-02-24 17:33:16 +0000781 printf("\nFAILURE (read/write): @ 0x%.8lx:"
wdenk38635852002-08-27 05:55:31 +0000782 " expected 0x%.8lx, actual 0x%.8lx)\n",
David Feng102c0512014-02-12 16:10:08 +0800783 start_addr + offset*sizeof(vu_long),
784 anti_pattern, temp);
Paul Gortmaker87b22b72009-10-02 18:18:33 -0400785 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000786 if (ctrlc())
Simon Glass51209b12013-02-24 17:33:17 +0000787 return -1;
wdenk38635852002-08-27 05:55:31 +0000788 }
Simon Glass5512d5b2013-02-28 17:47:14 +0000789 addr[offset] = 0;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000790 }
Simon Glass51209b12013-02-24 17:33:17 +0000791
Rasmus Villemoesfea67302016-01-07 11:36:04 +0100792 return errs;
Simon Glassc9638f52013-02-24 17:33:16 +0000793}
wdenk38635852002-08-27 05:55:31 +0000794
Simon Glass5512d5b2013-02-28 17:47:14 +0000795static ulong mem_test_quick(vu_long *buf, ulong start_addr, ulong end_addr,
796 vu_long pattern, int iteration)
Simon Glassc9638f52013-02-24 17:33:16 +0000797{
Simon Glass5512d5b2013-02-28 17:47:14 +0000798 vu_long *end;
Simon Glassc9638f52013-02-24 17:33:16 +0000799 vu_long *addr;
Simon Glassc9638f52013-02-24 17:33:16 +0000800 ulong errs = 0;
Simon Glass5512d5b2013-02-28 17:47:14 +0000801 ulong incr, length;
Simon Glassc9638f52013-02-24 17:33:16 +0000802 ulong val, readback;
803
Simon Glass51209b12013-02-24 17:33:17 +0000804 /* Alternate the pattern */
wdenk38635852002-08-27 05:55:31 +0000805 incr = 1;
Simon Glass51209b12013-02-24 17:33:17 +0000806 if (iteration & 1) {
807 incr = -incr;
808 /*
809 * Flip the pattern each time to make lots of zeros and
810 * then, the next time, lots of ones. We decrement
811 * the "negative" patterns and increment the "positive"
812 * patterns to preserve this feature.
813 */
814 if (pattern & 0x80000000)
815 pattern = -pattern; /* complement & increment */
816 else
817 pattern = ~pattern;
818 }
Simon Glass5512d5b2013-02-28 17:47:14 +0000819 length = (end_addr - start_addr) / sizeof(ulong);
820 end = buf + length;
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000821 printf("\rPattern %08lX Writing..."
822 "%12s"
823 "\b\b\b\b\b\b\b\b\b\b",
824 pattern, "");
wdenk38635852002-08-27 05:55:31 +0000825
Simon Glass5512d5b2013-02-28 17:47:14 +0000826 for (addr = buf, val = pattern; addr < end; addr++) {
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000827 WATCHDOG_RESET();
828 *addr = val;
829 val += incr;
830 }
wdenk38635852002-08-27 05:55:31 +0000831
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000832 puts("Reading...");
wdenk38635852002-08-27 05:55:31 +0000833
Simon Glass5512d5b2013-02-28 17:47:14 +0000834 for (addr = buf, val = pattern; addr < end; addr++) {
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000835 WATCHDOG_RESET();
836 readback = *addr;
837 if (readback != val) {
Simon Glass5512d5b2013-02-28 17:47:14 +0000838 ulong offset = addr - buf;
839
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000840 printf("\nMem error @ 0x%08X: "
841 "found %08lX, expected %08lX\n",
David Feng102c0512014-02-12 16:10:08 +0800842 (uint)(uintptr_t)(start_addr + offset*sizeof(vu_long)),
Simon Glass5512d5b2013-02-28 17:47:14 +0000843 readback, val);
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000844 errs++;
Simon Glassc44d4382013-02-24 17:33:19 +0000845 if (ctrlc())
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000846 return -1;
wdenk38635852002-08-27 05:55:31 +0000847 }
Simon Glass7ecbd4d2013-02-24 17:33:18 +0000848 val += incr;
849 }
wdenk38635852002-08-27 05:55:31 +0000850
Rasmus Villemoesfea67302016-01-07 11:36:04 +0100851 return errs;
Simon Glassc9638f52013-02-24 17:33:16 +0000852}
853
854/*
855 * Perform a memory test. A more complete alternative test can be
856 * configured using CONFIG_SYS_ALT_MEMTEST. The complete test loops until
857 * interrupted by ctrl-c or by a failure of one of the sub-tests.
858 */
859static int do_mem_mtest(cmd_tbl_t *cmdtp, int flag, int argc,
860 char * const argv[])
861{
Simon Glass8c86bbe2013-02-24 17:33:20 +0000862 ulong start, end;
Simon Glass5512d5b2013-02-28 17:47:14 +0000863 vu_long *buf, *dummy;
Tom Riniadcc5702015-04-07 09:38:54 -0400864 ulong iteration_limit = 0;
Simon Glassc9638f52013-02-24 17:33:16 +0000865 int ret;
Simon Glass51209b12013-02-24 17:33:17 +0000866 ulong errs = 0; /* number of errors, or -1 if interrupted */
Pavel Macheke37f1eb2015-04-01 13:50:41 +0200867 ulong pattern = 0;
Simon Glass51209b12013-02-24 17:33:17 +0000868 int iteration;
Simon Glassc9638f52013-02-24 17:33:16 +0000869#if defined(CONFIG_SYS_ALT_MEMTEST)
870 const int alt_test = 1;
871#else
872 const int alt_test = 0;
wdenk38635852002-08-27 05:55:31 +0000873#endif
Simon Glassc9638f52013-02-24 17:33:16 +0000874
Pavel Macheke37f1eb2015-04-01 13:50:41 +0200875 start = CONFIG_SYS_MEMTEST_START;
876 end = CONFIG_SYS_MEMTEST_END;
877
Simon Glassc9638f52013-02-24 17:33:16 +0000878 if (argc > 1)
Pavel Macheke37f1eb2015-04-01 13:50:41 +0200879 if (strict_strtoul(argv[1], 16, &start) < 0)
880 return CMD_RET_USAGE;
Simon Glassc9638f52013-02-24 17:33:16 +0000881
882 if (argc > 2)
Pavel Macheke37f1eb2015-04-01 13:50:41 +0200883 if (strict_strtoul(argv[2], 16, &end) < 0)
884 return CMD_RET_USAGE;
Simon Glassc9638f52013-02-24 17:33:16 +0000885
886 if (argc > 3)
Pavel Macheke37f1eb2015-04-01 13:50:41 +0200887 if (strict_strtoul(argv[3], 16, &pattern) < 0)
888 return CMD_RET_USAGE;
Simon Glassc9638f52013-02-24 17:33:16 +0000889
890 if (argc > 4)
Pavel Macheke37f1eb2015-04-01 13:50:41 +0200891 if (strict_strtoul(argv[4], 16, &iteration_limit) < 0)
892 return CMD_RET_USAGE;
893
894 if (end < start) {
895 printf("Refusing to do empty test\n");
896 return -1;
897 }
Simon Glassc9638f52013-02-24 17:33:16 +0000898
Michal Simekdfe461d2016-02-24 08:36:02 +0100899 printf("Testing %08lx ... %08lx:\n", start, end);
Simon Glass8c86bbe2013-02-24 17:33:20 +0000900 debug("%s:%d: start %#08lx end %#08lx\n", __func__, __LINE__,
901 start, end);
Simon Glass51209b12013-02-24 17:33:17 +0000902
Simon Glass5512d5b2013-02-28 17:47:14 +0000903 buf = map_sysmem(start, end - start);
904 dummy = map_sysmem(CONFIG_SYS_MEMTEST_SCRATCH, sizeof(vu_long));
Simon Glass51209b12013-02-24 17:33:17 +0000905 for (iteration = 0;
906 !iteration_limit || iteration < iteration_limit;
907 iteration++) {
908 if (ctrlc()) {
Simon Glass51209b12013-02-24 17:33:17 +0000909 errs = -1UL;
910 break;
911 }
912
913 printf("Iteration: %6d\r", iteration + 1);
914 debug("\n");
Simon Glass5512d5b2013-02-28 17:47:14 +0000915 if (alt_test) {
916 errs = mem_test_alt(buf, start, end, dummy);
917 } else {
918 errs = mem_test_quick(buf, start, end, pattern,
919 iteration);
920 }
921 if (errs == -1UL)
922 break;
923 }
924
925 /*
926 * Work-around for eldk-4.2 which gives this warning if we try to
927 * case in the unmap_sysmem() call:
928 * warning: initialization discards qualifiers from pointer target type
929 */
930 {
931 void *vbuf = (void *)buf;
932 void *vdummy = (void *)dummy;
933
934 unmap_sysmem(vbuf);
935 unmap_sysmem(vdummy);
Simon Glass51209b12013-02-24 17:33:17 +0000936 }
937
938 if (errs == -1UL) {
Simon Glassc44d4382013-02-24 17:33:19 +0000939 /* Memory test was aborted - write a newline to finish off */
940 putc('\n');
Simon Glass51209b12013-02-24 17:33:17 +0000941 ret = 1;
942 } else {
943 printf("Tested %d iteration(s) with %lu errors.\n",
944 iteration, errs);
945 ret = errs != 0;
946 }
Simon Glassc9638f52013-02-24 17:33:16 +0000947
Pavel Macheke37f1eb2015-04-01 13:50:41 +0200948 return ret;
wdenk38635852002-08-27 05:55:31 +0000949}
Wolfgang Denka2681702013-03-08 10:51:32 +0000950#endif /* CONFIG_CMD_MEMTEST */
wdenk38635852002-08-27 05:55:31 +0000951
952/* Modify memory.
953 *
954 * Syntax:
York Sun4d1fd7f2014-02-26 17:03:19 -0800955 * mm{.b, .w, .l, .q} {addr}
956 * nm{.b, .w, .l, .q} {addr}
wdenk38635852002-08-27 05:55:31 +0000957 */
958static int
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200959mod_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000960{
York Sun4d1fd7f2014-02-26 17:03:19 -0800961 ulong addr;
962#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
963 u64 i;
964#else
965 ulong i;
966#endif
wdenk27b207f2003-07-24 23:38:38 +0000967 int nbytes, size;
Simon Glass0628ab82013-02-24 17:33:15 +0000968 void *ptr = NULL;
wdenk38635852002-08-27 05:55:31 +0000969
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200970 if (argc != 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000971 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +0000972
Simon Glassb26440f2014-04-10 20:01:31 -0600973 bootretry_reset_cmd_timeout(); /* got a good command to get here */
wdenk38635852002-08-27 05:55:31 +0000974 /* We use the last specified parameters, unless new ones are
975 * entered.
976 */
977 addr = mm_last_addr;
978 size = mm_last_size;
979
980 if ((flag & CMD_FLAG_REPEAT) == 0) {
981 /* New command specified. Check for a size specification.
982 * Defaults to long if no or incorrect specification.
983 */
wdenk27b207f2003-07-24 23:38:38 +0000984 if ((size = cmd_get_data_size(argv[0], 4)) < 0)
985 return 1;
wdenk38635852002-08-27 05:55:31 +0000986
987 /* Address is specified since argc > 1
988 */
989 addr = simple_strtoul(argv[1], NULL, 16);
990 addr += base_address;
991 }
992
993 /* Print the address, followed by value. Then accept input for
994 * the next value. A non-converted value exits.
995 */
996 do {
Simon Glass0628ab82013-02-24 17:33:15 +0000997 ptr = map_sysmem(addr, size);
wdenk38635852002-08-27 05:55:31 +0000998 printf("%08lx:", addr);
999 if (size == 4)
York Sun76698b42014-02-12 15:55:35 -08001000 printf(" %08x", *((u32 *)ptr));
York Sun4d1fd7f2014-02-26 17:03:19 -08001001#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1002 else if (size == 8)
Simon Glasse48f3742014-11-11 12:47:07 -07001003 printf(" %016" PRIx64, *((u64 *)ptr));
York Sun4d1fd7f2014-02-26 17:03:19 -08001004#endif
wdenk38635852002-08-27 05:55:31 +00001005 else if (size == 2)
York Sun76698b42014-02-12 15:55:35 -08001006 printf(" %04x", *((u16 *)ptr));
wdenk38635852002-08-27 05:55:31 +00001007 else
York Sun76698b42014-02-12 15:55:35 -08001008 printf(" %02x", *((u8 *)ptr));
wdenk38635852002-08-27 05:55:31 +00001009
Simon Glasse1bf8242014-04-10 20:01:27 -06001010 nbytes = cli_readline(" ? ");
wdenk38635852002-08-27 05:55:31 +00001011 if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) {
1012 /* <CR> pressed as only input, don't modify current
1013 * location and move to next. "-" pressed will go back.
1014 */
1015 if (incrflag)
1016 addr += nbytes ? -size : size;
1017 nbytes = 1;
Simon Glassb26440f2014-04-10 20:01:31 -06001018 /* good enough to not time out */
1019 bootretry_reset_cmd_timeout();
wdenk38635852002-08-27 05:55:31 +00001020 }
1021#ifdef CONFIG_BOOT_RETRY_TIME
1022 else if (nbytes == -2) {
1023 break; /* timed out, exit the command */
1024 }
1025#endif
1026 else {
1027 char *endp;
York Sun4d1fd7f2014-02-26 17:03:19 -08001028#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1029 i = simple_strtoull(console_buffer, &endp, 16);
1030#else
wdenk38635852002-08-27 05:55:31 +00001031 i = simple_strtoul(console_buffer, &endp, 16);
York Sun4d1fd7f2014-02-26 17:03:19 -08001032#endif
wdenk38635852002-08-27 05:55:31 +00001033 nbytes = endp - console_buffer;
1034 if (nbytes) {
wdenk38635852002-08-27 05:55:31 +00001035 /* good enough to not time out
1036 */
Simon Glassb26440f2014-04-10 20:01:31 -06001037 bootretry_reset_cmd_timeout();
wdenk38635852002-08-27 05:55:31 +00001038 if (size == 4)
York Sun76698b42014-02-12 15:55:35 -08001039 *((u32 *)ptr) = i;
York Sun4d1fd7f2014-02-26 17:03:19 -08001040#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1041 else if (size == 8)
1042 *((u64 *)ptr) = i;
1043#endif
wdenk38635852002-08-27 05:55:31 +00001044 else if (size == 2)
York Sun76698b42014-02-12 15:55:35 -08001045 *((u16 *)ptr) = i;
wdenk38635852002-08-27 05:55:31 +00001046 else
York Sun76698b42014-02-12 15:55:35 -08001047 *((u8 *)ptr) = i;
wdenk38635852002-08-27 05:55:31 +00001048 if (incrflag)
1049 addr += size;
1050 }
1051 }
1052 } while (nbytes);
Simon Glass0628ab82013-02-24 17:33:15 +00001053 if (ptr)
1054 unmap_sysmem(ptr);
wdenk38635852002-08-27 05:55:31 +00001055
1056 mm_last_addr = addr;
1057 mm_last_size = size;
1058 return 0;
1059}
1060
Mike Frysinger710b9932010-12-21 14:19:51 -05001061#ifdef CONFIG_CMD_CRC32
1062
Kim Phillips088f1b12012-10-29 13:34:31 +00001063static int do_mem_crc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +00001064{
Simon Glassd20a40d2013-02-24 20:30:22 +00001065 int flags = 0;
1066 int ac;
1067 char * const *av;
wdenk38635852002-08-27 05:55:31 +00001068
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001069 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001070 return CMD_RET_USAGE;
wdenk38635852002-08-27 05:55:31 +00001071
wdenkc26e4542004-04-18 10:13:26 +00001072 av = argv + 1;
1073 ac = argc - 1;
Daniel Thompson221a9492017-05-19 17:26:58 +01001074#ifdef CONFIG_CRC32_VERIFY
wdenkc26e4542004-04-18 10:13:26 +00001075 if (strcmp(*av, "-v") == 0) {
Joe Hershbergera69bdba2015-05-05 12:23:53 -05001076 flags |= HASH_FLAG_VERIFY | HASH_FLAG_ENV;
wdenkc26e4542004-04-18 10:13:26 +00001077 av++;
1078 ac--;
wdenkc26e4542004-04-18 10:13:26 +00001079 }
Simon Glassd20a40d2013-02-24 20:30:22 +00001080#endif
wdenkc26e4542004-04-18 10:13:26 +00001081
Simon Glassd20a40d2013-02-24 20:30:22 +00001082 return hash_command("crc32", flags, cmdtp, flag, ac, av);
wdenkc26e4542004-04-18 10:13:26 +00001083}
wdenkc26e4542004-04-18 10:13:26 +00001084
Mike Frysinger710b9932010-12-21 14:19:51 -05001085#endif
1086
wdenk8bde7f72003-06-27 21:31:46 +00001087/**************************************************/
wdenk0d498392003-07-01 21:06:45 +00001088U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001089 md, 3, 1, do_mem_md,
Peter Tyser2fb26042009-01-27 18:03:12 -06001090 "memory display",
York Sun4d1fd7f2014-02-26 17:03:19 -08001091#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1092 "[.b, .w, .l, .q] address [# of objects]"
1093#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001094 "[.b, .w, .l] address [# of objects]"
York Sun4d1fd7f2014-02-26 17:03:19 -08001095#endif
wdenk8bde7f72003-06-27 21:31:46 +00001096);
1097
1098
wdenk0d498392003-07-01 21:06:45 +00001099U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001100 mm, 2, 1, do_mem_mm,
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001101 "memory modify (auto-incrementing address)",
York Sun4d1fd7f2014-02-26 17:03:19 -08001102#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1103 "[.b, .w, .l, .q] address"
1104#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001105 "[.b, .w, .l] address"
York Sun4d1fd7f2014-02-26 17:03:19 -08001106#endif
wdenk8bde7f72003-06-27 21:31:46 +00001107);
1108
1109
wdenk0d498392003-07-01 21:06:45 +00001110U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001111 nm, 2, 1, do_mem_nm,
Peter Tyser2fb26042009-01-27 18:03:12 -06001112 "memory modify (constant address)",
York Sun4d1fd7f2014-02-26 17:03:19 -08001113#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1114 "[.b, .w, .l, .q] address"
1115#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001116 "[.b, .w, .l] address"
York Sun4d1fd7f2014-02-26 17:03:19 -08001117#endif
wdenk8bde7f72003-06-27 21:31:46 +00001118);
1119
wdenk0d498392003-07-01 21:06:45 +00001120U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001121 mw, 4, 1, do_mem_mw,
Peter Tyser2fb26042009-01-27 18:03:12 -06001122 "memory write (fill)",
York Sun4d1fd7f2014-02-26 17:03:19 -08001123#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1124 "[.b, .w, .l, .q] address value [count]"
1125#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001126 "[.b, .w, .l] address value [count]"
York Sun4d1fd7f2014-02-26 17:03:19 -08001127#endif
wdenk8bde7f72003-06-27 21:31:46 +00001128);
1129
wdenk0d498392003-07-01 21:06:45 +00001130U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001131 cp, 4, 1, do_mem_cp,
Peter Tyser2fb26042009-01-27 18:03:12 -06001132 "memory copy",
York Sun4d1fd7f2014-02-26 17:03:19 -08001133#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1134 "[.b, .w, .l, .q] source target count"
1135#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001136 "[.b, .w, .l] source target count"
York Sun4d1fd7f2014-02-26 17:03:19 -08001137#endif
wdenk8bde7f72003-06-27 21:31:46 +00001138);
1139
wdenk0d498392003-07-01 21:06:45 +00001140U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001141 cmp, 4, 1, do_mem_cmp,
Peter Tyser2fb26042009-01-27 18:03:12 -06001142 "memory compare",
York Sun4d1fd7f2014-02-26 17:03:19 -08001143#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1144 "[.b, .w, .l, .q] addr1 addr2 count"
1145#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001146 "[.b, .w, .l] addr1 addr2 count"
York Sun4d1fd7f2014-02-26 17:03:19 -08001147#endif
wdenk8bde7f72003-06-27 21:31:46 +00001148);
1149
Mike Frysinger710b9932010-12-21 14:19:51 -05001150#ifdef CONFIG_CMD_CRC32
1151
Daniel Thompson221a9492017-05-19 17:26:58 +01001152#ifndef CONFIG_CRC32_VERIFY
wdenkc26e4542004-04-18 10:13:26 +00001153
wdenk0d498392003-07-01 21:06:45 +00001154U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001155 crc32, 4, 1, do_mem_crc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001156 "checksum calculation",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001157 "address count [addr]\n - compute CRC32 checksum [save at addr]"
wdenk8bde7f72003-06-27 21:31:46 +00001158);
1159
Daniel Thompson221a9492017-05-19 17:26:58 +01001160#else /* CONFIG_CRC32_VERIFY */
wdenkc26e4542004-04-18 10:13:26 +00001161
1162U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001163 crc32, 5, 1, do_mem_crc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001164 "checksum calculation",
wdenkc26e4542004-04-18 10:13:26 +00001165 "address count [addr]\n - compute CRC32 checksum [save at addr]\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001166 "-v address count crc\n - verify crc of memory area"
wdenkc26e4542004-04-18 10:13:26 +00001167);
1168
Daniel Thompson221a9492017-05-19 17:26:58 +01001169#endif /* CONFIG_CRC32_VERIFY */
wdenkc26e4542004-04-18 10:13:26 +00001170
Mike Frysinger710b9932010-12-21 14:19:51 -05001171#endif
1172
Simon Glass15a33e42012-11-30 13:01:20 +00001173#ifdef CONFIG_CMD_MEMINFO
Andrew Bradfordea11b402015-05-22 08:30:14 -04001174__weak void board_show_dram(phys_size_t size)
Simon Glass15a33e42012-11-30 13:01:20 +00001175{
1176 puts("DRAM: ");
1177 print_size(size, "\n");
1178}
1179
1180static int do_mem_info(cmd_tbl_t *cmdtp, int flag, int argc,
1181 char * const argv[])
1182{
1183 board_show_dram(gd->ram_size);
1184
1185 return 0;
1186}
1187#endif
1188
wdenk0d498392003-07-01 21:06:45 +00001189U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001190 base, 2, 1, do_mem_base,
Peter Tyser2fb26042009-01-27 18:03:12 -06001191 "print or set address offset",
wdenk8bde7f72003-06-27 21:31:46 +00001192 "\n - print address offset for memory commands\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001193 "base off\n - set address offset for memory commands to 'off'"
wdenk8bde7f72003-06-27 21:31:46 +00001194);
1195
wdenk0d498392003-07-01 21:06:45 +00001196U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001197 loop, 3, 1, do_mem_loop,
Peter Tyser2fb26042009-01-27 18:03:12 -06001198 "infinite loop on address range",
York Sun4d1fd7f2014-02-26 17:03:19 -08001199#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1200 "[.b, .w, .l, .q] address number_of_objects"
1201#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001202 "[.b, .w, .l] address number_of_objects"
York Sun4d1fd7f2014-02-26 17:03:19 -08001203#endif
wdenk8bde7f72003-06-27 21:31:46 +00001204);
1205
wdenk56523f12004-07-11 17:40:54 +00001206#ifdef CONFIG_LOOPW
1207U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001208 loopw, 4, 1, do_mem_loopw,
Peter Tyser2fb26042009-01-27 18:03:12 -06001209 "infinite write loop on address range",
York Sun4d1fd7f2014-02-26 17:03:19 -08001210#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1211 "[.b, .w, .l, .q] address number_of_objects data_to_write"
1212#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001213 "[.b, .w, .l] address number_of_objects data_to_write"
York Sun4d1fd7f2014-02-26 17:03:19 -08001214#endif
wdenk56523f12004-07-11 17:40:54 +00001215);
1216#endif /* CONFIG_LOOPW */
1217
Wolfgang Denka2681702013-03-08 10:51:32 +00001218#ifdef CONFIG_CMD_MEMTEST
wdenk0d498392003-07-01 21:06:45 +00001219U_BOOT_CMD(
Dirk Eibachb6fc6fd2008-12-16 14:51:56 +01001220 mtest, 5, 1, do_mem_mtest,
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001221 "simple RAM read/write test",
1222 "[start [end [pattern [iterations]]]]"
wdenk8bde7f72003-06-27 21:31:46 +00001223);
Wolfgang Denka2681702013-03-08 10:51:32 +00001224#endif /* CONFIG_CMD_MEMTEST */
wdenk8bde7f72003-06-27 21:31:46 +00001225
stroese4aaf29b2004-12-16 17:42:39 +00001226#ifdef CONFIG_MX_CYCLIC
1227U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001228 mdc, 4, 1, do_mem_mdc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001229 "memory display cyclic",
York Sun4d1fd7f2014-02-26 17:03:19 -08001230#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1231 "[.b, .w, .l, .q] address count delay(ms)"
1232#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001233 "[.b, .w, .l] address count delay(ms)"
York Sun4d1fd7f2014-02-26 17:03:19 -08001234#endif
stroese4aaf29b2004-12-16 17:42:39 +00001235);
1236
1237U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001238 mwc, 4, 1, do_mem_mwc,
Peter Tyser2fb26042009-01-27 18:03:12 -06001239 "memory write cyclic",
York Sun4d1fd7f2014-02-26 17:03:19 -08001240#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
1241 "[.b, .w, .l, .q] address value delay(ms)"
1242#else
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001243 "[.b, .w, .l] address value delay(ms)"
York Sun4d1fd7f2014-02-26 17:03:19 -08001244#endif
stroese4aaf29b2004-12-16 17:42:39 +00001245);
1246#endif /* CONFIG_MX_CYCLIC */
Simon Glass15a33e42012-11-30 13:01:20 +00001247
1248#ifdef CONFIG_CMD_MEMINFO
1249U_BOOT_CMD(
1250 meminfo, 3, 1, do_mem_info,
1251 "display memory information",
1252 ""
1253);
1254#endif