2009-05-20 23:07:56 +03:00
|
|
|
#pypp 0
|
2009-05-22 23:48:49 +03:00
|
|
|
#define ARCH
|
2009-05-20 23:07:56 +03:00
|
|
|
#include "kernel.hh"
|
|
|
|
|
|
|
|
void Thread_arch_init (Thread *thread):
|
|
|
|
thread->arch.at = 0
|
|
|
|
thread->arch.v0 = 0
|
|
|
|
thread->arch.v1 = 0
|
|
|
|
thread->arch.a0 = 0
|
|
|
|
thread->arch.a1 = 0
|
|
|
|
thread->arch.a2 = 0
|
|
|
|
thread->arch.a3 = 0
|
|
|
|
thread->arch.t0 = 0
|
|
|
|
thread->arch.t1 = 0
|
|
|
|
thread->arch.t2 = 0
|
|
|
|
thread->arch.t3 = 0
|
|
|
|
thread->arch.t4 = 0
|
|
|
|
thread->arch.t5 = 0
|
|
|
|
thread->arch.t6 = 0
|
|
|
|
thread->arch.t7 = 0
|
|
|
|
thread->arch.t8 = 0
|
|
|
|
thread->arch.t9 = 0
|
|
|
|
thread->arch.gp = 0
|
|
|
|
thread->arch.fp = 0
|
|
|
|
thread->arch.ra = 0
|
|
|
|
thread->arch.hi = 0
|
|
|
|
thread->arch.lo = 0
|
|
|
|
thread->arch.k0 = 0
|
|
|
|
thread->arch.k1 = 0
|
|
|
|
|
|
|
|
void Memory_arch_init (Memory *mem):
|
2009-05-24 13:22:22 +03:00
|
|
|
mem->arch.asid = 1
|
2009-05-20 23:07:56 +03:00
|
|
|
mem->arch.directory = NULL
|
|
|
|
|
2009-05-24 13:22:22 +03:00
|
|
|
static void flush_tlb (unsigned asid):
|
|
|
|
for unsigned tlb = 1; tlb < 32; ++tlb:
|
|
|
|
cp0_set (CP0_INDEX, tlb)
|
|
|
|
__asm__ volatile ("tlbr")
|
|
|
|
unsigned hi
|
|
|
|
cp0_get (CP0_ENTRY_HI, hi)
|
|
|
|
if (hi & 0x1f) == asid:
|
|
|
|
// Set asid to 0, which is only used by the idle task.
|
|
|
|
cp0_set (CP0_ENTRY_HI, 0x2000 * tlb)
|
|
|
|
__asm__ volatile ("tlbwi")
|
|
|
|
|
2009-05-20 23:07:56 +03:00
|
|
|
void Memory_arch_free (Memory *mem):
|
|
|
|
if !mem->arch.directory:
|
|
|
|
return
|
|
|
|
for unsigned i = 0; i < PAGE_SIZE; ++i:
|
|
|
|
unsigned *table = mem->arch.directory[i]
|
|
|
|
if !table:
|
|
|
|
continue
|
|
|
|
for unsigned j = 0; j < PAGE_SIZE; ++j:
|
|
|
|
Page *page = (Page *)(table[j] & ~3)
|
|
|
|
if !page:
|
|
|
|
continue
|
|
|
|
mem->unmap (page, i * 0x1000 * 0x400 + j * 0x1000)
|
|
|
|
mem->unuse ()
|
2009-05-22 23:48:49 +03:00
|
|
|
mem->zfree ((unsigned)table)
|
2009-05-20 23:07:56 +03:00
|
|
|
mem->arch.directory[i] = NULL
|
2009-05-24 13:22:22 +03:00
|
|
|
if (Memory *)asids[mem->arch.asid] == mem:
|
|
|
|
flush_tlb (mem->arch.asid)
|
|
|
|
asids[mem->arch.asid] = asids[0]
|
|
|
|
asids[0] = mem->arch.asid
|
2009-05-20 23:07:56 +03:00
|
|
|
mem->unuse ()
|
2009-05-22 23:48:49 +03:00
|
|
|
mem->zfree ((unsigned)mem->arch.directory)
|
2009-05-20 23:07:56 +03:00
|
|
|
|
|
|
|
bool Memory_arch_map (Memory *mem, Page *page, unsigned address, bool write):
|
2009-05-23 21:55:31 +03:00
|
|
|
if !mem->arch.directory:
|
|
|
|
mem->arch.directory = (unsigned **)mem->zalloc ()
|
|
|
|
if !mem->arch.directory:
|
|
|
|
return false
|
2009-05-24 13:22:22 +03:00
|
|
|
unsigned *table = mem->arch.directory[address >> 22]
|
2009-05-20 23:07:56 +03:00
|
|
|
if !table:
|
|
|
|
table = (unsigned *)mem->zalloc ()
|
|
|
|
if !table:
|
|
|
|
return false
|
2009-05-24 13:22:22 +03:00
|
|
|
mem->arch.directory[address >> 22] = table
|
|
|
|
unsigned idx = (address >> 12) & ((1 << 10) - 1)
|
2009-05-20 23:07:56 +03:00
|
|
|
if table[idx]:
|
|
|
|
mem->unmap ((Page *)(table[idx] & ~3), address)
|
|
|
|
table[idx] = write ? (unsigned)page : (unsigned)page + 1
|
2009-05-23 21:55:31 +03:00
|
|
|
return true
|
2009-05-20 23:07:56 +03:00
|
|
|
|
|
|
|
void Memory_arch_unmap (Memory *mem, Page *page, unsigned address):
|
2009-05-24 13:22:22 +03:00
|
|
|
unsigned *table = mem->arch.directory[address >> 22]
|
|
|
|
table[(address >> 12) & ((1 << 10) - 1)] = 0
|
2009-05-20 23:07:56 +03:00
|
|
|
|
2009-05-24 13:22:22 +03:00
|
|
|
Page *Memory_arch_get_mapping (Memory *mem, unsigned address, bool *writable):
|
|
|
|
unsigned *table = mem->arch.directory[address >> 22]
|
|
|
|
unsigned v = table[(address >> 12) & ((1 << 10) - 1)]
|
|
|
|
if writable:
|
|
|
|
*writable = !(v & 1)
|
2009-05-23 21:55:31 +03:00
|
|
|
return (Page *)(v & ~1)
|
2009-05-20 23:07:56 +03:00
|
|
|
|
2009-05-23 21:55:31 +03:00
|
|
|
void arch_invoke ():
|
2009-05-20 23:07:56 +03:00
|
|
|
Capability *target, *c0, *c1, *c2, *c3
|
2009-05-23 21:55:31 +03:00
|
|
|
target = current->address_space->find_capability (current->arch.v0)
|
2009-05-20 23:07:56 +03:00
|
|
|
if !target:
|
|
|
|
// TODO: there must be no action here. This is just because the rest doesn't work yet.
|
2009-05-23 21:55:31 +03:00
|
|
|
led (current->arch.a0, current->arch.a1, current->arch.a2)
|
|
|
|
dbg_sleep (1000)
|
2009-05-20 23:07:56 +03:00
|
|
|
schedule ()
|
|
|
|
return
|
|
|
|
c0 = current->address_space->find_capability (current->arch.a0)
|
|
|
|
c1 = current->address_space->find_capability (current->arch.a1)
|
|
|
|
c2 = current->address_space->find_capability (current->arch.a2)
|
|
|
|
c3 = current->address_space->find_capability (current->arch.a3)
|
|
|
|
target->invoke (current->arch.t0, current->arch.t1, current->arch.t2, current->arch.t3, c0, c1, c2, c3)
|
2009-05-22 23:48:49 +03:00
|
|
|
|
|
|
|
void arch_schedule (Thread *previous, Thread *target):
|
2009-05-24 13:22:22 +03:00
|
|
|
if (Memory *)asids[target->address_space->arch.asid] != target->address_space:
|
|
|
|
if asids[0]:
|
|
|
|
target->address_space->arch.asid = asids[0]
|
|
|
|
asids[0] = asids[asids[0]]
|
|
|
|
else:
|
|
|
|
static unsigned random = 1
|
|
|
|
target->address_space->arch.asid = random
|
|
|
|
// Overwrite used asid, so flush those values from tlb.
|
|
|
|
flush_tlb (random)
|
|
|
|
++random
|
|
|
|
if random >= 64:
|
|
|
|
random = 1
|
|
|
|
asids[target->address_space->arch.asid] = (unsigned)target
|
2009-05-23 21:55:31 +03:00
|
|
|
cp0_set (CP0_ENTRY_HI, target->address_space->arch.asid)
|