All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/4] board: keymile: common: fix pnvramaddr and varaddr address calculation
@ 2021-01-13 16:21 Aleksandar Gerasimovski
  2021-01-19  6:52 ` Priyanka Jain
  0 siblings, 1 reply; 2+ messages in thread
From: Aleksandar Gerasimovski @ 2021-01-13 16:21 UTC (permalink / raw)
  To: u-boot

Take into account?SDRAM_BASE address when calculating?pnvramaddr and
varaddr offsets.
Up to now Keymile designs had SDRAM_BASE equal to zero and the offsets
where calculated correctly, this fix is for the upcoming designs that
have?SDRAM_BASE different then zero.

Signed-off-by: Aleksandar Gerasimovski <aleksandar.gerasimovski@hitachi-powergrids.com>
---
 board/keymile/common/common.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/board/keymile/common/common.c b/board/keymile/common/common.c
index df507e2..e3e9c4a 100644
--- a/board/keymile/common/common.c
+++ b/board/keymile/common/common.c
@@ -49,8 +49,8 @@ int set_km_env(void)
 	char *p;
 	unsigned long rootfssize = 0;
 
-	pnvramaddr = gd->ram_size - CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM
-			- CONFIG_KM_PNVRAM;
+	pnvramaddr = CONFIG_SYS_SDRAM_BASE + gd->ram_size -
+		CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM - CONFIG_KM_PNVRAM;
 	sprintf((char *)buf, "0x%x", pnvramaddr);
 	env_set("pnvramaddr", (char *)buf);
 
@@ -63,7 +63,8 @@ int set_km_env(void)
 	sprintf((char *)buf, "0x%x", pram);
 	env_set("pram", (char *)buf);
 
-	varaddr = gd->ram_size - CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM;
+	varaddr = CONFIG_SYS_SDRAM_BASE + gd->ram_size -
+		CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM;
 	sprintf((char *)buf, "0x%x", varaddr);
 	env_set("varaddr", (char *)buf);
 
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH 3/4] board: keymile: common: fix pnvramaddr and varaddr address calculation
  2021-01-13 16:21 [PATCH 3/4] board: keymile: common: fix pnvramaddr and varaddr address calculation Aleksandar Gerasimovski
@ 2021-01-19  6:52 ` Priyanka Jain
  0 siblings, 0 replies; 2+ messages in thread
From: Priyanka Jain @ 2021-01-19  6:52 UTC (permalink / raw)
  To: u-boot



>-----Original Message-----
>From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Aleksandar
>Gerasimovski
>Sent: Wednesday, January 13, 2021 9:51 PM
>To: u-boot at lists.denx.de
>Cc: Valentin Longchamp <valentin.longchamp@hitachi-powergrids.com>; Holger
>Brunck <holger.brunck@hitachi-powergrids.com>; Rainer Boschung
><rainer.boschung@hitachi-powergrids.com>; Matteo Ghidoni
><matteo.ghidoni@hitachi-powergrids.com>
>Subject: [PATCH 3/4] board: keymile: common: fix pnvramaddr and varaddr
>address calculation
>
Please trim subject line to 60 characters
>Take into account?SDRAM_BASE address when calculating?pnvramaddr and
>varaddr offsets.
>Up to now Keymile designs had SDRAM_BASE equal to zero and the offsets where
>calculated correctly, this fix is for the upcoming designs that have?SDRAM_BASE
>different then zero.
>
>Signed-off-by: Aleksandar Gerasimovski <aleksandar.gerasimovski@hitachi-
>powergrids.com>
<snip>

Regards
Priyanka

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-01-19  6:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-13 16:21 [PATCH 3/4] board: keymile: common: fix pnvramaddr and varaddr address calculation Aleksandar Gerasimovski
2021-01-19  6:52 ` Priyanka Jain

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.