Skip to content

Commit

Permalink
[rstmgr, sival] Fix alert_info test on ROM_EXT + FPGA
Browse files Browse the repository at this point in the history
The test generates a kTopEarlgreyAlertIdFlashCtrlFatalErr
alert only on the FPGA and with ROM_EXT. It doesn't happens on
Silicon probrably because it has the seeds.

Signed-off-by: Douglas Reis <[email protected]>
  • Loading branch information
engdoreis committed Apr 30, 2024
1 parent 6c22a0a commit 3779600
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion sw/device/tests/rstmgr_alert_info_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,12 @@ static void init_expected_cause(void) {
.alert_info.alert_cause[kTopEarlgreyAlertIdI2c0FatalFault] = 1;
kExpectedInfo[kRound3]
.alert_info.alert_cause[kTopEarlgreyAlertIdSpiHost0FatalFault] = 1;

if (kBootStage == kBootStageOwner &&
(kDeviceType == kDeviceFpgaCw310 || kDeviceType == kDeviceFpgaCw340)) {
kExpectedInfo[kRound3]
.alert_info.alert_cause[kTopEarlgreyAlertIdFlashCtrlFatalErr] = 1;
}
}
bool test_main(void) {
uint32_t event_idx = 0;
Expand Down Expand Up @@ -805,7 +811,7 @@ bool test_main(void) {
CHECK_DIF_OK(dif_alert_handler_irq_set_enabled(
&alert_handler, kDifAlertHandlerIrqClassb, kDifToggleEnabled));
} else {
LOG_INFO("Skipping OTP test due to ROM_EXT");
LOG_INFO("Skipping OTP test due to ROM_EXT ePMP configuration");
}
CHECK_DIF_OK(dif_alert_handler_irq_set_enabled(
&alert_handler, kDifAlertHandlerIrqClassc, kDifToggleEnabled));
Expand Down

0 comments on commit 3779600

Please sign in to comment.