195 lines
4.2 KiB
C++
195 lines
4.2 KiB
C++
#include <kernel/ACPI.h>
|
|
#include <kernel/Arch.h>
|
|
#include <kernel/Debug.h>
|
|
#include <kernel/DeviceManager.h>
|
|
#include <kernel/FS/VirtualFileSystem.h>
|
|
#include <kernel/GDT.h>
|
|
#include <kernel/IDT.h>
|
|
#include <kernel/Input/PS2Controller.h>
|
|
#include <kernel/InterruptController.h>
|
|
#include <kernel/kprint.h>
|
|
#include <kernel/Memory/Heap.h>
|
|
#include <kernel/Memory/kmalloc.h>
|
|
#include <kernel/Memory/PageTable.h>
|
|
#include <kernel/multiboot.h>
|
|
#include <kernel/PCI.h>
|
|
#include <kernel/PIC.h>
|
|
#include <kernel/PIT.h>
|
|
#include <kernel/Process.h>
|
|
#include <kernel/Scheduler.h>
|
|
#include <kernel/Serial.h>
|
|
#include <kernel/Shell.h>
|
|
#include <kernel/Syscall.h>
|
|
#include <kernel/Terminal/TTY.h>
|
|
#include <kernel/Terminal/VesaTerminalDriver.h>
|
|
|
|
#include <LibELF/ELF.h>
|
|
|
|
extern "C" const char g_kernel_cmdline[];
|
|
|
|
struct ParsedCommandLine
|
|
{
|
|
bool force_pic = false;
|
|
bool disable_serial = false;
|
|
BAN::StringView root;
|
|
};
|
|
|
|
static bool should_disable_serial()
|
|
{
|
|
if (!(g_multiboot_info->flags & 0x02))
|
|
return false;
|
|
|
|
const char* start = g_kernel_cmdline;
|
|
const char* current = g_kernel_cmdline;
|
|
while (true)
|
|
{
|
|
if (!*current || *current == ' ' || *current == '\t')
|
|
{
|
|
if (current - start == 8 && memcmp(start, "noserial", 8) == 0)
|
|
return true;
|
|
if (!*current)
|
|
break;
|
|
start = current + 1;
|
|
}
|
|
current++;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
static ParsedCommandLine cmdline;
|
|
|
|
static void parse_command_line()
|
|
{
|
|
if (!(g_multiboot_info->flags & 0x02))
|
|
return;
|
|
|
|
BAN::StringView full_command_line(g_kernel_cmdline);
|
|
auto arguments = MUST(full_command_line.split(' '));
|
|
|
|
for (auto argument : arguments)
|
|
{
|
|
if (argument == "noapic")
|
|
cmdline.force_pic = true;
|
|
else if (argument == "noserial")
|
|
cmdline.disable_serial = true;
|
|
else if (argument.size() > 5 && argument.substring(0, 5) == "root=")
|
|
cmdline.root = argument.substring(5);
|
|
}
|
|
}
|
|
|
|
struct Test
|
|
{
|
|
Test() { dprintln("construct (default)"); }
|
|
Test(const Test&) { dprintln("construct (copy)"); }
|
|
Test(Test&&) { dprintln("construct (move)"); }
|
|
~Test() { dprintln("destruct"); }
|
|
Test& operator=(const Test&) { dprintln("assign (copy)"); return *this; }
|
|
Test& operator=(Test&&) { dprintln("assign (move)"); return *this; }
|
|
};
|
|
|
|
namespace BAN::Formatter
|
|
{
|
|
|
|
template<typename F>
|
|
void print_argument(F putc, const Test& test, const ValueFormat& format)
|
|
{
|
|
print_argument(putc, &test, format);
|
|
}
|
|
|
|
}
|
|
|
|
extern "C" uintptr_t g_kernel_start;
|
|
extern "C" uintptr_t g_kernel_end;
|
|
|
|
static void init2(void*);
|
|
|
|
extern "C" void kernel_main()
|
|
{
|
|
using namespace Kernel;
|
|
|
|
DISABLE_INTERRUPTS();
|
|
|
|
if (!should_disable_serial())
|
|
Serial::initialize();
|
|
if (g_multiboot_magic != 0x2BADB002)
|
|
{
|
|
dprintln("Invalid multiboot magic number");
|
|
return;
|
|
}
|
|
dprintln("Serial output initialized");
|
|
|
|
kmalloc_initialize();
|
|
dprintln("kmalloc initialized");
|
|
|
|
GDT::initialize();
|
|
dprintln("GDT initialized");
|
|
|
|
IDT::initialize();
|
|
dprintln("IDT initialized");
|
|
|
|
PageTable::initialize();
|
|
dprintln("PageTable initialized");
|
|
|
|
TerminalDriver* terminal_driver = VesaTerminalDriver::create();
|
|
ASSERT(terminal_driver);
|
|
dprintln("VESA initialized");
|
|
|
|
TTY* tty1 = new TTY(terminal_driver);
|
|
ASSERT(tty1);
|
|
dprintln("TTY initialized");
|
|
|
|
Heap::initialize();
|
|
dprintln("Heap initialzed");
|
|
|
|
parse_command_line();
|
|
dprintln("command line parsed, root='{}'", cmdline.root);
|
|
|
|
PCI::initialize();
|
|
dprintln("PCI initialized");
|
|
|
|
MUST(ACPI::initialize());
|
|
dprintln("ACPI initialized");
|
|
|
|
InterruptController::initialize(cmdline.force_pic);
|
|
dprintln("Interrupt controller initialized");
|
|
|
|
PIT::initialize();
|
|
dprintln("PIT initialized");
|
|
|
|
MUST(Scheduler::initialize());
|
|
Scheduler& scheduler = Scheduler::get();
|
|
Process::create_kernel(init2, tty1);
|
|
scheduler.start();
|
|
|
|
ASSERT_NOT_REACHED();
|
|
}
|
|
|
|
static void init2(void* tty1)
|
|
{
|
|
using namespace Kernel;
|
|
using namespace Kernel::Input;
|
|
|
|
DeviceManager::get().initialize_pci_devices();
|
|
DeviceManager::get().initialize_updater();
|
|
|
|
MUST(VirtualFileSystem::initialize(cmdline.root));
|
|
|
|
if (auto res = PS2Controller::initialize(); res.is_error())
|
|
dprintln("{}", res.error());
|
|
|
|
((TTY*)tty1)->initialize_device();
|
|
|
|
MUST(Process::create_userspace("/usr/bin/Shell"sv));
|
|
return;
|
|
|
|
Process::create_kernel(
|
|
[](void*)
|
|
{
|
|
Shell* shell = new Shell();
|
|
ASSERT(shell);
|
|
shell->run();
|
|
}, nullptr
|
|
);
|
|
}
|