42_KFS/src/memory/frame.c

48 lines
1.4 KiB
C
Raw Normal View History

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include "kprintf.h"
#include "memory.h"
#define MAX_FRAMES 1048319
#define CEIL(x, y) (((x) + (y) - 1) / (y))
#define GET_FRAME(i) (frame_table[i / 8] & (1 << (i % 8)))
#define SET_FRAME(i, used) \
do { \
if (used) \
frame_table[i / 8] |= (1 << (i % 8)); \
else \
frame_table[i / 8] &= ~(1 << (i % 8)); \
} while (0)
extern uint32_t end_kernel;
static uint8_t frame_table[CEIL(MAX_FRAMES, 8)];
uintptr_t kalloc_frame(uint32_t nb_frames)
{
static uint32_t remaining_frames = MAX_FRAMES;
if (nb_frames > remaining_frames)
kprintf(KERN_CRIT, "Not enough frames (max: %d)\n", MAX_FRAMES);
size_t i = 0;
while (i < MAX_FRAMES) {
size_t free_frames = 1;
while (!GET_FRAME(i + free_frames) && free_frames < nb_frames &&
i + free_frames < remaining_frames)
free_frames++;
if (free_frames == nb_frames)
goto end;
i += free_frames;
}
end:
if (i != MAX_FRAMES) {
for (size_t j = 0; j < nb_frames; j++)
SET_FRAME(j + i, 1);
remaining_frames -= nb_frames;
return (uintptr_t)&end_kernel + i * PAGE_SIZE;
}
kprintf(KERN_WARNING, "Not enough frames available\n", MAX_FRAMES);
return 0;
}