xref: /haiku/headers/private/kernel/boot/arch/arm/arch_cpu.h (revision 68d37cfb3a755a7270d772b505ee15c8b18aa5e0) !
1 /*
2  * Copyright 2013-2020 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef EFI_BOOT_PLATFORM_EFI_ARCH_CPU_H
6 #define EFI_BOOT_PLATFORM_EFI_ARCH_CPU_H
7 
8 
9 #include <SupportDefs.h>
10 #include <boot/vfs.h>
11 
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 status_t boot_arch_cpu_init(void);
18 void arch_ucode_load(BootVolume& volume);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 
25 #endif /* EFI_BOOT_PLATFORM_EFI_ARCH_CPU_H */
26