aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/paging/kheap.h
blob: a2254bebab7bd8a12f6e934f7aadb4af61ed9858 (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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#ifndef MELVIX_KHEAP_H
#define MELVIX_KHEAP_H

#include "ordered_array.h"

#define KHEAP_START         0xC0000000
#define KHEAP_INITIAL_SIZE  0x100000

#define HEAP_INDEX_SIZE   0x20000
#define HEAP_MAGIC        0x03A93A90
#define HEAP_MIN_SIZE     0x70000

/**
 * Size information of holes/blocks
 */
typedef struct {
    uint32_t magic;
    unsigned char is_hole; // 1 if hole
    uint32_t size;
} header_t;

typedef struct {
    uint32_t magic;
    header_t *header;
} footer_t;

typedef struct {
    ordered_array_t index;
    uint32_t start_address;
    uint32_t end_address;
    uint32_t max_address;
    unsigned char supervisor;
    unsigned char readonly;
} heap_t;

/**
 * Create a new heap
 * @param start
 * @param end
 * @param max
 * @param supervisor
 * @param readonly
 * @return The heap pointer
 */
heap_t *create_heap(uint32_t start, uint32_t end, uint32_t max, unsigned char supervisor, unsigned char readonly);

/**
 * Allocate a region of memory
 * @param size The size of the memory
 * @param page_align Start the block on a page boundary
 * @param heap The Heap pointer
 * @return
 */
void *alloc(uint32_t size, unsigned char page_align, heap_t *heap);

/**
 * Release an allocated block
 * @param p The block
 * @param heap The heap
 */
void free(void *p, heap_t *heap);

/**
 * Release an allocated block using kheap
 * @param p The block
 */
void kfree(void *p);

/**
 * Allocate a chunk of memory
 * @param sz The size of the memory
 * @param align Start the block on a page boundary
 * @param phys Location of the memory if not 0
 * @return The memory address
 */
uint32_t kmalloc_int(uint32_t sz, int align, uint32_t *phys);

/**
 * Allocate a page-aligned chunk of memory
 * @param sz The size of the memory
 * @return The memory address
 */
uint32_t kmalloc_a(uint32_t sz);

/**
 * Allocate a chunk of memory in a physical address
 * @param sz The size of the memory
 * @param phys The physical address
 * @return The memory address
 */
uint32_t kmalloc_p(uint32_t sz, uint32_t *phys);

/**
 * Allocate a page-aligned chunk of memory in a physical address
 * @param sz The size of the memory
 * @param phys The physical address
 * @return The memory address
 */
uint32_t kmalloc_ap(uint32_t sz, uint32_t *phys);

/**
 * Allocate a chunk of memory (non page-aligned and no physical address)
 * @param sz The size of the memory
 * @return The memory address
 */
uint32_t kmalloc(uint32_t sz);

#endif