Datasets:
File size: 13,763 Bytes
d39fee6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | // Copyright lowRISC contributors (OpenTitan project).
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
//
// This module implements the escalation timer, which times the four escalation
// phases. There are two mechanisms that can trigger the escalation protocol:
//
// 1) via accum_trigger_i, which will be asserted once the accumulator value
// exceeds a programmable amount of alert occurrences.
//
// 2) via an interrupt timeout, if this is enabled. If this functionality is
// enabled, the internal escalation counter is reused to check whether the
// interrupt times out. If it does time out, the outcome is the same as if
// accum_trigger_i where asserted.
//
// Note that escalation always takes precedence over the interrupt timeout.
//
`include "prim_assert.sv"
module alert_handler_esc_timer import alert_handler_pkg::*; (
input clk_i,
input rst_ni,
input en_i, // enables timeout/escalation
input clr_i, // aborts escalation
input accu_trig_i, // this triggers escalation
input accu_fail_i, // this moves the FSM into a terminal error state
input timeout_en_i, // enables timeout
input [EscCntDw-1:0] timeout_cyc_i, // interrupt timeout. 0 = disabled
input [N_ESC_SEV-1:0] esc_en_i, // escalation signal enables
input [N_ESC_SEV-1:0]
[PHASE_DW-1:0] esc_map_i, // escalation signal / phase map
input [N_PHASES-1:0]
[EscCntDw-1:0] phase_cyc_i, // cycle counts of individual phases
input [PHASE_DW-1:0] crashdump_phase_i, // determines when to assert latch_crashdump_o
output logic latch_crashdump_o, // asserted when entering escalation
output logic esc_trig_o, // asserted if escalation triggers
output logic [EscCntDw-1:0] esc_cnt_o, // current timeout / escalation count
output logic [N_ESC_SEV-1:0] esc_sig_req_o, // escalation signal outputs
// current state output
// 000: idle, 001: irq timeout counting 100: phase0, 101: phase1, 110: phase2, 111: phase3
output cstate_e esc_state_o
);
////////////////////
// Tandem Counter //
////////////////////
// We employ two redundant counters to guard against FI attacks.
// If any of the two is glitched and the two counter states do not agree,
// the FSM below is moved into a terminal error state and escalation actions
// are permanently asserted.
logic cnt_en, cnt_clr, cnt_error;
// SEC_CM: ESC_TIMER.CTR.REDUN
prim_count #(
.Width(EscCntDw),
// The alert handler behaves differently than other comportable IP. I.e., instead of sending out
// an alert signal, this condition is handled internally in the alert handler.
.EnableAlertTriggerSVA(0),
// Pass a parameter to disable coverage for some assertions that are unreachable because
// decr_en_i is tied to zero.
.PossibleActions(prim_count_pkg::Clr |
prim_count_pkg::Set |
prim_count_pkg::Incr)
) u_prim_count (
.clk_i,
.rst_ni,
.clr_i(cnt_clr && !cnt_en),
.set_i(cnt_clr && cnt_en),
.set_cnt_i(EscCntDw'(1)),
.incr_en_i(cnt_en),
.decr_en_i(1'b0),
.step_i(EscCntDw'(1)),
.commit_i(1'b1),
.cnt_o(esc_cnt_o),
.cnt_after_commit_o(),
.err_o(cnt_error)
);
// threshold test, the thresholds are muxed further below
// depending on the current state
logic cnt_ge;
logic [EscCntDw-1:0] thresh;
assign cnt_ge = (esc_cnt_o >= thresh);
//////////////
// Main FSM //
//////////////
logic [N_PHASES-1:0] phase_oh;
// SEC_CM: ESC_TIMER.FSM.SPARSE
// Encoding generated with:
// $ ./util/design/sparse-fsm-encode.py -d 5 -m 8 -n 10 \
// -s 784905746 --language=sv
//
// Hamming distance histogram:
//
// 0: --
// 1: --
// 2: --
// 3: --
// 4: --
// 5: |||||||||||||||||||| (46.43%)
// 6: |||||||||||||||||||| (46.43%)
// 7: ||| (7.14%)
// 8: --
// 9: --
// 10: --
//
// Minimum Hamming distance: 5
// Maximum Hamming distance: 7
// Minimum Hamming weight: 3
// Maximum Hamming weight: 9
//
localparam int StateWidth = 10;
typedef enum logic [StateWidth-1:0] {
IdleSt = 10'b1011011010,
TimeoutSt = 10'b0000100110,
Phase0St = 10'b1110000101,
Phase1St = 10'b0101010100,
Phase2St = 10'b0000011001,
Phase3St = 10'b1001100001,
TerminalSt = 10'b1101111111,
FsmErrorSt = 10'b0111101000
} state_e;
logic fsm_error;
state_e state_d, state_q;
always_comb begin : p_fsm
// default
state_d = state_q;
esc_state_o = Idle;
cnt_en = 1'b0;
cnt_clr = 1'b0;
esc_trig_o = 1'b0;
phase_oh = '0;
thresh = timeout_cyc_i;
fsm_error = 1'b0;
latch_crashdump_o = 1'b0;
unique case (state_q)
// wait for an escalation trigger or an alert trigger
// the latter will trigger an interrupt timeout
IdleSt: begin
cnt_clr = 1'b1;
esc_state_o = Idle;
if (accu_trig_i && en_i && !clr_i) begin
state_d = Phase0St;
cnt_en = 1'b1;
esc_trig_o = 1'b1;
// the counter is zero in this state. so if the
// timeout count is zero (==disabled), cnt_ge will be true.
end else if (timeout_en_i && !cnt_ge && en_i) begin
cnt_en = 1'b1;
state_d = TimeoutSt;
end
end
// we are in interrupt timeout state
// in case an escalation comes in, we immediately have to
// switch over to the first escalation phase.
// in case the interrupt timeout hits it's cycle count, we
// also enter escalation phase0.
// ongoing timeouts can always be cleared.
TimeoutSt: begin
esc_state_o = Timeout;
if ((accu_trig_i && en_i && !clr_i) || (cnt_ge && timeout_en_i)) begin
state_d = Phase0St;
cnt_en = 1'b1;
cnt_clr = 1'b1;
esc_trig_o = 1'b1;
// the timeout enable is connected to the irq state
// if that is cleared, stop the timeout counter
end else if (timeout_en_i) begin
cnt_en = 1'b1;
end else begin
state_d = IdleSt;
cnt_clr = 1'b1;
end
end
// note: autolocking the clear signal is done in the regfile
Phase0St: begin
cnt_en = 1'b1;
phase_oh[0] = 1'b1;
thresh = phase_cyc_i[0];
esc_state_o = Phase0;
latch_crashdump_o = (crashdump_phase_i == 2'b00);
if (clr_i) begin
state_d = IdleSt;
cnt_clr = 1'b1;
cnt_en = 1'b0;
end else if (cnt_ge) begin
state_d = Phase1St;
cnt_clr = 1'b1;
cnt_en = 1'b1;
end
end
Phase1St: begin
cnt_en = 1'b1;
phase_oh[1] = 1'b1;
thresh = phase_cyc_i[1];
esc_state_o = Phase1;
latch_crashdump_o = (crashdump_phase_i == 2'b01);
if (clr_i) begin
state_d = IdleSt;
cnt_clr = 1'b1;
cnt_en = 1'b0;
end else if (cnt_ge) begin
state_d = Phase2St;
cnt_clr = 1'b1;
cnt_en = 1'b1;
end
end
Phase2St: begin
cnt_en = 1'b1;
phase_oh[2] = 1'b1;
thresh = phase_cyc_i[2];
esc_state_o = Phase2;
latch_crashdump_o = (crashdump_phase_i == 2'b10);
if (clr_i) begin
state_d = IdleSt;
cnt_clr = 1'b1;
cnt_en = 1'b0;
end else if (cnt_ge) begin
state_d = Phase3St;
cnt_clr = 1'b1;
end
end
Phase3St: begin
cnt_en = 1'b1;
phase_oh[3] = 1'b1;
thresh = phase_cyc_i[3];
esc_state_o = Phase3;
latch_crashdump_o = (crashdump_phase_i == 2'b11);
if (clr_i) begin
state_d = IdleSt;
cnt_clr = 1'b1;
cnt_en = 1'b0;
end else if (cnt_ge) begin
state_d = TerminalSt;
cnt_clr = 1'b1;
cnt_en = 1'b0;
end
end
// final, terminal state after escalation.
// if clr is locked down, only a system reset
// will get us out of this state
TerminalSt: begin
cnt_clr = 1'b1;
esc_state_o = Terminal;
if (clr_i) begin
state_d = IdleSt;
end
end
// error state, only reached if the FSM has been
// glitched. in this state, we trigger all escalation
// actions at once.
FsmErrorSt: begin
esc_state_o = FsmError;
fsm_error = 1'b1;
end
// SEC_CM: ESC_TIMER.FSM.LOCAL_ESC
// catch glitches.
default: begin
state_d = FsmErrorSt;
esc_state_o = FsmError;
fsm_error = 1'b1;
end
endcase
// SEC_CM: ESC_TIMER.FSM.LOCAL_ESC
// if any of the duplicate counter pairs has an inconsistent state
// we move into the terminal FSM error state.
if (accu_fail_i || cnt_error) begin
state_d = FsmErrorSt;
fsm_error = 1'b1;
end
end
logic [N_ESC_SEV-1:0][N_PHASES-1:0] esc_map_oh;
for (genvar k = 0; k < N_ESC_SEV; k++) begin : gen_phase_map
// generate configuration mask for escalation enable signals
assign esc_map_oh[k] = N_ESC_SEV'(esc_en_i[k]) << esc_map_i[k];
// mask reduce current phase state vector
// SEC_CM: ESC_TIMER.FSM.GLOBAL_ESC
assign esc_sig_req_o[k] = |(esc_map_oh[k] & phase_oh) | fsm_error;
end
///////////////////
// FSM Registers //
///////////////////
// The alert handler behaves differently than other comportable IP. I.e., instead of sending out
// an alert signal, this condition is handled internally in the alert handler. The
// EnableAlertTriggerSVA parameter is therefore set to 0.
`PRIM_FLOP_SPARSE_FSM(u_state_regs, state_d, state_q, state_e, IdleSt, clk_i, rst_ni, 0)
////////////////
// Assertions //
////////////////
// a clear should always bring us back to idle
`ASSERT(CheckClr_A,
!accu_fail_i &&
clr_i &&
!(state_q inside {IdleSt, TimeoutSt, FsmErrorSt})
|=>
state_q == IdleSt)
// if currently in idle and not enabled, must remain here
`ASSERT(CheckEn_A,
!accu_fail_i &&
state_q == IdleSt &&
!en_i
|=>
state_q == IdleSt)
// Check if accumulation trigger correctly captured
`ASSERT(CheckAccumTrig0_A,
!accu_fail_i &&
accu_trig_i &&
state_q == IdleSt &&
en_i &&
!clr_i
|=>
state_q == Phase0St)
`ASSERT(CheckAccumTrig1_A,
!accu_fail_i &&
accu_trig_i &&
state_q == TimeoutSt &&
en_i &&
!clr_i
|=>
state_q == Phase0St)
// Check if timeout correctly captured
`ASSERT(CheckTimeout0_A,
!accu_fail_i &&
state_q == IdleSt &&
timeout_en_i &&
en_i &&
timeout_cyc_i != 0 &&
!accu_trig_i
|=>
state_q == TimeoutSt)
`ASSERT(CheckTimeoutSt1_A,
!accu_fail_i &&
state_q == TimeoutSt &&
timeout_en_i &&
esc_cnt_o < timeout_cyc_i &&
!accu_trig_i
|=>
state_q == TimeoutSt)
`ASSERT(CheckTimeoutSt2_A,
!accu_fail_i &&
state_q == TimeoutSt &&
!timeout_en_i &&
!accu_trig_i
|=>
state_q == IdleSt)
// Check if timeout correctly triggers escalation
`ASSERT(CheckTimeoutStTrig_A,
!accu_fail_i &&
state_q == TimeoutSt &&
timeout_en_i &&
esc_cnt_o == timeout_cyc_i
|=>
state_q == Phase0St)
// Check whether escalation phases are correctly switched
`ASSERT(CheckPhase0_A,
!accu_fail_i &&
state_q == Phase0St &&
!clr_i &&
esc_cnt_o >= phase_cyc_i[0]
|=>
state_q == Phase1St)
`ASSERT(CheckPhase1_A,
!accu_fail_i &&
state_q == Phase1St &&
!clr_i &&
esc_cnt_o >= phase_cyc_i[1]
|=>
state_q == Phase2St)
`ASSERT(CheckPhase2_A,
!accu_fail_i &&
state_q == Phase2St &&
!clr_i &&
esc_cnt_o >= phase_cyc_i[2]
|=>
state_q == Phase3St)
`ASSERT(CheckPhase3_A,
!accu_fail_i &&
state_q == Phase3St &&
!clr_i &&
esc_cnt_o >= phase_cyc_i[3]
|=>
state_q == TerminalSt)
`ASSERT(AccuFailToFsmError_A,
accu_fail_i
|=>
state_q == FsmErrorSt)
`ASSERT(ErrorStIsTerminal_A,
state_q == FsmErrorSt
|=>
state_q == FsmErrorSt)
`ASSERT(ErrorStAllEscAsserted_A,
state_q == FsmErrorSt
|->
esc_sig_req_o == '1)
`ifdef INC_ASSERT
// Check that our internal FSM matches the state index that we're exposing with esc_state_o. The
// StateEncodings parameter does the mapping to match. (Practically speaking, this is just adding
// "St" to each name so e.g. Idle gets mapped to IdleSt).
parameter logic [StateWidth-1:0] StateEncodings [8] = '{IdleSt,
TimeoutSt,
FsmErrorSt,
TerminalSt,
Phase0St,
Phase1St,
Phase2St,
Phase3St};
`ASSERT(EscStateOut_A, state_q == StateEncodings[esc_state_o])
`endif
endmodule : alert_handler_esc_timer
|