/* * \brief Platform implementations specific for x86_64_muen * \author Reto Buerki * \author Adrian-Ken Rueegsegger * \date 2015-04-21 */ /* * Copyright (C) 2015 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. */ /* core includes */ #include using namespace Genode; Native_region * Platform::_core_only_mmio_regions(unsigned const i) { static Native_region _regions[] = { /* Sinfo pages */ { 0x000e00000000, 0x7000 }, /* Timer page */ { 0x000e00010000, 0x1000 }, }; return i < sizeof(_regions)/sizeof(_regions[0]) ? &_regions[i] : 0; } void Platform::setup_irq_mode(unsigned, unsigned, unsigned) { }