1 /* 2 * Copyright (c) 2018, Arm Limited and Contributors. All rights reserved. 3 * Copyright (c) 2018-2021, The Linux Foundation. All rights reserved. 4 * Copyright (c) 2025, Qualcomm Technologies, Inc. and/or its subsidiaries. 5 * 6 * SPDX-License-Identifier: BSD-3-Clause 7 */ 8 #ifndef PLATFORM_DEF_H 9 #define PLATFORM_DEF_H 10 11 #include <kodiak_def.h> 12 13 /******************************************************************************* 14 * BL31 specific defines. 15 ******************************************************************************/ 16 /* 17 * Put BL31 at DDR as per memory map. BL31_BASE is calculated using the 18 * current BL31 debug size plus a little space for growth. 19 */ 20 #define BL31_BASE 0xC0000000 21 #define BL31_SIZE 0x00100000 22 #define BL31_LIMIT (BL31_BASE + BL31_SIZE) 23 24 #endif /* PLATFORM_DEF_H */ 25