/** * \brief Provide specific board driver * \author Martin Stein * \date 2011-11-03 */ /* * Copyright (C) 2011-2012 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. */ #ifndef _INCLUDE__PLATFORM__VEA9X4__DRIVERS__BOARD_H_ #define _INCLUDE__PLATFORM__VEA9X4__DRIVERS__BOARD_H_ /* Genode inlcudes */ #include namespace Genode { /** * Provide specific board driver */ class Board : public Vea9x4 { public: enum { LOG_PL011_MMIO_BASE = PL011_0_MMIO_BASE, LOG_PL011_CLOCK = PL011_0_CLOCK, }; }; } #endif /* _INCLUDE__PLATFORM__VEA9X4__DRIVERS__BOARD_H_ */