]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - post/drivers/memory.c
core: add ofnode_get_by_phandle() api
[people/ms/u-boot.git] / post / drivers / memory.c
index 69c5dbec45339d90c14496751fd2f4d8da7d78e8..b410502873ad1753f2a739367e6aac158fdd73e8 100644 (file)
@@ -2,23 +2,7 @@
  * (C) Copyright 2002
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
+ * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
 #include <post.h>
 #include <watchdog.h>
 
-#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
+#if CONFIG_POST & (CONFIG_SYS_POST_MEMORY | CONFIG_SYS_POST_MEM_REGIONS)
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -186,14 +170,7 @@ DECLARE_GLOBAL_DATA_PTR;
  */
 static void move64(const unsigned long long *src, unsigned long long *dest)
 {
-#if defined(CONFIG_MPC8260) || defined(CONFIG_MPC824X)
-       asm ("lfd  0, 0(3)\n\t" /* fpr0   =  *scr       */
-        "stfd 0, 0(4)"         /* *dest  =  fpr0       */
-        : : : "fr0" );         /* Clobbers fr0         */
-    return;
-#else
        *dest = *src;
-#endif
 }
 
 /*
@@ -250,7 +227,7 @@ static int memory_post_dataline(unsigned long long * pmem)
                        hi = (temp64>>32) & 0xffffffff;
                        lo = temp64 & 0xffffffff;
 
-                       post_log("Memory (date line) error at %08x, "
+                       post_log("Memory (data line) error at %08x, "
                                  "wrote %08x%08x, read %08x%08x !\n",
                                          pmem, pathi, patlo, hi, lo);
                        ret = -1;
@@ -413,23 +390,29 @@ static int memory_post_test4(unsigned long start, unsigned long size)
        return ret;
 }
 
-static int memory_post_tests(unsigned long start, unsigned long size)
+static int memory_post_test_lines(unsigned long start, unsigned long size)
 {
        int ret = 0;
 
-       if (!ret)
-               ret = memory_post_dataline((unsigned long long *)start);
+       ret = memory_post_dataline((unsigned long long *)start);
        WATCHDOG_RESET();
        if (!ret)
                ret = memory_post_addrline((ulong *)start, (ulong *)start,
-                                               size);
+                               size);
        WATCHDOG_RESET();
        if (!ret)
-               ret = memory_post_addrline((ulong *)(start + size - 8),
-                                           (ulong *)start, size);
+               ret = memory_post_addrline((ulong *)(start+size-8),
+                               (ulong *)start, size);
        WATCHDOG_RESET();
-       if (!ret)
-               ret = memory_post_test1(start, size, 0x00000000);
+
+       return ret;
+}
+
+static int memory_post_test_patterns(unsigned long start, unsigned long size)
+{
+       int ret = 0;
+
+       ret = memory_post_test1(start, size, 0x00000000);
        WATCHDOG_RESET();
        if (!ret)
                ret = memory_post_test1(start, size, 0xffffffff);
@@ -453,6 +436,34 @@ static int memory_post_tests(unsigned long start, unsigned long size)
        return ret;
 }
 
+static int memory_post_test_regions(unsigned long start, unsigned long size)
+{
+       unsigned long i;
+       int ret = 0;
+
+       for (i = 0; i < (size >> 20) && (!ret); i++) {
+               if (!ret)
+                       ret = memory_post_test_patterns(start + (i << 20),
+                               0x800);
+               if (!ret)
+                       ret = memory_post_test_patterns(start + (i << 20) +
+                               0xff800, 0x800);
+       }
+
+       return ret;
+}
+
+static int memory_post_tests(unsigned long start, unsigned long size)
+{
+       int ret = 0;
+
+       ret = memory_post_test_lines(start, size);
+       if (!ret)
+               ret = memory_post_test_patterns(start, size);
+
+       return ret;
+}
+
 /*
  * !! this is only valid, if you have contiguous memory banks !!
  */
@@ -490,6 +501,21 @@ void arch_memory_failure_handle(void)
        return;
 }
 
+int memory_regions_post_test(int flags)
+{
+       int ret = 0;
+       phys_addr_t phys_offset = 0;
+       u32 memsize, vstart;
+
+       arch_memory_test_prepare(&vstart, &memsize, &phys_offset);
+
+       ret = memory_post_test_lines(vstart, memsize);
+       if (!ret)
+               ret = memory_post_test_regions(vstart, memsize);
+
+       return ret;
+}
+
 int memory_post_test(int flags)
 {
        int ret = 0;
@@ -502,15 +528,7 @@ int memory_post_test(int flags)
                if (flags & POST_SLOWTEST) {
                        ret = memory_post_tests(vstart, memsize);
                } else {                        /* POST_NORMAL */
-                       unsigned long i;
-                       for (i = 0; i < (memsize >> 20) && !ret; i++) {
-                               if (!ret)
-                                       ret = memory_post_tests(vstart +
-                                               (i << 20), 0x800);
-                               if (!ret)
-                                       ret = memory_post_tests(vstart +
-                                               (i << 20) + 0xff800, 0x800);
-                       }
+                       ret = memory_post_test_regions(vstart, memsize);
                }
        } while (!ret &&
                !arch_memory_test_advance(&vstart, &memsize, &phys_offset));
@@ -522,4 +540,4 @@ int memory_post_test(int flags)
        return ret;
 }
 
-#endif /* CONFIG_POST & CONFIG_SYS_POST_MEMORY */
+#endif /* CONFIG_POST&(CONFIG_SYS_POST_MEMORY|CONFIG_SYS_POST_MEM_REGIONS) */