mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-09 06:22:46 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
34 lines
875 B
C++
34 lines
875 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 {
|
|
VM_STATE_SIZE = 1 << 20,
|
|
SECURE_RAM_BASE = Genode::Board_base::RAM_3_BASE,
|
|
SECURE_RAM_SIZE = Genode::Board_base::RAM_3_SIZE - VM_STATE_SIZE,
|
|
VM_STATE_BASE = SECURE_RAM_BASE + SECURE_RAM_SIZE,
|
|
NONSECURE_RAM_BASE = 0x80000000,
|
|
NONSECURE_RAM_SIZE = 0x20000000,
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__PLATFORM__VEA9X4__DRIVERS__TRUSTZONE_H_ */
|
|
|