blob: d72cf87c440d54a2efe657105f854d267a2cbd5f (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#include <lib.h>
#include <comus/mboot.h>
#include "mboot.h"
#define MULTIBOOT_TAG_TYPE_MMAP 6
#define MULTIBOOT_SEG_TYPE_RESV 0
#define MULTIBOOT_SEG_TYPE_FREE 1
#define MULTIBOOT_SEG_TYPE_ACPI 3
#define MULTIBOOT_SEG_TYPE_HIBR 4
#define MULTIBOOT_SEG_TYPE_DEFC 5
struct multiboot_mmap_entry {
uint64_t addr;
uint64_t len;
uint32_t type;
uint32_t zero;
};
struct multiboot_tag_mmap {
uint32_t type;
uint32_t size;
uint32_t entry_size;
uint32_t entry_version;
struct multiboot_mmap_entry entries[];
};
int mboot_get_mmap(struct memory_map *res)
{
void *tag = locate_mboot_table(MULTIBOOT_TAG_TYPE_MMAP);
if (tag == NULL)
return 1;
struct multiboot_tag_mmap *mmap = (struct multiboot_tag_mmap *)tag;
int idx = 0;
uintptr_t i = (uintptr_t)mmap->entries;
for (; i < (uintptr_t)mmap->entries + mmap->size; i += mmap->entry_size) {
if (idx >= N_MMAP_ENTRY)
panic("Too many mmap entries: limit is %d", N_MMAP_ENTRY);
struct multiboot_mmap_entry *seg = (struct multiboot_mmap_entry *)i;
res->entries[idx].addr = seg->addr;
res->entries[idx].len = seg->len;
switch (seg->type) {
case MULTIBOOT_SEG_TYPE_RESV:
res->entries[idx].type = SEG_TYPE_RESERVED;
break;
case MULTIBOOT_SEG_TYPE_FREE:
res->entries[idx].type = SEG_TYPE_FREE;
break;
case MULTIBOOT_SEG_TYPE_ACPI:
res->entries[idx].type = SEG_TYPE_ACPI;
break;
case MULTIBOOT_SEG_TYPE_HIBR:
res->entries[idx].type = SEG_TYPE_HIBERNATION;
break;
case MULTIBOOT_SEG_TYPE_DEFC:
res->entries[idx].type = SEG_TYPE_DEFECTIVE;
break;
default:
continue;
}
idx++;
}
res->entry_count = idx;
return 0;
}
|