blob: 2e41c4619e027042da4f09e276c8b5672ed89b13 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Wolfgang Denkb38e0df2007-03-06 18:08:43 +01002/*
3 * (C) Copyright 2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Wolfgang Denkb38e0df2007-03-06 18:08:43 +01005 */
6
Tom Rinidec7ea02024-05-20 13:35:03 -06007#include <config.h>
Simon Glass0f2af882020-05-10 11:40:05 -06008#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -06009#include <asm/global_data.h>
Wolfgang Denkb38e0df2007-03-06 18:08:43 +010010
11/* Memory test
12 *
13 * General observations:
14 * o The recommended test sequence is to test the data lines: if they are
15 * broken, nothing else will work properly. Then test the address
16 * lines. Finally, test the cells in the memory now that the test
17 * program knows that the address and data lines work properly.
18 * This sequence also helps isolate and identify what is faulty.
19 *
20 * o For the address line test, it is a good idea to use the base
21 * address of the lowest memory location, which causes a '1' bit to
22 * walk through a field of zeros on the address lines and the highest
23 * memory location, which causes a '0' bit to walk through a field of
24 * '1's on the address line.
25 *
26 * o Floating buses can fool memory tests if the test routine writes
27 * a value and then reads it back immediately. The problem is, the
28 * write will charge the residual capacitance on the data bus so the
29 * bus retains its state briefely. When the test program reads the
30 * value back immediately, the capacitance of the bus can allow it
31 * to read back what was written, even though the memory circuitry
32 * is broken. To avoid this, the test program should write a test
33 * pattern to the target location, write a different pattern elsewhere
34 * to charge the residual capacitance in a differnt manner, then read
35 * the target location back.
36 *
37 * o Always read the target location EXACTLY ONCE and save it in a local
38 * variable. The problem with reading the target location more than
39 * once is that the second and subsequent reads may work properly,
40 * resulting in a failed test that tells the poor technician that
41 * "Memory error at 00000000, wrote aaaaaaaa, read aaaaaaaa" which
42 * doesn't help him one bit and causes puzzled phone calls. Been there,
43 * done that.
44 *
45 * Data line test:
46 * ---------------
47 * This tests data lines for shorts and opens by forcing adjacent data
48 * to opposite states. Because the data lines could be routed in an
49 * arbitrary manner the must ensure test patterns ensure that every case
50 * is tested. By using the following series of binary patterns every
51 * combination of adjacent bits is test regardless of routing.
52 *
53 * ...101010101010101010101010
54 * ...110011001100110011001100
55 * ...111100001111000011110000
56 * ...111111110000000011111111
57 *
58 * Carrying this out, gives us six hex patterns as follows:
59 *
60 * 0xaaaaaaaaaaaaaaaa
61 * 0xcccccccccccccccc
62 * 0xf0f0f0f0f0f0f0f0
63 * 0xff00ff00ff00ff00
64 * 0xffff0000ffff0000
65 * 0xffffffff00000000
66 *
67 * To test for short and opens to other signals on our boards, we
68 * simply test with the 1's complemnt of the paterns as well, resulting
69 * in twelve patterns total.
70 *
71 * After writing a test pattern. a special pattern 0x0123456789ABCDEF is
72 * written to a different address in case the data lines are floating.
73 * Thus, if a byte lane fails, you will see part of the special
74 * pattern in that byte lane when the test runs. For example, if the
75 * xx__xxxxxxxxxxxx byte line fails, you will see aa23aaaaaaaaaaaa
76 * (for the 'a' test pattern).
77 *
78 * Address line test:
79 * ------------------
80 * This function performs a test to verify that all the address lines
81 * hooked up to the RAM work properly. If there is an address line
82 * fault, it usually shows up as two different locations in the address
83 * map (related by the faulty address line) mapping to one physical
84 * memory storage location. The artifact that shows up is writing to
85 * the first location "changes" the second location.
86 *
87 * To test all address lines, we start with the given base address and
88 * xor the address with a '1' bit to flip one address line. For each
89 * test, we shift the '1' bit left to test the next address line.
90 *
91 * In the actual code, we start with address sizeof(ulong) since our
92 * test pattern we use is a ulong and thus, if we tried to test lower
93 * order address bits, it wouldn't work because our pattern would
94 * overwrite itself.
95 *
96 * Example for a 4 bit address space with the base at 0000:
97 * 0000 <- base
98 * 0001 <- test 1
99 * 0010 <- test 2
100 * 0100 <- test 3
101 * 1000 <- test 4
102 * Example for a 4 bit address space with the base at 0010:
103 * 0010 <- base
104 * 0011 <- test 1
105 * 0000 <- (below the base address, skipped)
106 * 0110 <- test 2
107 * 1010 <- test 3
108 *
109 * The test locations are successively tested to make sure that they are
110 * not "mirrored" onto the base address due to a faulty address line.
111 * Note that the base and each test location are related by one address
112 * line flipped. Note that the base address need not be all zeros.
113 *
114 * Memory tests 1-4:
115 * -----------------
116 * These tests verify RAM using sequential writes and reads
117 * to/from RAM. There are several test cases that use different patterns to
118 * verify RAM. Each test case fills a region of RAM with one pattern and
119 * then reads the region back and compares its contents with the pattern.
120 * The following patterns are used:
121 *
122 * 1a) zero pattern (0x00000000)
123 * 1b) negative pattern (0xffffffff)
124 * 1c) checkerboard pattern (0x55555555)
125 * 1d) checkerboard pattern (0xaaaaaaaa)
126 * 2) bit-flip pattern ((1 << (offset % 32))
127 * 3) address pattern (offset)
128 * 4) address pattern (~offset)
129 *
130 * Being run in normal mode, the test verifies only small 4Kb
131 * regions of RAM around each 1Mb boundary. For example, for 64Mb
132 * RAM the following areas are verified: 0x00000000-0x00000800,
133 * 0x000ff800-0x00100800, 0x001ff800-0x00200800, ..., 0x03fff800-
134 * 0x04000000. If the test is run in slow-test mode, it verifies
135 * the whole RAM.
136 */
137
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100138#include <post.h>
139#include <watchdog.h>
140
Tom Rini8eaa3c72022-11-19 18:45:44 -0500141#if CFG_POST & (CFG_SYS_POST_MEMORY | CFG_SYS_POST_MEM_REGIONS)
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100142
143DECLARE_GLOBAL_DATA_PTR;
144
145/*
146 * Define INJECT_*_ERRORS for testing error detection in the presence of
147 * _good_ hardware.
148 */
149#undef INJECT_DATA_ERRORS
150#undef INJECT_ADDRESS_ERRORS
151
152#ifdef INJECT_DATA_ERRORS
153#warning "Injecting data line errors for testing purposes"
154#endif
155
156#ifdef INJECT_ADDRESS_ERRORS
157#warning "Injecting address line errors for testing purposes"
158#endif
159
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100160/*
161 * This function performs a double word move from the data at
162 * the source pointer to the location at the destination pointer.
163 * This is helpful for testing memory on processors which have a 64 bit
164 * wide data bus.
165 *
166 * On those PowerPC with FPU, use assembly and a floating point move:
167 * this does a 64 bit move.
168 *
169 * For other processors, let the compiler generate the best code it can.
170 */
Anatolij Gustschin52109152008-02-25 23:53:07 +0100171static void move64(const unsigned long long *src, unsigned long long *dest)
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100172{
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100173 *dest = *src;
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100174}
175
176/*
177 * This is 64 bit wide test patterns. Note that they reside in ROM
178 * (which presumably works) and the tests write them to RAM which may
179 * not work.
180 *
181 * The "otherpattern" is written to drive the data bus to values other
182 * than the test pattern. This is for detecting floating bus lines.
183 *
184 */
185const static unsigned long long pattern[] = {
186 0xaaaaaaaaaaaaaaaaULL,
187 0xccccccccccccccccULL,
188 0xf0f0f0f0f0f0f0f0ULL,
189 0xff00ff00ff00ff00ULL,
190 0xffff0000ffff0000ULL,
191 0xffffffff00000000ULL,
192 0x00000000ffffffffULL,
193 0x0000ffff0000ffffULL,
194 0x00ff00ff00ff00ffULL,
195 0x0f0f0f0f0f0f0f0fULL,
196 0x3333333333333333ULL,
197 0x5555555555555555ULL
198};
199const unsigned long long otherpattern = 0x0123456789abcdefULL;
200
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100201static int memory_post_dataline(unsigned long long * pmem)
202{
203 unsigned long long temp64 = 0;
Mike Frysinger83a687b2011-05-10 07:28:35 +0000204 int num_patterns = ARRAY_SIZE(pattern);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100205 int i;
206 unsigned int hi, lo, pathi, patlo;
207 int ret = 0;
208
209 for ( i = 0; i < num_patterns; i++) {
Anatolij Gustschin52109152008-02-25 23:53:07 +0100210 move64(&(pattern[i]), pmem++);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100211 /*
212 * Put a different pattern on the data lines: otherwise they
213 * may float long enough to read back what we wrote.
214 */
Anatolij Gustschin52109152008-02-25 23:53:07 +0100215 move64(&otherpattern, pmem--);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100216 move64(pmem, &temp64);
217
218#ifdef INJECT_DATA_ERRORS
219 temp64 ^= 0x00008000;
220#endif
221
222 if (temp64 != pattern[i]){
223 pathi = (pattern[i]>>32) & 0xffffffff;
224 patlo = pattern[i] & 0xffffffff;
225
226 hi = (temp64>>32) & 0xffffffff;
227 lo = temp64 & 0xffffffff;
228
Sean Anderson551e7a72022-08-23 15:10:39 -0400229 post_log("Memory (data line) error at %p, wrote %08x%08x, read %08x%08x !\n",
230 pmem, pathi, patlo, hi, lo);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100231 ret = -1;
232 }
233 }
234 return ret;
235}
236
237static int memory_post_addrline(ulong *testaddr, ulong *base, ulong size)
238{
239 ulong *target;
240 ulong *end;
241 ulong readback;
242 ulong xor;
243 int ret = 0;
244
245 end = (ulong *)((ulong)base + size); /* pointer arith! */
246 xor = 0;
247 for(xor = sizeof(ulong); xor > 0; xor <<= 1) {
248 target = (ulong *)((ulong)testaddr ^ xor);
249 if((target >= base) && (target < end)) {
250 *testaddr = ~*target;
251 readback = *target;
252
253#ifdef INJECT_ADDRESS_ERRORS
254 if(xor == 0x00008000) {
255 readback = *testaddr;
256 }
257#endif
258 if(readback == *testaddr) {
Sean Anderson551e7a72022-08-23 15:10:39 -0400259 post_log("Memory (address line) error at %p<->%p, XOR value %08lx !\n",
260 testaddr, target, xor);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100261 ret = -1;
262 }
263 }
264 }
265 return ret;
266}
267
Valentin Longchamp738fa062011-08-03 02:37:03 +0000268static int memory_post_test1(unsigned long start,
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100269 unsigned long size,
270 unsigned long val)
271{
272 unsigned long i;
273 ulong *mem = (ulong *) start;
274 ulong readback;
275 int ret = 0;
276
277 for (i = 0; i < size / sizeof (ulong); i++) {
278 mem[i] = val;
279 if (i % 1024 == 0)
Stefan Roese80877fa2022-09-02 14:10:46 +0200280 schedule();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100281 }
282
Valentin Longchamp738fa062011-08-03 02:37:03 +0000283 for (i = 0; i < size / sizeof (ulong) && !ret; i++) {
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100284 readback = mem[i];
285 if (readback != val) {
Sean Anderson551e7a72022-08-23 15:10:39 -0400286 post_log("Memory error at %p, wrote %08lx, read %08lx !\n",
287 mem + i, val, readback);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100288
289 ret = -1;
290 break;
291 }
292 if (i % 1024 == 0)
Stefan Roese80877fa2022-09-02 14:10:46 +0200293 schedule();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100294 }
295
296 return ret;
297}
298
Valentin Longchamp738fa062011-08-03 02:37:03 +0000299static int memory_post_test2(unsigned long start, unsigned long size)
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100300{
301 unsigned long i;
302 ulong *mem = (ulong *) start;
303 ulong readback;
304 int ret = 0;
305
306 for (i = 0; i < size / sizeof (ulong); i++) {
307 mem[i] = 1 << (i % 32);
308 if (i % 1024 == 0)
Stefan Roese80877fa2022-09-02 14:10:46 +0200309 schedule();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100310 }
311
Valentin Longchamp738fa062011-08-03 02:37:03 +0000312 for (i = 0; i < size / sizeof (ulong) && !ret; i++) {
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100313 readback = mem[i];
314 if (readback != (1 << (i % 32))) {
Sean Anderson551e7a72022-08-23 15:10:39 -0400315 post_log("Memory error at %p, wrote %08lx, read %08lx !\n",
316 mem + i, 1UL << (i % 32), readback);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100317
318 ret = -1;
319 break;
320 }
321 if (i % 1024 == 0)
Stefan Roese80877fa2022-09-02 14:10:46 +0200322 schedule();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100323 }
324
325 return ret;
326}
327
Valentin Longchamp738fa062011-08-03 02:37:03 +0000328static int memory_post_test3(unsigned long start, unsigned long size)
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100329{
330 unsigned long i;
331 ulong *mem = (ulong *) start;
332 ulong readback;
333 int ret = 0;
334
335 for (i = 0; i < size / sizeof (ulong); i++) {
336 mem[i] = i;
337 if (i % 1024 == 0)
Stefan Roese80877fa2022-09-02 14:10:46 +0200338 schedule();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100339 }
340
Valentin Longchamp738fa062011-08-03 02:37:03 +0000341 for (i = 0; i < size / sizeof (ulong) && !ret; i++) {
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100342 readback = mem[i];
343 if (readback != i) {
Sean Anderson551e7a72022-08-23 15:10:39 -0400344 post_log("Memory error at %p, wrote %08lx, read %08lx !\n",
345 mem + i, i, readback);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100346
347 ret = -1;
348 break;
349 }
350 if (i % 1024 == 0)
Stefan Roese80877fa2022-09-02 14:10:46 +0200351 schedule();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100352 }
353
354 return ret;
355}
356
Valentin Longchamp738fa062011-08-03 02:37:03 +0000357static int memory_post_test4(unsigned long start, unsigned long size)
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100358{
359 unsigned long i;
360 ulong *mem = (ulong *) start;
361 ulong readback;
362 int ret = 0;
363
364 for (i = 0; i < size / sizeof (ulong); i++) {
365 mem[i] = ~i;
366 if (i % 1024 == 0)
Stefan Roese80877fa2022-09-02 14:10:46 +0200367 schedule();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100368 }
369
Valentin Longchamp738fa062011-08-03 02:37:03 +0000370 for (i = 0; i < size / sizeof (ulong) && !ret; i++) {
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100371 readback = mem[i];
372 if (readback != ~i) {
Sean Anderson551e7a72022-08-23 15:10:39 -0400373 post_log("Memory error at %p, wrote %08lx, read %08lx !\n",
374 mem + i, ~i, readback);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100375
376 ret = -1;
377 break;
378 }
379 if (i % 1024 == 0)
Stefan Roese80877fa2022-09-02 14:10:46 +0200380 schedule();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100381 }
382
383 return ret;
384}
385
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000386static int memory_post_test_lines(unsigned long start, unsigned long size)
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100387{
388 int ret = 0;
389
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000390 ret = memory_post_dataline((unsigned long long *)start);
Stefan Roese80877fa2022-09-02 14:10:46 +0200391 schedule();
Valentin Longchamp738fa062011-08-03 02:37:03 +0000392 if (!ret)
393 ret = memory_post_addrline((ulong *)start, (ulong *)start,
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000394 size);
Stefan Roese80877fa2022-09-02 14:10:46 +0200395 schedule();
Valentin Longchamp738fa062011-08-03 02:37:03 +0000396 if (!ret)
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000397 ret = memory_post_addrline((ulong *)(start+size-8),
398 (ulong *)start, size);
Stefan Roese80877fa2022-09-02 14:10:46 +0200399 schedule();
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000400
401 return ret;
402}
403
404static int memory_post_test_patterns(unsigned long start, unsigned long size)
405{
406 int ret = 0;
407
408 ret = memory_post_test1(start, size, 0x00000000);
Stefan Roese80877fa2022-09-02 14:10:46 +0200409 schedule();
Valentin Longchamp738fa062011-08-03 02:37:03 +0000410 if (!ret)
411 ret = memory_post_test1(start, size, 0xffffffff);
Stefan Roese80877fa2022-09-02 14:10:46 +0200412 schedule();
Valentin Longchamp738fa062011-08-03 02:37:03 +0000413 if (!ret)
414 ret = memory_post_test1(start, size, 0x55555555);
Stefan Roese80877fa2022-09-02 14:10:46 +0200415 schedule();
Valentin Longchamp738fa062011-08-03 02:37:03 +0000416 if (!ret)
417 ret = memory_post_test1(start, size, 0xaaaaaaaa);
Stefan Roese80877fa2022-09-02 14:10:46 +0200418 schedule();
Valentin Longchamp738fa062011-08-03 02:37:03 +0000419 if (!ret)
420 ret = memory_post_test2(start, size);
Stefan Roese80877fa2022-09-02 14:10:46 +0200421 schedule();
Valentin Longchamp738fa062011-08-03 02:37:03 +0000422 if (!ret)
423 ret = memory_post_test3(start, size);
Stefan Roese80877fa2022-09-02 14:10:46 +0200424 schedule();
Valentin Longchamp738fa062011-08-03 02:37:03 +0000425 if (!ret)
426 ret = memory_post_test4(start, size);
Stefan Roese80877fa2022-09-02 14:10:46 +0200427 schedule();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100428
429 return ret;
430}
431
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000432static int memory_post_test_regions(unsigned long start, unsigned long size)
433{
434 unsigned long i;
435 int ret = 0;
436
437 for (i = 0; i < (size >> 20) && (!ret); i++) {
438 if (!ret)
Heiko Schocher865fed32011-10-06 20:40:00 +0000439 ret = memory_post_test_patterns(start + (i << 20),
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000440 0x800);
Heiko Schocher865fed32011-10-06 20:40:00 +0000441 if (!ret)
442 ret = memory_post_test_patterns(start + (i << 20) +
443 0xff800, 0x800);
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000444 }
445
446 return ret;
447}
448
449static int memory_post_tests(unsigned long start, unsigned long size)
450{
451 int ret = 0;
452
453 ret = memory_post_test_lines(start, size);
454 if (!ret)
455 ret = memory_post_test_patterns(start, size);
456
457 return ret;
458}
459
Heiko Schochere50cc8f2011-06-02 19:38:24 +0000460/*
461 * !! this is only valid, if you have contiguous memory banks !!
462 */
York Sund92dea92010-09-28 15:20:31 -0700463__attribute__((weak))
464int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100465{
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900466 struct bd_info *bd = gd->bd;
Heiko Schochere50cc8f2011-06-02 19:38:24 +0000467
Tom Rinibb4dd962022-11-16 13:10:37 -0500468 *vstart = CFG_SYS_SDRAM_BASE;
Heiko Schochere50cc8f2011-06-02 19:38:24 +0000469 *size = (gd->ram_size >= 256 << 20 ?
470 256 << 20 : gd->ram_size) - (1 << 20);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100471
Yuri Tikhonov18082ce2007-08-25 05:07:16 +0200472 /* Limit area to be tested with the board info struct */
York Sund92dea92010-09-28 15:20:31 -0700473 if ((*vstart) + (*size) > (ulong)bd)
474 *size = (ulong)bd - *vstart;
475
476 return 0;
477}
478
479__attribute__((weak))
480int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
481{
482 return 1;
483}
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100484
York Sund92dea92010-09-28 15:20:31 -0700485__attribute__((weak))
486int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
487{
488 return 0;
489}
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100490
York Sund92dea92010-09-28 15:20:31 -0700491__attribute__((weak))
492void arch_memory_failure_handle(void)
493{
494 return;
495}
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100496
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000497int memory_regions_post_test(int flags)
498{
499 int ret = 0;
500 phys_addr_t phys_offset = 0;
501 u32 memsize, vstart;
502
503 arch_memory_test_prepare(&vstart, &memsize, &phys_offset);
504
505 ret = memory_post_test_lines(vstart, memsize);
506 if (!ret)
507 ret = memory_post_test_regions(vstart, memsize);
508
509 return ret;
510}
511
York Sund92dea92010-09-28 15:20:31 -0700512int memory_post_test(int flags)
513{
514 int ret = 0;
515 phys_addr_t phys_offset = 0;
516 u32 memsize, vstart;
517
518 arch_memory_test_prepare(&vstart, &memsize, &phys_offset);
519
520 do {
521 if (flags & POST_SLOWTEST) {
522 ret = memory_post_tests(vstart, memsize);
523 } else { /* POST_NORMAL */
Valentin Longchamp24db42a2011-09-12 04:18:40 +0000524 ret = memory_post_test_regions(vstart, memsize);
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100525 }
York Sund92dea92010-09-28 15:20:31 -0700526 } while (!ret &&
527 !arch_memory_test_advance(&vstart, &memsize, &phys_offset));
528
529 arch_memory_test_cleanup(&vstart, &memsize, &phys_offset);
530 if (ret)
531 arch_memory_failure_handle();
Wolfgang Denkb38e0df2007-03-06 18:08:43 +0100532
533 return ret;
534}
535
Tom Rini8eaa3c72022-11-19 18:45:44 -0500536#endif /* CFG_POST&(CFG_SYS_POST_MEMORY|CFG_SYS_POST_MEM_REGIONS) */