/* * \brief Platform specific services for Linux * \author Johannes Kliemann * \date 2017-11-08 */ /* * Copyright (C) 2018 Genode Labs GmbH * Copyright (C) 2018 Componolit GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU Affero General Public License version 3. */ /* Genode includes */ #include /* core includes */ #include #include #include #include #include /** * Add x86 specific ioport service */ namespace Genode { void platform_add_local_services(Rpc_entrypoint &, Sliced_heap &md, Registry ®, Trace::Source_registry &) { if (!lx_iopl(3)) { static Io_port_root io_port_root(*core_env().pd_session(), platform().io_port_alloc(), md); static Core_service io_port_ls(reg, io_port_root); } } }