mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2025-02-01 15:52:31 +00:00
0dd4195114
A recent commit 030567e6f51731982a7e71cbd387de93bc0e35fd added U()/ULL() macro to TF constants. This has caused some signed-unsigned comparison warnings / errors in the TF static analysis. This patch addresses these issues by migrating impacted variables from signed ints to unsigned ints and vice verse where applicable. Change-Id: I4b4c739a3fa64aaf13b69ad1702c66ec79247e53 Signed-off-by: David Cunado <david.cunado@arm.com>
99 lines
2.1 KiB
C
99 lines
2.1 KiB
C
/*
|
|
* Copyright (c) 2017, 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 <arch_helpers.h>
|
|
#include <assert.h>
|
|
#include <cpu_data.h>
|
|
#include <debug.h>
|
|
#include <errata_report.h>
|
|
#include <spinlock.h>
|
|
#include <utils.h>
|
|
|
|
#ifdef IMAGE_BL1
|
|
# define BL_STRING "BL1"
|
|
#elif defined(AARCH64) && defined(IMAGE_BL31)
|
|
# define BL_STRING "BL31"
|
|
#elif defined(AARCH32) && defined(IMAGE_BL32)
|
|
# define BL_STRING "BL32"
|
|
#else
|
|
# error This image should not be printing errata status
|
|
#endif
|
|
|
|
/* Errata format: BL stage, CPU, errata ID, message */
|
|
#define ERRATA_FORMAT "%s: %s: errata 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)
|
|
{
|
|
int report_now;
|
|
|
|
/* If already reported, return false. */
|
|
if (*reported)
|
|
return 0;
|
|
|
|
/*
|
|
* Acquire lock. Determine whether status needs reporting, and then mark
|
|
* report status to true.
|
|
*/
|
|
spin_lock(lock);
|
|
report_now = !(*reported);
|
|
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);
|
|
assert(id);
|
|
|
|
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;
|
|
}
|
|
}
|