1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-03 03:18:15 +00:00
serenity/Kernel/Arch/aarch64/PrekernelCommon.cpp
Jakub V. Flasar 6d2c298b66 Kernel: Move aarch64 Prekernel into Kernel
As there is no need for a Prekernel on aarch64, the Prekernel code was
moved into Kernel itself. The functionality remains the same.

SERENITY_KERNEL_AND_INITRD in run.sh specifies a kernel and an inital
ramdisk to be used by the emulator. This is needed because aarch64
does not need a Prekernel and the other ones do.
2022-03-12 14:54:12 -08:00

32 lines
501 B
C++

/*
* Copyright (c) 2021, James Mintram <me@jamesrm.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/Arch/aarch64/Prekernel.h>
#include <Kernel/Arch/aarch64/ASM_wrapper.h>
#include <Kernel/Arch/aarch64/UART.h>
namespace Prekernel {
[[noreturn]] void panic(const char* msg)
{
auto& uart = Prekernel::UART::the();
if (msg) {
uart.print_str(msg);
}
Prekernel::halt();
}
[[noreturn]] void halt()
{
for (;;) {
asm volatile("wfi");
}
}
}