limine/common/limine.h

142 lines
3.2 KiB
C
Raw Normal View History

#ifndef _LIMINE_H
#define _LIMINE_H 1
#include <stdint.h>
#ifdef LIMINE_NO_POINTERS
2022-03-12 23:41:36 +03:00
# define LIMINE_PTR(TYPE) uint64_t
#else
2022-03-12 23:41:36 +03:00
# define LIMINE_PTR(TYPE) TYPE
#endif
2022-03-13 07:35:29 +03:00
#define LIMINE_COMMON_MAGIC 0xc7b1dd30df4c8b88, 0x0a82e883a194f07b
// Boot info
2022-03-13 07:35:29 +03:00
#define LIMINE_BOOT_INFO_REQUEST { LIMINE_COMMON_MAGIC, 0xf55038d8e2a1202f, 0x279426fcf5f59740 }
struct limine_boot_info_response {
uint64_t flags;
2022-03-12 23:41:36 +03:00
LIMINE_PTR(char *) loader;
};
2022-03-13 07:35:29 +03:00
struct limine_boot_info_request {
uint64_t id[4];
uint64_t flags;
LIMINE_PTR(struct limine_boot_info_response *) response;
};
2022-03-15 04:46:39 +03:00
// Command line
#define LIMINE_CMDLINE_REQUEST { LIMINE_COMMON_MAGIC, 0x859894000fc0b7d3, 0xaab4ab57e5c3e348 }
struct limine_cmdline_response {
uint64_t flags;
LIMINE_PTR(char *) cmdline;
};
struct limine_cmdline_request {
uint64_t id[4];
uint64_t flags;
LIMINE_PTR(struct limine_cmdline_response *) response;
};
// Framebuffer
2022-03-13 07:35:29 +03:00
#define LIMINE_FRAMEBUFFER_REQUEST { LIMINE_COMMON_MAGIC, 0xcbfe81d7dd2d1977, 0x063150319ebc9b71 }
2022-03-14 14:05:59 +03:00
#define LIMINE_FRAMEBUFFER_RGB 1
struct limine_framebuffer {
LIMINE_PTR(void *) address;
uint16_t width;
uint16_t height;
uint16_t pitch;
uint16_t bpp;
uint8_t memory_model;
uint8_t red_mask_size;
uint8_t red_mask_shift;
uint8_t green_mask_size;
uint8_t green_mask_shift;
uint8_t blue_mask_size;
uint8_t blue_mask_shift;
uint8_t unused;
};
2022-03-13 07:35:29 +03:00
struct limine_framebuffer_response {
uint64_t flags;
2022-03-14 14:05:59 +03:00
uint64_t fbs_count;
LIMINE_PTR(struct limine_framebuffer *) fbs;
};
2022-03-13 07:35:29 +03:00
struct limine_framebuffer_request {
uint64_t id[4];
uint64_t flags;
LIMINE_PTR(struct limine_framebuffer_response *) response;
};
// 5-level paging
2022-03-13 07:35:29 +03:00
#define LIMINE_5_LEVEL_PAGING_REQUEST { LIMINE_COMMON_MAGIC, 0x94469551da9b3192, 0xebe5e86db7382888 }
struct limine_5_level_paging_response {
uint64_t flags;
};
2022-03-13 07:35:29 +03:00
struct limine_5_level_paging_request {
uint64_t id[4];
uint64_t flags;
LIMINE_PTR(struct limine_5_level_paging_response *) response;
};
2022-03-12 23:41:36 +03:00
// Memory map
2022-03-13 07:35:29 +03:00
#define LIMINE_MEMMAP_REQUEST { LIMINE_COMMON_MAGIC, 0x67cf3d9d378a806f, 0xe304acdfc50c3c62 }
2022-03-12 23:41:36 +03:00
#define LIMINE_MEMMAP_USABLE 0
#define LIMINE_MEMMAP_RESERVED 1
#define LIMINE_MEMMAP_ACPI_RECLAIMABLE 2
#define LIMINE_MEMMAP_ACPI_NVS 3
#define LIMINE_MEMMAP_BAD_MEMORY 4
#define LIMINE_MEMMAP_BOOTLOADER_RECLAIMABLE 5
#define LIMINE_MEMMAP_KERNEL_AND_MODULES 6
#define LIMINE_MEMMAP_FRAMEBUFFER 7
struct limine_memmap_entry {
uint64_t base;
uint64_t length;
uint64_t type;
};
struct limine_memmap_response {
uint64_t flags;
uint64_t entries_count;
LIMINE_PTR(struct limine_memmap_entry *) entries;
};
2022-03-13 07:35:29 +03:00
struct limine_memmap_request {
uint64_t id[4];
uint64_t flags;
LIMINE_PTR(struct limine_memmap_response *) response;
};
// Entry point
#define LIMINE_ENTRY_POINT_REQUEST { LIMINE_COMMON_MAGIC, 0x13d86c035a1cd3e1, 0x2b0caa89d8f3026a }
struct limine_entry_point_response {
uint64_t flags;
};
struct limine_entry_point_request {
uint64_t id[4];
uint64_t flags;
LIMINE_PTR(struct limine_entry_point_response *) response;
LIMINE_PTR(void *) entry;
};
#endif