]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/memsize.c
mtd, ubi, ubifs: resync with Linux-3.14
[people/ms/u-boot.git] / common / memsize.c
CommitLineData
c83bf6a2
WD
1/*
2 * (C) Copyright 2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
c83bf6a2
WD
6 */
7
e3866163
YS
8#include <common.h>
9
10DECLARE_GLOBAL_DATA_PTR;
11
91650b3e
WD
12#ifdef __PPC__
13/*
14 * At least on G2 PowerPC cores, sequential accesses to non-existent
15 * memory must be synchronized.
16 */
17# include <asm/io.h> /* for sync() */
18#else
19# define sync() /* nothing */
20#endif
c83bf6a2
WD
21
22/*
23 * Check memory range for valid RAM. A simple memory test determines
24 * the actually available RAM size between addresses `base' and
25 * `base + maxsize'.
26 */
a55d23cc 27long get_ram_size(long *base, long maxsize)
c83bf6a2
WD
28{
29 volatile long *addr;
30 long save[32];
31 long cnt;
32 long val;
33 long size;
34 int i = 0;
35
36 for (cnt = (maxsize / sizeof (long)) >> 1; cnt > 0; cnt >>= 1) {
37 addr = base + cnt; /* pointer arith! */
91650b3e 38 sync ();
c83bf6a2 39 save[i++] = *addr;
91650b3e 40 sync ();
c83bf6a2
WD
41 *addr = ~cnt;
42 }
43
44 addr = base;
91650b3e 45 sync ();
c83bf6a2 46 save[i] = *addr;
91650b3e 47 sync ();
c83bf6a2
WD
48 *addr = 0;
49
91650b3e 50 sync ();
c83bf6a2
WD
51 if ((val = *addr) != 0) {
52 /* Restore the original data before leaving the function.
53 */
91650b3e 54 sync ();
c83bf6a2
WD
55 *addr = save[i];
56 for (cnt = 1; cnt < maxsize / sizeof(long); cnt <<= 1) {
57 addr = base + cnt;
91650b3e 58 sync ();
c83bf6a2
WD
59 *addr = save[--i];
60 }
61 return (0);
62 }
63
64 for (cnt = 1; cnt < maxsize / sizeof (long); cnt <<= 1) {
65 addr = base + cnt; /* pointer arith! */
66 val = *addr;
67 *addr = save[--i];
68 if (val != ~cnt) {
69 size = cnt * sizeof (long);
70 /* Restore the original data before leaving the function.
71 */
72 for (cnt <<= 1; cnt < maxsize / sizeof (long); cnt <<= 1) {
73 addr = base + cnt;
74 *addr = save[--i];
75 }
76 return (size);
77 }
78 }
79
80 return (maxsize);
81}
e3866163
YS
82
83phys_size_t __weak get_effective_memsize(void)
84{
85#ifndef CONFIG_VERY_BIG_RAM
86 return gd->ram_size;
87#else
88 /* limit stack to what we can reasonable map */
89 return ((gd->ram_size > CONFIG_MAX_MEM_MAPPED) ?
90 CONFIG_MAX_MEM_MAPPED : gd->ram_size);
91#endif
92}