/* * \brief RM- and pager implementations specific for base-hw and core * \author Martin Stein * \date 2012-02-12 */ /* * Copyright (C) 2012-2013 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU General Public License version 2. */ /* Genode includes */ #include /* core includes */ #include #include #include #include #include using namespace Genode; /*************** ** Rm_client ** ***************/ void Rm_client::unmap(addr_t, addr_t virt_base, size_t size) { /* get software TLB of the thread that we serve */ Platform_thread * const pt = Kernel::get_thread(badge()); if (!pt) { PERR("failed to get RM client-thread"); return; } Tlb * const tlb = pt->tlb(); if (!tlb) { PERR("failed to get PD of RM client-thread"); return; } /* update all translation caches */ tlb->remove_region(virt_base, size); Kernel::update_pd(pt->pd_id()); regain_ram_from_tlb(tlb); } /*************************** ** Pager_activation_base ** ***************************/ int Pager_activation_base::apply_mapping() { /* prepare mapping */ Tlb * const tlb = (Tlb *)_fault.tlb; Page_flags::access_t const flags = Page_flags::apply_mapping(_mapping.writable, _mapping.write_combined, _mapping.io_mem); /* insert mapping into TLB */ unsigned sl2; sl2 = tlb->insert_translation(_mapping.virt_address, _mapping.phys_address, _mapping.size_log2, flags); if (sl2) { /* try to get some natural aligned RAM */ void * ram; bool ram_ok = platform()->ram_alloc()->alloc_aligned(1<insert_translation(_mapping.virt_address, _mapping.phys_address, _mapping.size_log2, flags, ram); if (sl2) { PERR("TLB needs to much RAM"); regain_ram_from_tlb(tlb); return -1; } } return 0; } void Pager_activation_base::entry() { /* get ready to receive faults */ _cap = Native_capability(thread_get_my_native_id(), 0); _cap_valid.unlock(); while (1) { /* await fault */ Pager_object * o; while (1) { Signal s = Signal_receiver::wait_for_signal(); o = dynamic_cast(s.context()); if (o) { o->fault_occured(s); break; } PERR("unknown pager object"); } /* fetch fault data */ unsigned const thread_id = o->badge(); typedef Kernel::Thread_reg_id Reg_id; static addr_t const read_regs[] = { Reg_id::FAULT_TLB, Reg_id::IP, Reg_id::FAULT_ADDR, Reg_id::FAULT_WRITES, Reg_id::FAULT_SIGNAL }; enum { READS = sizeof(read_regs)/sizeof(read_regs[0]) }; void * const utcb = Thread_base::myself()->utcb()->base(); memcpy(utcb, read_regs, sizeof(read_regs)); addr_t * const read_values = (addr_t *)&_fault; if (Kernel::access_thread_regs(thread_id, READS, 0, read_values, 0)) { PERR("failed to read page-fault data"); continue; } /* handle fault */ if (o->pager(*this)) { continue; } if (apply_mapping()) { PERR("failed to apply mapping"); continue; } o->fault_resolved(); } }