mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 00:41:08 +00:00
7a45867841
Fix #3285
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
/*
|
|
* \brief Definitions for the Imx7 dual sabre board
|
|
* \author Stefan Kalkowski
|
|
* \date 2018-10-07
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2018 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__IMX7D_SABRE_H_
|
|
#define _INCLUDE__DRIVERS__DEFS__IMX7D_SABRE_H_
|
|
|
|
#include <drivers/defs/arm_v7.h>
|
|
|
|
namespace Imx7d_sabre {
|
|
|
|
using namespace Arm_v7;
|
|
|
|
enum {
|
|
RAM_0_BASE = 0x80000000UL,
|
|
RAM_0_SIZE = 0x40000000UL,
|
|
|
|
IRQ_CONTROLLER_BASE = 0x31000000UL,
|
|
IRQ_CONTROLLER_SIZE = 0x8000,
|
|
|
|
SRC_MMIO_BASE = 0x30390000UL,
|
|
|
|
AIPS_1_MMIO_BASE = 0x301f0000UL,
|
|
AIPS_2_MMIO_BASE = 0x305f0000UL,
|
|
AIPS_3_MMIO_BASE = 0x309f0000UL,
|
|
|
|
UART_1_MMIO_BASE = 0x30860000UL,
|
|
UART_1_MMIO_SIZE = 0x10000UL,
|
|
|
|
TIMER_CLOCK = 1000000000UL,
|
|
|
|
CACHE_LINE_SIZE_LOG2 = 6,
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__DRIVERS__DEFS__IMX7D_SABRE_H_ */
|