blob: b9166f713f492d7223d231d34f5ab9602dbcda9c [file] [log] [blame]
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +00001/*
Arvind Ram Prakashfaa857d2025-01-28 17:21:17 -06002 * Copyright (c) 2017-2025, Arm Limited and Contributors. All rights reserved.
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +00005 */
6
Govindraj Raja988a7c72025-01-21 12:13:20 -06007#ifndef ERRATA_H
8#define ERRATA_H
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +00009
Boyan Karatotev821364e2023-01-27 09:35:10 +000010#include <lib/cpus/cpu_ops.h>
11
Boyan Karatotev821364e2023-01-27 09:35:10 +000012#define ERRATUM_WA_FUNC_SIZE CPU_WORD_SIZE
13#define ERRATUM_CHECK_FUNC_SIZE CPU_WORD_SIZE
14#define ERRATUM_ID_SIZE 4
15#define ERRATUM_CVE_SIZE 2
16#define ERRATUM_CHOSEN_SIZE 1
17#define ERRATUM_MITIGATED_SIZE 1
18
19#define ERRATUM_WA_FUNC 0
20#define ERRATUM_CHECK_FUNC ERRATUM_WA_FUNC + ERRATUM_WA_FUNC_SIZE
21#define ERRATUM_ID ERRATUM_CHECK_FUNC + ERRATUM_CHECK_FUNC_SIZE
22#define ERRATUM_CVE ERRATUM_ID + ERRATUM_ID_SIZE
23#define ERRATUM_CHOSEN ERRATUM_CVE + ERRATUM_CVE_SIZE
24#define ERRATUM_MITIGATED ERRATUM_CHOSEN + ERRATUM_CHOSEN_SIZE
25#define ERRATUM_ENTRY_SIZE ERRATUM_MITIGATED + ERRATUM_MITIGATED_SIZE
26
Arvind Ram Prakash2b433932024-08-05 16:04:37 -050027/* Errata status */
28#define ERRATA_NOT_APPLIES 0
29#define ERRATA_APPLIES 1
30#define ERRATA_MISSING 2
31
Julius Werner53456fc2019-07-09 13:49:11 -070032#ifndef __ASSEMBLER__
Boyan Karatotev29fa56d2023-01-27 09:38:15 +000033#include <lib/cassert.h>
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000034
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000035void print_errata_status(void);
Roberto Vargas05712702018-02-12 12:36:17 +000036
Boyan Karatotev29fa56d2023-01-27 09:38:15 +000037/*
38 * NOTE that this structure will be different on AArch32 and AArch64. The
39 * uintptr_t will reflect the change and the alignment will be correct in both.
40 */
41struct erratum_entry {
42 uintptr_t (*wa_func)(uint64_t cpu_rev);
43 uintptr_t (*check_func)(uint64_t cpu_rev);
44 /* Will fit CVEs with up to 10 character in the ID field */
45 uint32_t id;
46 /* Denote CVEs with their year or errata with 0 */
47 uint16_t cve;
48 uint8_t chosen;
49 /* TODO(errata ABI): placeholder for the mitigated field */
50 uint8_t _mitigated;
51} __packed;
52
53CASSERT(sizeof(struct erratum_entry) == ERRATUM_ENTRY_SIZE,
54 assert_erratum_entry_asm_c_different_sizes);
Govindraj Raja988a7c72025-01-21 12:13:20 -060055
56/*
57 * Runtime errata helpers.
58 */
59#if ERRATA_A75_764081
60bool errata_a75_764081_applies(void);
61#else
62static inline bool errata_a75_764081_applies(void)
63{
64 return false;
65}
66#endif
67
68#if ERRATA_A520_2938996 || ERRATA_X4_2726228
69unsigned int check_if_affected_core(void);
70#endif
71
72int check_wa_cve_2024_7881(void);
Govindraj Raja4c3a4612025-01-29 15:01:10 -060073bool errata_ich_vmcr_el2_applies(void);
Govindraj Raja988a7c72025-01-21 12:13:20 -060074
Boyan Karatotev821364e2023-01-27 09:35:10 +000075#else
76
77/*
78 * errata framework macro helpers
79 *
80 * NOTE an erratum and CVE id could clash. However, both numbers are very large
81 * and the probablity is minuscule. Working around this makes code very
82 * complicated and extremely difficult to read so it is not considered. In the
83 * unlikely event that this does happen, prepending the CVE id with a 0 should
84 * resolve the conflict
85 */
86#define ERRATUM(id) 0, id
87#define CVE(year, id) year, id
88#define NO_ISB 1
89#define NO_ASSERT 0
Boyan Karatotevcea0c262023-04-04 11:29:00 +010090#define NO_APPLY_AT_RESET 0
91#define APPLY_AT_RESET 1
Harrison Mutaide3fa1e2023-06-26 16:25:21 +010092#define GET_CPU_REV 1
93#define NO_GET_CPU_REV 0
94
Boyan Karatotevcea0c262023-04-04 11:29:00 +010095/* useful for errata that end up always being worked around */
96#define ERRATUM_ALWAYS_CHOSEN 1
Boyan Karatotev821364e2023-01-27 09:35:10 +000097
Julius Werner53456fc2019-07-09 13:49:11 -070098#endif /* __ASSEMBLER__ */
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000099
johpow0185ea43d2020-10-07 15:08:01 -0500100/* Macro to get CPU revision code for checking errata version compatibility. */
101#define CPU_REV(r, p) ((r << 4) | p)
102
Govindraj Raja988a7c72025-01-21 12:13:20 -0600103#endif /* ERRATA_H */