Commit c6ee020e authored by Heiko Stuebner's avatar Heiko Stuebner
Browse files

rockchip: bring TZRAM_SIZE values in line



The agreed upon division of early boot locations is 0x40000 for bl31
to leave enough room for u-boot-spl and 0x100000 for bl33 (u-boot).

rk3288 and rk3399 already correctly secure the ddr up to the 1MB boundary
so pull the other platforms along to also give the Rockchip TF-A enough
room to comfortably live in.
Signed-off-by: default avatarHeiko Stuebner <heiko.stuebner@theobroma-systems.com>
Change-Id: Ie9e0c927d3074a418b6fd23b599d2ed7c15c8c6f
parent b1acebf4
...@@ -69,9 +69,9 @@ ...@@ -69,9 +69,9 @@
/******************************************************************************* /*******************************************************************************
* Platform memory map related constants * Platform memory map related constants
******************************************************************************/ ******************************************************************************/
/* TF text, ro, rw, Size: 512KB */ /* TF text, ro, rw, Size: 1MB */
#define TZRAM_BASE (0x0) #define TZRAM_BASE (0x0)
#define TZRAM_SIZE (0x80000) #define TZRAM_SIZE (0x100000)
/******************************************************************************* /*******************************************************************************
* BL31 specific defines. * BL31 specific defines.
......
/* /*
* Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved. * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
...@@ -66,9 +66,9 @@ ...@@ -66,9 +66,9 @@
/******************************************************************************* /*******************************************************************************
* Platform memory map related constants * Platform memory map related constants
******************************************************************************/ ******************************************************************************/
/* TF text, ro, rw, Size: 512KB */ /* TF text, ro, rw, Size: 1MB */
#define TZRAM_BASE (0x0) #define TZRAM_BASE (0x0)
#define TZRAM_SIZE (0x80000) #define TZRAM_SIZE (0x100000)
/******************************************************************************* /*******************************************************************************
* BL31 specific defines. * BL31 specific defines.
......
/* /*
* Copyright (c) 2014-2018, ARM Limited and Contributors. All rights reserved. * Copyright (c) 2014-2019, ARM Limited and Contributors. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
...@@ -67,9 +67,9 @@ ...@@ -67,9 +67,9 @@
/******************************************************************************* /*******************************************************************************
* Platform memory map related constants * Platform memory map related constants
******************************************************************************/ ******************************************************************************/
/* TF text, ro, rw, Size: 512KB */ /* TF text, ro, rw, Size: 1MB */
#define TZRAM_BASE (0x0) #define TZRAM_BASE (0x0)
#define TZRAM_SIZE (0x80000) #define TZRAM_SIZE (0x100000)
/******************************************************************************* /*******************************************************************************
* BL31 specific defines. * BL31 specific defines.
......
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