blob: 8dac848beebfb62513ae6dd146015efc1e914e0f [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_) \
54 static ALWAYS_INLINE modifiers_ void name_
55#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) {
76 // Are we in a lifecycle state which needs alert configuration?
77 uint32_t lc_shift;
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050078 switch (launder32(lc_state)) {
Alphan Ulusoy7bb57152022-01-26 16:25:56 -050079 case kLcStateTest:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050080 HARDENED_CHECK_EQ(lc_state, kLcStateTest);
Michael Munday0c972812021-09-14 13:53:06 +010081 // Don't configure alerts during manufacturing as OTP may not have been
82 // programmed yet.
83 return kErrorOk;
Chris Frantz84c3a4e2021-05-27 15:59:13 -070084 case kLcStateProd:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050085 HARDENED_CHECK_EQ(lc_state, kLcStateProd);
Chris Frantz84c3a4e2021-05-27 15:59:13 -070086 lc_shift = 0;
87 break;
88 case kLcStateProdEnd:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050089 HARDENED_CHECK_EQ(lc_state, kLcStateProdEnd);
Chris Frantz84c3a4e2021-05-27 15:59:13 -070090 lc_shift = 8;
91 break;
92 case kLcStateDev:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050093 HARDENED_CHECK_EQ(lc_state, kLcStateDev);
Chris Frantz84c3a4e2021-05-27 15:59:13 -070094 lc_shift = 16;
95 break;
96 case kLcStateRma:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -050097 HARDENED_CHECK_EQ(lc_state, kLcStateRma);
Chris Frantz84c3a4e2021-05-27 15:59:13 -070098 lc_shift = 24;
99 break;
100 default:
Alphan Ulusoy91ceb762022-02-01 14:48:07 -0500101 HARDENED_UNREACHABLE();
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700102 }
103
104 // Get the enable and escalation settings for all four alert classes.
105 // Each of these OTP words is composed of 4 byte enums with the enable and
106 // escalate configs per alert class (a/b/c/d).
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500107 size_t i = 0;
108 rom_error_t error = kErrorOk;
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700109 uint32_t class_enable = otp_read32(OTP_CTRL_PARAM_ROM_ALERT_CLASS_EN_OFFSET);
110 uint32_t class_escalate =
111 otp_read32(OTP_CTRL_PARAM_ROM_ALERT_ESCALATION_OFFSET);
112 alert_enable_t enable[ALERT_CLASSES];
113 alert_escalate_t escalate[ALERT_CLASSES];
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500114 for (i = 0; launder32(i) < ALERT_CLASSES; ++i) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700115 enable[i] = (alert_enable_t)bitfield_field32_read(
116 class_enable, (bitfield_field32_t){.mask = 0xff, .index = i * 8});
117 escalate[i] = (alert_escalate_t)bitfield_field32_read(
118 class_escalate, (bitfield_field32_t){.mask = 0xff, .index = i * 8});
119 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500120 if (i != ALERT_CLASSES) {
121 error = kErrorUnknown;
122 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700123
124 // For each alert, read its corresponding OTP word and extract the class
125 // configuration for the current lifecycle state.
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500126 for (i = 0; launder32(i) < ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT;
Michael Schaffner1a5d53a2021-06-03 17:44:17 -0700127 ++i) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700128 uint32_t value = otp_read32(OTP_CTRL_PARAM_ROM_ALERT_CLASSIFICATION_OFFSET +
129 i * sizeof(uint32_t));
130 alert_class_t cls = (alert_class_t)bitfield_field32_read(
131 value, (bitfield_field32_t){.mask = 0xff, .index = lc_shift});
132 rom_error_t e = alert_configure(i, cls, enable[clsindex(cls)]);
133 if (e != kErrorOk) {
134 // Keep going if there is an error programming one alert. We want to
135 // program them all.
136 error = e;
137 }
138 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500139 if (i != ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT) {
140 error = kErrorUnknown;
141 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700142
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700143 // For each local alert, read its corresponding OTP word and extract the class
144 // configuration for the current lifecycle state.
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500145 for (i = 0;
146 launder32(i) < ALERT_HANDLER_LOC_ALERT_CLASS_SHADOWED_MULTIREG_COUNT;
Michael Munday7434fc22021-09-14 11:34:32 +0100147 ++i) {
Michael Munday32cc6a72021-09-30 13:55:53 +0100148 uint32_t value =
149 otp_read32(OTP_CTRL_PARAM_ROM_LOCAL_ALERT_CLASSIFICATION_OFFSET +
150 i * sizeof(uint32_t));
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700151 alert_class_t cls = (alert_class_t)bitfield_field32_read(
152 value, (bitfield_field32_t){.mask = 0xff, .index = lc_shift});
153 rom_error_t e = alert_local_configure(i, cls, enable[clsindex(cls)]);
154 if (e != kErrorOk) {
155 // Keep going if there is an error programming one alert. We want to
156 // program them all.
157 error = e;
158 }
159 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500160 if (i != ALERT_HANDLER_LOC_ALERT_CLASS_SHADOWED_MULTIREG_COUNT) {
161 error = kErrorUnknown;
162 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700163
164 // For each alert class, configure the various escalation parameters.
165 const alert_class_t kClasses[] = {
166 kAlertClassA,
167 kAlertClassB,
168 kAlertClassC,
169 kAlertClassD,
170 };
171 alert_class_config_t config;
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500172 for (i = 0; launder32(i) < ALERT_CLASSES; ++i) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700173 config.enabled = enable[i];
174 config.escalation = escalate[i];
175 config.accum_threshold = otp_read32(
176 OTP_CTRL_PARAM_ROM_ALERT_ACCUM_THRESH_OFFSET + i * sizeof(uint32_t));
177 config.timeout_cycles = otp_read32(
178 OTP_CTRL_PARAM_ROM_ALERT_TIMEOUT_CYCLES_OFFSET + i * sizeof(uint32_t));
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500179 size_t phase = 0;
180 for (; launder32(phase) < ARRAYSIZE(config.phase_cycles); ++phase) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700181 config.phase_cycles[phase] = otp_read32(
182 OTP_CTRL_PARAM_ROM_ALERT_PHASE_CYCLES_OFFSET +
183 (i * ARRAYSIZE(config.phase_cycles) + phase) * sizeof(uint32_t));
184 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500185 if (phase != ARRAYSIZE(config.phase_cycles)) {
186 error = kErrorUnknown;
187 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700188
189 rom_error_t e = alert_class_configure(kClasses[i], &config);
190 if (e != kErrorOk) {
191 // Keep going if there is an error programming an alert class. We want to
192 // program them all.
193 error = e;
194 }
195 }
Alphan Ulusoy54ce3f82022-02-10 14:36:51 -0500196 if (i != ALERT_CLASSES) {
197 error = kErrorUnknown;
198 }
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700199 return error;
200}
201
Michael Munday23c2cae2021-09-10 13:55:42 +0100202/**
203 * Implementation of `shutdown_redact` that is guaranteed to be inlined.
204 *
205 * This function must be inlined because it is called from `shutdown_finalize`.
206 */
207static ALWAYS_INLINE uint32_t
208shutdown_redact_inline(rom_error_t reason, shutdown_error_redact_t severity) {
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700209 uint32_t redacted = (uint32_t)reason;
210 if (reason == kErrorOk) {
211 return 0;
212 }
213 switch (severity) {
214 case kShutdownErrorRedactModule:
215 redacted = bitfield_field32_write(redacted, ROM_ERROR_FIELD_MODULE, 0);
216 FALLTHROUGH_INTENDED;
217 case kShutdownErrorRedactError:
218 redacted = bitfield_field32_write(redacted, ROM_ERROR_FIELD_ERROR, 0);
219 FALLTHROUGH_INTENDED;
220 case kShutdownErrorRedactNone:
221 break;
222 case kShutdownErrorRedactAll:
223 FALLTHROUGH_INTENDED;
224 default:
225 redacted = kErrorUnknown;
226 }
227 return redacted;
228}
229
Michael Munday23c2cae2021-09-10 13:55:42 +0100230uint32_t shutdown_redact(rom_error_t reason, shutdown_error_redact_t severity) {
231 return shutdown_redact_inline(reason, severity);
232}
233
234/**
235 * Implementation of `shutdown_redact_policy` that is guaranteed to be inlined.
236 *
237 * This function must be inlined because it is called from `shutdown_finalize`.
238 */
239static ALWAYS_INLINE shutdown_error_redact_t
Miguel Osorio77914112022-02-08 10:06:49 -0800240shutdown_redact_policy_inline(uint32_t raw_state) {
Alphan Ulusoy7bb57152022-01-26 16:25:56 -0500241 switch (raw_state) {
242 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED0:
243 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED1:
244 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED2:
245 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED3:
246 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED4:
247 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED5:
248 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED6:
249 case LC_CTRL_LC_STATE_STATE_VALUE_TEST_UNLOCKED7:
250 case LC_CTRL_LC_STATE_STATE_VALUE_RMA:
Michael Mundaya76b48d2021-11-23 14:41:44 +0000251 // No error redaction in TEST_UNLOCKED and RMA states.
Michael Munday23c2cae2021-09-10 13:55:42 +0100252 return kShutdownErrorRedactNone;
Alphan Ulusoy7bb57152022-01-26 16:25:56 -0500253 case LC_CTRL_LC_STATE_STATE_VALUE_DEV:
254 case LC_CTRL_LC_STATE_STATE_VALUE_PROD:
255 case LC_CTRL_LC_STATE_STATE_VALUE_PROD_END:
Michael Munday23c2cae2021-09-10 13:55:42 +0100256 // In production states use the redaction level specified in OTP.
257 return (shutdown_error_redact_t)abs_mmio_read32(
258 TOP_EARLGREY_OTP_CTRL_CORE_BASE_ADDR +
259 OTP_CTRL_SW_CFG_WINDOW_REG_OFFSET +
260 OTP_CTRL_PARAM_ROM_ERROR_REPORTING_OFFSET);
261 default:
262 // Redact everything if in an unexpected lifecycle state.
263 return kShutdownErrorRedactAll;
264 }
265}
266
267shutdown_error_redact_t shutdown_redact_policy(void) {
Miguel Osorio77914112022-02-08 10:06:49 -0800268 // Determine the error code redaction policy to apply according to the
269 // lifecycle state and OTP configuration.
270 //
271 // Note that we cannot use the lifecycle or OTP libraries since an error
272 // may trigger a call to `shutdown_finalize`.
273 uint32_t raw_state =
274 bitfield_field32_read(abs_mmio_read32(TOP_EARLGREY_LC_CTRL_BASE_ADDR +
275 LC_CTRL_LC_STATE_REG_OFFSET),
276 LC_CTRL_LC_STATE_STATE_FIELD);
277 return shutdown_redact_policy_inline(raw_state);
Michael Munday23c2cae2021-09-10 13:55:42 +0100278}
279
Alphan Ulusoy971bb822022-02-10 10:17:17 -0500280enum {
281 /**
282 * Length of the hexadecimal representation.
283 */
284 kHexStrLen = 8,
285 /**
286 * Total message length.
287 *
288 * This includes 4 character prefix before the hex string '\n' at the end of
289 * the message.
290 */
291 kErrorMsgLen = kHexStrLen + 5,
292 /**
293 * Base address of UART.
294 */
295 kUartBase = TOP_EARLGREY_UART0_BASE_ADDR,
296 /**
297 * UART TX FIFO size.
298 */
299 kUartFifoSize = 32,
300};
301
302/**
303 * Prints a fixed-length (`kErrorMsgLen`) error message.
304 *
305 * The error message is a concatenation of a 4 character `prefix` (encoded as a
306 * 32-bit value), the hexadecimal representation of `val`, and '\n'.
307 *
308 * @param prefix Prefix encoded as a 32-bit value.
309 * @param val Integer to print.
310 */
311static ALWAYS_INLINE void shutdown_print(shutdown_log_prefix_t prefix,
312 uint32_t val) {
313 // Print the 4 character `prefix`.
314 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, prefix);
315 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, prefix >> 8);
316 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, prefix >> 16);
317 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, prefix >> 24);
318
319 // Print the hex representation of `val`.
320 const char kHexTable[16] = "0123456789abcdef";
321 // `kHexStrLen` is laundered so that it is loaded to a register at every
322 // iteration.
323 for (size_t i = 0; i < launder32(kHexStrLen); ++i) {
324 uint8_t nibble = bitfield_field32_read(
325 val, (bitfield_field32_t){.mask = 0xf, .index = (7 - i) * 4});
326 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, kHexTable[nibble]);
327 }
328 abs_mmio_write32(kUartBase + UART_WDATA_REG_OFFSET, '\n');
329}
330
Michael Munday23c2cae2021-09-10 13:55:42 +0100331SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_report_error(rom_error_t reason)) {
Miguel Osorio77914112022-02-08 10:06:49 -0800332 uint32_t raw_state =
333 bitfield_field32_read(abs_mmio_read32(TOP_EARLGREY_LC_CTRL_BASE_ADDR +
334 LC_CTRL_LC_STATE_REG_OFFSET),
335 LC_CTRL_LC_STATE_STATE_FIELD);
336
Michael Munday23c2cae2021-09-10 13:55:42 +0100337 // Call the inline variant of `shutdown_redact_policy` because we want to
338 // guarantee that we won't jump to a different function.
Miguel Osorio77914112022-02-08 10:06:49 -0800339 shutdown_error_redact_t policy = shutdown_redact_policy_inline(raw_state);
Michael Munday23c2cae2021-09-10 13:55:42 +0100340
341 // Call the inline variant of `shutdown_redact` because we want to guarantee
342 // that we won't jump to a different function.
343 uint32_t redacted_error = shutdown_redact_inline(reason, policy);
344
Alphan Ulusoy971bb822022-02-10 10:17:17 -0500345 // Reset UART TX fifo and enable TX.
346 abs_mmio_write32(kUartBase + UART_FIFO_CTRL_REG_OFFSET,
347 bitfield_bit32_write(0, UART_FIFO_CTRL_TXRST_BIT, true));
348 uint32_t uart_ctrl_reg = abs_mmio_read32(kUartBase + UART_CTRL_REG_OFFSET);
349 uart_ctrl_reg = bitfield_bit32_write(uart_ctrl_reg, UART_CTRL_TX_BIT, true);
350 abs_mmio_write32(kUartBase + UART_CTRL_REG_OFFSET, uart_ctrl_reg);
Miguel Osorio77914112022-02-08 10:06:49 -0800351
Alphan Ulusoy971bb822022-02-10 10:17:17 -0500352 // Print the error message and the raw life cycle state as reported by the
353 // hardware.
354 shutdown_print(kShutdownLogPrefixBootFault, redacted_error);
355 shutdown_print(kShutdownLogPrefixLifecycle, raw_state);
356
357#ifdef OT_PLATFORM_RV32
358 // Wait until UART TX is complete.
359 static_assert(2 * kErrorMsgLen <= kUartFifoSize,
360 "Total message length must be less than TX FIFO size.");
361 CSR_WRITE(CSR_REG_MCYCLE, 0);
362 uint32_t mcycle;
363 bool tx_idle;
364 do {
365 tx_idle =
366 bitfield_bit32_read(abs_mmio_read32(kUartBase + UART_STATUS_REG_OFFSET),
367 UART_STATUS_TXIDLE_BIT);
368 CSR_READ(CSR_REG_MCYCLE, &mcycle);
369 } while (mcycle < kUartTxFifoCpuCycles && !tx_idle);
370#endif
Michael Munday23c2cae2021-09-10 13:55:42 +0100371}
372
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700373SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_software_escalate(void)) {
Alphan Ulusoy6968f4f2022-01-17 10:03:10 -0500374 enum { kBase = TOP_EARLGREY_RV_CORE_IBEX_CFG_BASE_ADDR };
375 // Setting rv_core_ibex.SW_FATAL_ERR (rw0c) to any value other than
376 // `kMultiBitBool4False` will continuously cause alert events.
377 abs_mmio_write32(kBase + RV_CORE_IBEX_SW_FATAL_ERR_REG_OFFSET, 0);
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700378}
379
380SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_keymgr_kill(void)) {
381 enum {
382 kBase = TOP_EARLGREY_KEYMGR_BASE_ADDR,
383 };
Timothy Chenb8a10932022-01-27 20:47:28 -0800384 uint32_t reg =
385 bitfield_field32_write(0, KEYMGR_CONTROL_SHADOWED_DEST_SEL_FIELD,
386 KEYMGR_CONTROL_SHADOWED_DEST_SEL_VALUE_NONE);
387 reg = bitfield_field32_write(reg, KEYMGR_CONTROL_SHADOWED_OPERATION_FIELD,
388 KEYMGR_CONTROL_SHADOWED_OPERATION_VALUE_DISABLE);
389 abs_mmio_write32_shadowed(kBase + KEYMGR_CONTROL_SHADOWED_REG_OFFSET, reg);
390
391 abs_mmio_write32(kBase + KEYMGR_START_REG_OFFSET, 1);
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700392 abs_mmio_write32(kBase + KEYMGR_SIDELOAD_CLEAR_REG_OFFSET, 1);
393}
394
395SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_flash_kill(void)) {
396 enum { kBase = TOP_EARLGREY_FLASH_CTRL_CORE_BASE_ADDR };
Michael Munday319dbc82021-12-07 15:14:55 +0000397 // Setting DIS (rw0c) to a value other than 5 will disable flash permanently.
398 abs_mmio_write32(kBase + FLASH_CTRL_DIS_REG_OFFSET, 0);
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700399}
400
401SHUTDOWN_FUNC(noreturn, shutdown_hang(void)) {
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -0500402 enum {
403 kSramCtrlBase = TOP_EARLGREY_SRAM_CTRL_MAIN_REGS_BASE_ADDR,
404 kRstmgrBase = TOP_EARLGREY_RSTMGR_AON_BASE_ADDR,
405 };
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700406
407 // Disable SRAM execution and lock the register.
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -0500408 // Note: In addition to this register, which is disabled by default at reset,
409 // SRAM execution is gated by the lifecycle state
410 // (SRAM_CTRL.INSTR.BUS.LC_GATED) and EN_SRAM_IFETCH item in the HW_CFG OTP
411 // partition.
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700412 abs_mmio_write32(kSramCtrlBase + SRAM_CTRL_EXEC_EN_OFFSET, 0);
413 abs_mmio_write32(kSramCtrlBase + SRAM_CTRL_EXEC_REGWEN_REG_OFFSET, 0);
414
415 // Switch to assembly as RAM (incl. stack) is about to get scrambled.
416#ifdef OT_PLATFORM_RV32
417 while (true) {
418 asm volatile(
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -0500419 "1:"
420 // Request a new scrambling key.
421 "sw %[kSramRenewKey], %[kSramCtrlCtrlReg](%[kSramCtrlBase]);"
422 // Request a system reset.
423 "sw %[kMultiBitBool4True], %[kRstmgrResetReqReg](%[kRstmgrBase]);"
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700424
425 // TODO(lowRISC/opentitan#7148): restrict the ePMP such that only
426 // ROM may execute. mundaym's suggestion: set entry 2 as a NAPOT
427 // region covering the entire address space, clear all its permission
428 // bits and set the lock bit, and then finally disable RLB to prevent
429 // any further modifications.
430
431 // Generate a halt-maze.
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700432 "wfi; wfi; wfi; wfi; j 1b;"
433 "wfi; wfi; j 1b;"
434 "wfi; j 1b;"
435 "wfi;"
436 :
Alphan Ulusoy159b6bb2022-02-09 10:51:07 -0500437 : [kSramRenewKey] "r"(1 << SRAM_CTRL_CTRL_RENEW_SCR_KEY_BIT),
438 [kSramCtrlCtrlReg] "I"(SRAM_CTRL_CTRL_REG_OFFSET),
439 [kSramCtrlBase] "r"(kSramCtrlBase),
440 [kMultiBitBool4True] "r"(kMultiBitBool4True),
441 [kRstmgrBase] "r"(kRstmgrBase),
442 [kRstmgrResetReqReg] "I"(RSTMGR_RESET_REQ_REG_OFFSET));
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700443 }
444#endif
445}
446
Michael Munday292606a2021-09-17 11:09:53 +0100447#ifndef OT_OFF_TARGET_TEST
448/**
449 * The shutdown_finalize function goes into the .shutdown section which is
450 * placed by the linker script after all other executable code.
451 */
452__attribute__((section(".shutdown")))
453#endif
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700454void shutdown_finalize(rom_error_t reason) {
Michael Munday23c2cae2021-09-10 13:55:42 +0100455 shutdown_report_error(reason);
Chris Frantz84c3a4e2021-05-27 15:59:13 -0700456 shutdown_software_escalate();
457 shutdown_keymgr_kill();
458 shutdown_flash_kill();
459 // If we get here, we'll wait for the watchdog to reset the chip.
460 shutdown_hang();
461}