summaryrefslogtreecommitdiff
path: root/vm/vm_kmem.h
blob: e2e3581cee6c30797c365b2e1cb1a31bd4470e1d (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 * Copyright (c) 2010-2017 Richard Braun
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef VM_VM_KMEM_H
#define VM_VM_KMEM_H

#include <stdint.h>

#include <kern/init.h>
#include <machine/pmap.h>
#include <machine/types.h>

/*
 * The kernel space is required not to start at address 0, which is used to
 * report allocation errors.
 */
#if PMAP_START_KMEM_ADDRESS == 0
#error "kernel space must not start at address 0"
#endif /* PMAP_START_KMEM_ADDRESS == 0 */

/*
 * Special kernel addresses.
 */
extern char _text;
extern char _rodata;
extern char _data;
extern char _end;

/*
 * Allocate pure virtual kernel pages.
 *
 * The caller is reponsible for taking care of the underlying physical memory.
 */
void * vm_kmem_alloc_va(size_t size);

/*
 * Free virtual kernel pages.
 *
 * The caller is reponsible for taking care of the underlying physical memory.
 */
void vm_kmem_free_va(void *addr, size_t size);

/*
 * Allocate kernel pages.
 */
void * vm_kmem_alloc(size_t size);

/*
 * Free kernel pages.
 */
void vm_kmem_free(void *addr, size_t size);

/*
 * Map physical memory in the kernel map.
 *
 * Return the address at which the mapped memory can be accessed. If map_addrp
 * and/or map_sizep aren't NULL, they are updated to the address and size of
 * the mapping created.
 *
 * This is a convenience function for modules that must map random regions of
 * physical memory, and as such, it doesn't expect a page-aligned input range.
 *
 * TODO When mapping attributes are implemented, make this function disable
 * caching on the mapping.
 */
void * vm_kmem_map_pa(phys_addr_t pa, size_t size,
                      uintptr_t *map_vap, size_t *map_sizep);

/*
 * Unmap physical memory from the kernel map.
 */
void vm_kmem_unmap_pa(uintptr_t map_va, size_t map_size);

/*
 * This init operation provides :
 *  - kernel virtual memory allocation
 */
INIT_OP_DECLARE(vm_kmem_setup);

#endif /* VM_VM_KMEM_H */