mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 00:41:08 +00:00
2e701f9afa
This patch cleans up the include guards, assisted by the tool/fix_include_ifndef script.
37 lines
978 B
C++
37 lines
978 B
C++
/*
|
|
* \brief TrustZone specific definitions for the i.MX53 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__SPEC__IMX53__DRIVERS__TRUSTZONE_H_
|
|
#define _INCLUDE__SPEC__IMX53__DRIVERS__TRUSTZONE_H_
|
|
|
|
/* Genode includes */
|
|
#include <drivers/board_base.h>
|
|
|
|
namespace Trustzone
|
|
{
|
|
enum {
|
|
/**
|
|
* Currently, we limit secure RAM to 256 MB only,
|
|
* because the memory protection feature of the M4IF
|
|
* on this platform allows to protect a max. region of
|
|
* 256MB per RAM bank only.
|
|
*/
|
|
SECURE_RAM_BASE = Genode::Board_base::RAM0_BASE,
|
|
SECURE_RAM_SIZE = 256 * 1024 * 1024,
|
|
NONSECURE_RAM_BASE = Genode::Board_base::RAM0_BASE + SECURE_RAM_SIZE,
|
|
NONSECURE_RAM_SIZE = 256 * 1024 * 1024,
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__SPEC__IMX53__DRIVERS__TRUSTZONE_H_ */
|