2015-03-25 18:30:37 +00:00
|
|
|
/*
|
2017-04-28 13:27:26 +00:00
|
|
|
* \brief MMIO and IRQ definitions of the Wandboard Quad
|
2015-03-25 18:30:37 +00:00
|
|
|
* \author Nikolay Golikov <nik@ksyslabs.org>
|
|
|
|
* \author Josef Soentgen
|
|
|
|
* \author Martin Stein
|
|
|
|
* \date 2014-02-25
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-01-11 10:02:52 +00:00
|
|
|
* Copyright (C) 2014-2016 Ksys Labs LLC
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2014-2017 Genode Labs GmbH
|
2015-03-25 18:30:37 +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.
|
2015-03-25 18:30:37 +00:00
|
|
|
*/
|
|
|
|
|
2017-04-28 13:27:26 +00:00
|
|
|
#ifndef _INCLUDE__DRIVERS__DEFS__WAND_QUAD_H_
|
|
|
|
#define _INCLUDE__DRIVERS__DEFS__WAND_QUAD_H_
|
2015-03-25 18:30:37 +00:00
|
|
|
|
2017-06-21 09:36:29 +00:00
|
|
|
/* Genode includes */
|
|
|
|
#include <drivers/defs/imx6.h>
|
|
|
|
|
2017-04-28 13:27:26 +00:00
|
|
|
namespace Wand_quad {
|
2017-06-21 09:36:29 +00:00
|
|
|
|
|
|
|
using namespace Imx6;
|
|
|
|
|
2015-03-25 18:30:37 +00:00
|
|
|
enum {
|
|
|
|
/* normal RAM */
|
2019-02-18 14:02:54 +00:00
|
|
|
RAM_BASE = 0x10000000,
|
|
|
|
RAM_SIZE = 0x80000000,
|
2015-03-25 18:30:37 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-04-28 13:27:26 +00:00
|
|
|
#endif /* _INCLUDE__DRIVERS__DEFS__WAND_QUAD_H_ */
|