Heiko Stuebner | 87b9a3c | 2019-03-14 22:12:04 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #ifndef BL32_PARAM_H |
| 8 | #define BL32_PARAM_H |
| 9 | |
| 10 | /******************************************************************************* |
| 11 | * Platform memory map related constants |
| 12 | ******************************************************************************/ |
| 13 | /* TF txet, ro, rw, Size: 2MB */ |
| 14 | #define TZRAM_BASE (0x0) |
| 15 | #define TZRAM_SIZE (0x200000) |
| 16 | |
| 17 | /******************************************************************************* |
| 18 | * BL32 specific defines. |
| 19 | ******************************************************************************/ |
| 20 | /* |
| 21 | * Put BL32 at the top of the Trusted RAM |
| 22 | */ |
| 23 | #define BL32_BASE (TZRAM_BASE + 0x100000) |
| 24 | #define BL32_LIMIT (TZRAM_BASE + TZRAM_SIZE) |
| 25 | |
| 26 | #endif /* BL32_PARAM_H */ |