This replaces the architecture-independent usage of InterruptStackFrame, which is an x86_64 implementation thing.
117 lines
4.4 KiB
Zig
117 lines
4.4 KiB
Zig
const std = @import("std");
|
|
const easyboot = @cImport(@cInclude("easyboot.h"));
|
|
const debug = @import("arch/debug.zig");
|
|
const cpu = @import("arch/cpu.zig");
|
|
const platform = @import("arch/platform.zig").arch;
|
|
const interrupts = @import("arch/interrupts.zig").arch;
|
|
const vmm = @import("arch/vmm.zig").arch;
|
|
const multiboot = @import("multiboot.zig");
|
|
const pmm = @import("pmm.zig");
|
|
const thread = @import("thread.zig");
|
|
const elf = @import("elf.zig");
|
|
|
|
const MultibootInfo = [*c]u8;
|
|
|
|
const Context = struct {
|
|
allocator: *pmm.FrameAllocator,
|
|
space: vmm.AddressSpace,
|
|
regs: *platform.Registers,
|
|
};
|
|
|
|
export fn _start(magic: u32, info: MultibootInfo) callconv(.C) noreturn {
|
|
interrupts.disableInterrupts();
|
|
|
|
if (magic != easyboot.MULTIBOOT2_BOOTLOADER_MAGIC) {
|
|
debug.print("Invalid magic number: {x}\n", .{magic});
|
|
while (true) {}
|
|
}
|
|
|
|
multiboot.parseMultibootTags(@ptrCast(info));
|
|
|
|
platform.platformInit();
|
|
|
|
const tag = multiboot.findMultibootTag(easyboot.multiboot_tag_mmap_t, @ptrCast(info)) orelse {
|
|
debug.print("error: No memory map multiboot tag found!\n", .{});
|
|
while (true) {}
|
|
unreachable;
|
|
};
|
|
|
|
var allocator = pmm.initializeFrameAllocator(tag) catch |err| {
|
|
debug.print("Error while initializing frame allocator: {}\n", .{err});
|
|
while (true) {}
|
|
};
|
|
|
|
var table: vmm.PageTable = std.mem.zeroes(vmm.PageTable);
|
|
const base: usize = vmm.createInitialMappings(&allocator, tag, &table) catch |err| {
|
|
debug.print("Error while creating initial mappings: {}\n", .{err});
|
|
while (true) {}
|
|
};
|
|
|
|
debug.print("Physical memory base mapping for init: {x}\n", .{base});
|
|
|
|
const frame = pmm.allocFrame(&allocator) catch |err| {
|
|
debug.print("Error while creating frame for user page directory: {}\n", .{err});
|
|
while (true) {}
|
|
};
|
|
|
|
// At this point the physical address space is already mapped into kernel virtual memory.
|
|
const space = vmm.AddressSpace.create(frame, vmm.PHYSICAL_MAPPING_BASE);
|
|
space.table.* = table;
|
|
|
|
cpu.setupCore(&allocator) catch |err| {
|
|
debug.print("Error while setting up core-specific scheduler structures: {}\n", .{err});
|
|
while (true) {}
|
|
};
|
|
|
|
const init = thread.createThreadControlBlock(&allocator) catch |err| {
|
|
debug.print("Error while creating thread control block for init: {}\n", .{err});
|
|
while (true) {}
|
|
};
|
|
|
|
init.address_space = space;
|
|
init.user_priority = 255;
|
|
thread.arch.initUserRegisters(&init.regs);
|
|
thread.arch.setArguments(&init.regs, base, space.phys.address);
|
|
|
|
const ctx = Context{ .allocator = &allocator, .space = space, .regs = &init.regs };
|
|
|
|
multiboot.findMultibootTags(easyboot.multiboot_tag_module_t, @ptrCast(info), struct {
|
|
fn handler(mod: *easyboot.multiboot_tag_module_t, c: *const anyopaque) void {
|
|
const context: *const Context = @alignCast(@ptrCast(c));
|
|
const name = "init";
|
|
if (std.mem.eql(u8, mod.string()[0..name.len], name[0..name.len])) {
|
|
const phys_frame = pmm.PhysFrame{ .address = mod.mod_start };
|
|
debug.print("Loading init from module at address {x}, virtual {x}\n", .{ mod.mod_start, phys_frame.virtualAddress(vmm.PHYSICAL_MAPPING_BASE) });
|
|
const entry = elf.loadElf(context.allocator, context.space, pmm.PhysFrame{ .address = mod.mod_start }) catch |err| {
|
|
debug.print("Error while loading ELF file for init: {}\n", .{err});
|
|
while (true) {}
|
|
};
|
|
thread.arch.setAddress(context.regs, entry);
|
|
}
|
|
}
|
|
}.handler, &ctx);
|
|
|
|
const default_stack_size = 0x80000; // 512 KiB.
|
|
const stack = elf.allocateStack(&allocator, space, base - platform.PAGE_SIZE, default_stack_size) catch |err| {
|
|
debug.print("Error while creating stack for init: {}\n", .{err});
|
|
while (true) {}
|
|
};
|
|
thread.arch.setStack(&init.regs, stack);
|
|
|
|
pmm.setGlobalAllocator(&allocator) catch |err| {
|
|
debug.print("Error while setting up global frame allocator: {}\n", .{err});
|
|
while (true) {}
|
|
};
|
|
|
|
platform.platformEndInit();
|
|
|
|
thread.enterThread(init);
|
|
}
|
|
|
|
pub fn panic(message: []const u8, _: ?*std.builtin.StackTrace, _: ?usize) noreturn {
|
|
debug.print("--- KERNEL PANIC! ---\n", .{});
|
|
debug.print("{s}\n", .{message});
|
|
debug.print("return address: {x}\n", .{@returnAddress()});
|
|
while (true) {}
|
|
}
|