mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 18:14:24 +00:00

BL2_AT_EL3 is an overloaded macro which has two uses: 1. When BL2 is entry point into TF-A(no BL1) 2. When BL2 is running at EL3 exception level These two scenarios are not exactly same even though first implicitly means second to be true. To distinguish between these two use cases we introduce new macros. BL2_AT_EL3 is renamed to RESET_TO_BL2 to better convey both 1. and 2. Additional macro BL2_RUNS_AT_EL3 is added to cover all scenarious where BL2 runs at EL3 (including four world systems). BREAKING CHANGE: BL2_AT_EL3 renamed to RESET_TO_BL2 across the repository. Change-Id: I477e1d0f843b44b799c216670e028fcb3509fb72 Signed-off-by: Arvind Ram Prakash <arvind.ramprakash@arm.com> Signed-off-by: Maksims Svecovs <maksims.svecovs@arm.com>
101 lines
2.2 KiB
C
101 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 2017-2023, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/* Runtime firmware routines to report errata status for the current CPU. */
|
|
|
|
#include <assert.h>
|
|
#include <stdbool.h>
|
|
|
|
#include <arch_helpers.h>
|
|
#include <common/debug.h>
|
|
#include <lib/cpus/errata_report.h>
|
|
#include <lib/el3_runtime/cpu_data.h>
|
|
#include <lib/spinlock.h>
|
|
|
|
#ifdef IMAGE_BL1
|
|
# define BL_STRING "BL1"
|
|
#elif defined(__aarch64__) && defined(IMAGE_BL31)
|
|
# define BL_STRING "BL31"
|
|
#elif !defined(__aarch64__) && defined(IMAGE_BL32)
|
|
# define BL_STRING "BL32"
|
|
#elif defined(IMAGE_BL2) && RESET_TO_BL2
|
|
# define BL_STRING "BL2"
|
|
#else
|
|
# error This image should not be printing errata status
|
|
#endif
|
|
|
|
/* Errata format: BL stage, CPU, errata ID, message */
|
|
#define ERRATA_FORMAT "%s: %s: CPU workaround for %s was %s\n"
|
|
|
|
/*
|
|
* Returns whether errata needs to be reported. Passed arguments are private to
|
|
* a CPU type.
|
|
*/
|
|
int errata_needs_reporting(spinlock_t *lock, uint32_t *reported)
|
|
{
|
|
bool report_now;
|
|
|
|
/* If already reported, return false. */
|
|
if (*reported != 0U)
|
|
return 0;
|
|
|
|
/*
|
|
* Acquire lock. Determine whether status needs reporting, and then mark
|
|
* report status to true.
|
|
*/
|
|
spin_lock(lock);
|
|
report_now = (*reported == 0U);
|
|
if (report_now)
|
|
*reported = 1;
|
|
spin_unlock(lock);
|
|
|
|
return report_now;
|
|
}
|
|
|
|
/*
|
|
* Print errata status message.
|
|
*
|
|
* Unknown: WARN
|
|
* Missing: WARN
|
|
* Applied: INFO
|
|
* Not applied: VERBOSE
|
|
*/
|
|
void errata_print_msg(unsigned int status, const char *cpu, const char *id)
|
|
{
|
|
/* Errata status strings */
|
|
static const char *const errata_status_str[] = {
|
|
[ERRATA_NOT_APPLIES] = "not applied",
|
|
[ERRATA_APPLIES] = "applied",
|
|
[ERRATA_MISSING] = "missing!"
|
|
};
|
|
static const char *const __unused bl_str = BL_STRING;
|
|
const char *msg __unused;
|
|
|
|
|
|
assert(status < ARRAY_SIZE(errata_status_str));
|
|
assert(cpu != NULL);
|
|
assert(id != NULL);
|
|
|
|
msg = errata_status_str[status];
|
|
|
|
switch (status) {
|
|
case ERRATA_NOT_APPLIES:
|
|
VERBOSE(ERRATA_FORMAT, bl_str, cpu, id, msg);
|
|
break;
|
|
|
|
case ERRATA_APPLIES:
|
|
INFO(ERRATA_FORMAT, bl_str, cpu, id, msg);
|
|
break;
|
|
|
|
case ERRATA_MISSING:
|
|
WARN(ERRATA_FORMAT, bl_str, cpu, id, msg);
|
|
break;
|
|
|
|
default:
|
|
WARN(ERRATA_FORMAT, bl_str, cpu, id, "unknown");
|
|
break;
|
|
}
|
|
}
|