rulimine/test/limine.c

318 lines
11 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,
2022-03-20 02:57:10 +03:00
.revision = 0, .response = NULL,
2022-03-13 07:35:29 +03:00
.entry = limine_main
};
2022-03-18 00:47:58 +03:00
struct limine_framebuffer_request framebuffer_request = {
.id = LIMINE_FRAMEBUFFER_REQUEST,
2022-03-20 02:57:10 +03:00
.revision = 0, .response = NULL
2022-03-18 00:47:58 +03:00
};
struct limine_bootloader_info_request bootloader_info_request = {
.id = LIMINE_BOOTLOADER_INFO_REQUEST,
2022-03-20 02:57:10 +03:00
.revision = 0, .response = NULL
};
struct limine_hhdm_request hhdm_request = {
.id = LIMINE_HHDM_REQUEST,
2022-03-20 02:57:10 +03:00
.revision = 0, .response = NULL
2022-03-13 07:35:29 +03:00
};
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,
2022-03-20 02:57:10 +03:00
.revision = 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,
2022-03-20 02:57:10 +03:00
.revision = 0, .response = NULL
2022-03-16 08:49:41 +03:00
};
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,
2022-03-20 02:57:10 +03:00
.revision = 0, .response = NULL
2022-03-17 21:21:35 +03:00
};
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,
2022-03-20 02:57:10 +03:00
.revision = 0, .response = NULL
2022-03-17 21:59:03 +03:00
};
2022-03-20 10:05:12 +03:00
struct limine_efi_system_table_request est_request = {
.id = LIMINE_EFI_SYSTEM_TABLE_REQUEST,
.revision = 0, .response = NULL
};
2022-03-20 10:19:32 +03:00
struct limine_boot_time_request boot_time_request = {
.id = LIMINE_BOOT_TIME_REQUEST,
.revision = 0, .response = NULL
};
2022-03-20 21:01:24 +03:00
struct limine_kernel_address_request kernel_address_request = {
.id = LIMINE_KERNEL_ADDRESS_REQUEST,
.revision = 0, .response = NULL
};
2022-03-18 03:17:56 +03:00
struct limine_smp_request _smp_request = {
.id = LIMINE_SMP_REQUEST,
2022-03-20 02:57:10 +03:00
.revision = 0, .response = NULL
2022-03-18 03:17:56 +03:00
};
2022-03-21 07:15:10 +03:00
struct limine_terminal_request _terminal_request = {
.id = LIMINE_TERMINAL_REQUEST,
.revision = 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) {
2022-03-20 23:23:47 +03:00
e9_printf("Loc->Revision: %d", file_location->revision);
2022-03-16 08:49:41 +03:00
e9_printf("Loc->PartIndex: %d", file_location->partition_index);
e9_printf("Loc->TFTPIP: %d.%d.%d.%d",
(file_location->tftp_ip & (0xff << 0)) >> 0,
(file_location->tftp_ip & (0xff << 8)) >> 8,
(file_location->tftp_ip & (0xff << 16)) >> 16,
(file_location->tftp_ip & (0xff << 24)) >> 24);
e9_printf("Loc->TFTPPort: %d", file_location->tftp_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-21 07:15:10 +03:00
if (_terminal_request.response) {
stivale2_print = _terminal_request.response->write;
}
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);
2022-03-20 21:01:24 +03:00
FEAT_START
e9_printf("");
2022-03-20 23:23:47 +03:00
if (bootloader_info_request.response == NULL) {
e9_printf("Bootloader info not passed");
2022-03-20 21:01:24 +03:00
break;
}
2022-03-20 23:23:47 +03:00
struct limine_bootloader_info_response *bootloader_info_response = bootloader_info_request.response;
e9_printf("Bootloader info feature, revision %d", bootloader_info_response->revision);
e9_printf("Bootloader name: %s", bootloader_info_response->name);
e9_printf("Bootloader version: %s", bootloader_info_response->version);
2022-03-20 21:01:24 +03:00
FEAT_END
FEAT_START
2022-03-20 10:05:12 +03:00
e9_printf("");
2022-03-20 23:23:47 +03:00
if (kernel_address_request.response == NULL) {
e9_printf("Kernel address not passed");
break;
}
2022-03-20 23:23:47 +03:00
struct limine_kernel_address_response *ka_response = kernel_address_request.response;
e9_printf("Kernel address feature, revision %d", ka_response->revision);
e9_printf("Physical base: %x", ka_response->physical_base);
e9_printf("Virtual base: %x", ka_response->virtual_base);
FEAT_END
FEAT_START
2022-03-20 10:05:12 +03:00
e9_printf("");
if (hhdm_request.response == NULL) {
e9_printf("HHDM not passed");
break;
}
struct limine_hhdm_response *hhdm_response = hhdm_request.response;
2022-03-20 23:23:47 +03:00
e9_printf("HHDM feature, revision %d", hhdm_response->revision);
e9_printf("Higher half direct map at: %x", hhdm_response->address);
2022-03-12 23:41:36 +03:00
FEAT_END
2022-03-12 23:41:36 +03:00
FEAT_START
2022-03-20 10:05:12 +03:00
e9_printf("");
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-20 23:23:47 +03:00
e9_printf("Memory map feature, revision %d", memmap_response->revision);
e9_printf("%d memory map entries", memmap_response->entry_count);
for (size_t i = 0; i < memmap_response->entry_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));
2022-03-12 23:41:36 +03:00
}
FEAT_END
2022-03-14 14:05:59 +03:00
FEAT_START
2022-03-20 10:05:12 +03:00
e9_printf("");
2022-03-14 14:05:59 +03:00
if (framebuffer_request.response == NULL) {
e9_printf("Framebuffer not passed");
break;
}
struct limine_framebuffer_response *fb_response = framebuffer_request.response;
2022-03-20 23:23:47 +03:00
e9_printf("Framebuffers feature, revision %d", fb_response->revision);
e9_printf("%d framebuffer(s)", fb_response->framebuffer_count);
for (size_t i = 0; i < fb_response->framebuffer_count; i++) {
struct limine_framebuffer *fb = fb_response->framebuffers[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
2022-03-20 10:05:12 +03:00
e9_printf("");
2022-03-16 08:49:41 +03:00
if (module_request.response == NULL) {
e9_printf("Modules not passed");
break;
}
struct limine_module_response *module_response = module_request.response;
2022-03-20 23:23:47 +03:00
e9_printf("Modules feature, revision %d", module_response->revision);
e9_printf("%d module(s)", module_response->module_count);
for (size_t i = 0; i < module_response->module_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);
2022-03-16 08:49:41 +03:00
}
FEAT_END
2022-03-17 21:21:35 +03:00
FEAT_START
2022-03-20 10:05:12 +03:00
e9_printf("");
2022-03-17 21:21:35 +03:00
if (rsdp_request.response == NULL) {
e9_printf("RSDP not passed");
break;
}
struct limine_rsdp_response *rsdp_response = rsdp_request.response;
2022-03-20 23:23:47 +03:00
e9_printf("RSDP feature, revision %d", rsdp_response->revision);
2022-03-17 21:21:35 +03:00
e9_printf("RSDP at: %x", rsdp_response->address);
FEAT_END
2022-03-17 21:59:03 +03:00
FEAT_START
2022-03-20 10:05:12 +03:00
e9_printf("");
2022-03-17 21:59:03 +03:00
if (smbios_request.response == NULL) {
e9_printf("SMBIOS not passed");
break;
}
struct limine_smbios_response *smbios_response = smbios_request.response;
2022-03-20 23:23:47 +03:00
e9_printf("SMBIOS feature, revision %d", smbios_response->revision);
2022-03-17 21:59:03 +03:00
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
2022-03-20 10:05:12 +03:00
e9_printf("");
if (est_request.response == NULL) {
e9_printf("EFI system table not passed");
break;
}
struct limine_efi_system_table_response *est_response = est_request.response;
2022-03-20 23:23:47 +03:00
e9_printf("EFI system table feature, revision %d", est_response->revision);
2022-03-20 10:05:12 +03:00
e9_printf("EFI system table at: %x", est_response->address);
FEAT_END
2022-03-20 10:19:32 +03:00
FEAT_START
e9_printf("");
if (boot_time_request.response == NULL) {
e9_printf("Boot time not passed");
break;
}
struct limine_boot_time_response *boot_time_response = boot_time_request.response;
2022-03-20 23:23:47 +03:00
e9_printf("Boot time feature, revision %d", boot_time_response->revision);
e9_printf("Boot time: %d", boot_time_response->boot_time);
2022-03-20 10:19:32 +03:00
FEAT_END
2022-03-20 10:05:12 +03:00
FEAT_START
e9_printf("");
2022-03-18 03:17:56 +03:00
if (_smp_request.response == NULL) {
e9_printf("SMP info not passed");
break;
}
struct limine_smp_response *smp_response = _smp_request.response;
2022-03-20 23:23:47 +03:00
e9_printf("SMP feature, revision %d", smp_response->revision);
2022-03-18 03:17:56 +03:00
e9_printf("Flags: %x", smp_response->flags);
e9_printf("BSP LAPIC ID: %x", smp_response->bsp_lapic_id);
2022-03-20 23:23:47 +03:00
e9_printf("CPU count: %d", smp_response->cpu_count);
for (size_t i = 0; i < smp_response->cpu_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);
2022-03-18 03:17:56 +03:00
}
FEAT_END
2022-03-21 07:15:10 +03:00
FEAT_START
e9_printf("");
if (_terminal_request.response == NULL) {
e9_printf("Terminal not passed");
break;
}
struct limine_terminal_response *term_response = _terminal_request.response;
e9_printf("Terminal feature, revision %d", term_response->revision);
e9_printf("Columns: %d", term_response->columns);
e9_printf("Rows: %d", term_response->rows);
e9_printf("Write function at: %x", term_response->write);
FEAT_END
for (;;);
}