Unverified Commit 34c2b9c2 authored by davidcunado-arm's avatar davidcunado-arm Committed by GitHub
Browse files

Merge pull request #1212 from dp-arm/dp/tsp_dram

Move TSP to TZC secured DRAM
parents 9a2a38a2 66db10ca
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
* PLAT_ARM_MAX_BL31_SIZE is calculated using the current BL31 debug size plus a * PLAT_ARM_MAX_BL31_SIZE is calculated using the current BL31 debug size plus a
* little space for growth. * little space for growth.
*/ */
#define PLAT_ARM_MAX_BL31_SIZE 0x1D000 #define PLAT_ARM_MAX_BL31_SIZE 0x1E000
#ifdef AARCH32 #ifdef AARCH32
/* /*
......
...@@ -7,13 +7,9 @@ ...@@ -7,13 +7,9 @@
ifeq (${ARCH}, aarch64) ifeq (${ARCH}, aarch64)
# On ARM standard platorms, the TSP can execute from Trusted SRAM, Trusted # On ARM standard platorms, the TSP can execute from Trusted SRAM, Trusted
# DRAM (if available) or the TZC secured area of DRAM. # DRAM (if available) or the TZC secured area of DRAM.
# Trusted SRAM is the default. # TZC secured DRAM is the default.
ifneq (${TRUSTED_BOARD_BOOT},0) ARM_TSP_RAM_LOCATION ?= dram
ARM_TSP_RAM_LOCATION ?= dram
else
ARM_TSP_RAM_LOCATION ?= tsram
endif
ifeq (${ARM_TSP_RAM_LOCATION}, tsram) ifeq (${ARM_TSP_RAM_LOCATION}, tsram)
ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_SRAM_ID ARM_TSP_RAM_LOCATION_ID = ARM_TRUSTED_SRAM_ID
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment