From 01dad9378be5e1ca5aa1ca7f57d5acc32caab8c0 Mon Sep 17 00:00:00 2001 From: Fredrik Holmqvist Date: Mon, 23 Aug 2021 21:10:34 +0200 Subject: [PATCH] Add ARM64 arch_cpu.h header --- .../private/kernel/boot/arch/arm64/arch_cpu.h | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 headers/private/kernel/boot/arch/arm64/arch_cpu.h diff --git a/headers/private/kernel/boot/arch/arm64/arch_cpu.h b/headers/private/kernel/boot/arch/arm64/arch_cpu.h new file mode 100644 index 0000000000..2221b2d1f7 --- /dev/null +++ b/headers/private/kernel/boot/arch/arm64/arch_cpu.h @@ -0,0 +1,27 @@ +/* + * Copyright 2021 Haiku, Inc. All rights reserved. + * Distributed under the terms of the MIT License. + */ +#ifndef BOOT_ARCH_CPU_H +#define BOOT_ARCH_CPU_H + + +#include +#include + + +#ifdef __cplusplus +extern "C" { +#endif + + +status_t boot_arch_cpu_init(void); +void arch_ucode_load(BootVolume& volume); + + +#ifdef __cplusplus +} +#endif + + +#endif /* BOOT_ARCH_CPU_H */