2020-12-06 23:46:37 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2020-11-30 06:40:33 -05:00
|
|
|
#include "config.h"
|
2020-12-06 23:46:37 -05:00
|
|
|
#endif
|
2020-11-30 06:40:33 -05:00
|
|
|
|
2020-11-27 05:42:13 -05:00
|
|
|
#include <kernaux/pfa.h>
|
2020-11-30 17:54:09 -05:00
|
|
|
#include <kernaux/stdlib.h>
|
|
|
|
|
2020-12-03 22:04:42 -05:00
|
|
|
static void KernAux_PFA_mark(
|
2021-12-13 18:03:13 -05:00
|
|
|
KernAux_PFA pfa,
|
2020-12-06 05:16:15 -05:00
|
|
|
bool status,
|
2021-12-13 17:59:51 -05:00
|
|
|
size_t start,
|
|
|
|
size_t end
|
2020-12-03 22:04:42 -05:00
|
|
|
)
|
|
|
|
__attribute__((nonnull));
|
|
|
|
|
2021-12-13 18:03:13 -05:00
|
|
|
void KernAux_PFA_initialize(const KernAux_PFA pfa)
|
2020-11-30 17:54:09 -05:00
|
|
|
{
|
2020-12-06 05:16:15 -05:00
|
|
|
kernaux_memset(pfa->pages, false, sizeof(pfa->pages));
|
2020-11-30 17:54:09 -05:00
|
|
|
}
|
|
|
|
|
2021-12-13 18:10:05 -05:00
|
|
|
bool KernAux_PFA_is_available(const KernAux_PFA pfa, const size_t page_addr)
|
|
|
|
{
|
|
|
|
if (page_addr % KERNAUX_PFA_PAGE_SIZE != 0) return false;
|
|
|
|
|
|
|
|
return pfa->pages[page_addr / KERNAUX_PFA_PAGE_SIZE];
|
|
|
|
}
|
|
|
|
|
2020-11-30 17:54:09 -05:00
|
|
|
void KernAux_PFA_mark_available(
|
2021-12-13 18:03:13 -05:00
|
|
|
const KernAux_PFA pfa,
|
2021-12-13 17:59:51 -05:00
|
|
|
const size_t start,
|
|
|
|
const size_t end
|
2020-12-03 22:04:42 -05:00
|
|
|
) {
|
2020-12-06 05:16:15 -05:00
|
|
|
KernAux_PFA_mark(pfa, true, start, end);
|
2020-12-03 22:04:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void KernAux_PFA_mark_unavailable(
|
2021-12-13 18:03:13 -05:00
|
|
|
const KernAux_PFA pfa,
|
2021-12-13 17:59:51 -05:00
|
|
|
const size_t start,
|
|
|
|
const size_t end
|
2020-12-03 22:04:42 -05:00
|
|
|
) {
|
2020-12-06 05:16:15 -05:00
|
|
|
KernAux_PFA_mark(pfa, false, start, end);
|
2020-12-03 22:04:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void KernAux_PFA_mark(
|
2021-12-13 18:03:13 -05:00
|
|
|
const KernAux_PFA pfa,
|
2020-12-06 05:16:15 -05:00
|
|
|
const bool status,
|
2021-12-13 17:59:51 -05:00
|
|
|
size_t start,
|
|
|
|
size_t end
|
2020-11-30 17:54:09 -05:00
|
|
|
) {
|
2021-12-13 17:59:51 -05:00
|
|
|
if (start >= end) return;
|
2020-11-30 17:54:09 -05:00
|
|
|
|
2021-12-13 17:59:51 -05:00
|
|
|
const size_t start_rem = start % KERNAUX_PFA_PAGE_SIZE;
|
|
|
|
const size_t end_rem = (end + 1) % KERNAUX_PFA_PAGE_SIZE;
|
2020-11-30 17:54:09 -05:00
|
|
|
|
|
|
|
if (start_rem != 0) {
|
|
|
|
start = start - start_rem + KERNAUX_PFA_PAGE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end_rem != 0) {
|
|
|
|
end = end - end_rem;
|
|
|
|
}
|
|
|
|
|
2021-12-13 17:59:51 -05:00
|
|
|
const size_t start_index = start / KERNAUX_PFA_PAGE_SIZE;
|
|
|
|
const size_t end_index = end / KERNAUX_PFA_PAGE_SIZE;
|
2020-11-30 17:54:09 -05:00
|
|
|
|
2021-12-13 17:59:51 -05:00
|
|
|
for (size_t index = start_index; index <= end_index; ++index) {
|
2020-12-03 22:04:42 -05:00
|
|
|
pfa->pages[index] = status;
|
2020-11-30 17:54:09 -05:00
|
|
|
}
|
|
|
|
}
|
2020-11-30 18:38:55 -05:00
|
|
|
|
2021-12-13 19:39:54 -05:00
|
|
|
size_t KernAux_PFA_alloc_pages(const KernAux_PFA pfa, const size_t mem_size)
|
|
|
|
{
|
|
|
|
if (mem_size % KERNAUX_PFA_PAGE_SIZE != 0) return 0;
|
|
|
|
|
2021-12-13 20:21:47 -05:00
|
|
|
const size_t pages_count = mem_size / KERNAUX_PFA_PAGE_SIZE;
|
2021-12-13 19:39:54 -05:00
|
|
|
|
|
|
|
// We start from 1 because 0 indicates failure.
|
|
|
|
// It is not very useful to alloc page at address 0;
|
2021-12-13 20:21:47 -05:00
|
|
|
for (size_t index = 1, start = 0;
|
|
|
|
index < KERNAUX_PFA_PAGES_COUNT_MAX;
|
|
|
|
++index)
|
|
|
|
{
|
|
|
|
if (!pfa->pages[index]) {
|
|
|
|
start = 0;
|
|
|
|
continue;
|
2021-12-13 19:39:54 -05:00
|
|
|
}
|
2021-12-13 20:21:47 -05:00
|
|
|
|
|
|
|
if (start == 0) start = index;
|
|
|
|
|
|
|
|
if (index - start + 1 == pages_count) {
|
|
|
|
for (; index >= start; --index) {
|
2021-12-13 19:39:54 -05:00
|
|
|
pfa->pages[index] = false;
|
|
|
|
}
|
|
|
|
return start * KERNAUX_PFA_PAGE_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void KernAux_PFA_free_pages(
|
|
|
|
const KernAux_PFA pfa,
|
|
|
|
const size_t page_addr,
|
|
|
|
const size_t mem_size
|
|
|
|
) {
|
|
|
|
if (page_addr % KERNAUX_PFA_PAGE_SIZE != 0) return;
|
|
|
|
if (mem_size % KERNAUX_PFA_PAGE_SIZE != 0) return;
|
|
|
|
|
|
|
|
const size_t start_index = page_addr / KERNAUX_PFA_PAGE_SIZE;
|
|
|
|
const size_t pages_count = mem_size / KERNAUX_PFA_PAGE_SIZE;
|
|
|
|
|
|
|
|
for (size_t index = 0; index < pages_count; ++index) {
|
|
|
|
pfa->pages[start_index + index] = true;
|
|
|
|
}
|
|
|
|
}
|