Fix naming and mem bottom
This commit is contained in:
parent
a254a7cd71
commit
77b495e382
11
core/main.c
11
core/main.c
@ -37,7 +37,8 @@ void idleThread(void *arg)
|
||||
// https://www.gnu.org/software/grub/manual/multiboot/html_node/Boot-information-format.html#Boot%20information%20format
|
||||
void kmain(unsigned long magic, unsigned long addr)
|
||||
{
|
||||
unsigned long upper_mem = 0;
|
||||
unsigned long upperMem = 0;
|
||||
|
||||
VGASetup(BLACK, GREEN);
|
||||
cursorEnable(14, 15);
|
||||
|
||||
@ -52,7 +53,7 @@ void kmain(unsigned long magic, unsigned long addr)
|
||||
/* Are mem_* valid? */
|
||||
if (CHECK_FLAG(mbi->flags, 0)) {
|
||||
printf("mem_lower = %dKiB mem_upper %dKiB\n", mbi->mem_lower, mbi->mem_upper);
|
||||
upper_mem = mbi->mem_upper;
|
||||
upperMem = mbi->mem_upper;
|
||||
}
|
||||
|
||||
/* Is boot_device valid? */
|
||||
@ -91,14 +92,14 @@ void kmain(unsigned long magic, unsigned long addr)
|
||||
}
|
||||
}
|
||||
|
||||
if (upper_mem == 0) {
|
||||
if (upperMem == 0) {
|
||||
printf("Cannot get upper phy mem bound. Using default value 32MB\n");
|
||||
upper_mem = 32 * 1024;
|
||||
upperMem = 32 * 1024;
|
||||
}
|
||||
|
||||
printf("Setting up Pagination\n");
|
||||
paddr_t lastUserByMem;
|
||||
memSetup(upper_mem, &lastUserByMem);
|
||||
memSetup(upperMem, &lastUserByMem);
|
||||
#ifdef RUN_TEST
|
||||
testPhymem();
|
||||
#endif
|
||||
|
86
core/mem.c
86
core/mem.c
@ -4,67 +4,71 @@
|
||||
#include "list.h"
|
||||
#include "types.h"
|
||||
|
||||
static struct mem_desc *page_desc = (struct mem_desc *)&__ld_kernel_end;
|
||||
static struct mem_desc *free_page;
|
||||
static struct mem_desc *used_page;
|
||||
static unsigned long bottom_mem;
|
||||
static unsigned long top_mem;
|
||||
static struct memDesc *pageDesc = (struct memDesc *)&__ld_kernel_end;
|
||||
static struct memDesc *freePage;
|
||||
static struct memDesc *usedPage;
|
||||
static unsigned long memBottom;
|
||||
static unsigned long memTop;
|
||||
|
||||
static unsigned long allocatedPage = 0;
|
||||
|
||||
int memSetup(paddr_t upperMem, paddr_t *lastUsedOut)
|
||||
int memSetup(paddr_t upperMem, paddr_t *lastPageUsedOut)
|
||||
{
|
||||
// Align upper mem (in kB) on page size even if it does loose a page
|
||||
upperMem = ALIGN_DOWN(upperMem, PAGE_SIZE / 1024);
|
||||
list_init(freePage);
|
||||
list_init(usedPage);
|
||||
|
||||
// Align upper mem (in kB) on page size even if it does loose a page
|
||||
upperMem = ALIGN_DOWN(upperMem, PAGE_SIZE / 1024);
|
||||
unsigned long nbPage = ((upperMem) / (PAGE_SIZE / 1024));
|
||||
|
||||
printf("Available Mem from 0x%x to 0x%x: %dMB and %dPages(%d)\n", &__ld_kernel_end,
|
||||
upperMem * 1024, (upperMem * 1024 - (uint32_t)&__ld_kernel_end) / (1024 * 1024),
|
||||
nbPage, PAGE_SIZE);
|
||||
|
||||
printf("Available Mem from 0x%x to 0x%x: %dMB \n", &__ld_kernel_end, upperMem * 1024,
|
||||
(upperMem * 1024 - (uint32_t)&__ld_kernel_end) / (1024 * 1024));
|
||||
// Memory description is stored after the kernel. We need some place to store it
|
||||
unsigned long memdesc_end =
|
||||
(unsigned long)page_desc + ((upperMem) / (PAGE_SIZE / 1024)) * sizeof(struct mem_desc);
|
||||
uint lastUsed = (memdesc_end >> PAGE_SHIFT) + 1;
|
||||
list_init(free_page);
|
||||
list_init(used_page);
|
||||
bottom_mem = lastUsed;
|
||||
*lastUsedOut = memdesc_end;
|
||||
top_mem = upperMem * 1024;
|
||||
for (uint i = 0; i < (upperMem / (PAGE_SIZE / 1024)); i++) {
|
||||
struct mem_desc *mem = &page_desc[i];
|
||||
if (i < lastUsed) {
|
||||
unsigned long pageDescEnd = (unsigned long)pageDesc + nbPage * sizeof(struct memDesc);
|
||||
uint lastPageUsed = (pageDescEnd >> PAGE_SHIFT) + 1;
|
||||
memBottom = lastPageUsed << PAGE_SHIFT;
|
||||
memTop = upperMem * 1024;
|
||||
*lastPageUsedOut = pageDescEnd;
|
||||
|
||||
for (uint i = 0; i < nbPage; i++) {
|
||||
struct memDesc *mem = &pageDesc[i];
|
||||
if (i < lastPageUsed) {
|
||||
mem->ref = 1;
|
||||
list_add_tail(used_page, mem);
|
||||
list_add_tail(usedPage, mem);
|
||||
} else {
|
||||
mem->ref = 0;
|
||||
list_add_tail(free_page, mem);
|
||||
list_add_tail(freePage, mem);
|
||||
}
|
||||
mem->phy_addr = i * PAGE_SIZE;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
struct mem_desc *addr2memDesc(paddr_t addr)
|
||||
struct memDesc *addr2memDesc(paddr_t addr)
|
||||
{
|
||||
if (addr > top_mem || addr < bottom_mem)
|
||||
if (addr > memTop || addr < memBottom)
|
||||
return NULL;
|
||||
|
||||
int idx = addr >> PAGE_SHIFT;
|
||||
return page_desc + idx;
|
||||
return pageDesc + idx;
|
||||
}
|
||||
|
||||
struct mem_desc *memFindConsecutiveFreePage(uint nbPage)
|
||||
struct memDesc *memFindConsecutiveFreePage(uint nbPage)
|
||||
{
|
||||
struct mem_desc *mem, *head;
|
||||
struct memDesc *mem, *head;
|
||||
uint memIdx, count;
|
||||
|
||||
if (list_is_empty(free_page)) {
|
||||
if (list_is_empty(freePage)) {
|
||||
return NULL;
|
||||
}
|
||||
count = 1;
|
||||
memIdx = 0;
|
||||
head = free_page;
|
||||
mem = free_page;
|
||||
head = freePage;
|
||||
mem = freePage;
|
||||
|
||||
while (count < nbPage && (!memIdx || mem != free_page)) {
|
||||
while (count < nbPage && (!memIdx || mem != freePage)) {
|
||||
memIdx++;
|
||||
mem = mem->next;
|
||||
if (mem->phy_addr == head->phy_addr + count * PAGE_SIZE) {
|
||||
@ -83,7 +87,7 @@ struct mem_desc *memFindConsecutiveFreePage(uint nbPage)
|
||||
|
||||
paddr_t allocPhyPage(uint nbPage)
|
||||
{
|
||||
struct mem_desc *mem, *head, *next;
|
||||
struct memDesc *mem, *head, *next;
|
||||
uint count;
|
||||
|
||||
head = memFindConsecutiveFreePage(nbPage);
|
||||
@ -96,9 +100,9 @@ paddr_t allocPhyPage(uint nbPage)
|
||||
mem = head;
|
||||
next = head->next;
|
||||
for (count = 0; count < nbPage; count++) {
|
||||
list_delete(free_page, mem);
|
||||
list_delete(freePage, mem);
|
||||
mem->ref = 1;
|
||||
list_add_tail(used_page, mem);
|
||||
list_add_tail(usedPage, mem);
|
||||
mem = next;
|
||||
next = mem->next;
|
||||
}
|
||||
@ -108,15 +112,15 @@ paddr_t allocPhyPage(uint nbPage)
|
||||
|
||||
int unrefPhyPage(paddr_t addr)
|
||||
{
|
||||
struct mem_desc *mem = addr2memDesc(addr);
|
||||
struct memDesc *mem = addr2memDesc(addr);
|
||||
if (!mem) {
|
||||
return -1;
|
||||
}
|
||||
mem->ref--;
|
||||
if (mem->ref == 0) {
|
||||
allocatedPage--;
|
||||
list_delete(used_page, mem);
|
||||
list_add_tail(free_page, mem); // TODO find the right place to keep free_page sorted;
|
||||
list_delete(usedPage, mem);
|
||||
list_add_tail(freePage, mem); // TODO find the right place to keep free_page sorted;
|
||||
}
|
||||
|
||||
return mem->ref;
|
||||
@ -124,15 +128,15 @@ int unrefPhyPage(paddr_t addr)
|
||||
|
||||
int refPhyPage(paddr_t addr)
|
||||
{
|
||||
struct mem_desc *mem = addr2memDesc(addr);
|
||||
struct memDesc *mem = addr2memDesc(addr);
|
||||
if (!mem) {
|
||||
return -1;
|
||||
}
|
||||
mem->ref++;
|
||||
if (mem->ref == 1) {
|
||||
allocatedPage++;
|
||||
list_add_tail(used_page, mem);
|
||||
list_delete(free_page, mem);
|
||||
list_add_tail(usedPage, mem);
|
||||
list_delete(freePage, mem);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -9,10 +9,10 @@
|
||||
extern uint32_t __ld_kernel_begin;
|
||||
extern uint32_t __ld_kernel_end;
|
||||
|
||||
struct mem_desc {
|
||||
struct memDesc {
|
||||
paddr_t phy_addr;
|
||||
long ref;
|
||||
struct mem_desc *next, *prev;
|
||||
struct memDesc *next, *prev;
|
||||
};
|
||||
|
||||
int memSetup(paddr_t upperMem, paddr_t *lastUsed);
|
||||
|
@ -22,7 +22,8 @@ unsigned long msecs_to_jiffies(const unsigned int m)
|
||||
#endif
|
||||
}
|
||||
|
||||
unsigned long usecs_to_jiffies(const unsigned int u){
|
||||
unsigned long usecs_to_jiffies(const unsigned int u)
|
||||
{
|
||||
// This could overflow
|
||||
return (u * HZ) / 1000000L;
|
||||
}
|
||||
|
@ -52,9 +52,9 @@ int waitTimeout(struct wait_queue *wq, unsigned long msec)
|
||||
|
||||
disable_IRQs(flags);
|
||||
|
||||
current = getCurrentThread();
|
||||
current = getCurrentThread();
|
||||
current->state = WAITING;
|
||||
next = kthreadSelectNext();
|
||||
next = kthreadSelectNext();
|
||||
kthreadUnsched(current);
|
||||
|
||||
list_add_tail(wq->thread, current);
|
||||
|
19
tests/test.c
19
tests/test.c
@ -14,14 +14,16 @@
|
||||
void testPhymem(void)
|
||||
{
|
||||
printf("Testing memory PHY\n");
|
||||
struct mem_desc *allocated_page_list;
|
||||
struct mem_desc
|
||||
assert(refPhyPage((paddr_t)(&__ld_kernel_end)) == -1);
|
||||
assert(refPhyPage((paddr_t)(&__ld_kernel_begin)) == -1);
|
||||
struct memDesc *allocated_page_list;
|
||||
struct memDesc
|
||||
*page; // Cast in mem_desc to use it. In fact it's the addr of 4K free memory
|
||||
list_init(allocated_page_list);
|
||||
int allocCount = 0;
|
||||
int freeCount = 0;
|
||||
|
||||
while ((page = (struct mem_desc *)allocPhyPage(1)) != NULL) {
|
||||
while ((page = (struct memDesc *)allocPhyPage(1)) != NULL) {
|
||||
page->phy_addr = allocCount;
|
||||
allocCount++;
|
||||
list_add_tail(allocated_page_list, page);
|
||||
@ -35,7 +37,7 @@ void testPhymem(void)
|
||||
}
|
||||
printf("%d pages freed\n", freeCount);
|
||||
|
||||
assertmsg((page = (struct mem_desc *)allocPhyPage(1)) != NULL, "Cannot allocate memory\n");
|
||||
assertmsg((page = (struct memDesc *)allocPhyPage(1)) != NULL, "Cannot allocate memory\n");
|
||||
unrefPhyPage((ulong)page);
|
||||
}
|
||||
|
||||
@ -49,6 +51,7 @@ static void *testAllocNSet(size_t size)
|
||||
|
||||
static void testAlloc(void)
|
||||
{
|
||||
assert(malloc(1410065407) == NULL);
|
||||
for (uint i = 0; i < PAGE_SIZE / (sizeof(struct slabEntry)); i++) {
|
||||
malloc(sizeof(struct slabEntry));
|
||||
}
|
||||
@ -96,14 +99,14 @@ static void testAlloc(void)
|
||||
static void testPaging(void)
|
||||
{
|
||||
printf("Testing paging\n");
|
||||
struct mem_desc *allocated_page_list;
|
||||
struct mem_desc
|
||||
struct memDesc *allocated_page_list;
|
||||
struct memDesc
|
||||
*page; // Cast in mem_desc to use it. In fact it's the addr of 4K free memory
|
||||
list_init(allocated_page_list);
|
||||
int allocCount = 0;
|
||||
int freeCount = 0;
|
||||
|
||||
while ((page = (struct mem_desc *)allocPhyPage(1)) != NULL) {
|
||||
while ((page = (struct memDesc *)allocPhyPage(1)) != NULL) {
|
||||
assertmsg(pageMap((vaddr_t)page, (paddr_t)page, PAGING_MEM_WRITE) == 0,
|
||||
"Fail to map page %d\n", allocCount);
|
||||
memset(page, allocCount, PAGE_SIZE);
|
||||
@ -121,7 +124,7 @@ static void testPaging(void)
|
||||
}
|
||||
printf("%d pages freed\n", freeCount);
|
||||
|
||||
assertmsg((page = (struct mem_desc *)allocPhyPage(1)) != NULL, "Cannot allocate memory\n");
|
||||
assertmsg((page = (struct memDesc *)allocPhyPage(1)) != NULL, "Cannot allocate memory\n");
|
||||
unrefPhyPage((ulong)page);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user