2019-07-24 18:40:13 +00:00
|
|
|
// Physical memory allocator, for user processes,
|
|
|
|
// kernel stacks, page-table pages,
|
|
|
|
// and pipe buffers. Allocates whole 4096-byte pages.
|
2006-06-12 15:22:12 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
2006-07-12 11:15:38 +00:00
|
|
|
#include "param.h"
|
2011-07-29 11:31:27 +00:00
|
|
|
#include "memlayout.h"
|
2006-07-12 01:48:35 +00:00
|
|
|
#include "spinlock.h"
|
2019-05-31 13:45:59 +00:00
|
|
|
#include "riscv.h"
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
void freerange(void *pa_start, void *pa_end);
|
2006-07-12 01:48:35 +00:00
|
|
|
|
2019-07-24 18:40:13 +00:00
|
|
|
extern char end[]; // first address after kernel.
|
|
|
|
// defined by kernel.ld.
|
2011-09-13 17:14:52 +00:00
|
|
|
|
2006-06-12 15:22:12 +00:00
|
|
|
struct run {
|
|
|
|
struct run *next;
|
|
|
|
};
|
2009-05-31 05:12:21 +00:00
|
|
|
|
|
|
|
struct {
|
|
|
|
struct spinlock lock;
|
|
|
|
struct run *freelist;
|
|
|
|
} kmem;
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2011-09-13 17:14:52 +00:00
|
|
|
void
|
2019-05-31 13:45:59 +00:00
|
|
|
kinit()
|
2011-07-29 11:31:27 +00:00
|
|
|
{
|
2011-09-13 17:14:52 +00:00
|
|
|
initlock(&kmem.lock, "kmem");
|
2019-05-31 13:45:59 +00:00
|
|
|
freerange(end, (void*)PHYSTOP);
|
2011-07-29 11:31:27 +00:00
|
|
|
}
|
2010-09-19 11:18:42 +00:00
|
|
|
|
2006-06-12 15:22:12 +00:00
|
|
|
void
|
2019-05-31 13:45:59 +00:00
|
|
|
freerange(void *pa_start, void *pa_end)
|
2006-06-12 15:22:12 +00:00
|
|
|
{
|
2011-01-11 18:01:13 +00:00
|
|
|
char *p;
|
2019-05-31 13:45:59 +00:00
|
|
|
p = (char*)PGROUNDUP((uint64)pa_start);
|
|
|
|
for(; p + PGSIZE <= (char*)pa_end; p += PGSIZE)
|
2010-08-31 23:21:33 +00:00
|
|
|
kfree(p);
|
2006-06-12 15:22:12 +00:00
|
|
|
}
|
2019-07-24 17:33:43 +00:00
|
|
|
|
2021-11-19 16:45:49 +00:00
|
|
|
// Free the page of physical memory pointed at by pa,
|
2006-09-07 14:12:30 +00:00
|
|
|
// which normally should have been returned by a
|
2010-08-31 16:54:47 +00:00
|
|
|
// call to kalloc(). (The exception is when
|
2006-09-07 14:12:30 +00:00
|
|
|
// initializing the allocator; see kinit above.)
|
2006-06-12 15:22:12 +00:00
|
|
|
void
|
2019-05-31 13:45:59 +00:00
|
|
|
kfree(void *pa)
|
2006-06-12 15:22:12 +00:00
|
|
|
{
|
2010-08-31 16:54:47 +00:00
|
|
|
struct run *r;
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2019-05-31 13:45:59 +00:00
|
|
|
if(((uint64)pa % PGSIZE) != 0 || (char*)pa < end || (uint64)pa >= PHYSTOP)
|
2006-06-12 15:22:12 +00:00
|
|
|
panic("kfree");
|
|
|
|
|
2006-09-06 18:06:04 +00:00
|
|
|
// Fill with junk to catch dangling refs.
|
2019-05-31 13:45:59 +00:00
|
|
|
memset(pa, 1, PGSIZE);
|
2006-07-01 21:26:01 +00:00
|
|
|
|
2019-05-31 13:45:59 +00:00
|
|
|
r = (struct run*)pa;
|
2019-07-11 09:41:59 +00:00
|
|
|
|
|
|
|
acquire(&kmem.lock);
|
2010-08-31 16:54:47 +00:00
|
|
|
r->next = kmem.freelist;
|
|
|
|
kmem.freelist = r;
|
2019-05-31 13:45:59 +00:00
|
|
|
release(&kmem.lock);
|
2006-06-12 15:22:12 +00:00
|
|
|
}
|
|
|
|
|
2010-08-31 16:54:47 +00:00
|
|
|
// Allocate one 4096-byte page of physical memory.
|
|
|
|
// Returns a pointer that the kernel can use.
|
2006-09-06 17:50:20 +00:00
|
|
|
// Returns 0 if the memory cannot be allocated.
|
2019-05-31 13:45:59 +00:00
|
|
|
void *
|
2011-01-11 18:01:13 +00:00
|
|
|
kalloc(void)
|
2006-06-12 15:22:12 +00:00
|
|
|
{
|
2010-08-31 16:54:47 +00:00
|
|
|
struct run *r;
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2019-05-31 13:45:59 +00:00
|
|
|
acquire(&kmem.lock);
|
2010-08-31 16:54:47 +00:00
|
|
|
r = kmem.freelist;
|
|
|
|
if(r)
|
|
|
|
kmem.freelist = r->next;
|
2019-05-31 13:45:59 +00:00
|
|
|
release(&kmem.lock);
|
2019-07-11 09:41:59 +00:00
|
|
|
|
2019-06-04 14:43:45 +00:00
|
|
|
if(r)
|
|
|
|
memset((char*)r, 5, PGSIZE); // fill with junk
|
2019-05-31 13:45:59 +00:00
|
|
|
return (void*)r;
|
2006-06-12 15:22:12 +00:00
|
|
|
}
|