2013-01-25 13:29:21 +00:00
|
|
|
/*
|
|
|
|
* \brief Driver base for the InSignal Arndale 5 board
|
|
|
|
* \author Martin stein
|
|
|
|
* \date 2013-01-09
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2013-2017 Genode Labs GmbH
|
2013-01-25 13:29:21 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2013-01-25 13:29:21 +00:00
|
|
|
*/
|
|
|
|
|
2016-01-20 19:52:51 +00:00
|
|
|
#ifndef _INCLUDE__SPEC__ARNDALE__DRIVERS__BOARD_BASE_H_
|
|
|
|
#define _INCLUDE__SPEC__ARNDALE__DRIVERS__BOARD_BASE_H_
|
2013-01-25 13:29:21 +00:00
|
|
|
|
2014-07-09 10:03:17 +00:00
|
|
|
/* Genode includes */
|
2015-09-03 12:55:05 +00:00
|
|
|
#include <spec/exynos5/board_base.h>
|
2014-07-09 10:03:17 +00:00
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Genode { struct Board_base; }
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Board driver base
|
|
|
|
*/
|
|
|
|
struct Genode::Board_base : Exynos5
|
2013-01-25 13:29:21 +00:00
|
|
|
{
|
2015-03-04 20:12:14 +00:00
|
|
|
enum
|
2013-01-25 13:29:21 +00:00
|
|
|
{
|
2015-03-04 20:12:14 +00:00
|
|
|
/* clock management unit */
|
|
|
|
CMU_MMIO_BASE = 0x10010000,
|
|
|
|
CMU_MMIO_SIZE = 0x24000,
|
|
|
|
|
|
|
|
/* power management unit */
|
|
|
|
PMU_MMIO_BASE = 0x10040000,
|
|
|
|
PMU_MMIO_SIZE = 0x5000,
|
|
|
|
|
|
|
|
/* USB */
|
|
|
|
USB_HOST20_IRQ = 103,
|
|
|
|
USB_DRD30_IRQ = 104,
|
|
|
|
|
|
|
|
/* UART */
|
|
|
|
UART_2_CLOCK = 100000000,
|
|
|
|
|
|
|
|
/* wether board provides security extension */
|
|
|
|
SECURITY_EXTENSION = 1,
|
2013-01-25 13:29:21 +00:00
|
|
|
};
|
2015-03-04 20:12:14 +00:00
|
|
|
};
|
2013-01-25 13:29:21 +00:00
|
|
|
|
2016-01-20 19:52:51 +00:00
|
|
|
#endif /* _INCLUDE__SPEC__ARNDALE__DRIVERS__BOARD_BASE_H_ */
|