public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] riscv: binman: fix the load field format
@ 2023-11-09  3:14 Randolph
  2023-11-10 11:50 ` Simon Glass
  0 siblings, 1 reply; 4+ messages in thread
From: Randolph @ 2023-11-09  3:14 UTC (permalink / raw)
  To: u-boot; +Cc: randolph.sklin, dylan, tim609, peterlin, Randolph

The #address-cells is now equal to 2. The format of the load field for
the Linux kernel doesn't match.

Signed-off-by: Randolph <randolph@andestech.com>
---
 arch/riscv/dts/binman.dtsi | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/riscv/dts/binman.dtsi b/arch/riscv/dts/binman.dtsi
index 6b4eb8dc7b..5117d7c8c9 100644
--- a/arch/riscv/dts/binman.dtsi
+++ b/arch/riscv/dts/binman.dtsi
@@ -50,7 +50,8 @@
 					os = "Linux";
 					arch = "riscv";
 					compression = "none";
-					load = <CONFIG_TEXT_BASE>;
+					load = <U64_TO_U32_H(CONFIG_TEXT_BASE)
+						U64_TO_U32_L(CONFIG_TEXT_BASE)>;
 
 					linux_blob: blob-ext {
 						filename = "Image";
-- 
2.34.1


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

end of thread, other threads:[~2023-11-15  3:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-09  3:14 [PATCH] riscv: binman: fix the load field format Randolph
2023-11-10 11:50 ` Simon Glass
2023-11-14  6:26   ` Randolph Lin
2023-11-15  3:11     ` Simon Glass

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