1 /* 2 * Copyright (c) 2025, Qualcomm Technologies, Inc. and/or its subsidiaries. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 #ifndef PLATFORM_DEF_H 7 #define PLATFORM_DEF_H 8 9 #include <kodiak_def.h> 10 11 #define MAX_IO_HANDLES 2 12 #define MAX_IO_DEVICES 2 13 #define MAX_IO_BLOCK_DEVICES U(1) 14 15 #define BL2_BASE 0x1c00e000 16 #define BL2_SIZE 0x100000 17 #define BL2_LIMIT (BL2_BASE + BL2_SIZE) 18 19 #define BL31_BASE 0x1c200000 20 #define BL31_SIZE 0x00100000 21 #define BL31_LIMIT (BL31_BASE + BL31_SIZE) 22 23 #define BL32_BASE 0x1c300000 24 #define BL32_SIZE 0x00200000 25 #define BL32_LIMIT (BL32_BASE + BL32_SIZE) 26 27 #define BL33_BASE 0x9f800000 28 #define BL33_SIZE 0x00400000 29 30 #define PLAT_QTI_FIP_IOBASE 0x9fc00000 31 #define PLAT_QTI_FIP_MAXSIZE 0x00400000 32 33 #endif /* PLATFORM_DEF_H */ 34