summaryrefslogtreecommitdiffstats
path: root/src/arch/ppc64/stages.c
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-10-23 18:58:06 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-11-04 11:39:25 +0000
commita09d33ec88bc5a43e78a23d5ccc8fb7a87fda362 (patch)
treedf25fc329520e09ff002549c5d289f4fab670d29 /src/arch/ppc64/stages.c
parentbc78e014c548ae6e6689050735875120036d0da8 (diff)
downloadcoreboot-a09d33ec88bc5a43e78a23d5ccc8fb7a87fda362.tar.gz
coreboot-a09d33ec88bc5a43e78a23d5ccc8fb7a87fda362.tar.bz2
coreboot-a09d33ec88bc5a43e78a23d5ccc8fb7a87fda362.zip
arch/ppc64: Pass cbmem_top to ramstage via calling argument
This avoids the need for a platform specific implementation of cbmem_top. HOW TO TEST? There is no serial console for the qemu target... Change-Id: I68aa09a46786eba37c009c5f08642445805b08eb Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36276 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marty E. Plummer <hanetzer@startmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/arch/ppc64/stages.c')
-rw-r--r--src/arch/ppc64/stages.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/arch/ppc64/stages.c b/src/arch/ppc64/stages.c
index 3cc9371ffee1..aacf45f88fd1 100644
--- a/src/arch/ppc64/stages.c
+++ b/src/arch/ppc64/stages.c
@@ -22,9 +22,12 @@
* linker script.
*/
+#include <cbmem.h>
#include <arch/stages.h>
-void stage_entry(void)
+void stage_entry(uintptr_t stage_arg)
{
+ if (!ENV_ROMSTAGE_OR_BEFORE)
+ _cbmem_top_ptr = stage_arg;
main();
}