mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 07:22:25 +00:00
31d57a6257
Implies support for the ARMv6 architecture through 'base-hw'. Get rid of 'base/include/drivers' expect of 'base/include/drivers/uart'. Merge with the support for trustzone on VEA9X4 that came from Stefan Kalkowski. Leave board drivers in 'base/include/platform'. Rework structure of the other drivers that were moved to 'base_hw/src/core' and those that came with the trustzone support. Beautify further stuff in 'base_hw'. Test 'nested_init' with 'hw_imx31' (hardware) and 'hw_panda_a2' (hardware), 'demo' and 'signal' with 'hw_pbxa9' (qemu) and 'hw_vea9x4' (hardware, no trustzone), and 'vmm' with 'hw_vea9x4' (hardware, with trustzone).
78 lines
1.6 KiB
C++
78 lines
1.6 KiB
C++
/*
|
|
* \brief Driver for the Versatile Express A9X4 board
|
|
* \author Martin stein
|
|
* \date 2011-11-03
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2011-2012 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__DRIVERS__BOARD_H_
|
|
#define _INCLUDE__DRIVERS__BOARD_H_
|
|
|
|
namespace Genode
|
|
{
|
|
/**
|
|
* Driver for the Versatile Express A9X4 board
|
|
*
|
|
* Implies the uATX motherboard and the CoreTile Express A9X4 daughterboard
|
|
*/
|
|
struct Board
|
|
{
|
|
enum
|
|
{
|
|
/* static memory bus */
|
|
SMB_CS2_BASE = 0x48000000,
|
|
SMB_CS7_BASE = 0x10000000,
|
|
SMB_CS7_SIZE = 0x20000,
|
|
SMB_CS0_TO_CS6_BASE = 0x40000000,
|
|
SMB_CS0_TO_CS6_SIZE = 0x20000000,
|
|
|
|
/* UART */
|
|
PL011_0_MMIO_BASE = SMB_CS7_BASE + 0x9000,
|
|
PL011_0_MMIO_SIZE = 0x1000,
|
|
PL011_0_CLOCK = 24*1000*1000,
|
|
PL011_0_IRQ = 5,
|
|
|
|
/* timer/counter */
|
|
SP804_0_1_MMIO_BASE = SMB_CS7_BASE + 0x11000,
|
|
SP804_0_1_MMIO_SIZE = 0x1000,
|
|
SP804_0_1_CLOCK = 1000*1000,
|
|
SP804_0_1_IRQ = 34,
|
|
|
|
/* clocks */
|
|
TCREF_CLOCK = 66670*1000,
|
|
|
|
/* TrustZone Address Space Controller */
|
|
TZASC_MMIO_BASE = 0x100ec000,
|
|
TZASC_MMIO_SIZE = 0x1000,
|
|
|
|
/* TrustZone Protection Controller */
|
|
TZPC_MMIO_BASE = 0x100e6000,
|
|
TZPC_MMIO_SIZE = 0x1000,
|
|
|
|
/* CPU */
|
|
CORTEX_A9_PRIVATE_MEM_BASE = 0x1e000000,
|
|
CORTEX_A9_PRIVATE_MEM_SIZE = 0x2000,
|
|
CORTEX_A9_CLOCK = TCREF_CLOCK,
|
|
|
|
/* RAM */
|
|
LOCAL_DDR2_BASE = 0x60000000,
|
|
LOCAL_DDR2_SIZE = 0x40000000,
|
|
|
|
/* SRAM */
|
|
SRAM_BASE = SMB_CS2_BASE,
|
|
SRAM_SIZE = 0x01ffffff,
|
|
|
|
SECURITY_EXTENSION = 1,
|
|
};
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__DRIVERS__BOARD_H_ */
|
|
|