mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-16 01:17:01 +02:00
Enforce full include path for includes. Deprecate old paths. The following folders inside include/lib have been left unchanged: - include/lib/cpus/${ARCH} - include/lib/el3_runtime/${ARCH} The reason for this change is that having a global namespace for includes isn't a good idea. It defeats one of the advantages of having folders and it introduces problems that are sometimes subtle (because you may not know the header you are actually including if there are two of them). For example, this patch had to be created because two headers were called the same way:e0ea0928d5
("Fix gpio includes of mt8173 platform to avoid collision."). More recently, this patch has had similar problems:46f9b2c3a2
("drivers: add tzc380 support"). This problem was introduced in commit4ecca33988
("Move include and source files to logical locations"). At that time, there weren't too many headers so it wasn't a real issue. However, time has shown that this creates problems. Platforms that want to preserve the way they include headers may add the removed paths to PLAT_INCLUDES, but this is discouraged. Change-Id: I39dc53ed98f9e297a5966e723d1936d6ccf2fc8f Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
102 lines
2.1 KiB
C
102 lines
2.1 KiB
C
/*
|
|
* Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
|
|
#include <platform_def.h>
|
|
|
|
#include <bl1/tbbr/tbbr_img_desc.h>
|
|
#include <common/bl_common.h>
|
|
#include <common/debug.h>
|
|
#include <lib/utils.h>
|
|
#include <plat/common/platform.h>
|
|
|
|
#include <plat_arm.h>
|
|
|
|
/* Struct to keep track of usable memory */
|
|
typedef struct bl1_mem_info {
|
|
uintptr_t mem_base;
|
|
unsigned int mem_size;
|
|
} bl1_mem_info_t;
|
|
|
|
static bl1_mem_info_t fwu_addr_map_secure[] = {
|
|
{
|
|
.mem_base = ARM_SHARED_RAM_BASE,
|
|
.mem_size = ARM_SHARED_RAM_SIZE
|
|
},
|
|
{
|
|
.mem_size = 0
|
|
}
|
|
};
|
|
|
|
static bl1_mem_info_t fwu_addr_map_non_secure[] = {
|
|
{
|
|
.mem_base = ARM_NS_DRAM1_BASE,
|
|
.mem_size = ARM_NS_DRAM1_SIZE
|
|
},
|
|
{
|
|
.mem_base = PLAT_ARM_NVM_BASE,
|
|
.mem_size = PLAT_ARM_NVM_SIZE
|
|
},
|
|
{
|
|
.mem_size = 0
|
|
}
|
|
};
|
|
|
|
int bl1_plat_mem_check(uintptr_t mem_base,
|
|
unsigned int mem_size,
|
|
unsigned int flags)
|
|
{
|
|
unsigned int index = 0;
|
|
bl1_mem_info_t *mmap;
|
|
|
|
assert(mem_base);
|
|
assert(mem_size);
|
|
/*
|
|
* The caller of this function is responsible for checking upfront that
|
|
* the end address doesn't overflow. We double-check this in debug
|
|
* builds.
|
|
*/
|
|
assert(!check_uptr_overflow(mem_base, mem_size - 1));
|
|
|
|
/*
|
|
* Check the given image source and size.
|
|
*/
|
|
if (GET_SECURITY_STATE(flags) == SECURE)
|
|
mmap = fwu_addr_map_secure;
|
|
else
|
|
mmap = fwu_addr_map_non_secure;
|
|
|
|
while (mmap[index].mem_size) {
|
|
if ((mem_base >= mmap[index].mem_base) &&
|
|
((mem_base + mem_size)
|
|
<= (mmap[index].mem_base +
|
|
mmap[index].mem_size)))
|
|
return 0;
|
|
|
|
index++;
|
|
}
|
|
|
|
return -ENOMEM;
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* This function does linear search for image_id and returns image_desc.
|
|
******************************************************************************/
|
|
image_desc_t *bl1_plat_get_image_desc(unsigned int image_id)
|
|
{
|
|
unsigned int index = 0;
|
|
|
|
while (bl1_tbbr_image_descs[index].image_id != INVALID_IMAGE_ID) {
|
|
if (bl1_tbbr_image_descs[index].image_id == image_id)
|
|
return &bl1_tbbr_image_descs[index];
|
|
index++;
|
|
}
|
|
|
|
return NULL;
|
|
}
|