1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/kernelmq/init.c

36 lines
847 B
C
Raw Normal View History

#include "panic.h"
#include "pfa.h"
#include "protected.h"
2017-11-04 10:45:58 -04:00
#include "paging.h"
2017-11-04 07:07:04 -04:00
2017-11-09 11:00:36 -05:00
#include "info.h"
#include "stdlib.h"
#include "module.h"
2017-11-04 06:09:53 -04:00
2020-11-25 04:06:27 -05:00
#include "tasks.h"
2017-11-04 06:09:53 -04:00
static struct KernelMQ_Info kinfo;
void init(const struct KernelMQ_Info *const kinfo_ptr)
2017-11-01 00:43:42 -04:00
{
2017-11-04 07:07:04 -04:00
kmemset(&kinfo, 0, sizeof(struct KernelMQ_Info));
assert(kernelmq_info_validate_and_copy(&kinfo, kinfo_ptr), "Invalid kernel information.");
2017-11-04 06:38:28 -04:00
pfa_initialize(&kinfo);
2017-11-04 08:12:20 -04:00
protected_initialize(&kinfo);
2017-11-05 10:26:30 -05:00
// Set up a new post-relocate bootstrap pagetable so that
// we can map in VM, and we no longer rely on pre-relocated
// data.
2017-11-04 10:45:58 -04:00
paging_clear();
paging_identity(); // Still need 1:1 for lapic and video mem and such.
paging_mapkernel(&kinfo);
2017-11-04 10:45:58 -04:00
paging_load();
2020-11-25 03:14:21 -05:00
if (kinfo.modules_count > 0) {
tasks_switch_to_user(kinfo.modules[0].base);
}
2017-11-03 01:10:07 -04:00
}