summaryrefslogtreecommitdiffstats
path: root/board/phytec
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2013-05-31 12:31:59 -0400
committerTom Rini <trini@ti.com>2013-06-05 08:46:49 -0400
commit4596dcc1d4ea5763e0f92cf5becd9fc7d4c6e674 (patch)
tree95efd1376ba2b8e80dd6479fa21f95c9ace56fcd /board/phytec
parent320d9746d3aa8373b86e8f6331bc7c8c8c87fced (diff)
downloadtalos-obmc-uboot-4596dcc1d4ea5763e0f92cf5becd9fc7d4c6e674.tar.gz
talos-obmc-uboot-4596dcc1d4ea5763e0f92cf5becd9fc7d4c6e674.zip
am33xx/omap: Move save_omap_boot_params to omap-common/boot-common.c
We need to call the save_omap_boot_params function on am33xx/ti81xx and other newer TI SoCs, so move the function to boot-common. Only OMAP4+ has the omap_hw_init_context function so add ifdefs to not call it on am33xx/ti81xx. Call save_omap_boot_params from s_init on am33xx/ti81xx boards. Reviewed-by: R Sricharan <r.sricharan@ti.com> Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/phytec')
-rw-r--r--board/phytec/pcm051/board.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/board/phytec/pcm051/board.c b/board/phytec/pcm051/board.c
index 43d7b6e15a..93c611dfc6 100644
--- a/board/phytec/pcm051/board.c
+++ b/board/phytec/pcm051/board.c
@@ -115,6 +115,15 @@ static struct emif_regs ddr3_emif_reg_data = {
void s_init(void)
{
/*
+ * Save the boot parameters passed from romcode.
+ * We cannot delay the saving further than this,
+ * to prevent overwrites.
+ */
+#ifdef CONFIG_SPL_BUILD
+ save_omap_boot_params();
+#endif
+
+ /*
* WDT1 is already running when the bootloader gets control
* Disable it to avoid "random" resets
*/
OpenPOWER on IntegriCloud