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>
86 lines
2.1 KiB
C
86 lines
2.1 KiB
C
/*
|
|
* Copyright (c) 2014-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <assert.h>
|
|
|
|
#include <arch_helpers.h>
|
|
#include <drivers/console.h>
|
|
#if RAS_EXTENSION
|
|
#include <lib/extensions/ras.h>
|
|
#endif
|
|
#include <lib/xlat_tables/xlat_mmu_helpers.h>
|
|
#include <plat/common/platform.h>
|
|
|
|
/*
|
|
* The following platform setup functions are weakly defined. They
|
|
* provide typical implementations that may be re-used by multiple
|
|
* platforms but may also be overridden by a platform if required.
|
|
*/
|
|
#pragma weak bl31_plat_runtime_setup
|
|
|
|
#if SDEI_SUPPORT
|
|
#pragma weak plat_sdei_handle_masked_trigger
|
|
#pragma weak plat_sdei_validate_entry_point
|
|
#endif
|
|
|
|
#pragma weak plat_ea_handler
|
|
|
|
void bl31_plat_runtime_setup(void)
|
|
{
|
|
#if MULTI_CONSOLE_API
|
|
console_switch_state(CONSOLE_FLAG_RUNTIME);
|
|
#else
|
|
console_uninit();
|
|
#endif
|
|
}
|
|
|
|
/*
|
|
* Helper function for platform_get_pos() when platform compatibility is
|
|
* disabled. This is to enable SPDs using the older platform API to continue
|
|
* to work.
|
|
*/
|
|
unsigned int platform_core_pos_helper(unsigned long mpidr)
|
|
{
|
|
int idx = plat_core_pos_by_mpidr(mpidr);
|
|
assert(idx >= 0);
|
|
return idx;
|
|
}
|
|
|
|
#if SDEI_SUPPORT
|
|
/*
|
|
* Function that handles spurious SDEI interrupts while events are masked.
|
|
*/
|
|
void plat_sdei_handle_masked_trigger(uint64_t mpidr, unsigned int intr)
|
|
{
|
|
WARN("Spurious SDEI interrupt %u on masked PE %llx\n", intr, mpidr);
|
|
}
|
|
|
|
/*
|
|
* Default Function to validate SDEI entry point, which returns success.
|
|
* Platforms may override this with their own validation mechanism.
|
|
*/
|
|
int plat_sdei_validate_entry_point(uintptr_t ep, unsigned int client_mode)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
/* RAS functions common to AArch64 ARM platforms */
|
|
void plat_ea_handler(unsigned int ea_reason, uint64_t syndrome, void *cookie,
|
|
void *handle, uint64_t flags)
|
|
{
|
|
#if RAS_EXTENSION
|
|
/* Call RAS EA handler */
|
|
int handled = ras_ea_handler(ea_reason, syndrome, cookie, handle, flags);
|
|
if (handled != 0)
|
|
return;
|
|
#endif
|
|
|
|
ERROR("Unhandled External Abort received on 0x%lx at EL3!\n",
|
|
read_mpidr_el1());
|
|
ERROR(" exception reason=%u syndrome=0x%llx\n", ea_reason, syndrome);
|
|
panic();
|
|
}
|