Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 1 | // 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 Ulusoy | 971bb82 | 2022-02-10 10:17:17 -0500 | [diff] [blame] | 9 | #include "sw/device/lib/arch/device.h" |
Jade Philipoom | 94cdcea | 2022-01-27 09:17:47 +0000 | [diff] [blame] | 10 | #include "sw/device/lib/base/abs_mmio.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 11 | #include "sw/device/lib/base/bitfield.h" |
Alphan Ulusoy | 971bb82 | 2022-02-10 10:17:17 -0500 | [diff] [blame] | 12 | #include "sw/device/lib/base/csr.h" |
Alphan Ulusoy | 91ceb76 | 2022-02-01 14:48:07 -0500 | [diff] [blame] | 13 | #include "sw/device/lib/base/hardened.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 14 | #include "sw/device/lib/base/macros.h" |
| 15 | #include "sw/device/lib/base/memory.h" |
Alphan Ulusoy | 159b6bb | 2022-02-09 10:51:07 -0500 | [diff] [blame] | 16 | #include "sw/device/lib/base/multibits.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 17 | #include "sw/device/lib/base/stdasm.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 18 | #include "sw/device/silicon_creator/lib/drivers/alert.h" |
| 19 | #include "sw/device/silicon_creator/lib/drivers/lifecycle.h" |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 20 | #include "sw/device/silicon_creator/lib/drivers/otp.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 21 | |
| 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 Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 26 | #include "lc_ctrl_regs.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 27 | #include "otp_ctrl_regs.h" |
Alphan Ulusoy | 159b6bb | 2022-02-09 10:51:07 -0500 | [diff] [blame] | 28 | #include "rstmgr_regs.h" |
Alphan Ulusoy | 6968f4f | 2022-01-17 10:03:10 -0500 | [diff] [blame] | 29 | #include "rv_core_ibex_regs.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 30 | #include "sram_ctrl_regs.h" |
Alphan Ulusoy | 971bb82 | 2022-02-10 10:17:17 -0500 | [diff] [blame] | 31 | #include "uart_regs.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 32 | |
Michael Schaffner | 1a5d53a | 2021-06-03 17:44:17 -0700 | [diff] [blame] | 33 | static_assert(ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT <= |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 34 | OTP_CTRL_PARAM_ROM_ALERT_CLASSIFICATION_SIZE / 4, |
| 35 | "More alerts than alert classification OTP words!"); |
Michael Munday | 7434fc2 | 2021-09-14 11:34:32 +0100 | [diff] [blame] | 36 | static_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 Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 39 | |
| 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 Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 57 | // 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. |
| 60 | static 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 | |
| 75 | rom_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 Ulusoy | 91ceb76 | 2022-02-01 14:48:07 -0500 | [diff] [blame] | 78 | switch (launder32(lc_state)) { |
Alphan Ulusoy | 7bb5715 | 2022-01-26 16:25:56 -0500 | [diff] [blame] | 79 | case kLcStateTest: |
Alphan Ulusoy | 91ceb76 | 2022-02-01 14:48:07 -0500 | [diff] [blame] | 80 | HARDENED_CHECK_EQ(lc_state, kLcStateTest); |
Michael Munday | 0c97281 | 2021-09-14 13:53:06 +0100 | [diff] [blame] | 81 | // Don't configure alerts during manufacturing as OTP may not have been |
| 82 | // programmed yet. |
| 83 | return kErrorOk; |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 84 | case kLcStateProd: |
Alphan Ulusoy | 91ceb76 | 2022-02-01 14:48:07 -0500 | [diff] [blame] | 85 | HARDENED_CHECK_EQ(lc_state, kLcStateProd); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 86 | lc_shift = 0; |
| 87 | break; |
| 88 | case kLcStateProdEnd: |
Alphan Ulusoy | 91ceb76 | 2022-02-01 14:48:07 -0500 | [diff] [blame] | 89 | HARDENED_CHECK_EQ(lc_state, kLcStateProdEnd); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 90 | lc_shift = 8; |
| 91 | break; |
| 92 | case kLcStateDev: |
Alphan Ulusoy | 91ceb76 | 2022-02-01 14:48:07 -0500 | [diff] [blame] | 93 | HARDENED_CHECK_EQ(lc_state, kLcStateDev); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 94 | lc_shift = 16; |
| 95 | break; |
| 96 | case kLcStateRma: |
Alphan Ulusoy | 91ceb76 | 2022-02-01 14:48:07 -0500 | [diff] [blame] | 97 | HARDENED_CHECK_EQ(lc_state, kLcStateRma); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 98 | lc_shift = 24; |
| 99 | break; |
| 100 | default: |
Alphan Ulusoy | 91ceb76 | 2022-02-01 14:48:07 -0500 | [diff] [blame] | 101 | HARDENED_UNREACHABLE(); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 102 | } |
| 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 Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 107 | size_t i = 0; |
| 108 | rom_error_t error = kErrorOk; |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 109 | 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 Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 114 | for (i = 0; launder32(i) < ALERT_CLASSES; ++i) { |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 115 | 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 Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 120 | if (i != ALERT_CLASSES) { |
| 121 | error = kErrorUnknown; |
| 122 | } |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 123 | |
| 124 | // For each alert, read its corresponding OTP word and extract the class |
| 125 | // configuration for the current lifecycle state. |
Alphan Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 126 | for (i = 0; launder32(i) < ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT; |
Michael Schaffner | 1a5d53a | 2021-06-03 17:44:17 -0700 | [diff] [blame] | 127 | ++i) { |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 128 | 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 Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 139 | if (i != ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT) { |
| 140 | error = kErrorUnknown; |
| 141 | } |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 142 | |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 143 | // For each local alert, read its corresponding OTP word and extract the class |
| 144 | // configuration for the current lifecycle state. |
Alphan Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 145 | for (i = 0; |
| 146 | launder32(i) < ALERT_HANDLER_LOC_ALERT_CLASS_SHADOWED_MULTIREG_COUNT; |
Michael Munday | 7434fc2 | 2021-09-14 11:34:32 +0100 | [diff] [blame] | 147 | ++i) { |
Michael Munday | 32cc6a7 | 2021-09-30 13:55:53 +0100 | [diff] [blame] | 148 | uint32_t value = |
| 149 | otp_read32(OTP_CTRL_PARAM_ROM_LOCAL_ALERT_CLASSIFICATION_OFFSET + |
| 150 | i * sizeof(uint32_t)); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 151 | 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 Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 160 | if (i != ALERT_HANDLER_LOC_ALERT_CLASS_SHADOWED_MULTIREG_COUNT) { |
| 161 | error = kErrorUnknown; |
| 162 | } |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 163 | |
| 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 Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 172 | for (i = 0; launder32(i) < ALERT_CLASSES; ++i) { |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 173 | 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 Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 179 | size_t phase = 0; |
| 180 | for (; launder32(phase) < ARRAYSIZE(config.phase_cycles); ++phase) { |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 181 | 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 Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 185 | if (phase != ARRAYSIZE(config.phase_cycles)) { |
| 186 | error = kErrorUnknown; |
| 187 | } |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 188 | |
| 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 Ulusoy | 54ce3f8 | 2022-02-10 14:36:51 -0500 | [diff] [blame^] | 196 | if (i != ALERT_CLASSES) { |
| 197 | error = kErrorUnknown; |
| 198 | } |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 199 | return error; |
| 200 | } |
| 201 | |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 202 | /** |
| 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 | */ |
| 207 | static ALWAYS_INLINE uint32_t |
| 208 | shutdown_redact_inline(rom_error_t reason, shutdown_error_redact_t severity) { |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 209 | 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 Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 230 | uint32_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 | */ |
| 239 | static ALWAYS_INLINE shutdown_error_redact_t |
Miguel Osorio | 7791411 | 2022-02-08 10:06:49 -0800 | [diff] [blame] | 240 | shutdown_redact_policy_inline(uint32_t raw_state) { |
Alphan Ulusoy | 7bb5715 | 2022-01-26 16:25:56 -0500 | [diff] [blame] | 241 | 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 Munday | a76b48d | 2021-11-23 14:41:44 +0000 | [diff] [blame] | 251 | // No error redaction in TEST_UNLOCKED and RMA states. |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 252 | return kShutdownErrorRedactNone; |
Alphan Ulusoy | 7bb5715 | 2022-01-26 16:25:56 -0500 | [diff] [blame] | 253 | 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 Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 256 | // 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 | |
| 267 | shutdown_error_redact_t shutdown_redact_policy(void) { |
Miguel Osorio | 7791411 | 2022-02-08 10:06:49 -0800 | [diff] [blame] | 268 | // 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 Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 278 | } |
| 279 | |
Alphan Ulusoy | 971bb82 | 2022-02-10 10:17:17 -0500 | [diff] [blame] | 280 | enum { |
| 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 | */ |
| 311 | static 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 Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 331 | SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_report_error(rom_error_t reason)) { |
Miguel Osorio | 7791411 | 2022-02-08 10:06:49 -0800 | [diff] [blame] | 332 | 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 Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 337 | // Call the inline variant of `shutdown_redact_policy` because we want to |
| 338 | // guarantee that we won't jump to a different function. |
Miguel Osorio | 7791411 | 2022-02-08 10:06:49 -0800 | [diff] [blame] | 339 | shutdown_error_redact_t policy = shutdown_redact_policy_inline(raw_state); |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 340 | |
| 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 Ulusoy | 971bb82 | 2022-02-10 10:17:17 -0500 | [diff] [blame] | 345 | // 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 Osorio | 7791411 | 2022-02-08 10:06:49 -0800 | [diff] [blame] | 351 | |
Alphan Ulusoy | 971bb82 | 2022-02-10 10:17:17 -0500 | [diff] [blame] | 352 | // 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 Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 371 | } |
| 372 | |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 373 | SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_software_escalate(void)) { |
Alphan Ulusoy | 6968f4f | 2022-01-17 10:03:10 -0500 | [diff] [blame] | 374 | 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 Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_keymgr_kill(void)) { |
| 381 | enum { |
| 382 | kBase = TOP_EARLGREY_KEYMGR_BASE_ADDR, |
| 383 | }; |
Timothy Chen | b8a1093 | 2022-01-27 20:47:28 -0800 | [diff] [blame] | 384 | 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 Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 392 | abs_mmio_write32(kBase + KEYMGR_SIDELOAD_CLEAR_REG_OFFSET, 1); |
| 393 | } |
| 394 | |
| 395 | SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_flash_kill(void)) { |
| 396 | enum { kBase = TOP_EARLGREY_FLASH_CTRL_CORE_BASE_ADDR }; |
Michael Munday | 319dbc8 | 2021-12-07 15:14:55 +0000 | [diff] [blame] | 397 | // 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 Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | SHUTDOWN_FUNC(noreturn, shutdown_hang(void)) { |
Alphan Ulusoy | 159b6bb | 2022-02-09 10:51:07 -0500 | [diff] [blame] | 402 | enum { |
| 403 | kSramCtrlBase = TOP_EARLGREY_SRAM_CTRL_MAIN_REGS_BASE_ADDR, |
| 404 | kRstmgrBase = TOP_EARLGREY_RSTMGR_AON_BASE_ADDR, |
| 405 | }; |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 406 | |
| 407 | // Disable SRAM execution and lock the register. |
Alphan Ulusoy | 159b6bb | 2022-02-09 10:51:07 -0500 | [diff] [blame] | 408 | // 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 Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 412 | 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 Ulusoy | 159b6bb | 2022-02-09 10:51:07 -0500 | [diff] [blame] | 419 | "1:" |
| 420 | // Request a new scrambling key. |
| 421 | "sw %[kSramRenewKey], %[kSramCtrlCtrlReg](%[kSramCtrlBase]);" |
| 422 | // Request a system reset. |
| 423 | "sw %[kMultiBitBool4True], %[kRstmgrResetReqReg](%[kRstmgrBase]);" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 424 | |
| 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 Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 432 | "wfi; wfi; wfi; wfi; j 1b;" |
| 433 | "wfi; wfi; j 1b;" |
| 434 | "wfi; j 1b;" |
| 435 | "wfi;" |
| 436 | : |
Alphan Ulusoy | 159b6bb | 2022-02-09 10:51:07 -0500 | [diff] [blame] | 437 | : [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 Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 443 | } |
| 444 | #endif |
| 445 | } |
| 446 | |
Michael Munday | 292606a | 2021-09-17 11:09:53 +0100 | [diff] [blame] | 447 | #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 Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 454 | void shutdown_finalize(rom_error_t reason) { |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 455 | shutdown_report_error(reason); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 456 | 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 | } |