diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-01-08 18:13:06 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2019-02-13 09:40:06 +0100 |
commit | f6c6df7ebc12fdaab252c5869732cef6fa48d864 (patch) | |
tree | a9dd4b1d6b4a9304e17dc37042e63174d211cfc2 /common | |
parent | b4f471f18e68b340e5b968e2d611b83f709a78ce (diff) | |
download | u-boot-f6c6df7ebc12fdaab252c5869732cef6fa48d864.zip u-boot-f6c6df7ebc12fdaab252c5869732cef6fa48d864.tar.gz u-boot-f6c6df7ebc12fdaab252c5869732cef6fa48d864.tar.bz2 |
efi_loader: refactor switch to non-secure mode
Refactor the switch from supervisor to hypervisor to a new function called
at the beginning of do_bootefi().
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'common')
-rw-r--r-- | common/bootm.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/common/bootm.c b/common/bootm.c index 7c7505f..3adbcea 100644 --- a/common/bootm.c +++ b/common/bootm.c @@ -912,6 +912,16 @@ static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc, return buf; } + +/** + * switch_to_non_secure_mode() - switch to non-secure mode + * + * This routine is overridden by architectures requiring this feature. + */ +void __weak switch_to_non_secure_mode(void) +{ +} + #else /* USE_HOSTCC */ void memmove_wd(void *to, void *from, size_t len, ulong chunksz) |