RE: [PATCH] board: stih410-b2260: remove fdt_high and initrd_high

2020-02-14 Thread Patrick DELAUNAY
Hi,

> From: Patrice CHOTARD 
> Sent: lundi 3 février 2020 15:01
> 
> Remove fdt_high and initrd_high as they shouldn't be used, this allows the 
> fdt and
> initrd relocation.
> This implies to set CONFIG_SYS_BOOTMAPSZ to indicate the amount of
> memory available to contain kernel, device tree and initrd for relocation.
> 
> Signed-off-by: Patrice Chotard 
> ---

Applied to u-boot-stm32/master, thanks!

Regards
Patrick


RE: [PATCH] board: stih410-b2260: remove fdt_high and initrd_high

2020-02-13 Thread Patrick DELAUNAY
Hi Patrice,

> From: Patrice CHOTARD 
> Sent: lundi 3 février 2020 15:01
> 
> Remove fdt_high and initrd_high as they shouldn't be used, this allows the 
> fdt and
> initrd relocation.
> This implies to set CONFIG_SYS_BOOTMAPSZ to indicate the amount of
> memory available to contain kernel, device tree and initrd for relocation.
> 
> Signed-off-by: Patrice Chotard 
> ---

Reviewed-by: Patrick Delaunay 

Regards,

Patrick


Re: [PATCH] board: stih410-b2260: remove fdt_high and initrd_high

2020-02-03 Thread Tom Rini
On Mon, Feb 03, 2020 at 03:00:59PM +0100, Patrice Chotard wrote:

> Remove fdt_high and initrd_high as they shouldn't be used,
> this allows the fdt and initrd relocation.
> This implies to set CONFIG_SYS_BOOTMAPSZ to indicate the
> amount of memory available to contain kernel, device tree
> and initrd for relocation.
> 
> Signed-off-by: Patrice Chotard 

Reviewed-by: Tom Rini 

-- 
Tom


signature.asc
Description: PGP signature


[PATCH] board: stih410-b2260: remove fdt_high and initrd_high

2020-02-03 Thread Patrice Chotard
Remove fdt_high and initrd_high as they shouldn't be used,
this allows the fdt and initrd relocation.
This implies to set CONFIG_SYS_BOOTMAPSZ to indicate the
amount of memory available to contain kernel, device tree
and initrd for relocation.

Signed-off-by: Patrice Chotard 
---

 include/configs/stih410-b2260.h | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h
index a8a58f3950..f393aa0264 100644
--- a/include/configs/stih410-b2260.h
+++ b/include/configs/stih410-b2260.h
@@ -19,6 +19,12 @@
 
 /* Environment */
 
+/*
+ * For booting Linux, use the first 256 MB of memory, since this is
+ * the maximum mapped by the Linux kernel during initialization.
+ */
+#define CONFIG_SYS_BOOTMAPSZ   SZ_256M
+
 #define CONFIG_LOADADDRCONFIG_SYS_LOAD_ADDR
 #define CONFIG_SYS_BOOTM_LEN   SZ_16M
 
@@ -34,8 +40,6 @@
"fdt_addr_r=0x4700\0"   \
"scriptaddr=0x5000\0"   \
"pxefile_addr_r=0x5010\0"   \
-   "fdt_high=0x\0" \
-   "initrd_high=0x\0"  \
"ramdisk_addr_r=0x4800\0"   \
BOOTENV
 
-- 
2.17.1