/* * \brief Board definitions for the i.MX53 starter board * \author Stefan Kalkowski * \date 2012-10-24 */ /* * Copyright (C) 2012-2013 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__IMX53_QSB__DRIVERS__BOARD_BASE_H_ #define _INCLUDE__PLATFORM__IMX53_QSB__DRIVERS__BOARD_BASE_H_ /* Genode includes */ #include namespace Genode { /** * i.MX53 starter board */ struct Board_base : Imx53::Board_base { enum { RAM0_BASE = 0x70000000, RAM0_SIZE = 0x20000000, RAM1_BASE = 0xb0000000, RAM1_SIZE = 0x20000000, }; }; } #endif /* _INCLUDE__PLATFORM__IMX53_QSB__DRIVERS__BOARD_BASE_H_ */