mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00: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>
94 lines
2 KiB
C
94 lines
2 KiB
C
/*
|
|
* Copyright (c) 2017-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 <arch.h>
|
|
#include <common/bl_common.h>
|
|
#include <common/debug.h>
|
|
#include <drivers/console.h>
|
|
#include <lib/mmio.h>
|
|
#include <lib/xlat_tables/xlat_mmu_helpers.h>
|
|
#include <plat/common/platform.h>
|
|
|
|
#include "uniphier.h"
|
|
|
|
#define BL31_SIZE ((BL31_END) - (BL31_BASE))
|
|
|
|
static entry_point_info_t bl32_image_ep_info;
|
|
static entry_point_info_t bl33_image_ep_info;
|
|
|
|
entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
|
|
{
|
|
assert(sec_state_is_valid(type));
|
|
return type == NON_SECURE ? &bl33_image_ep_info : &bl32_image_ep_info;
|
|
}
|
|
|
|
void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
|
|
u_register_t arg2, u_register_t arg3)
|
|
{
|
|
void *from_bl2;
|
|
|
|
from_bl2 = (void *) arg0;
|
|
|
|
bl_params_node_t *bl_params = ((bl_params_t *)from_bl2)->head;
|
|
|
|
uniphier_console_setup();
|
|
|
|
while (bl_params) {
|
|
if (bl_params->image_id == BL32_IMAGE_ID)
|
|
bl32_image_ep_info = *bl_params->ep_info;
|
|
|
|
if (bl_params->image_id == BL33_IMAGE_ID)
|
|
bl33_image_ep_info = *bl_params->ep_info;
|
|
|
|
bl_params = bl_params->next_params_info;
|
|
}
|
|
|
|
if (bl33_image_ep_info.pc == 0)
|
|
panic();
|
|
}
|
|
|
|
#define UNIPHIER_SYS_CNTCTL_BASE 0x60E00000
|
|
|
|
void bl31_platform_setup(void)
|
|
{
|
|
unsigned int soc;
|
|
|
|
soc = uniphier_get_soc_id();
|
|
if (soc == UNIPHIER_SOC_UNKNOWN) {
|
|
ERROR("unsupported SoC\n");
|
|
plat_error_handler(-ENOTSUP);
|
|
}
|
|
|
|
uniphier_cci_init(soc);
|
|
uniphier_cci_enable();
|
|
|
|
/* Initialize the GIC driver, cpu and distributor interfaces */
|
|
uniphier_gic_driver_init(soc);
|
|
uniphier_gic_init();
|
|
|
|
/* Enable and initialize the System level generic timer */
|
|
mmio_write_32(UNIPHIER_SYS_CNTCTL_BASE + CNTCR_OFF,
|
|
CNTCR_FCREQ(0U) | CNTCR_EN);
|
|
}
|
|
|
|
void bl31_plat_arch_setup(void)
|
|
{
|
|
uniphier_mmap_setup(BL31_BASE, BL31_SIZE, NULL);
|
|
enable_mmu_el3(0);
|
|
}
|
|
|
|
void bl31_plat_runtime_setup(void)
|
|
{
|
|
/* Suppress any runtime logs unless DEBUG is defined */
|
|
#if !DEBUG
|
|
console_uninit();
|
|
#endif
|
|
}
|