mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
7ffc480db8
This is preliminary work to move the Wandboard to and add the Nitrogen6 SX board to the world repository. Ref #3168
35 lines
751 B
C++
35 lines
751 B
C++
/*
|
|
* \brief MMIO and IRQ definitions of the Wandboard Quad
|
|
* \author Nikolay Golikov <nik@ksyslabs.org>
|
|
* \author Josef Soentgen
|
|
* \author Martin Stein
|
|
* \date 2014-02-25
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2014-2016 Ksys Labs LLC
|
|
* Copyright (C) 2014-2017 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 _INCLUDE__DRIVERS__DEFS__WAND_QUAD_H_
|
|
#define _INCLUDE__DRIVERS__DEFS__WAND_QUAD_H_
|
|
|
|
/* Genode includes */
|
|
#include <drivers/defs/imx6.h>
|
|
|
|
namespace Wand_quad {
|
|
|
|
using namespace Imx6;
|
|
|
|
enum {
|
|
/* normal RAM */
|
|
RAM_BASE = 0x10000000,
|
|
RAM_SIZE = 0x80000000,
|
|
};
|
|
};
|
|
|
|
#endif /* _INCLUDE__DRIVERS__DEFS__WAND_QUAD_H_ */
|