2013-11-18 12:03:12 +00:00
|
|
|
/*
|
|
|
|
* \brief TrustZone specific definitions for the i.MX53 board
|
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2013-11-15
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2013-2017 Genode Labs GmbH
|
2013-11-18 12:03:12 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2013-11-18 12:03:12 +00:00
|
|
|
*/
|
|
|
|
|
2016-01-20 19:52:51 +00:00
|
|
|
#ifndef _INCLUDE__SPEC__IMX53__DRIVERS__TRUSTZONE_H_
|
|
|
|
#define _INCLUDE__SPEC__IMX53__DRIVERS__TRUSTZONE_H_
|
2013-11-18 12:03:12 +00:00
|
|
|
|
|
|
|
/* Genode includes */
|
2017-04-28 13:27:26 +00:00
|
|
|
#include <drivers/defs/imx53.h>
|
2013-11-18 12:03:12 +00:00
|
|
|
|
|
|
|
namespace Trustzone
|
|
|
|
{
|
|
|
|
enum {
|
2014-02-12 14:56:52 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2017-04-28 13:27:26 +00:00
|
|
|
SECURE_RAM_BASE = Imx53::RAM_BANK_0_BASE,
|
2014-02-12 14:56:52 +00:00
|
|
|
SECURE_RAM_SIZE = 256 * 1024 * 1024,
|
2017-04-28 13:27:26 +00:00
|
|
|
NONSECURE_RAM_BASE = Imx53::RAM_BANK_0_BASE + SECURE_RAM_SIZE,
|
2015-02-24 23:02:36 +00:00
|
|
|
NONSECURE_RAM_SIZE = 256 * 1024 * 1024,
|
2013-11-18 12:03:12 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-01-20 19:52:51 +00:00
|
|
|
#endif /* _INCLUDE__SPEC__IMX53__DRIVERS__TRUSTZONE_H_ */
|