rulimine/test/limine.c

218 lines
7.1 KiB
C
Raw Normal View History

#include <stdint.h>
#include <stddef.h>
#include <limine.h>
#include <e9print.h>
2022-03-13 07:35:29 +03:00
static void limine_main(void);
2022-03-18 00:47:58 +03:00
struct limine_entry_point_request entry_point_request = {
2022-03-13 07:35:29 +03:00
.id = LIMINE_ENTRY_POINT_REQUEST,
.flags = 0, .response = NULL,
.entry = limine_main
};
2022-03-18 00:47:58 +03:00
struct limine_framebuffer_request framebuffer_request = {
.id = LIMINE_FRAMEBUFFER_REQUEST,
.flags = 0, .response = NULL
};
struct limine_boot_info_request boot_info_request = {
2022-03-13 07:35:29 +03:00
.id = LIMINE_BOOT_INFO_REQUEST,
.flags = 0, .response = NULL
};
2022-03-18 00:47:58 +03:00
struct limine_memmap_request memmap_request = {
2022-03-13 07:35:29 +03:00
.id = LIMINE_MEMMAP_REQUEST,
.flags = 0, .response = NULL
};
2022-03-18 00:47:58 +03:00
struct limine_module_request module_request = {
2022-03-16 08:49:41 +03:00
.id = LIMINE_MODULE_REQUEST,
.flags = 0, .response = NULL
};
2022-03-18 00:47:58 +03:00
struct limine_rsdp_request rsdp_request = {
2022-03-17 21:21:35 +03:00
.id = LIMINE_RSDP_REQUEST,
.flags = 0, .response = NULL
};
2022-03-18 00:47:58 +03:00
struct limine_smbios_request smbios_request = {
2022-03-17 21:59:03 +03:00
.id = LIMINE_SMBIOS_REQUEST,
.flags = 0, .response = NULL
};
2022-03-18 03:17:56 +03:00
struct limine_smp_request _smp_request = {
.id = LIMINE_SMP_REQUEST,
.flags = 0, .response = NULL
};
2022-03-12 23:41:36 +03:00
static char *get_memmap_type(uint64_t type) {
switch (type) {
case LIMINE_MEMMAP_USABLE:
return "Usable";
case LIMINE_MEMMAP_RESERVED:
return "Reserved";
case LIMINE_MEMMAP_ACPI_RECLAIMABLE:
return "ACPI reclaimable";
case LIMINE_MEMMAP_ACPI_NVS:
return "ACPI NVS";
case LIMINE_MEMMAP_BAD_MEMORY:
return "Bad memory";
case LIMINE_MEMMAP_BOOTLOADER_RECLAIMABLE:
return "Bootloader reclaimable";
case LIMINE_MEMMAP_KERNEL_AND_MODULES:
return "Kernel and modules";
case LIMINE_MEMMAP_FRAMEBUFFER:
return "Framebuffer";
default:
return "???";
}
}
2022-03-16 08:49:41 +03:00
static void print_file_loc(struct limine_file_location *file_location) {
e9_printf("Loc->PartIndex: %d", file_location->partition_index);
2022-03-18 01:46:48 +03:00
e9_printf("Loc->PXEIP: %d.%d.%d.%d",
(file_location->pxe_ip & (0xff << 0)) >> 0,
(file_location->pxe_ip & (0xff << 8)) >> 8,
(file_location->pxe_ip & (0xff << 16)) >> 16,
(file_location->pxe_ip & (0xff << 24)) >> 24);
e9_printf("Loc->PXEPort: %d", file_location->pxe_port);
2022-03-16 08:49:41 +03:00
e9_printf("Loc->MBRDiskId: %x", file_location->mbr_disk_id);
e9_printf("Loc->GPTDiskUUID: %x-%x-%x-%x",
file_location->gpt_disk_uuid.a,
file_location->gpt_disk_uuid.b,
file_location->gpt_disk_uuid.c,
*(uint64_t *)file_location->gpt_disk_uuid.d);
e9_printf("Loc->GPTPartUUID: %x-%x-%x-%x",
file_location->gpt_part_uuid.a,
file_location->gpt_part_uuid.b,
file_location->gpt_part_uuid.c,
*(uint64_t *)file_location->gpt_part_uuid.d);
e9_printf("Loc->PartUUID: %x-%x-%x-%x",
file_location->part_uuid.a,
file_location->part_uuid.b,
file_location->part_uuid.c,
*(uint64_t *)file_location->part_uuid.d);
}
#define FEAT_START do {
#define FEAT_END } while (0);
2022-03-18 01:46:48 +03:00
extern char kernel_start[];
static void limine_main(void) {
2022-03-18 01:46:48 +03:00
e9_printf("\nWe're alive");
uint64_t kernel_slide = (uint64_t)kernel_start - 0xffffffff80000000;
e9_printf("Kernel slide: %x", kernel_slide);
FEAT_START
2022-03-13 07:35:29 +03:00
if (boot_info_request.response == NULL) {
2022-03-12 23:41:36 +03:00
e9_printf("Boot info not passed");
break;
}
2022-03-13 07:35:29 +03:00
struct limine_boot_info_response *boot_info_response = boot_info_request.response;
e9_printf("Boot info response:");
e9_printf("Bootloader name: %s", boot_info_response->loader);
2022-03-18 01:46:48 +03:00
e9_printf("Higher half direct map: %x", boot_info_response->hhdm);
2022-03-12 23:41:36 +03:00
FEAT_END
2022-03-12 23:41:36 +03:00
FEAT_START
2022-03-13 07:35:29 +03:00
if (memmap_request.response == NULL) {
2022-03-12 23:41:36 +03:00
e9_printf("Memory map not passed");
break;
}
2022-03-13 07:35:29 +03:00
struct limine_memmap_response *memmap_response = memmap_request.response;
2022-03-12 23:41:36 +03:00
e9_printf("%d memory map entries", memmap_response->entries_count);
for (size_t i = 0; i < memmap_response->entries_count; i++) {
struct limine_memmap_entry *e = &memmap_response->entries[i];
e9_printf("%x->%x %s", e->base, e->base + e->length, get_memmap_type(e->type));
}
FEAT_END
2022-03-14 14:05:59 +03:00
FEAT_START
if (framebuffer_request.response == NULL) {
e9_printf("Framebuffer not passed");
break;
}
struct limine_framebuffer_response *fb_response = framebuffer_request.response;
e9_printf("%d framebuffer(s)", fb_response->fbs_count);
for (size_t i = 0; i < fb_response->fbs_count; i++) {
struct limine_framebuffer *fb = &fb_response->fbs[i];
e9_printf("Address: %x", fb->address);
e9_printf("Width: %d", fb->width);
e9_printf("Height: %d", fb->height);
e9_printf("Pitch: %d", fb->pitch);
e9_printf("BPP: %d", fb->bpp);
e9_printf("Memory model: %d", fb->memory_model);
e9_printf("Red mask size: %d", fb->red_mask_size);
e9_printf("Red mask shift: %d", fb->red_mask_shift);
e9_printf("Green mask size: %d", fb->green_mask_size);
e9_printf("Green mask shift: %d", fb->green_mask_shift);
e9_printf("Blue mask size: %d", fb->blue_mask_size);
e9_printf("Blue mask shift: %d", fb->blue_mask_shift);
e9_printf("EDID size: %d", fb->edid_size);
e9_printf("EDID at: %x", fb->edid);
2022-03-14 14:05:59 +03:00
}
FEAT_END
2022-03-16 08:49:41 +03:00
FEAT_START
if (module_request.response == NULL) {
e9_printf("Modules not passed");
break;
}
struct limine_module_response *module_response = module_request.response;
e9_printf("%d module(s)", module_response->modules_count);
for (size_t i = 0; i < module_response->modules_count; i++) {
struct limine_module *m = &module_response->modules[i];
e9_printf("Base: %x", m->base);
e9_printf("Length: %x", m->length);
e9_printf("Path: %s", m->path);
e9_printf("Cmdline: %s", m->cmdline);
print_file_loc(m->file_location);
}
FEAT_END
2022-03-17 21:21:35 +03:00
FEAT_START
if (rsdp_request.response == NULL) {
e9_printf("RSDP not passed");
break;
}
struct limine_rsdp_response *rsdp_response = rsdp_request.response;
e9_printf("RSDP at: %x", rsdp_response->address);
FEAT_END
2022-03-17 21:59:03 +03:00
FEAT_START
if (smbios_request.response == NULL) {
e9_printf("SMBIOS not passed");
break;
}
struct limine_smbios_response *smbios_response = smbios_request.response;
e9_printf("SMBIOS 32-bit entry at: %x", smbios_response->entry_32);
e9_printf("SMBIOS 64-bit entry at: %x", smbios_response->entry_64);
FEAT_END
2022-03-18 03:17:56 +03:00
FEAT_START
if (_smp_request.response == NULL) {
e9_printf("SMP info not passed");
break;
}
struct limine_smp_response *smp_response = _smp_request.response;
e9_printf("");
e9_printf("Flags: %x", smp_response->flags);
e9_printf("BSP LAPIC ID: %x", smp_response->bsp_lapic_id);
e9_printf("CPUs count: %d", smp_response->cpus_count);
for (size_t i = 0; i < smp_response->cpus_count; i++) {
struct limine_smp_info *cpu = &smp_response->cpus[i];
e9_printf("Processor ID: %x", cpu->processor_id);
e9_printf("LAPIC ID: %x", cpu->lapic_id);
}
FEAT_END
for (;;);
}