aboutsummaryrefslogtreecommitdiff
path: root/plat/rockchip/rk3399/include/shared/bl31_param.h
diff options
context:
space:
mode:
authorDmitry Shmidt <dimitrysh@google.com>2017-11-09 21:59:15 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-11-09 21:59:15 +0000
commit377cb66540e9f5f26b97c779a411a302eeaf45a9 (patch)
tree068e57596704dce1bc7fd97a07b205a2e2f22d42 /plat/rockchip/rk3399/include/shared/bl31_param.h
parentb52ceb2c86de78504cadaf718a0b0faef1875b7e (diff)
parentf80b69635a11abe97224cdd5699b7b11bf3293f5 (diff)
downloadarm-trusted-firmware-377cb66540e9f5f26b97c779a411a302eeaf45a9.tar.gz
Merge remote-tracking branch 'aosp/upstream-hikey' into armtf am: d7f137ecb7 am: 72a61be33b
am: f80b69635a Change-Id: I121dedc746e6db36c8e25fa019aa5f10c3ee22f6
Diffstat (limited to 'plat/rockchip/rk3399/include/shared/bl31_param.h')
-rw-r--r--plat/rockchip/rk3399/include/shared/bl31_param.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/plat/rockchip/rk3399/include/shared/bl31_param.h b/plat/rockchip/rk3399/include/shared/bl31_param.h
new file mode 100644
index 00000000..85a0f4a9
--- /dev/null
+++ b/plat/rockchip/rk3399/include/shared/bl31_param.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#ifndef __PLAT_ROCKCHIP_RK3399_INCLUDE_SHARED_BL31_PARAM_H__
+#define __PLAT_ROCKCHIP_RK3399_INCLUDE_SHARED_BL31_PARAM_H__
+
+/*******************************************************************************
+ * Platform memory map related constants
+ ******************************************************************************/
+/* TF text, ro, rw, Size: 1MB */
+#define TZRAM_BASE (0x0)
+#define TZRAM_SIZE (0x100000)
+
+/*******************************************************************************
+ * BL31 specific defines.
+ ******************************************************************************/
+/*
+ * Put BL3-1 at the top of the Trusted RAM
+ */
+#define BL31_BASE (TZRAM_BASE + 0x1000)
+#define BL31_LIMIT (TZRAM_BASE + TZRAM_SIZE)
+
+#endif /*__PLAT_ROCKCHIP_RK3399_INCLUDE_SHARED_BL31_PARAM_H__*/