/* * \brief PC specific board definitions * \author Stefan Kalkowski * \date 2017-04-03 */ /* * Copyright (C) 2017 Genode Labs 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. */ #ifndef _SRC__BOOTSTRAP__SPEC__X86_64__BOARD_H_ #define _SRC__BOOTSTRAP__SPEC__X86_64__BOARD_H_ #include #include #include #include namespace Genode { struct Board_base {}; } namespace Bootstrap { struct Serial; struct Pic {}; using Cpu = Hw::X86_64_cpu; enum Dummies { UART_BASE, UART_CLOCK }; } struct Bootstrap::Serial : Genode::X86_uart_base { Serial(Genode::addr_t, Genode::size_t, unsigned); }; #endif /* _SRC__BOOTSTRAP__SPEC__X86_64__BOARD_H_ */