U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s5p4418_nanopi2: Stop disabling device tree relocation
@ 2025-11-19 14:55 Tom Rini
  2025-11-26  9:31 ` Stefan Bosch
  0 siblings, 1 reply; 3+ messages in thread
From: Tom Rini @ 2025-11-19 14:55 UTC (permalink / raw)
  To: u-boot; +Cc: Stefan Bosch

Remove setting of fdt_high to ~0, which disables device tree relocation,
from the default environment. Doing so prevents U-Boot from correcting
problems such as having an unaligned device tree and leads to various
failure modes in the OS.

Signed-off-by: Tom Rini <trini@konsulko.com>
---
If there is some window of memory that must be used for where the device
tree is relocated to, bootm_low + bootm_size (or often just bootm_size)
or bootm_mapsize are the correct way do this. Please see
doc/usage/environment.rst for more details.

Cc: Stefan Bosch <stefan_b@posteo.net>
---
 include/configs/s5p4418_nanopi2.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/configs/s5p4418_nanopi2.h b/include/configs/s5p4418_nanopi2.h
index fec1bfd50eb9..8a8d54daf7b4 100644
--- a/include/configs/s5p4418_nanopi2.h
+++ b/include/configs/s5p4418_nanopi2.h
@@ -139,7 +139,6 @@
 #endif
 
 #define CFG_EXTRA_ENV_SETTINGS				\
-	"fdt_high=0xffffffff\0"					\
 	"initrd_high=0xffffffff\0"				\
 	"rootdev=" __stringify(CONFIG_ROOT_DEV) "\0"		\
 	"rootpart=" __stringify(CONFIG_ROOT_PART) "\0"		\
-- 
2.43.0


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

* Re: [PATCH] s5p4418_nanopi2: Stop disabling device tree relocation
  2025-11-19 14:55 [PATCH] s5p4418_nanopi2: Stop disabling device tree relocation Tom Rini
@ 2025-11-26  9:31 ` Stefan Bosch
  2025-11-27  1:40   ` Minkyu Kang
  0 siblings, 1 reply; 3+ messages in thread
From: Stefan Bosch @ 2025-11-26  9:31 UTC (permalink / raw)
  To: Tom Rini; +Cc: u-boot

Hi Tom,

On 19.11.25 15:55, Tom Rini wrote:
> Remove setting of fdt_high to ~0, which disables device tree relocation,
> from the default environment. Doing so prevents U-Boot from correcting
> problems such as having an unaligned device tree and leads to various
> failure modes in the OS.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---

Tested-by: Stefan Bosch <stefan_b@posteo.net>

Looks OK, tested on FriendlyElec-Board NanoPC-T2 
(s5p4418_nanopi2_defconfig) with booting of LUbuntu Xenial (kernel 
4.4.49-s5p4418).

Thanks!

> If there is some window of memory that must be used for where the device
> tree is relocated to, bootm_low + bootm_size (or often just bootm_size)
> or bootm_mapsize are the correct way do this. Please see
> doc/usage/environment.rst for more details.
> 
> Cc: Stefan Bosch <stefan_b@posteo.net>
> ---
>   include/configs/s5p4418_nanopi2.h | 1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/include/configs/s5p4418_nanopi2.h b/include/configs/s5p4418_nanopi2.h
> index fec1bfd50eb9..8a8d54daf7b4 100644
> --- a/include/configs/s5p4418_nanopi2.h
> +++ b/include/configs/s5p4418_nanopi2.h
> @@ -139,7 +139,6 @@
>   #endif
>   
>   #define CFG_EXTRA_ENV_SETTINGS				\
> -	"fdt_high=0xffffffff\0"					\
>   	"initrd_high=0xffffffff\0"				\
>   	"rootdev=" __stringify(CONFIG_ROOT_DEV) "\0"		\
>   	"rootpart=" __stringify(CONFIG_ROOT_PART) "\0"		\

Regards,
Stefan

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

* RE: [PATCH] s5p4418_nanopi2: Stop disabling device tree relocation
  2025-11-26  9:31 ` Stefan Bosch
@ 2025-11-27  1:40   ` Minkyu Kang
  0 siblings, 0 replies; 3+ messages in thread
From: Minkyu Kang @ 2025-11-27  1:40 UTC (permalink / raw)
  To: 'Stefan Bosch', 'Tom Rini'; +Cc: u-boot

Hi,

> If there is some window of memory that must be used for where the 
> device tree is relocated to, bootm_low + bootm_size (or often just 
> bootm_size) or bootm_mapsize are the correct way do this. Please see 
> doc/usage/environment.rst for more details.
> 
> Cc: Stefan Bosch <stefan_b@posteo.net>
> ---
>   include/configs/s5p4418_nanopi2.h | 1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/include/configs/s5p4418_nanopi2.h 
> b/include/configs/s5p4418_nanopi2.h
> index fec1bfd50eb9..8a8d54daf7b4 100644
> --- a/include/configs/s5p4418_nanopi2.h
> +++ b/include/configs/s5p4418_nanopi2.h
> @@ -139,7 +139,6 @@
>   #endif
>   
>   #define CFG_EXTRA_ENV_SETTINGS				\
> -	"fdt_high=0xffffffff\0"					\
>   	"initrd_high=0xffffffff\0"				\
>   	"rootdev=" __stringify(CONFIG_ROOT_DEV) "\0"		\
>   	"rootpart=" __stringify(CONFIG_ROOT_PART) "\0"		\

Applied to u-boot-samsung.

Thanks,
Minkyu Kang.


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

end of thread, other threads:[~2025-11-27  1:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-19 14:55 [PATCH] s5p4418_nanopi2: Stop disabling device tree relocation Tom Rini
2025-11-26  9:31 ` Stefan Bosch
2025-11-27  1:40   ` Minkyu Kang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox