/* * \brief Board definitions for i.MX8 Quad EVK * \author Stefan Kalkowski * \date 2019-06-12 */ /* * Copyright (C) 2019 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__INCLUDE__HW__SPEC__ARM_64__IMX8Q_EVK__BOARD_H_ #define _SRC__INCLUDE__HW__SPEC__ARM_64__IMX8Q_EVK__BOARD_H_ #include #include namespace Hw::Imx8q_evk_board { using Serial = Genode::Imx_uart; enum { RAM_BASE = 0x40000000, RAM_SIZE = 0xc0000000, UART_BASE = 0x30860000, UART_SIZE = 0x1000, UART_CLOCK = 250000000, CACHE_LINE_SIZE_LOG2 = 6, }; namespace Cpu_mmio { enum { IRQ_CONTROLLER_DISTR_BASE = 0x38800000, IRQ_CONTROLLER_DISTR_SIZE = 0x10000, IRQ_CONTROLLER_REDIST_BASE = 0x38880000, IRQ_CONTROLLER_REDIST_SIZE = 0x20000, /* per core */ }; }; }; #endif /* _SRC__INCLUDE__HW__SPEC__ARM_64__IMX8Q_EVK__BOARD_H_ */