aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorKever Yang <kever.yang@rock-chips.com>2018-01-17 11:05:38 +0800
committerPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>2018-01-28 17:12:39 +0100
commit0289e291a5140b9e97ff3b1a12819ba0d5015887 (patch)
treec19758c46c13960af8aca896f309e21a3c5ad038 /common
parent451dcf5cd002ee0e107989f849f9b4f56570f809 (diff)
downloadu-boot-0289e291a5140b9e97ff3b1a12819ba0d5015887.zip
u-boot-0289e291a5140b9e97ff3b1a12819ba0d5015887.tar.gz
u-boot-0289e291a5140b9e97ff3b1a12819ba0d5015887.tar.bz2
spl: atf: pass NULL for bl32_ep pc
ATF use bl32_ep_info->pc to decide if thre is an available bl32, let's mark it as NULL first. Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'common')
-rw-r--r--common/spl/spl_atf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/spl/spl_atf.c b/common/spl/spl_atf.c
index a942de9..5f9aa95 100644
--- a/common/spl/spl_atf.c
+++ b/common/spl/spl_atf.c
@@ -50,13 +50,14 @@ static struct bl31_params *bl2_plat_get_bl31_params(uintptr_t bl33_entry)
ATF_PARAM_IMAGE_BINARY, ATF_VERSION_1, 0);
/* Fill BL32 related information if it exists */
-#ifdef BL32_BASE
bl2_to_bl31_params->bl32_ep_info = &bl31_params_mem.bl32_ep_info;
SET_PARAM_HEAD(bl2_to_bl31_params->bl32_ep_info, ATF_PARAM_EP,
ATF_VERSION_1, 0);
bl2_to_bl31_params->bl32_image_info = &bl31_params_mem.bl32_image_info;
SET_PARAM_HEAD(bl2_to_bl31_params->bl32_image_info,
ATF_PARAM_IMAGE_BINARY, ATF_VERSION_1, 0);
+#ifndef BL32_BASE
+ bl2_to_bl31_params->bl32_ep_info->pc = 0;
#endif /* BL32_BASE */
/* Fill BL33 related information */