Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions sw/device/tests/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -1000,6 +1000,8 @@ opentitan_test(
DARJEELING_TEST_ENVS,
{
"//hw/top_earlgrey:fpga_cw310_sival": None,
"//hw/top_earlgrey:fpga_cw340_sival": None,
"//hw/top_earlgrey:fpga_cw340_sival_rom_ext": None,
"//hw/top_earlgrey:silicon_creator": None,
},
),
Expand Down
3 changes: 2 additions & 1 deletion sw/device/tests/clkmgr_off_trans_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ static clock_error_info_t info[kTestTransCount];
* Send CSR access to aes, expecting to timeout.
*/
OT_NOINLINE void aes_csr_access(void) {
CHECK_DIF_OK(dif_aes_alert_force(&aes, kDifAesAlertRecovCtrlUpdateErr));
bool status;
CHECK_DIF_OK(dif_aes_get_status(&aes, kDifAesStatusIdle, &status));
}

OT_NOINLINE static void hmac_csr_access(void) {
Expand Down
Loading