summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2022-08-16 09:30:56 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2022-08-17 06:37:14 +0200
commit6822d687fa272097cf67a37ae3670e1147c3ceca (patch)
tree49dbfa8fdc21e09945e599f77d779df9e5cbc00b /arch
parentb0c789bfc2d00c882694960abe0d0106af341adf (diff)
downloadbarebox-6822d687fa272097cf67a37ae3670e1147c3ceca.tar.gz
barebox-6822d687fa272097cf67a37ae3670e1147c3ceca.tar.xz
ARM: i.MX8M: define imx8mX_load_bl33 and imx8mX_load_and_start_tfa
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@pengutronix.de> Link: https://lore.barebox.org/20220816073056.45694-3-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-imx/atf.c43
-rw-r--r--arch/arm/mach-imx/include/mach/atf.h11
-rw-r--r--arch/arm/mach-imx/include/mach/xload.h4
3 files changed, 35 insertions, 23 deletions
diff --git a/arch/arm/mach-imx/atf.c b/arch/arm/mach-imx/atf.c
index 675e90792a..5301c0fbe8 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 ca54bb5fbf..aed294def9 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 fe43d25026..82bf663c42 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);