This repository has been archived on 2024-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
rockOS/kernel/include/rockos/paging.h

54 lines
1.4 KiB
C
Raw Permalink Normal View History

2022-07-21 21:59:23 +03:00
/**
* Paging section header of rockOS
* Copyright (C) 2022 Furkan Mudanyali
*
* 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 <https://www.gnu.org/licenses/>.
*/
2022-07-20 02:23:23 +03:00
#ifndef _ROCKOS_PAGING_H
#define _ROCKOS_PAGING_H
#include <stdint.h>
typedef struct {
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;
typedef struct {
Page pages[1024];
} PageTable;
typedef struct {
PageTable* tables[1024];
uint32_t tablesPhys[1024];
uint32_t physAddr;
} PageDirectory;
2022-07-22 17:50:10 +03:00
void paging_init();
void paging_switch_dir(PageDirectory*);
Page* PageGet(uint32_t, int32_t, PageDirectory*);
void FrameSet(uint32_t);
void FrameClear(uint32_t);
uint32_t FrameTest(uint32_t);
uint32_t FrameFirst();
void FrameFree(Page*);
void FrameAlloc(Page*, char, char);
2022-07-20 02:23:23 +03:00
#endif