[U-Boot] [PATCH v3 07/12] Allow architecture-specific memory reservation

2015-01-19 Thread Simon Glass
All memory to be reserved for use after relocation by adding a new call
to perform this reservation.

Signed-off-by: Simon Glass 
---

Changes in v3: None
Changes in v2: None

 common/board_f.c | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/common/board_f.c b/common/board_f.c
index 3a4b32c..215108b 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -807,6 +807,12 @@ static int initf_dm(void)
return 0;
 }
 
+/* Architecture-specific memory reservation */
+__weak int reserve_arch(void)
+{
+   return 0;
+}
+
 static init_fnc_t init_sequence_f[] = {
 #ifdef CONFIG_SANDBOX
setup_ram_buf,
@@ -970,6 +976,7 @@ static init_fnc_t init_sequence_f[] = {
setup_machine,
reserve_global_data,
reserve_fdt,
+   reserve_arch,
reserve_stacks,
setup_dram_config,
show_dram_config,
-- 
2.2.0.rc0.207.ga3a616c

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v3 07/12] Allow architecture-specific memory reservation

2015-01-24 Thread Simon Glass
On 19 January 2015 at 22:16, Simon Glass  wrote:
> All memory to be reserved for use after relocation by adding a new call
> to perform this reservation.
>
> Signed-off-by: Simon Glass 
> ---
>
> Changes in v3: None
> Changes in v2: None
>
>  common/board_f.c | 7 +++
>  1 file changed, 7 insertions(+)

Applied to u-boot-x86.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot