mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
On the Versatile Express Cortex A9x4 platform the first memory region 0x0 - 0x4000000 is a hardware remapped memory area, containing flash and DDR RAM copies and thus should not be added in addition to all DDR RAM regions and the SRAM region.
32 lines
769 B
C++
32 lines
769 B
C++
/*
|
|
* \brief TrustZone specific definitions for the Versatile Express board
|
|
* \author Stefan Kalkowski
|
|
* \date 2013-11-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2013 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__PLATFORM__VEA9X4__DRIVERS__TRUSTZONE_H_
|
|
#define _INCLUDE__PLATFORM__VEA9X4__DRIVERS__TRUSTZONE_H_
|
|
|
|
/* Genode includes */
|
|
#include <drivers/board_base.h>
|
|
|
|
namespace Trustzone
|
|
{
|
|
enum {
|
|
SECURE_RAM_BASE = Genode::Board_base::RAM_2_BASE,
|
|
SECURE_RAM_SIZE = Genode::Board_base::RAM_2_SIZE,
|
|
NONSECURE_RAM_BASE = 0x80000000,
|
|
NONSECURE_RAM_SIZE = 0x20000000,
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__PLATFORM__VEA9X4__DRIVERS__TRUSTZONE_H_ */
|
|
|