diff options
author | Tom Rini <trini@konsulko.com> | 2024-10-18 22:32:45 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-18 22:32:45 -0600 |
commit | 7036abbd5c3934059b020d5fd5bcb8b3bf3c788c (patch) | |
tree | 0fb8fd19b51862cf5742ec68ef889e4ad441dde7 /arch/x86/include/asm/cpu.h | |
parent | f83e36fd83c74b4e28a45a9d56abc4ad9b7848b9 (diff) | |
parent | 44917d586657eeae0401bc29af80011a264002e7 (diff) |
Merge tag 'dm-pull-17oct24-take2' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
A few new x86 commands and minor improvements
expo improvements
binman support for signing FIT images
Diffstat (limited to 'arch/x86/include/asm/cpu.h')
-rw-r--r-- | arch/x86/include/asm/cpu.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/include/asm/cpu.h b/arch/x86/include/asm/cpu.h index 87e0c6f12b6..8c1ef4c8cc1 100644 --- a/arch/x86/include/asm/cpu.h +++ b/arch/x86/include/asm/cpu.h @@ -293,4 +293,11 @@ u32 cpu_get_stepping(void); */ int cpu_phys_address_size(void); +void board_final_init(void); +void board_final_cleanup(void); + +#ifndef CONFIG_EFI_STUB +int reserve_arch(void); +#endif + #endif |