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
|
#include "syslib.h"
#include <stdlib.h>
#include <errno.h>
#include <sys/mman.h>
#include <minix/sysutil.h>
void *alloc_contig(size_t len, int flags, phys_bytes *phys)
{
void* buf;
int mmapflags = MAP_PREALLOC|MAP_CONTIG|MAP_ANON;
if(flags & AC_LOWER16M)
mmapflags |= MAP_LOWER16M;
if(flags & AC_LOWER1M)
mmapflags |= MAP_LOWER1M;
if(flags & AC_ALIGN64K)
mmapflags |= MAP_ALIGNMENT_64KB;
/* First try to get memory with mmap. This is guaranteed
* to be page-aligned, and we can tell VM it has to be
* pre-allocated and contiguous.
*/
errno = 0;
buf = sef_llvm_ac_mmap(0, len, PROT_READ|PROT_WRITE, mmapflags, -1, 0);
if(buf == MAP_FAILED) {
return NULL;
}
/* Get physical address, if requested. */
if(phys != NULL && sys_umap(SELF, VM_D, (vir_bytes)buf, len,
phys) != OK)
panic("sys_umap_data_fb failed");
return buf;
}
int free_contig(void *addr, size_t len)
{
return sef_llvm_ac_munmap(addr, len);
}
|