genode/repos/base/include/drivers/defs/imx7d_sabre.h
2019-04-01 19:33:49 +02:00

45 lines
1.0 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_
namespace Imx7d_sabre {
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,
VT_MAINTAINANCE_IRQ,
VT_TIMER_IRQ,
};
}
#endif /* _INCLUDE__DRIVERS__DEFS__IMX7D_SABRE_H_ */