diff mbox

[U-Boot,v3,09/12] common/board_r: allocate bootparams

Message ID 1423260410-9290-10-git-send-email-andreas.devel@googlemail.com
State Accepted, archived
Delegated to: Andreas Bießmann
Headers show

Commit Message

Andreas Bießmann Feb. 6, 2015, 10:06 p.m. UTC
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---

Changes in v3: None
Changes in v2:
- provide as extra patch, remove from avr32 generic board support

Changes in v1: None

 common/board_r.c |   15 +++++++++++++++
 1 file changed, 15 insertions(+)

Comments

Andreas Bießmann Feb. 16, 2015, 8:23 p.m. UTC | #1
Dear Andreas Devel,

Andreas Devel <andreas.devel@googlemail.com> writes:
>Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
>Reviewed-by: Simon Glass <sjg@chromium.org>
>---
>
>Changes in v3: None
>Changes in v2:
>- provide as extra patch, remove from avr32 generic board support
>
>Changes in v1: None
>
> common/board_r.c |   15 +++++++++++++++
> 1 file changed, 15 insertions(+)

applied to u-boot-avr32/master, thanks!

Best regards,
Andreas Bießmann
diff mbox

Patch

diff --git a/common/board_r.c b/common/board_r.c
index f7a3b55..8e1e9e0 100644
--- a/common/board_r.c
+++ b/common/board_r.c
@@ -459,6 +459,18 @@  static int initr_env(void)
 	return 0;
 }
 
+#ifdef CONFIG_SYS_BOOTPARAMS_LEN
+static int initr_malloc_bootparams(void)
+{
+	gd->bd->bi_boot_params = (ulong)malloc(CONFIG_SYS_BOOTPARAMS_LEN);
+	if (!gd->bd->bi_boot_params) {
+		puts("WARNING: Cannot allocate space for boot parameters\n");
+		return -ENOMEM;
+	}
+	return 0;
+}
+#endif
+
 #ifdef CONFIG_SC3
 /* TODO: with new initcalls, move this into the driver */
 extern void sc3_read_eeprom(void);
@@ -775,6 +787,9 @@  init_fnc_t init_sequence_r[] = {
 	initr_dataflash,
 #endif
 	initr_env,
+#ifdef CONFIG_SYS_BOOTPARAMS_LEN
+	initr_malloc_bootparams,
+#endif
 	INIT_FUNC_WATCHDOG_RESET
 	initr_secondary_cpu,
 #ifdef CONFIG_SC3