Merge "feat(zynqmp): increase the max xlat tables when debug build is enabled" into integration

This commit is contained in:
Madhukar Pappireddy 2022-03-02 19:28:13 +01:00 committed by TrustedFirmware Code Review
commit cf86fa1bfa
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2014-2020, ARM Limited and Contributors. All rights reserved. * Copyright (c) 2014-2022, ARM Limited and Contributors. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
@ -91,10 +91,11 @@
#define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32) #define PLAT_VIRT_ADDR_SPACE_SIZE (1ULL << 32)
#if (BL31_LIMIT < PLAT_DDR_LOWMEM_MAX) #if (BL31_LIMIT < PLAT_DDR_LOWMEM_MAX)
#define MAX_MMAP_REGIONS 8 #define MAX_MMAP_REGIONS 8
#define MAX_XLAT_TABLES 6
#else #else
#define MAX_MMAP_REGIONS 7 #define MAX_MMAP_REGIONS 7
#endif
#define MAX_XLAT_TABLES 5 #define MAX_XLAT_TABLES 5
#endif
#define CACHE_WRITEBACK_SHIFT 6 #define CACHE_WRITEBACK_SHIFT 6
#define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT) #define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)