blob: 052a56fd8ba2eaf49df5833a65077984a5ae1055 (
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
|
// MIT License, Copyright (c) 2020 Marvin Borner
// This file specifies the structs passed by the bootloader
#ifndef BOOT_H
#define BOOT_H
#include <def.h>
extern struct vid_info *boot_passed;
struct vid_info {
u32 mode;
u32 *vbe;
};
enum mmap_type {
MEMORY_AVAILABLE = 1,
MEMORY_RESERVED,
MEMORY_ACPI,
MEMORY_NVS,
MEMORY_DEFECT,
MEMORY_DISABLED
};
struct mmap_boot {
u32 lbase;
u32 hbase;
u32 lsize;
u32 hsize;
u32 type;
u32 acpi;
};
struct mem_info {
struct mmap_boot *start;
u32 *end;
u32 size;
};
#endif
|