hw: support for i.MX8M Quad EVK

Fix #3426
This commit is contained in:
Stefan Kalkowski
2019-07-11 13:00:32 +02:00
committed by Christian Helmuth
parent 6b09ac59f0
commit 7ced122ddc
10 changed files with 298 additions and 120 deletions

View File

@ -0,0 +1,28 @@
/*
* \brief Board driver for core
* \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 _CORE__SPEC__IMX8Q_EVK__BOARD_H_
#define _CORE__SPEC__IMX8Q_EVK__BOARD_H_
#include <hw/spec/arm_64/imx8q_evk_board.h>
#include <hw/spec/arm/gicv3.h>
#include <spec/arm/generic_timer.h>
namespace Board {
using namespace Hw::Imx8q_evk_board;
using Hw::Pic;
enum { TIMER_IRQ = 30 };
};
#endif /* _CORE__SPEC__IMX8Q_EVK__BOARD_H_ */