Skip to content
Snippets Groups Projects
Commit c5da05cd authored by Patrick Delaunay's avatar Patrick Delaunay Committed by Tom Rini
Browse files

common/memsize.c: prepare get_ram_size update


Save the content of the base address in a new variable
in stack (save_base) to prepare restore this content.

This patch don't modified code behavior and stack usage.

Signed-off-by: default avatarPatrick Delaunay <patrick.delaunay@st.com>
parent 79717c80
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,8 @@ DECLARE_GLOBAL_DATA_PTR; ...@@ -27,7 +27,8 @@ DECLARE_GLOBAL_DATA_PTR;
long get_ram_size(long *base, long maxsize) long get_ram_size(long *base, long maxsize)
{ {
volatile long *addr; volatile long *addr;
long save[32]; long save[31];
long save_base;
long cnt; long cnt;
long val; long val;
long size; long size;
...@@ -43,7 +44,7 @@ long get_ram_size(long *base, long maxsize) ...@@ -43,7 +44,7 @@ long get_ram_size(long *base, long maxsize)
addr = base; addr = base;
sync(); sync();
save[i] = *addr; save_base = *addr;
sync(); sync();
*addr = 0; *addr = 0;
...@@ -51,7 +52,7 @@ long get_ram_size(long *base, long maxsize) ...@@ -51,7 +52,7 @@ long get_ram_size(long *base, long maxsize)
if ((val = *addr) != 0) { if ((val = *addr) != 0) {
/* Restore the original data before leaving the function. */ /* Restore the original data before leaving the function. */
sync(); sync();
*addr = save[i]; *base = save_base;
for (cnt = 1; cnt < maxsize / sizeof(long); cnt <<= 1) { for (cnt = 1; cnt < maxsize / sizeof(long); cnt <<= 1) {
addr = base + cnt; addr = base + cnt;
sync(); sync();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment