For most users imx8mX_load_and_start_tfa saves a good deal of boilerplate. It's not always sufficient though: - board code may need a pointer to bl33 to install other firmware besides barebox proper from there before jumping to bl31 (TF-A). - board code may want to use a different ARM Trusted Firmware, e.g. when OP-TEE is to be installed. Thus define two more helper: imx8mX_load_bl33 and imx8mn_load_and_start_tfa, which allows board code to avoid duplicating the chainload logic and focus on doing the board specific stuff only. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- v1 -> v2: - don't do redundant imx8mX_load_bl33() in imx8m_load_and_start_tfa() (Marco) --- arch/arm/mach-imx/atf.c | 43 ++++++++++++-------------- arch/arm/mach-imx/include/mach/atf.h | 11 +++++++ arch/arm/mach-imx/include/mach/xload.h | 4 +++ 3 files changed, 35 insertions(+), 23 deletions(-) diff --git a/arch/arm/mach-imx/atf.c b/arch/arm/mach-imx/atf.c index 675e90792a32..5301c0fbe8e5 100644 --- a/arch/arm/mach-imx/atf.c +++ b/arch/arm/mach-imx/atf.c @@ -70,13 +70,10 @@ __noreturn void imx8mq_atf_load_bl31(const void *fw, size_t fw_size) imx8m_atf_start_bl31(fw, fw_size, (void *)MX8MQ_ATF_BL31_BASE_ADDR); } -__noreturn void imx8mm_load_and_start_image_via_tfa(void) +void imx8mm_load_bl33(void *bl33) { - size_t bl31_size; - const u8 *bl31; enum bootsource src; int instance; - void *bl33 = (void *)MX8M_ATF_BL33_BASE_ADDR; imx8mm_get_boot_source(&src, &instance); switch (src) { @@ -122,16 +119,16 @@ __noreturn void imx8mm_load_and_start_image_via_tfa(void) * the same code in DRAM. */ memcpy(bl33, __image_start, barebox_pbl_size); +} - get_builtin_firmware(imx8mm_bl31_bin, &bl31, &bl31_size); - - imx8mm_atf_load_bl31(bl31, bl31_size); +__noreturn void imx8mm_load_and_start_image_via_tfa(void) +{ + imx8mm_load_bl33((void *)MX8M_ATF_BL33_BASE_ADDR); + imx8mm_load_and_start_tfa(imx8mm_bl31_bin); } -__noreturn void imx8mp_load_and_start_image_via_tfa(void) +void imx8mp_load_bl33(void *bl33) { - size_t bl31_size; - const u8 *bl31; enum bootsource src; int instance; @@ -157,18 +154,17 @@ __noreturn void imx8mp_load_and_start_image_via_tfa(void) * for the piggy data, so we need to ensure that we are running * the same code in DRAM. */ - memcpy((void *)MX8M_ATF_BL33_BASE_ADDR, - __image_start, barebox_pbl_size); - - get_builtin_firmware(imx8mp_bl31_bin, &bl31, &bl31_size); + memcpy(bl33, __image_start, barebox_pbl_size); +} - imx8mp_atf_load_bl31(bl31, bl31_size); +void imx8mp_load_and_start_image_via_tfa(void) +{ + imx8mp_load_bl33((void *)MX8M_ATF_BL33_BASE_ADDR); + imx8mp_load_and_start_tfa(imx8mp_bl31_bin); } -__noreturn void imx8mn_load_and_start_image_via_tfa(void) +void imx8mn_load_bl33(void *bl33) { - size_t bl31_size; - const u8 *bl31; enum bootsource src; int instance; @@ -194,10 +190,11 @@ __noreturn void imx8mn_load_and_start_image_via_tfa(void) * for the piggy data, so we need to ensure that we are running * the same code in DRAM. */ - memcpy((void *)MX8M_ATF_BL33_BASE_ADDR, - __image_start, barebox_pbl_size); - - get_builtin_firmware(imx8mn_bl31_bin, &bl31, &bl31_size); + memcpy(bl33, __image_start, barebox_pbl_size); +} - imx8mn_atf_load_bl31(bl31, bl31_size); +void imx8mn_load_and_start_image_via_tfa(void) +{ + imx8mn_load_bl33((void *)MX8M_ATF_BL33_BASE_ADDR); + imx8mn_load_and_start_tfa(imx8mn_bl31_bin); } diff --git a/arch/arm/mach-imx/include/mach/atf.h b/arch/arm/mach-imx/include/mach/atf.h index ca54bb5fbf82..aed294def9ad 100644 --- a/arch/arm/mach-imx/include/mach/atf.h +++ b/arch/arm/mach-imx/include/mach/atf.h @@ -23,4 +23,15 @@ void __noreturn imx8mn_atf_load_bl31(const void *fw, size_t fw_size); void __noreturn imx8mp_atf_load_bl31(const void *fw, size_t fw_size); void __noreturn imx8mq_atf_load_bl31(const void *fw, size_t fw_size); +#define imx8m_load_and_start_tfa(soc,fw_name) do { \ + size_t __bl31_size; \ + const u8 *__bl31; \ + get_builtin_firmware(fw_name, &__bl31, &__bl31_size); \ + soc##_atf_load_bl31(__bl31, __bl31_size); \ +} while (0) + +#define imx8mm_load_and_start_tfa(fw_name) imx8m_load_and_start_tfa(imx8mm, fw_name) +#define imx8mn_load_and_start_tfa(fw_name) imx8m_load_and_start_tfa(imx8mn, fw_name) +#define imx8mp_load_and_start_tfa(fw_name) imx8m_load_and_start_tfa(imx8mp, fw_name) + #endif diff --git a/arch/arm/mach-imx/include/mach/xload.h b/arch/arm/mach-imx/include/mach/xload.h index fe43d2502632..82bf663c4266 100644 --- a/arch/arm/mach-imx/include/mach/xload.h +++ b/arch/arm/mach-imx/include/mach/xload.h @@ -16,6 +16,10 @@ int imx8m_esdhc_load_image(int instance, bool start); int imx8mn_esdhc_load_image(int instance, bool start); int imx8mp_esdhc_load_image(int instance, bool start); +void imx8mm_load_bl33(void *bl33); +void imx8mn_load_bl33(void *bl33); +void imx8mp_load_bl33(void *bl33); + void __noreturn imx8mm_load_and_start_image_via_tfa(void); void __noreturn imx8mn_load_and_start_image_via_tfa(void); void __noreturn imx8mp_load_and_start_image_via_tfa(void); -- 2.30.2