aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/memory/paging.h
blob: 77258b728ace755334293f2a2f6b9f337f5cf19a (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
#ifndef MELVIX_PAGING_H
#define MELVIX_PAGING_H

#include <stdint.h>
#include <kernel/interrupts/interrupts.h>

typedef struct page {
    uint32_t present: 1;
    uint32_t rw: 1;
    uint32_t user: 1;
    uint32_t accessed: 1;
    uint32_t dirty: 1;
    uint32_t unused: 7;
    uint32_t frame: 20;
} page_t;

typedef struct page_table {
    page_t pages[1024];
} page_table_t;

typedef struct page_directory {
    page_table_t *tables[1024];
    uint32_t tablesPhysical[1024];
    uint32_t physicalAddr;
} page_directory_t;

int paging_enabled;

void paging_set_frame(uint32_t frame_addr);

void paging_alloc_frame(page_t *page, int is_kernel, int is_writeable);

void paging_free_frame(page_t *page);

void paging_install();

void paging_switch_directory(page_directory_t *dir);

void paging_enable();

void paging_disable();

page_t *paging_get_page(uint32_t address, int make, page_directory_t *dir);

page_directory_t *paging_clone_directory(page_directory_t *src);

#endif