diff options
author | davidcunado-arm <david.cunado@arm.com> | 2018-02-28 18:53:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 18:53:30 +0000 |
commit | 73a9605197ba04aaf02d436a2a4ad56e695b426c (patch) | |
tree | 5beb6774d0dabeffdfb6dc3753e9eb4ac2f62754 /include/bl1/bl1.h | |
parent | fd50c18adbdb5b7c4cfd1f4661e905b56a7676fe (diff) | |
parent | fd116b9f6c26d7fd49c7aa0cdbfb3d93871daec3 (diff) |
Merge pull request #1282 from robertovargas-arm/misra-changes
Misra changes
Diffstat (limited to 'include/bl1/bl1.h')
-rw-r--r-- | include/bl1/bl1.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/bl1/bl1.h b/include/bl1/bl1.h index b0421007..dd03de05 100644 --- a/include/bl1/bl1.h +++ b/include/bl1/bl1.h @@ -64,6 +64,27 @@ #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); +void bl1_plat_prepare_exit(entry_point_info_t *ep_info); + /* * Check if the total number of FWU SMC calls are as expected. */ |