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
|
#ifndef APOS_VMEM_H
#define APOS_VMEM_H
/* arch-specific data */
#include <vmem.h>
/* common */
#include <apos/pmem.h>
#include <apos/sp_tree.h>
struct sp_mem {
struct sp_node sp_n;
struct sp_mem *next;
struct sp_mem *prev;
char flags;
vm_t end;
vm_t start;
};
#define mem_container(ptr)\
container_of(ptr, struct sp_mem, sp_n)
/* general overview of the different functions:
* (un)map_vmem: map one known page of physical memory to one known page of
* virtual memory
*
* (un)map_vregion: map known physical region to unknown virtual region within
* start and end
*
* (un)map_vsize: map unknown physical region to unknown virtual region
*/
/* defined by arch */
void map_vmem(struct vm_branch_t *branch,
pm_t paddr, vm_t vaddr,
uint8_t flags, enum mm_order_t order);
void unmap_vmem(struct vm_branch_t *branch, vm_t vaddr, enum mm_order_t order);
vm_t map_vregion(struct vm_branch_t *branch, pm_t base, vm_t start, size_t size,
uint8_t flags);
void unmap_vregion(struct vm_branch_t *branch, vm_t start);
void init_vmem(struct vm_branch_t *branch, vm_t tmp_pte);
#endif /* APOS_VMEM_H */
|