blob: 89a36a406806ffc97df8c200ed04dc221192ee9f [file] [log] [blame]
Chris Frantz84c3a4e2021-05-27 15:59:13 -07001// Copyright lowRISC contributors.
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
4
5#include "sw/device/silicon_creator/lib/shutdown.h"
6
7#include <assert.h>
8
Alphan Ulusoy971bb822022-02-10 10:17:17 -05009#include "sw/device/lib/arch/device.h"
Jade Philipoom94cdcea2022-01-27 09:17:47 +000010#include "sw/device/lib/base/abs_mmio.h"
Chris Frantz84c3a4e2021-05-27 15:59:13 -070011#include "sw/device/lib/base/bitfield.h"
Alphan Ulusoy971bb822022-02-10 10:17:17 -050012#include "sw/device/lib/base/csr.h"
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050013#include "sw/device/lib/base/hardened.h"
Chris Frantz84c3a4e2021-05-27 15:59:13 -070014#include "sw/device/lib/base/macros.h"
15#include "sw/device/lib/base/memory.h"
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -050016#include "sw/device/lib/base/multibits.h"
Chris Frantz84c3a4e2021-05-27 15:59:13 -070017#include "sw/device/lib/base/stdasm.h"
Chris Frantz84c3a4e2021-05-27 15:59:13 -070018#include "sw/device/silicon_creator/lib/drivers/alert.h"
19#include "sw/device/silicon_creator/lib/drivers/lifecycle.h"
Michael Munday23c2cae2021-09-10 13:55:42 +010020#include "sw/device/silicon_creator/lib/drivers/otp.h"
Chris Frantz84c3a4e2021-05-27 15:59:13 -070021
22#include "alert_handler_regs.h"
23#include "flash_ctrl_regs.h"
24#include "hw/top_earlgrey/sw/autogen/top_earlgrey.h"
25#include "keymgr_regs.h"
Michael Munday23c2cae2021-09-10 13:55:42 +010026#include "lc_ctrl_regs.h"
Chris Frantz84c3a4e2021-05-27 15:59:13 -070027#include "otp_ctrl_regs.h"
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -050028#include "rstmgr_regs.h"
Alphan Ulusoy6968f4f2022-01-17 10:03:10 -050029#include "rv_core_ibex_regs.h"
Chris Frantz84c3a4e2021-05-27 15:59:13 -070030#include "sram_ctrl_regs.h"
Alphan Ulusoy971bb822022-02-10 10:17:17 -050031#include "uart_regs.h"
Chris Frantz84c3a4e2021-05-27 15:59:13 -070032
Michael Schaffner1a5d53a2021-06-03 17:44:17 -070033static_assert(ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT <=
Chris Frantz84c3a4e2021-05-27 15:59:13 -070034 OTP_CTRL_PARAM_ROM_ALERT_CLASSIFICATION_SIZE / 4,
35 "More alerts than alert classification OTP words!");
Michael Munday7434fc22021-09-14 11:34:32 +010036static_assert(ALERT_HANDLER_LOC_ALERT_CLASS_SHADOWED_MULTIREG_COUNT <=
37 OTP_CTRL_PARAM_ROM_LOCAL_ALERT_CLASSIFICATION_SIZE / 4,
38 "More local alerts than local alert classification OTP words!");
Chris Frantz84c3a4e2021-05-27 15:59:13 -070039
40#define NO_MODIFIERS
41
42#ifdef OT_OFF_TARGET_TEST
43// If we're building as a unit test, rename the shutdown functions so they
44// can be mocked and/or tested individually.
45// The unmodified function name will be declared as `extern` so the test
46// program can supply its own implementation. The implementation present
47// in this file will be named `unmocked_${name}` so the test program can
48// invoke it for testing.
49#define SHUTDOWN_FUNC(modifiers_, name_) \
50 extern void name_; \
51 void unmocked_##name_
52#else
53#define SHUTDOWN_FUNC(modifiers_, name_) \
Miguel Young de la Sotad6701c82022-03-03 10:47:15 -050054 static OT_ALWAYS_INLINE modifiers_ void name_
Chris Frantz84c3a4e2021-05-27 15:59:13 -070055#endif
56
Chris Frantz84c3a4e2021-05-27 15:59:13 -070057// Convert the alert class to an index.
58// This is required because I expect to change the constant definitions in
59// alert_class_t to have reasonable hamming distances.
60static size_t clsindex(alert_class_t cls) {
61 switch (cls) {
62 case kAlertClassA:
63 return 0;
64 case kAlertClassB:
65 return 1;
66 case kAlertClassC:
67 return 2;
68 case kAlertClassD:
69 return 3;
70 default:
71 return 0;
72 }
73}
74
75rom_error_t shutdown_init(lifecycle_state_t lc_state) {
Alphan Ulusoye0349bb2022-02-10 15:21:47 -050076 // `lc_shift` values for different lifecycle states.
77 enum {
78 kLcShiftProd = 0,
79 kLcShiftProdEnd = 8,
80 kLcShiftDev = 16,
81 kLcShiftRma = 24,
82 };
83
Chris Frantz84c3a4e2021-05-27 15:59:13 -070084 // Are we in a lifecycle state which needs alert configuration?
85 uint32_t lc_shift;
Alphan Ulusoye0349bb2022-02-10 15:21:47 -050086 uint32_t lc_shift_masked;
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050087 switch (launder32(lc_state)) {
Alphan Ulusoy7bb57152022-01-26 16:25:56 -050088 case kLcStateTest:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050089 HARDENED_CHECK_EQ(lc_state, kLcStateTest);
Michael Munday0c972812021-09-14 13:53:06 +010090 // Don't configure alerts during manufacturing as OTP may not have been
91 // programmed yet.
92 return kErrorOk;
Chris Frantz84c3a4e2021-05-27 15:59:13 -070093 case kLcStateProd:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050094 HARDENED_CHECK_EQ(lc_state, kLcStateProd);
Alphan Ulusoye0349bb2022-02-10 15:21:47 -050095 lc_shift = kLcShiftProd;
96 // First operand is laundered to prevent constant-folding of
97 // xor-of-constants.
98 lc_shift_masked = launder32(kLcShiftProd) ^ kLcStateProd;
Chris Frantz84c3a4e2021-05-27 15:59:13 -070099 break;
100 case kLcStateProdEnd:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -0500101 HARDENED_CHECK_EQ(lc_state, kLcStateProdEnd);
Alphan Ulusoye0349bb2022-02-10 15:21:47 -0500102 lc_shift = kLcShiftProdEnd;
103 lc_shift_masked = launder32(kLcShiftProdEnd) ^ kLcStateProdEnd;
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700104 break;
105 case kLcStateDev:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -0500106 HARDENED_CHECK_EQ(lc_state, kLcStateDev);
Alphan Ulusoye0349bb2022-02-10 15:21:47 -0500107 lc_shift = kLcShiftDev;
108 lc_shift_masked = launder32(kLcShiftDev) ^ kLcStateDev;
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700109 break;
110 case kLcStateRma:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -0500111 HARDENED_CHECK_EQ(lc_state, kLcStateRma);
Alphan Ulusoye0349bb2022-02-10 15:21:47 -0500112 lc_shift = kLcShiftRma;
113 lc_shift_masked = launder32(kLcShiftRma) ^ kLcStateRma;
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700114 break;
115 default:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -0500116 HARDENED_UNREACHABLE();
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700117 }
118
119 // Get the enable and escalation settings for all four alert classes.
120 // Each of these OTP words is composed of 4 byte enums with the enable and
121 // escalate configs per alert class (a/b/c/d).
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500122 size_t i = 0;
123 rom_error_t error = kErrorOk;
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700124 uint32_t class_enable = otp_read32(OTP_CTRL_PARAM_ROM_ALERT_CLASS_EN_OFFSET);
125 uint32_t class_escalate =
126 otp_read32(OTP_CTRL_PARAM_ROM_ALERT_ESCALATION_OFFSET);
127 alert_enable_t enable[ALERT_CLASSES];
128 alert_escalate_t escalate[ALERT_CLASSES];
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500129 for (i = 0; launder32(i) < ALERT_CLASSES; ++i) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700130 enable[i] = (alert_enable_t)bitfield_field32_read(
131 class_enable, (bitfield_field32_t){.mask = 0xff, .index = i * 8});
132 escalate[i] = (alert_escalate_t)bitfield_field32_read(
133 class_escalate, (bitfield_field32_t){.mask = 0xff, .index = i * 8});
134 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500135 if (i != ALERT_CLASSES) {
136 error = kErrorUnknown;
137 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700138
139 // For each alert, read its corresponding OTP word and extract the class
140 // configuration for the current lifecycle state.
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500141 for (i = 0; launder32(i) < ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT;
Michael Schaffner1a5d53a2021-06-03 17:44:17 -0700142 ++i) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700143 uint32_t value = otp_read32(OTP_CTRL_PARAM_ROM_ALERT_CLASSIFICATION_OFFSET +
144 i * sizeof(uint32_t));
145 alert_class_t cls = (alert_class_t)bitfield_field32_read(
146 value, (bitfield_field32_t){.mask = 0xff, .index = lc_shift});
147 rom_error_t e = alert_configure(i, cls, enable[clsindex(cls)]);
148 if (e != kErrorOk) {
149 // Keep going if there is an error programming one alert. We want to
150 // program them all.
151 error = e;
152 }
153 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500154 if (i != ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT) {
155 error = kErrorUnknown;
156 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700157
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700158 // For each local alert, read its corresponding OTP word and extract the class
159 // configuration for the current lifecycle state.
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500160 for (i = 0;
161 launder32(i) < ALERT_HANDLER_LOC_ALERT_CLASS_SHADOWED_MULTIREG_COUNT;
Michael Munday7434fc22021-09-14 11:34:32 +0100162 ++i) {
Michael Munday32cc6a72021-09-30 13:55:53 +0100163 uint32_t value =
164 otp_read32(OTP_CTRL_PARAM_ROM_LOCAL_ALERT_CLASSIFICATION_OFFSET +
165 i * sizeof(uint32_t));
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700166 alert_class_t cls = (alert_class_t)bitfield_field32_read(
167 value, (bitfield_field32_t){.mask = 0xff, .index = lc_shift});
168 rom_error_t e = alert_local_configure(i, cls, enable[clsindex(cls)]);
169 if (e != kErrorOk) {
170 // Keep going if there is an error programming one alert. We want to
171 // program them all.
172 error = e;
173 }
174 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500175 if (i != ALERT_HANDLER_LOC_ALERT_CLASS_SHADOWED_MULTIREG_COUNT) {
176 error = kErrorUnknown;
177 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700178
Alphan Ulusoye0349bb2022-02-10 15:21:47 -0500179 // Check `lc_shift` value.
180 if ((lc_shift_masked ^ lc_state) != lc_shift) {
181 error = kErrorUnknown;
182 }
183
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700184 // For each alert class, configure the various escalation parameters.
185 const alert_class_t kClasses[] = {
186 kAlertClassA,
187 kAlertClassB,
188 kAlertClassC,
189 kAlertClassD,
190 };
191 alert_class_config_t config;
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500192 for (i = 0; launder32(i) < ALERT_CLASSES; ++i) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700193 config.enabled = enable[i];
194 config.escalation = escalate[i];
195 config.accum_threshold = otp_read32(
196 OTP_CTRL_PARAM_ROM_ALERT_ACCUM_THRESH_OFFSET + i * sizeof(uint32_t));
197 config.timeout_cycles = otp_read32(
198 OTP_CTRL_PARAM_ROM_ALERT_TIMEOUT_CYCLES_OFFSET + i * sizeof(uint32_t));
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500199 size_t phase = 0;
200 for (; launder32(phase) < ARRAYSIZE(config.phase_cycles); ++phase) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700201 config.phase_cycles[phase] = otp_read32(
202 OTP_CTRL_PARAM_ROM_ALERT_PHASE_CYCLES_OFFSET +
203 (i * ARRAYSIZE(config.phase_cycles) + phase) * sizeof(uint32_t));
204 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500205 if (phase != ARRAYSIZE(config.phase_cycles)) {
206 error = kErrorUnknown;
207 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700208
209 rom_error_t e = alert_class_configure(kClasses[i], &config);
210 if (e != kErrorOk) {
211 // Keep going if there is an error programming an alert class. We want to
212 // program them all.
213 error = e;
214 }
215 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500216 if (i != ALERT_CLASSES) {
217 error = kErrorUnknown;
218 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700219 return error;
220}
221
Michael Munday23c2cae2021-09-10 13:55:42 +0100222/**
223 * Implementation of `shutdown_redact` that is guaranteed to be inlined.
224 *
225 * This function must be inlined because it is called from `shutdown_finalize`.
226 */
Miguel Young de la Sotad6701c82022-03-03 10:47:15 -0500227static OT_ALWAYS_INLINE uint32_t
Michael Munday23c2cae2021-09-10 13:55:42 +0100228shutdown_redact_inline(rom_error_t reason, shutdown_error_redact_t severity) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700229 uint32_t redacted = (uint32_t)reason;
230 if (reason == kErrorOk) {
231 return 0;
232 }
233 switch (severity) {
234 case kShutdownErrorRedactModule:
235 redacted = bitfield_field32_write(redacted, ROM_ERROR_FIELD_MODULE, 0);
Miguel Young de la Sotad6701c82022-03-03 10:47:15 -0500236 OT_FALLTHROUGH_INTENDED;
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700237 case kShutdownErrorRedactError:
238 redacted = bitfield_field32_write(redacted, ROM_ERROR_FIELD_ERROR, 0);
Miguel Young de la Sotad6701c82022-03-03 10:47:15 -0500239 OT_FALLTHROUGH_INTENDED;
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700240 case kShutdownErrorRedactNone:
241 break;
242 case kShutdownErrorRedactAll:
Miguel Young de la Sotad6701c82022-03-03 10:47:15 -0500243 OT_FALLTHROUGH_INTENDED;
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700244 default:
245 redacted = kErrorUnknown;
246 }
247 return redacted;
248}
249
Michael Munday23c2cae2021-09-10 13:55:42 +0100250uint32_t shutdown_redact(rom_error_t reason, shutdown_error_redact_t severity) {
251 return shutdown_redact_inline(reason, severity);
252}
253
254/**
255 * Implementation of `shutdown_redact_policy` that is guaranteed to be inlined.
256 *
257 * This function must be inlined because it is called from `shutdown_finalize`.
258 */
Miguel Young de la Sotad6701c82022-03-03 10:47:15 -0500259static OT_ALWAYS_INLINE shutdown_error_redact_t
Miguel Osorio77914112022-02-08 10:06:49 -0800260shutdown_redact_policy_inline(uint32_t raw_state) {
Alphan Ulusoy7bb57152022-01-26 16:25:56 -0500261 switch (raw_state) {
262 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED0:
263 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED1:
264 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED2:
265 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED3:
266 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED4:
267 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED5:
268 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED6:
269 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED7:
270 case LC_CTRL_LC_STATE_STATE_VALUE_RMA:
Michael Mundaya76b48d2021-11-23 14:41:44 +0000271 // No error redaction in TEST_UNLOCKED and RMA states.
Michael Munday23c2cae2021-09-10 13:55:42 +0100272 return kShutdownErrorRedactNone;
Alphan Ulusoy7bb57152022-01-26 16:25:56 -0500273 case LC_CTRL_LC_STATE_STATE_VALUE_DEV:
274 case LC_CTRL_LC_STATE_STATE_VALUE_PROD:
275 case LC_CTRL_LC_STATE_STATE_VALUE_PROD_END:
Michael Munday23c2cae2021-09-10 13:55:42 +0100276 // In production states use the redaction level specified in OTP.
277 return (shutdown_error_redact_t)abs_mmio_read32(
278 TOP_EARLGREY_OTP_CTRL_CORE_BASE_ADDR +
279 OTP_CTRL_SW_CFG_WINDOW_REG_OFFSET +
280 OTP_CTRL_PARAM_ROM_ERROR_REPORTING_OFFSET);
281 default:
282 // Redact everything if in an unexpected lifecycle state.
283 return kShutdownErrorRedactAll;
284 }
285}
286
287shutdown_error_redact_t shutdown_redact_policy(void) {
Miguel Osorio77914112022-02-08 10:06:49 -0800288 // Determine the error code redaction policy to apply according to the
289 // lifecycle state and OTP configuration.
290 //
291 // Note that we cannot use the lifecycle or OTP libraries since an error
292 // may trigger a call to `shutdown_finalize`.
293 uint32_t raw_state =
294 bitfield_field32_read(abs_mmio_read32(TOP_EARLGREY_LC_CTRL_BASE_ADDR +
295 LC_CTRL_LC_STATE_REG_OFFSET),
296 LC_CTRL_LC_STATE_STATE_FIELD);
297 return shutdown_redact_policy_inline(raw_state);
Michael Munday23c2cae2021-09-10 13:55:42 +0100298}
299
Alphan Ulusoy971bb822022-02-10 10:17:17 -0500300enum {
301 /**
302 * Length of the hexadecimal representation.
303 */
304 kHexStrLen = 8,
305 /**
306 * Total message length.
307 *
308 * This includes 4 character prefix before the hex string '\n' at the end of
309 * the message.
310 */
311 kErrorMsgLen = kHexStrLen + 5,
312 /**
313 * Base address of UART.
314 */
315 kUartBase = TOP_EARLGREY_UART0_BASE_ADDR,
316 /**
317 * UART TX FIFO size.
318 */
319 kUartFifoSize = 32,
320};
321
322/**
323 * Prints a fixed-length (`kErrorMsgLen`) error message.
324 *
325 * The error message is a concatenation of a 4 character `prefix` (encoded as a
326 * 32-bit value), the hexadecimal representation of `val`, and '\n'.
327 *
328 * @param prefix Prefix encoded as a 32-bit value.
329 * @param val Integer to print.
330 */
Miguel Young de la Sotad6701c82022-03-03 10:47:15 -0500331static OT_ALWAYS_INLINE void shutdown_print(shutdown_log_prefix_t prefix,
332 uint32_t val) {
Alphan Ulusoy971bb822022-02-10 10:17:17 -0500333 // Print the 4 character `prefix`.
334 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, prefix);
335 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, prefix >> 8);
336 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, prefix >> 16);
337 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, prefix >> 24);
338
339 // Print the hex representation of `val`.
340 const char kHexTable[16] = "0123456789abcdef";
341 // `kHexStrLen` is laundered so that it is loaded to a register at every
342 // iteration.
343 for (size_t i = 0; i < launder32(kHexStrLen); ++i) {
344 uint8_t nibble = bitfield_field32_read(
345 val, (bitfield_field32_t){.mask = 0xf, .index = (7 - i) * 4});
346 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, kHexTable[nibble]);
347 }
348 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, '\n');
349}
350
Michael Munday23c2cae2021-09-10 13:55:42 +0100351SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_report_error(rom_error_t reason)) {
Miguel Osorio77914112022-02-08 10:06:49 -0800352 uint32_t raw_state =
353 bitfield_field32_read(abs_mmio_read32(TOP_EARLGREY_LC_CTRL_BASE_ADDR +
354 LC_CTRL_LC_STATE_REG_OFFSET),
355 LC_CTRL_LC_STATE_STATE_FIELD);
356
Michael Munday23c2cae2021-09-10 13:55:42 +0100357 // Call the inline variant of `shutdown_redact_policy` because we want to
358 // guarantee that we won't jump to a different function.
Miguel Osorio77914112022-02-08 10:06:49 -0800359 shutdown_error_redact_t policy = shutdown_redact_policy_inline(raw_state);
Michael Munday23c2cae2021-09-10 13:55:42 +0100360
361 // Call the inline variant of `shutdown_redact` because we want to guarantee
362 // that we won't jump to a different function.
363 uint32_t redacted_error = shutdown_redact_inline(reason, policy);
364
Alphan Ulusoy971bb822022-02-10 10:17:17 -0500365 // Reset UART TX fifo and enable TX.
366 abs_mmio_write32(kUartBase + UART_FIFO_CTRL_REG_OFFSET,
367 bitfield_bit32_write(0, UART_FIFO_CTRL_TXRST_BIT, true));
368 uint32_t uart_ctrl_reg = abs_mmio_read32(kUartBase + UART_CTRL_REG_OFFSET);
369 uart_ctrl_reg = bitfield_bit32_write(uart_ctrl_reg, UART_CTRL_TX_BIT, true);
370 abs_mmio_write32(kUartBase + UART_CTRL_REG_OFFSET, uart_ctrl_reg);
Miguel Osorio77914112022-02-08 10:06:49 -0800371
Alphan Ulusoy971bb822022-02-10 10:17:17 -0500372 // Print the error message and the raw life cycle state as reported by the
373 // hardware.
374 shutdown_print(kShutdownLogPrefixBootFault, redacted_error);
375 shutdown_print(kShutdownLogPrefixLifecycle, raw_state);
376
377#ifdef OT_PLATFORM_RV32
378 // Wait until UART TX is complete.
379 static_assert(2 * kErrorMsgLen <= kUartFifoSize,
380 "Total message length must be less than TX FIFO size.");
381 CSR_WRITE(CSR_REG_MCYCLE, 0);
382 uint32_t mcycle;
383 bool tx_idle;
384 do {
385 tx_idle =
386 bitfield_bit32_read(abs_mmio_read32(kUartBase + UART_STATUS_REG_OFFSET),
387 UART_STATUS_TXIDLE_BIT);
388 CSR_READ(CSR_REG_MCYCLE, &mcycle);
389 } while (mcycle < kUartTxFifoCpuCycles && !tx_idle);
390#endif
Michael Munday23c2cae2021-09-10 13:55:42 +0100391}
392
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700393SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_software_escalate(void)) {
Alphan Ulusoy6968f4f2022-01-17 10:03:10 -0500394 enum { kBase = TOP_EARLGREY_RV_CORE_IBEX_CFG_BASE_ADDR };
395 // Setting rv_core_ibex.SW_FATAL_ERR (rw0c) to any value other than
396 // `kMultiBitBool4False` will continuously cause alert events.
397 abs_mmio_write32(kBase + RV_CORE_IBEX_SW_FATAL_ERR_REG_OFFSET, 0);
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700398}
399
400SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_keymgr_kill(void)) {
401 enum {
402 kBase = TOP_EARLGREY_KEYMGR_BASE_ADDR,
403 };
Timothy Chenb8a10932022-01-27 20:47:28 -0800404 uint32_t reg =
405 bitfield_field32_write(0, KEYMGR_CONTROL_SHADOWED_DEST_SEL_FIELD,
406 KEYMGR_CONTROL_SHADOWED_DEST_SEL_VALUE_NONE);
407 reg = bitfield_field32_write(reg, KEYMGR_CONTROL_SHADOWED_OPERATION_FIELD,
408 KEYMGR_CONTROL_SHADOWED_OPERATION_VALUE_DISABLE);
409 abs_mmio_write32_shadowed(kBase + KEYMGR_CONTROL_SHADOWED_REG_OFFSET, reg);
410
411 abs_mmio_write32(kBase + KEYMGR_START_REG_OFFSET, 1);
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700412 abs_mmio_write32(kBase + KEYMGR_SIDELOAD_CLEAR_REG_OFFSET, 1);
413}
414
415SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_flash_kill(void)) {
416 enum { kBase = TOP_EARLGREY_FLASH_CTRL_CORE_BASE_ADDR };
Michael Munday319dbc82021-12-07 15:14:55 +0000417 // Setting DIS (rw0c) to a value other than 5 will disable flash permanently.
418 abs_mmio_write32(kBase + FLASH_CTRL_DIS_REG_OFFSET, 0);
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700419}
420
421SHUTDOWN_FUNC(noreturn, shutdown_hang(void)) {
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -0500422 enum {
423 kSramCtrlBase = TOP_EARLGREY_SRAM_CTRL_MAIN_REGS_BASE_ADDR,
424 kRstmgrBase = TOP_EARLGREY_RSTMGR_AON_BASE_ADDR,
425 };
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700426
427 // Disable SRAM execution and lock the register.
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -0500428 // Note: In addition to this register, which is disabled by default at reset,
429 // SRAM execution is gated by the lifecycle state
430 // (SRAM_CTRL.INSTR.BUS.LC_GATED) and EN_SRAM_IFETCH item in the HW_CFG OTP
431 // partition.
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700432 abs_mmio_write32(kSramCtrlBase + SRAM_CTRL_EXEC_EN_OFFSET, 0);
433 abs_mmio_write32(kSramCtrlBase + SRAM_CTRL_EXEC_REGWEN_REG_OFFSET, 0);
434
435 // Switch to assembly as RAM (incl. stack) is about to get scrambled.
436#ifdef OT_PLATFORM_RV32
437 while (true) {
438 asm volatile(
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -0500439 "1:"
440 // Request a new scrambling key.
441 "sw %[kSramRenewKey], %[kSramCtrlCtrlReg](%[kSramCtrlBase]);"
442 // Request a system reset.
443 "sw %[kMultiBitBool4True], %[kRstmgrResetReqReg](%[kRstmgrBase]);"
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700444
445 // TODO(lowRISC/opentitan#7148): restrict the ePMP such that only
446 // ROM may execute. mundaym's suggestion: set entry 2 as a NAPOT
447 // region covering the entire address space, clear all its permission
448 // bits and set the lock bit, and then finally disable RLB to prevent
449 // any further modifications.
450
451 // Generate a halt-maze.
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700452 "wfi; wfi; wfi; wfi; j 1b;"
453 "wfi; wfi; j 1b;"
454 "wfi; j 1b;"
455 "wfi;"
456 :
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -0500457 : [kSramRenewKey] "r"(1 << SRAM_CTRL_CTRL_RENEW_SCR_KEY_BIT),
458 [kSramCtrlCtrlReg] "I"(SRAM_CTRL_CTRL_REG_OFFSET),
459 [kSramCtrlBase] "r"(kSramCtrlBase),
460 [kMultiBitBool4True] "r"(kMultiBitBool4True),
461 [kRstmgrBase] "r"(kRstmgrBase),
462 [kRstmgrResetReqReg] "I"(RSTMGR_RESET_REQ_REG_OFFSET));
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700463 }
464#endif
465}
466
Michael Munday292606a2021-09-17 11:09:53 +0100467#ifndef OT_OFF_TARGET_TEST
468/**
469 * The shutdown_finalize function goes into the .shutdown section which is
470 * placed by the linker script after all other executable code.
471 */
472__attribute__((section(".shutdown")))
473#endif
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700474void shutdown_finalize(rom_error_t reason) {
Michael Munday23c2cae2021-09-10 13:55:42 +0100475 shutdown_report_error(reason);
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700476 shutdown_software_escalate();
477 shutdown_keymgr_kill();
478 shutdown_flash_kill();
479 // If we get here, we'll wait for the watchdog to reset the chip.
480 shutdown_hang();
481}