summaryrefslogtreecommitdiff
path: root/include/bl1/bl1.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bl1/bl1.h')
-rw-r--r--include/bl1/bl1.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/bl1/bl1.h b/include/bl1/bl1.h
index b0421007..41d436de 100644
--- a/include/bl1/bl1.h
+++ b/include/bl1/bl1.h
@@ -64,6 +64,26 @@
#ifndef __ASSEMBLY__
#include <cassert.h>
+struct entry_point_info;
+
+register_t bl1_smc_wrapper(uint32_t smc_fid,
+ void *cookie,
+ void *handle,
+ unsigned int flags);
+
+register_t bl1_smc_handler(unsigned int smc_fid,
+ register_t x1,
+ register_t x2,
+ register_t x3,
+ register_t x4,
+ void *cookie,
+ void *handle,
+ unsigned int flags);
+
+void bl1_print_next_bl_ep_info(const struct entry_point_info *bl_ep_info);
+
+void bl1_main(void);
+
/*
* Check if the total number of FWU SMC calls are as expected.
*/