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 | |
| 9 | #include "sw/device/lib/base/bitfield.h" |
| 10 | #include "sw/device/lib/base/macros.h" |
| 11 | #include "sw/device/lib/base/memory.h" |
| 12 | #include "sw/device/lib/base/stdasm.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 13 | #include "sw/device/silicon_creator/lib/base/abs_mmio.h" |
| 14 | #include "sw/device/silicon_creator/lib/drivers/alert.h" |
| 15 | #include "sw/device/silicon_creator/lib/drivers/lifecycle.h" |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 16 | #include "sw/device/silicon_creator/lib/drivers/otp.h" |
Michael Munday | 435f5cd | 2021-10-13 21:45:54 +0100 | [diff] [blame] | 17 | #include "sw/device/silicon_creator/lib/log.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 18 | |
| 19 | #include "alert_handler_regs.h" |
| 20 | #include "flash_ctrl_regs.h" |
| 21 | #include "hw/top_earlgrey/sw/autogen/top_earlgrey.h" |
| 22 | #include "keymgr_regs.h" |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 23 | #include "lc_ctrl_regs.h" |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 24 | #include "otp_ctrl_regs.h" |
| 25 | #include "sram_ctrl_regs.h" |
| 26 | |
Michael Schaffner | 1a5d53a | 2021-06-03 17:44:17 -0700 | [diff] [blame] | 27 | static_assert(ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT <= |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 28 | OTP_CTRL_PARAM_ROM_ALERT_CLASSIFICATION_SIZE / 4, |
| 29 | "More alerts than alert classification OTP words!"); |
Michael Munday | 7434fc2 | 2021-09-14 11:34:32 +0100 | [diff] [blame] | 30 | static_assert(ALERT_HANDLER_LOC_ALERT_CLASS_SHADOWED_MULTIREG_COUNT <= |
| 31 | OTP_CTRL_PARAM_ROM_LOCAL_ALERT_CLASSIFICATION_SIZE / 4, |
| 32 | "More local alerts than local alert classification OTP words!"); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 33 | |
| 34 | #define NO_MODIFIERS |
| 35 | |
| 36 | #ifdef OT_OFF_TARGET_TEST |
| 37 | // If we're building as a unit test, rename the shutdown functions so they |
| 38 | // can be mocked and/or tested individually. |
| 39 | // The unmodified function name will be declared as `extern` so the test |
| 40 | // program can supply its own implementation. The implementation present |
| 41 | // in this file will be named `unmocked_${name}` so the test program can |
| 42 | // invoke it for testing. |
| 43 | #define SHUTDOWN_FUNC(modifiers_, name_) \ |
| 44 | extern void name_; \ |
| 45 | void unmocked_##name_ |
| 46 | #else |
| 47 | #define SHUTDOWN_FUNC(modifiers_, name_) \ |
| 48 | static ALWAYS_INLINE modifiers_ void name_ |
| 49 | #endif |
| 50 | |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 51 | // Convert the alert class to an index. |
| 52 | // This is required because I expect to change the constant definitions in |
| 53 | // alert_class_t to have reasonable hamming distances. |
| 54 | static size_t clsindex(alert_class_t cls) { |
| 55 | switch (cls) { |
| 56 | case kAlertClassA: |
| 57 | return 0; |
| 58 | case kAlertClassB: |
| 59 | return 1; |
| 60 | case kAlertClassC: |
| 61 | return 2; |
| 62 | case kAlertClassD: |
| 63 | return 3; |
| 64 | default: |
| 65 | return 0; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | rom_error_t shutdown_init(lifecycle_state_t lc_state) { |
| 70 | // Are we in a lifecycle state which needs alert configuration? |
| 71 | uint32_t lc_shift; |
| 72 | switch (lc_state) { |
Michael Munday | 0c97281 | 2021-09-14 13:53:06 +0100 | [diff] [blame] | 73 | case kLcStateTestUnlocked0: |
| 74 | case kLcStateTestUnlocked1: |
| 75 | case kLcStateTestUnlocked2: |
| 76 | case kLcStateTestUnlocked3: |
| 77 | case kLcStateTestUnlocked4: |
| 78 | case kLcStateTestUnlocked5: |
| 79 | case kLcStateTestUnlocked6: |
| 80 | case kLcStateTestUnlocked7: |
| 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: |
| 85 | lc_shift = 0; |
| 86 | break; |
| 87 | case kLcStateProdEnd: |
| 88 | lc_shift = 8; |
| 89 | break; |
| 90 | case kLcStateDev: |
| 91 | lc_shift = 16; |
| 92 | break; |
| 93 | case kLcStateRma: |
| 94 | lc_shift = 24; |
| 95 | break; |
| 96 | default: |
Michael Munday | 0c97281 | 2021-09-14 13:53:06 +0100 | [diff] [blame] | 97 | // Invalid lifecycle state. |
| 98 | shutdown_finalize(kErrorShutdownBadLcState); |
| 99 | |
| 100 | // Reachable if using a mock implementation of `shutdown_finalize`. |
| 101 | return kErrorShutdownBadLcState; |
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). |
| 107 | uint32_t class_enable = otp_read32(OTP_CTRL_PARAM_ROM_ALERT_CLASS_EN_OFFSET); |
| 108 | uint32_t class_escalate = |
| 109 | otp_read32(OTP_CTRL_PARAM_ROM_ALERT_ESCALATION_OFFSET); |
| 110 | alert_enable_t enable[ALERT_CLASSES]; |
| 111 | alert_escalate_t escalate[ALERT_CLASSES]; |
| 112 | for (size_t i = 0; i < ALERT_CLASSES; ++i) { |
| 113 | enable[i] = (alert_enable_t)bitfield_field32_read( |
| 114 | class_enable, (bitfield_field32_t){.mask = 0xff, .index = i * 8}); |
| 115 | escalate[i] = (alert_escalate_t)bitfield_field32_read( |
| 116 | class_escalate, (bitfield_field32_t){.mask = 0xff, .index = i * 8}); |
| 117 | } |
| 118 | |
| 119 | // For each alert, read its corresponding OTP word and extract the class |
| 120 | // configuration for the current lifecycle state. |
| 121 | rom_error_t error = kErrorOk; |
Michael Schaffner | 1a5d53a | 2021-06-03 17:44:17 -0700 | [diff] [blame] | 122 | for (size_t i = 0; i < ALERT_HANDLER_ALERT_CLASS_SHADOWED_MULTIREG_COUNT; |
| 123 | ++i) { |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 124 | uint32_t value = otp_read32(OTP_CTRL_PARAM_ROM_ALERT_CLASSIFICATION_OFFSET + |
| 125 | i * sizeof(uint32_t)); |
| 126 | alert_class_t cls = (alert_class_t)bitfield_field32_read( |
| 127 | value, (bitfield_field32_t){.mask = 0xff, .index = lc_shift}); |
| 128 | rom_error_t e = alert_configure(i, cls, enable[clsindex(cls)]); |
| 129 | if (e != kErrorOk) { |
| 130 | // Keep going if there is an error programming one alert. We want to |
| 131 | // program them all. |
| 132 | error = e; |
| 133 | } |
| 134 | } |
| 135 | |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 136 | // For each local alert, read its corresponding OTP word and extract the class |
| 137 | // configuration for the current lifecycle state. |
Michael Munday | 7434fc2 | 2021-09-14 11:34:32 +0100 | [diff] [blame] | 138 | for (size_t i = 0; i < ALERT_HANDLER_LOC_ALERT_CLASS_SHADOWED_MULTIREG_COUNT; |
| 139 | ++i) { |
Michael Munday | 32cc6a7 | 2021-09-30 13:55:53 +0100 | [diff] [blame] | 140 | uint32_t value = |
| 141 | otp_read32(OTP_CTRL_PARAM_ROM_LOCAL_ALERT_CLASSIFICATION_OFFSET + |
| 142 | i * sizeof(uint32_t)); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 143 | alert_class_t cls = (alert_class_t)bitfield_field32_read( |
| 144 | value, (bitfield_field32_t){.mask = 0xff, .index = lc_shift}); |
| 145 | rom_error_t e = alert_local_configure(i, cls, enable[clsindex(cls)]); |
| 146 | if (e != kErrorOk) { |
| 147 | // Keep going if there is an error programming one alert. We want to |
| 148 | // program them all. |
| 149 | error = e; |
| 150 | } |
| 151 | } |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 152 | |
| 153 | // For each alert class, configure the various escalation parameters. |
| 154 | const alert_class_t kClasses[] = { |
| 155 | kAlertClassA, |
| 156 | kAlertClassB, |
| 157 | kAlertClassC, |
| 158 | kAlertClassD, |
| 159 | }; |
| 160 | alert_class_config_t config; |
| 161 | for (size_t i = 0; i < ALERT_CLASSES; ++i) { |
| 162 | config.enabled = enable[i]; |
| 163 | config.escalation = escalate[i]; |
| 164 | config.accum_threshold = otp_read32( |
| 165 | OTP_CTRL_PARAM_ROM_ALERT_ACCUM_THRESH_OFFSET + i * sizeof(uint32_t)); |
| 166 | config.timeout_cycles = otp_read32( |
| 167 | OTP_CTRL_PARAM_ROM_ALERT_TIMEOUT_CYCLES_OFFSET + i * sizeof(uint32_t)); |
| 168 | for (size_t phase = 0; phase < ARRAYSIZE(config.phase_cycles); ++phase) { |
| 169 | config.phase_cycles[phase] = otp_read32( |
| 170 | OTP_CTRL_PARAM_ROM_ALERT_PHASE_CYCLES_OFFSET + |
| 171 | (i * ARRAYSIZE(config.phase_cycles) + phase) * sizeof(uint32_t)); |
| 172 | } |
| 173 | |
| 174 | rom_error_t e = alert_class_configure(kClasses[i], &config); |
| 175 | if (e != kErrorOk) { |
| 176 | // Keep going if there is an error programming an alert class. We want to |
| 177 | // program them all. |
| 178 | error = e; |
| 179 | } |
| 180 | } |
| 181 | return error; |
| 182 | } |
| 183 | |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 184 | /** |
| 185 | * Implementation of `shutdown_redact` that is guaranteed to be inlined. |
| 186 | * |
| 187 | * This function must be inlined because it is called from `shutdown_finalize`. |
| 188 | */ |
| 189 | static ALWAYS_INLINE uint32_t |
| 190 | shutdown_redact_inline(rom_error_t reason, shutdown_error_redact_t severity) { |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 191 | uint32_t redacted = (uint32_t)reason; |
| 192 | if (reason == kErrorOk) { |
| 193 | return 0; |
| 194 | } |
| 195 | switch (severity) { |
| 196 | case kShutdownErrorRedactModule: |
| 197 | redacted = bitfield_field32_write(redacted, ROM_ERROR_FIELD_MODULE, 0); |
| 198 | FALLTHROUGH_INTENDED; |
| 199 | case kShutdownErrorRedactError: |
| 200 | redacted = bitfield_field32_write(redacted, ROM_ERROR_FIELD_ERROR, 0); |
| 201 | FALLTHROUGH_INTENDED; |
| 202 | case kShutdownErrorRedactNone: |
| 203 | break; |
| 204 | case kShutdownErrorRedactAll: |
| 205 | FALLTHROUGH_INTENDED; |
| 206 | default: |
| 207 | redacted = kErrorUnknown; |
| 208 | } |
| 209 | return redacted; |
| 210 | } |
| 211 | |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 212 | uint32_t shutdown_redact(rom_error_t reason, shutdown_error_redact_t severity) { |
| 213 | return shutdown_redact_inline(reason, severity); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Implementation of `shutdown_redact_policy` that is guaranteed to be inlined. |
| 218 | * |
| 219 | * This function must be inlined because it is called from `shutdown_finalize`. |
| 220 | */ |
| 221 | static ALWAYS_INLINE shutdown_error_redact_t |
| 222 | shutdown_redact_policy_inline(void) { |
| 223 | // Determine the error code redaction policy to apply according to the |
| 224 | // lifecycle state and OTP configuration. |
| 225 | // |
| 226 | // Note that we cannot use the lifecycle or OTP libraries since an error |
| 227 | // may trigger a call to `shutdown_finalize`. |
| 228 | lifecycle_state_t lc_state = (lifecycle_state_t)bitfield_field32_read( |
| 229 | abs_mmio_read32(TOP_EARLGREY_LC_CTRL_BASE_ADDR + |
| 230 | LC_CTRL_LC_STATE_REG_OFFSET), |
| 231 | LC_CTRL_LC_STATE_STATE_FIELD); |
| 232 | switch (lc_state) { |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 233 | case kLcStateTestUnlocked0: |
| 234 | case kLcStateTestUnlocked1: |
| 235 | case kLcStateTestUnlocked2: |
| 236 | case kLcStateTestUnlocked3: |
| 237 | case kLcStateTestUnlocked4: |
| 238 | case kLcStateTestUnlocked5: |
| 239 | case kLcStateTestUnlocked6: |
| 240 | case kLcStateTestUnlocked7: |
| 241 | case kLcStateRma: |
Michael Munday | a76b48d | 2021-11-23 14:41:44 +0000 | [diff] [blame] | 242 | // No error redaction in TEST_UNLOCKED and RMA states. |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 243 | return kShutdownErrorRedactNone; |
| 244 | case kLcStateProd: |
| 245 | case kLcStateProdEnd: |
| 246 | case kLcStateDev: |
| 247 | // In production states use the redaction level specified in OTP. |
| 248 | return (shutdown_error_redact_t)abs_mmio_read32( |
| 249 | TOP_EARLGREY_OTP_CTRL_CORE_BASE_ADDR + |
| 250 | OTP_CTRL_SW_CFG_WINDOW_REG_OFFSET + |
| 251 | OTP_CTRL_PARAM_ROM_ERROR_REPORTING_OFFSET); |
| 252 | default: |
| 253 | // Redact everything if in an unexpected lifecycle state. |
| 254 | return kShutdownErrorRedactAll; |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | shutdown_error_redact_t shutdown_redact_policy(void) { |
| 259 | return shutdown_redact_policy_inline(); |
| 260 | } |
| 261 | |
| 262 | SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_report_error(rom_error_t reason)) { |
| 263 | // Call the inline variant of `shutdown_redact_policy` because we want to |
| 264 | // guarantee that we won't jump to a different function. |
| 265 | shutdown_error_redact_t policy = shutdown_redact_policy_inline(); |
| 266 | |
| 267 | // Call the inline variant of `shutdown_redact` because we want to guarantee |
| 268 | // that we won't jump to a different function. |
| 269 | uint32_t redacted_error = shutdown_redact_inline(reason, policy); |
| 270 | |
Michael Munday | 435f5cd | 2021-10-13 21:45:54 +0100 | [diff] [blame] | 271 | // TODO(lowRISC/opentitan#8236): log_printf is in the .text section. |
| 272 | log_printf("boot_fault: 0x%x\n", (unsigned int)redacted_error); |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 273 | } |
| 274 | |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 275 | SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_software_escalate(void)) { |
| 276 | // TODO(lowRISC/opentitan#7148): Use a software alert when available. |
| 277 | // For now, signal a fatal_intg_error from SRAM. |
Michael Schaffner | 4e7114e | 2021-07-02 17:57:11 -0700 | [diff] [blame] | 278 | enum { kBase = TOP_EARLGREY_SRAM_CTRL_MAIN_REGS_BASE_ADDR }; |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 279 | abs_mmio_write32(kBase + SRAM_CTRL_ALERT_TEST_REG_OFFSET, 1); |
| 280 | } |
| 281 | |
| 282 | SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_keymgr_kill(void)) { |
| 283 | enum { |
| 284 | kBase = TOP_EARLGREY_KEYMGR_BASE_ADDR, |
| 285 | }; |
| 286 | uint32_t reg = bitfield_bit32_write(0, KEYMGR_CONTROL_START_BIT, true); |
| 287 | reg = bitfield_field32_write(reg, KEYMGR_CONTROL_DEST_SEL_FIELD, |
| 288 | KEYMGR_CONTROL_DEST_SEL_VALUE_NONE); |
| 289 | reg = bitfield_field32_write(reg, KEYMGR_CONTROL_OPERATION_FIELD, |
| 290 | KEYMGR_CONTROL_OPERATION_VALUE_DISABLE); |
| 291 | abs_mmio_write32(kBase + KEYMGR_CONTROL_REG_OFFSET, reg); |
| 292 | abs_mmio_write32(kBase + KEYMGR_SIDELOAD_CLEAR_REG_OFFSET, 1); |
| 293 | } |
| 294 | |
| 295 | SHUTDOWN_FUNC(NO_MODIFIERS, shutdown_flash_kill(void)) { |
| 296 | enum { kBase = TOP_EARLGREY_FLASH_CTRL_CORE_BASE_ADDR }; |
Michael Munday | 319dbc8 | 2021-12-07 15:14:55 +0000 | [diff] [blame^] | 297 | // Setting DIS (rw0c) to a value other than 5 will disable flash permanently. |
| 298 | abs_mmio_write32(kBase + FLASH_CTRL_DIS_REG_OFFSET, 0); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | SHUTDOWN_FUNC(noreturn, shutdown_hang(void)) { |
Michael Schaffner | 4e7114e | 2021-07-02 17:57:11 -0700 | [diff] [blame] | 302 | enum { kSramCtrlBase = TOP_EARLGREY_SRAM_CTRL_MAIN_REGS_BASE_ADDR }; |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 303 | |
| 304 | // Disable SRAM execution and lock the register. |
| 305 | abs_mmio_write32(kSramCtrlBase + SRAM_CTRL_EXEC_EN_OFFSET, 0); |
| 306 | abs_mmio_write32(kSramCtrlBase + SRAM_CTRL_EXEC_REGWEN_REG_OFFSET, 0); |
| 307 | |
| 308 | // Switch to assembly as RAM (incl. stack) is about to get scrambled. |
| 309 | #ifdef OT_PLATFORM_RV32 |
| 310 | while (true) { |
| 311 | asm volatile( |
| 312 | // Request a new scrambling key, then lock the SRAM control register. |
| 313 | "sw %[kRenewKey], %[kCtrlOffset](%[kMainRamCtrlBase]);" |
| 314 | "sw zero, %[kRegWriteEn](%[kMainRamCtrlBase]);" |
| 315 | |
| 316 | // TODO(lowRISC/opentitan#7148): restrict the ePMP such that only |
| 317 | // ROM may execute. mundaym's suggestion: set entry 2 as a NAPOT |
| 318 | // region covering the entire address space, clear all its permission |
| 319 | // bits and set the lock bit, and then finally disable RLB to prevent |
| 320 | // any further modifications. |
| 321 | |
| 322 | // Generate a halt-maze. |
| 323 | "1:" |
| 324 | "wfi; wfi; wfi; wfi; j 1b;" |
| 325 | "wfi; wfi; j 1b;" |
| 326 | "wfi; j 1b;" |
| 327 | "wfi;" |
| 328 | : |
| 329 | : [kRenewKey] "r"(1 << SRAM_CTRL_CTRL_RENEW_SCR_KEY_BIT), |
| 330 | [kCtrlOffset] "I"(SRAM_CTRL_CTRL_REG_OFFSET), |
| 331 | [kMainRamCtrlBase] "r"(kSramCtrlBase), |
| 332 | [kRegWriteEn] "I"(SRAM_CTRL_CTRL_REGWEN_REG_OFFSET)); |
| 333 | } |
| 334 | #endif |
| 335 | } |
| 336 | |
Michael Munday | 292606a | 2021-09-17 11:09:53 +0100 | [diff] [blame] | 337 | #ifndef OT_OFF_TARGET_TEST |
| 338 | /** |
| 339 | * The shutdown_finalize function goes into the .shutdown section which is |
| 340 | * placed by the linker script after all other executable code. |
| 341 | */ |
| 342 | __attribute__((section(".shutdown"))) |
| 343 | #endif |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 344 | void shutdown_finalize(rom_error_t reason) { |
Michael Munday | 23c2cae | 2021-09-10 13:55:42 +0100 | [diff] [blame] | 345 | shutdown_report_error(reason); |
Chris Frantz | 84c3a4e | 2021-05-27 15:59:13 -0700 | [diff] [blame] | 346 | shutdown_software_escalate(); |
| 347 | shutdown_keymgr_kill(); |
| 348 | shutdown_flash_kill(); |
| 349 | // If we get here, we'll wait for the watchdog to reset the chip. |
| 350 | shutdown_hang(); |
| 351 | } |