All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] board: rpi: always set fdt_addr if provided by firmware
@ 2021-09-25 10:22 Oleksandr Suvorov
  2021-09-27 12:01 ` Matthias Brugger
  0 siblings, 1 reply; 3+ messages in thread
From: Oleksandr Suvorov @ 2021-09-25 10:22 UTC (permalink / raw)
  To: u-boot
  Cc: Ricardo Salveti, Oleksandr Suvorov, Ivan T. Ivanov,
	Marek Szyprowski, Matthias Brugger, Nicolas Saenz Julienne,
	Peter Robinson

From: Ricardo Salveti <ricardo@foundries.io>

Otherwise if the env gets saved with an incorrect or different
fdt_addr (by moving sdcard between different rpi versions), it won't
be able to boot with the correct address.

This allows fdt_addr to always be in sync with what gets set by the
firmware.

Signed-off-by: Ricardo Salveti <ricardo@foundries.io>
Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
---

 board/raspberrypi/rpi/rpi.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c
index 372b26b6f2..e12f8c0c31 100644
--- a/board/raspberrypi/rpi/rpi.c
+++ b/board/raspberrypi/rpi/rpi.c
@@ -318,9 +318,6 @@ static void set_fdtfile(void)
  */
 static void set_fdt_addr(void)
 {
-	if (env_get("fdt_addr"))
-		return;
-
 	if (fdt_magic(fw_dtb_pointer) != FDT_MAGIC)
 		return;
 
-- 
2.31.1


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

end of thread, other threads:[~2021-09-27 12:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-25 10:22 [PATCH] board: rpi: always set fdt_addr if provided by firmware Oleksandr Suvorov
2021-09-27 12:01 ` Matthias Brugger
2021-09-27 12:06   ` Oleksandr Suvorov

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.