* [U-Boot] [PATCH] get_ram_size: memory content of base address was not restored
@ 2010-05-25 7:04 ratbert.chuang at gmail.com
2010-08-07 19:50 ` Wolfgang Denk
0 siblings, 1 reply; 3+ messages in thread
From: ratbert.chuang at gmail.com @ 2010-05-25 7:04 UTC (permalink / raw)
To: u-boot
From: Po-Yu Chuang <ratbert@faraday-tech.com>
Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
---
common/memsize.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/common/memsize.c b/common/memsize.c
index 6c275c9..99469ab 100644
--- a/common/memsize.c
+++ b/common/memsize.c
@@ -74,6 +74,7 @@ long get_ram_size(volatile long *base, long maxsize)
return (0);
}
+ *addr = save[i];
for (cnt = 1; cnt < maxsize / sizeof (long); cnt <<= 1) {
addr = base + cnt; /* pointer arith! */
val = *addr;
--
1.6.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] get_ram_size: memory content of base address was not restored
2010-05-25 7:04 [U-Boot] [PATCH] get_ram_size: memory content of base address was not restored ratbert.chuang at gmail.com
@ 2010-08-07 19:50 ` Wolfgang Denk
2010-08-09 2:25 ` Po-Yu Chuang
0 siblings, 1 reply; 3+ messages in thread
From: Wolfgang Denk @ 2010-08-07 19:50 UTC (permalink / raw)
To: u-boot
Dear ratbert.chuang at gmail.com,
In message <1274771093-29677-1-git-send-email-ratbert.chuang@gmail.com> you wrote:
> From: Po-Yu Chuang <ratbert@faraday-tech.com>
>
>
> Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
> ---
> common/memsize.c | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/common/memsize.c b/common/memsize.c
> index 6c275c9..99469ab 100644
> --- a/common/memsize.c
> +++ b/common/memsize.c
> @@ -74,6 +74,7 @@ long get_ram_size(volatile long *base, long maxsize)
> return (0);
> }
>
> + *addr = save[i];
> for (cnt = 1; cnt < maxsize / sizeof (long); cnt <<= 1) {
> addr = base + cnt; /* pointer arith! */
> val = *addr;
I think this patch is wrong. The value at address (base + 0) is never
saved, so there is no need to restore it (nor did we store it's value
anywhere).
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
The important thing about being a leader is not being right or wrong,
but being *certain*. - Terry Pratchett, _Truckers_
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] get_ram_size: memory content of base address was not restored
2010-08-07 19:50 ` Wolfgang Denk
@ 2010-08-09 2:25 ` Po-Yu Chuang
0 siblings, 0 replies; 3+ messages in thread
From: Po-Yu Chuang @ 2010-08-09 2:25 UTC (permalink / raw)
To: u-boot
Dear Wolfgang,
2010/8/8 Wolfgang Denk <wd@denx.de>:
> Dear ratbert.chuang at gmail.com,
> I think this patch is wrong. The value at address (base + 0) is never
> saved, so there is no need to restore it (nor did we store it's value
> anywhere).
The value at base+0 is saved. Please see the following explanation.
long get_ram_size(volatile long *base, long maxsize)
{
volatile long *addr;
long save[32];
long cnt;
long val;
long size;
int i = 0;
for (cnt = (maxsize / sizeof (long)) >> 1; cnt > 0; cnt >>= 1) {
addr = base + cnt; /* pointer arith! */
sync ();
save[i++] = *addr;
sync ();
*addr = ~cnt;
}
addr = base;
sync ();
save[i] = *addr; <----- value of [base+0] is saved.
sync ();
*addr = 0; <----- [base+0] is modified.
sync ();
if ((val = *addr) != 0) {
/* Restore the original data before leaving the function.
*/
sync ();
*addr = save[i]; <----- value of [base+0] is restored.
for (cnt = 1; cnt < maxsize / sizeof(long); cnt <<= 1) {
addr = base + cnt;
sync ();
*addr = save[--i];
}
return (0);
}
+ *addr = save[i]; <----- Therefore we should also restore [base+0] here.
for (cnt = 1; cnt < maxsize / sizeof (long); cnt <<= 1) {
addr = base + cnt; /* pointer arith! */
val = *addr;
*addr = save[--i];
if (val != ~cnt) {
size = cnt * sizeof (long);
/* Restore the original data before leaving the function.
*/
for (cnt <<= 1; cnt < maxsize / sizeof (long); cnt <<= 1) {
addr = base + cnt;
*addr = save[--i];
}
return (size);
}
}
return (maxsize);
}
best regards,
Po-Yu Chuang
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-08-09 2:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-25 7:04 [U-Boot] [PATCH] get_ram_size: memory content of base address was not restored ratbert.chuang at gmail.com
2010-08-07 19:50 ` Wolfgang Denk
2010-08-09 2:25 ` Po-Yu Chuang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox