aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/kernel.c
blob: 48525d9402d3ce06b07a1c27702ef5e7e0e71b99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <acpi/acpi.h>
#include <cmos/rtc.h>
#include <fs/ata.h>
#include <fs/elf.h>
#include <fs/ext2.h>
#include <fs/load.h>
#include <gdt/gdt.h>
#include <graphics/vesa.h>
#include <input/input.h>
#include <interrupts/interrupts.h>
#include <io/io.h>
#include <lib/lib.h>
#include <lib/stdio.h>
#include <lib/stdlib.h>
#include <memory/alloc.h>
#include <memory/paging.h>
#include <multiboot.h>
#include <net/network.h>
#include <pci/pci.h>
#include <syscall/syscall.h>
#include <timer/timer.h>

u32 stack_hold;

void kernel_main(u32 magic, u32 addr, u32 esp)
{
	multiboot_address = addr;
	stack_hold = esp;

	if (magic != MULTIBOOT_BOOTLOADER_MAGIC) {
		warn("Invalid boot magic!");
		halt_loop();
	}

	if (multiboot_address & 7) {
		warn("Unaligned mbi!");
		halt_loop();
	}

	info("Installing basic features of Melvix...");

	// Install features
	bss_clean();
	gdt_install();
	serial_install();
	idt_install();
	isrs_install();
	irq_install();

	paging_install();
	multiboot_parse();

	// Install drivers
	timer_install();
	mouse_install();
	keyboard_install();
	pci_remap();
	network_install();

	memory_print();
	rtc_print();

	ata_init();
	ext2_init_fs();

	load_binaries();
	set_optimal_resolution();
	log("Content of /etc/test: %s", read_file("/etc/test"));

	syscalls_install();
	kexec("/bin/init");

	// asm ("div %0" :: "r"(0)); // Exception testing x/0
}