diff options
author | Tom Rini <trini@konsulko.com> | 2021-11-07 23:00:29 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-11-07 23:00:29 -0500 |
commit | f8ed9059001d803b0eae4b49178789aa0e29edec (patch) | |
tree | 5742b9a5d71cafcdc7a20c6c618122b8b82adc59 /lib/efi/efi_app.c | |
parent | 52207514ba419a69a8105d16997b025f966c8879 (diff) | |
parent | f8d7e6e941321e40c4afa39635116ca4144c4f29 (diff) |
Merge tag 'efi-2022-01-rc2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2022-01-rc2
Documentation:
* improve description of mmc rescan
* remove obsolete PPC documenation
UEFI
* Provide unit test for the EFI_TCG2_PROTOCOL
* Implement add EFI_TCG2_PROTOCOL.SubmitCommand
* Start the implementation of a 64 bit EFI app
* Reduce rcar3_salvator-x image size
Diffstat (limited to 'lib/efi/efi_app.c')
-rw-r--r-- | lib/efi/efi_app.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/efi/efi_app.c b/lib/efi/efi_app.c index 907bacd716a..f61665686c5 100644 --- a/lib/efi/efi_app.c +++ b/lib/efi/efi_app.c @@ -31,11 +31,21 @@ struct efi_system_table *efi_get_sys_table(void) return global_priv->sys_table; } +struct efi_boot_services *efi_get_boot(void) +{ + return global_priv->boot; +} + unsigned long efi_get_ram_base(void) { return global_priv->ram_base; } +int efi_info_get(enum efi_entry_t type, void **datap, int *sizep) +{ + return -ENOSYS; +} + static efi_status_t setup_memory(struct efi_priv *priv) { struct efi_boot_services *boot = priv->boot; |