blob: 92891ce38b8039ac2c25c58c1565fa21733ea020 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Antonio Nino Diaza9044872019-02-12 11:25:02 +00002 * Copyright (c) 2014-2019, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00006#ifndef CPU_MACROS_S
7#define CPU_MACROS_S
Achin Gupta4f6ad662013-10-25 09:08:21 +01008
9#include <arch.h>
Antonio Nino Diaza9044872019-02-12 11:25:02 +000010#include <assert_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <lib/cpus/errata_report.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010012
Soby Mathewc704cbc2014-08-14 11:33:56 +010013#define CPU_IMPL_PN_MASK (MIDR_IMPL_MASK << MIDR_IMPL_SHIFT) | \
14 (MIDR_PN_MASK << MIDR_PN_SHIFT)
Achin Gupta4f6ad662013-10-25 09:08:21 +010015
Jeenu Viswambharanee5eb802016-11-18 12:58:28 +000016/* The number of CPU operations allowed */
17#define CPU_MAX_PWR_DWN_OPS 2
18
19/* Special constant to specify that CPU has no reset function */
20#define CPU_NO_RESET_FUNC 0
21
Dimitris Papastamosba51d9e2018-05-16 11:36:14 +010022#define CPU_NO_EXTRA1_FUNC 0
23#define CPU_NO_EXTRA2_FUNC 0
24
Jeenu Viswambharanee5eb802016-11-18 12:58:28 +000025/* Word size for 64-bit CPUs */
26#define CPU_WORD_SIZE 8
27
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000028/*
29 * Whether errata status needs reporting. Errata status is printed in debug
30 * builds for both BL1 and BL31 images.
31 */
32#if (defined(IMAGE_BL1) || defined(IMAGE_BL31)) && DEBUG
33# define REPORT_ERRATA 1
34#else
35# define REPORT_ERRATA 0
36#endif
37
Roberto Vargas67762d92018-05-01 09:54:54 +010038
39 .equ CPU_MIDR_SIZE, CPU_WORD_SIZE
40 .equ CPU_EXTRA1_FUNC_SIZE, CPU_WORD_SIZE
41 .equ CPU_EXTRA2_FUNC_SIZE, CPU_WORD_SIZE
laurenw-arm94accd32019-08-20 15:51:24 -050042 .equ CPU_E_HANDLER_FUNC_SIZE, CPU_WORD_SIZE
Roberto Vargas67762d92018-05-01 09:54:54 +010043 .equ CPU_RESET_FUNC_SIZE, CPU_WORD_SIZE
44 .equ CPU_PWR_DWN_OPS_SIZE, CPU_WORD_SIZE * CPU_MAX_PWR_DWN_OPS
45 .equ CPU_ERRATA_FUNC_SIZE, CPU_WORD_SIZE
46 .equ CPU_ERRATA_LOCK_SIZE, CPU_WORD_SIZE
47 .equ CPU_ERRATA_PRINTED_SIZE, CPU_WORD_SIZE
48 .equ CPU_REG_DUMP_SIZE, CPU_WORD_SIZE
49
50#ifndef IMAGE_AT_EL3
51 .equ CPU_RESET_FUNC_SIZE, 0
Soby Mathewc704cbc2014-08-14 11:33:56 +010052#endif
Roberto Vargas67762d92018-05-01 09:54:54 +010053
54/* The power down core and cluster is needed only in BL31 */
55#ifndef IMAGE_BL31
56 .equ CPU_PWR_DWN_OPS_SIZE, 0
Soby Mathew8e2f2872014-08-14 12:49:05 +010057#endif
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000058
Roberto Vargas67762d92018-05-01 09:54:54 +010059/* Fields required to print errata status. */
60#if !REPORT_ERRATA
61 .equ CPU_ERRATA_FUNC_SIZE, 0
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000062#endif
Roberto Vargas67762d92018-05-01 09:54:54 +010063
64/* Only BL31 requieres mutual exclusion and printed flag. */
65#if !(REPORT_ERRATA && defined(IMAGE_BL31))
66 .equ CPU_ERRATA_LOCK_SIZE, 0
67 .equ CPU_ERRATA_PRINTED_SIZE, 0
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000068#endif
69
Roberto Vargas67762d92018-05-01 09:54:54 +010070#if !defined(IMAGE_BL31) || !CRASH_REPORTING
71 .equ CPU_REG_DUMP_SIZE, 0
Soby Mathew38b4bc92014-08-14 13:36:41 +010072#endif
Roberto Vargas67762d92018-05-01 09:54:54 +010073
74/*
75 * Define the offsets to the fields in cpu_ops structure.
76 * Every offset is defined based in the offset and size of the previous
77 * field.
78 */
79 .equ CPU_MIDR, 0
80 .equ CPU_RESET_FUNC, CPU_MIDR + CPU_MIDR_SIZE
81 .equ CPU_EXTRA1_FUNC, CPU_RESET_FUNC + CPU_RESET_FUNC_SIZE
82 .equ CPU_EXTRA2_FUNC, CPU_EXTRA1_FUNC + CPU_EXTRA1_FUNC_SIZE
laurenw-arm94accd32019-08-20 15:51:24 -050083 .equ CPU_E_HANDLER_FUNC, CPU_EXTRA2_FUNC + CPU_EXTRA2_FUNC_SIZE
84 .equ CPU_PWR_DWN_OPS, CPU_E_HANDLER_FUNC + CPU_E_HANDLER_FUNC_SIZE
Roberto Vargas67762d92018-05-01 09:54:54 +010085 .equ CPU_ERRATA_FUNC, CPU_PWR_DWN_OPS + CPU_PWR_DWN_OPS_SIZE
86 .equ CPU_ERRATA_LOCK, CPU_ERRATA_FUNC + CPU_ERRATA_FUNC_SIZE
87 .equ CPU_ERRATA_PRINTED, CPU_ERRATA_LOCK + CPU_ERRATA_LOCK_SIZE
88 .equ CPU_REG_DUMP, CPU_ERRATA_PRINTED + CPU_ERRATA_PRINTED_SIZE
89 .equ CPU_OPS_SIZE, CPU_REG_DUMP + CPU_REG_DUMP_SIZE
Achin Gupta4f6ad662013-10-25 09:08:21 +010090
Soby Mathewc704cbc2014-08-14 11:33:56 +010091 /*
Jeenu Viswambharanee5eb802016-11-18 12:58:28 +000092 * Write given expressions as quad words
93 *
94 * _count:
95 * Write at least _count quad words. If the given number of
96 * expressions is less than _count, repeat the last expression to
97 * fill _count quad words in total
98 * _rest:
99 * Optional list of expressions. _this is for parameter extraction
100 * only, and has no significance to the caller
101 *
102 * Invoked as:
103 * fill_constants 2, foo, bar, blah, ...
Achin Gupta4f6ad662013-10-25 09:08:21 +0100104 */
Jeenu Viswambharanee5eb802016-11-18 12:58:28 +0000105 .macro fill_constants _count:req, _this, _rest:vararg
106 .ifgt \_count
107 /* Write the current expression */
108 .ifb \_this
109 .error "Nothing to fill"
110 .endif
111 .quad \_this
112
113 /* Invoke recursively for remaining expressions */
114 .ifnb \_rest
115 fill_constants \_count-1, \_rest
116 .else
117 fill_constants \_count-1, \_this
118 .endif
119 .endif
120 .endm
121
122 /*
123 * Declare CPU operations
124 *
125 * _name:
126 * Name of the CPU for which operations are being specified
127 * _midr:
128 * Numeric value expected to read from CPU's MIDR
129 * _resetfunc:
130 * Reset function for the CPU. If there's no CPU reset function,
131 * specify CPU_NO_RESET_FUNC
Dimitris Papastamos914757c2018-03-12 14:47:09 +0000132 * _extra1:
133 * This is a placeholder for future per CPU operations. Currently,
134 * some CPUs use this entry to set a test function to determine if
135 * the workaround for CVE-2017-5715 needs to be applied or not.
Dimitris Papastamosba51d9e2018-05-16 11:36:14 +0100136 * _extra2:
137 * This is a placeholder for future per CPU operations. Currently
138 * some CPUs use this entry to set a function to disable the
139 * workaround for CVE-2018-3639.
laurenw-arm94accd32019-08-20 15:51:24 -0500140 * _e_handler:
141 * This is a placeholder for future per CPU exception handlers.
Jeenu Viswambharanee5eb802016-11-18 12:58:28 +0000142 * _power_down_ops:
143 * Comma-separated list of functions to perform power-down
144 * operatios on the CPU. At least one, and up to
145 * CPU_MAX_PWR_DWN_OPS number of functions may be specified.
146 * Starting at power level 0, these functions shall handle power
147 * down at subsequent power levels. If there aren't exactly
148 * CPU_MAX_PWR_DWN_OPS functions, the last specified one will be
149 * used to handle power down at subsequent levels
150 */
Dimitris Papastamos914757c2018-03-12 14:47:09 +0000151 .macro declare_cpu_ops_base _name:req, _midr:req, _resetfunc:req, \
laurenw-arm94accd32019-08-20 15:51:24 -0500152 _extra1:req, _extra2:req, _e_handler:req, _power_down_ops:vararg
Jeenu Viswambharanee5eb802016-11-18 12:58:28 +0000153 .section cpu_ops, "a"
154 .align 3
Soby Mathewc704cbc2014-08-14 11:33:56 +0100155 .type cpu_ops_\_name, %object
156 .quad \_midr
Roberto Vargase0e99462017-10-30 14:43:43 +0000157#if defined(IMAGE_AT_EL3)
Jeenu Viswambharanee5eb802016-11-18 12:58:28 +0000158 .quad \_resetfunc
Soby Mathewc704cbc2014-08-14 11:33:56 +0100159#endif
Dimitris Papastamos914757c2018-03-12 14:47:09 +0000160 .quad \_extra1
Dimitris Papastamosba51d9e2018-05-16 11:36:14 +0100161 .quad \_extra2
laurenw-arm94accd32019-08-20 15:51:24 -0500162 .quad \_e_handler
Masahiro Yamada441bfdd2016-12-25 23:36:24 +0900163#ifdef IMAGE_BL31
Jeenu Viswambharanee5eb802016-11-18 12:58:28 +0000164 /* Insert list of functions */
165 fill_constants CPU_MAX_PWR_DWN_OPS, \_power_down_ops
Soby Mathew8e2f2872014-08-14 12:49:05 +0100166#endif
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000167
168#if REPORT_ERRATA
169 .ifndef \_name\()_cpu_str
170 /*
171 * Place errata reported flag, and the spinlock to arbitrate access to
172 * it in the data section.
173 */
174 .pushsection .data
175 define_asm_spinlock \_name\()_errata_lock
176 \_name\()_errata_reported:
177 .word 0
178 .popsection
179
180 /* Place CPU string in rodata */
181 .pushsection .rodata
182 \_name\()_cpu_str:
183 .asciz "\_name"
184 .popsection
185 .endif
186
187 /*
Soby Mathew0980dce2018-09-17 04:34:35 +0100188 * Mandatory errata status printing function for CPUs of
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000189 * this class.
190 */
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000191 .quad \_name\()_errata_report
192
193#ifdef IMAGE_BL31
194 /* Pointers to errata lock and reported flag */
195 .quad \_name\()_errata_lock
196 .quad \_name\()_errata_reported
197#endif
198#endif
199
Masahiro Yamada441bfdd2016-12-25 23:36:24 +0900200#if defined(IMAGE_BL31) && CRASH_REPORTING
Soby Mathew38b4bc92014-08-14 13:36:41 +0100201 .quad \_name\()_cpu_reg_dump
202#endif
Soby Mathewc704cbc2014-08-14 11:33:56 +0100203 .endm
Dan Handleyea596682015-04-01 17:34:24 +0100204
Dimitris Papastamos914757c2018-03-12 14:47:09 +0000205 .macro declare_cpu_ops _name:req, _midr:req, _resetfunc:req, \
206 _power_down_ops:vararg
laurenw-arm94accd32019-08-20 15:51:24 -0500207 declare_cpu_ops_base \_name, \_midr, \_resetfunc, 0, 0, 0, \
Dimitris Papastamos914757c2018-03-12 14:47:09 +0000208 \_power_down_ops
209 .endm
210
laurenw-arm94accd32019-08-20 15:51:24 -0500211 .macro declare_cpu_ops_eh _name:req, _midr:req, _resetfunc:req, \
212 _e_handler:req, _power_down_ops:vararg
213 declare_cpu_ops_base \_name, \_midr, \_resetfunc, \
214 0, 0, \_e_handler, \_power_down_ops
215 .endm
216
Dimitris Papastamosba51d9e2018-05-16 11:36:14 +0100217 .macro declare_cpu_ops_wa _name:req, _midr:req, \
218 _resetfunc:req, _extra1:req, _extra2:req, \
219 _power_down_ops:vararg
Dimitris Papastamos914757c2018-03-12 14:47:09 +0000220 declare_cpu_ops_base \_name, \_midr, \_resetfunc, \
laurenw-arm94accd32019-08-20 15:51:24 -0500221 \_extra1, \_extra2, 0, \_power_down_ops
Dimitris Papastamos914757c2018-03-12 14:47:09 +0000222 .endm
223
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000224#if REPORT_ERRATA
225 /*
226 * Print status of a CPU errata
227 *
228 * _chosen:
229 * Identifier indicating whether or not a CPU errata has been
230 * compiled in.
231 * _cpu:
232 * Name of the CPU
233 * _id:
234 * Errata identifier
235 * _rev_var:
236 * Register containing the combined value CPU revision and variant
237 * - typically the return value of cpu_get_rev_var
238 */
239 .macro report_errata _chosen, _cpu, _id, _rev_var=x8
240 /* Stash a string with errata ID */
241 .pushsection .rodata
242 \_cpu\()_errata_\_id\()_str:
243 .asciz "\_id"
244 .popsection
245
246 /* Check whether errata applies */
247 mov x0, \_rev_var
Jonathan Wrightefb1f332018-03-28 15:52:03 +0100248 /* Shall clobber: x0-x7 */
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +0000249 bl check_errata_\_id
250
251 .ifeq \_chosen
252 /*
253 * Errata workaround has not been compiled in. If the errata would have
254 * applied had it been compiled in, print its status as missing.
255 */
256 cbz x0, 900f
257 mov x0, #ERRATA_MISSING
258 .endif
259900:
260 adr x1, \_cpu\()_cpu_str
261 adr x2, \_cpu\()_errata_\_id\()_str
262 bl errata_print_msg
263 .endm
264#endif
265
Dimitris Papastamos780cc952018-03-12 13:27:02 +0000266 /*
267 * This macro is used on some CPUs to detect if they are vulnerable
268 * to CVE-2017-5715.
269 */
270 .macro cpu_check_csv2 _reg _label
271 mrs \_reg, id_aa64pfr0_el1
272 ubfx \_reg, \_reg, #ID_AA64PFR0_CSV2_SHIFT, #ID_AA64PFR0_CSV2_LENGTH
273 /*
Antonio Nino Diaza9044872019-02-12 11:25:02 +0000274 * If the field equals 1, branch targets trained in one context cannot
275 * affect speculative execution in a different context.
276 *
277 * If the field equals 2, it means that the system is also aware of
278 * SCXTNUM_ELx register contexts. We aren't using them in the TF, so we
279 * expect users of the registers to do the right thing.
280 *
281 * Only apply mitigations if the value of this field is 0.
Dimitris Papastamos780cc952018-03-12 13:27:02 +0000282 */
Antonio Nino Diaza9044872019-02-12 11:25:02 +0000283#if ENABLE_ASSERTIONS
284 cmp \_reg, #3 /* Only values 0 to 2 are expected */
285 ASM_ASSERT(lo)
286#endif
287
288 cmp \_reg, #0
289 bne \_label
Dimitris Papastamos780cc952018-03-12 13:27:02 +0000290 .endm
Deepak Pandeyb5615362018-10-11 13:44:43 +0530291
292 /*
293 * Helper macro that reads the part number of the current
294 * CPU and jumps to the given label if it matches the CPU
295 * MIDR provided.
296 *
297 * Clobbers x0.
298 */
299 .macro jump_if_cpu_midr _cpu_midr, _label
300 mrs x0, midr_el1
301 ubfx x0, x0, MIDR_PN_SHIFT, #12
302 cmp w0, #((\_cpu_midr >> MIDR_PN_SHIFT) & MIDR_PN_MASK)
303 b.eq \_label
304 .endm
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +0000305
306#endif /* CPU_MACROS_S */