genode/repos/base-hw/src/core/spec/riscv/cpu.cc
Mark Vels 1668983efa base-hw: RISC-V Rocket Core on Zynq
This commit adds rocket core on the Zynq FPGA support to base HW. It also takes
advantage of the new timer infrastructure introduced with the privileged 1.8 and
adds improved TLB flush support.

fixes #1880
2016-02-26 11:36:51 +01:00

28 lines
597 B
C++

/*
* \brief CPU core implementation
* \author Sebastian Sumpf
* \date 2016-02-10
*/
/*
* Copyright (C) 2016 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 <base/printf.h>
#include <kernel/interface.h>
/* Core includes */
#include <cpu.h>
#include <machine_call.h>
void Genode::Cpu::translation_added(addr_t const addr, size_t const size)
{
if (Machine::is_user_mode())
Kernel::update_data_region(addr, size);
else Genode::Cpu::sfence();
}