aboutsummaryrefslogtreecommitdiff
path: root/src/soc/cavium/cn81xx/bl31_plat_params.c
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2019-05-28 21:01:37 -0700
committerJulius Werner <jwerner@chromium.org>2019-09-14 05:01:16 +0000
commitb3f24b4884fe9fe0589629fbe929ebddfdc683c2 (patch)
treee2db80dac53be5f6dc1277713e5d5c5eff85f0a9 /src/soc/cavium/cn81xx/bl31_plat_params.c
parent8b93689a358b0a65a334cc3adf6141e79fab032f (diff)
arm64: Uprev Arm TF and adjust to BL31 parameter changes
This patch uprevs the Arm Trusted Firmware submodule to the new upstream master (commit 42cdeb930). Arm Trusted Firmware unified a bunch of stuff related to BL31 handoff parameters across platforms which involved changing a few names around. This patch syncs coreboot back up with that. They also made header changes that now allow us to directly include all the headers we need (in a safer and cleaner way than before), so we can get rid of some structure definitions that were duplicated. Since the version of entry point info parameters we have been using has been deprecated in Trusted Firmware, this patch switches to the new version 2 parameter format. NOTE: This may or may not stop Cavium from booting with the current pinned Trusted Firmware blob. Cavium maintainers are still evaluating whether to fix that later or drop the platform entirely. Tested on GOOGLE_KEVIN (rk3399). Change-Id: I0ed32bce5585ce191736f0ff2e5a94a9d2b2cc28 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34676 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Hung-Te Lin <hungte@chromium.org>
Diffstat (limited to 'src/soc/cavium/cn81xx/bl31_plat_params.c')
-rw-r--r--src/soc/cavium/cn81xx/bl31_plat_params.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/cavium/cn81xx/bl31_plat_params.c b/src/soc/cavium/cn81xx/bl31_plat_params.c
index 5002e146bc..661f3efb85 100644
--- a/src/soc/cavium/cn81xx/bl31_plat_params.c
+++ b/src/soc/cavium/cn81xx/bl31_plat_params.c
@@ -20,7 +20,7 @@
static struct bl31_plat_param *plat_params;
-void register_bl31_param(struct bl31_plat_param *param)
+void cn81xx_register_bl31_param(struct bl31_plat_param *param)
{
ASSERT(param);
@@ -28,7 +28,7 @@ void register_bl31_param(struct bl31_plat_param *param)
plat_params = param;
}
-void *soc_get_bl31_plat_params(bl31_params_t *bl31_params)
+void *soc_get_bl31_plat_params(void)
{
return plat_params;
}