Skip to content
Merged
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
3 changes: 1 addition & 2 deletions hw/ip/kmac/dv/env/kmac_env_cov.sv
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,7 @@ class kmac_env_cov extends cip_base_env_cov #(.CFG_T(kmac_env_cfg));
kmac_err_code: coverpoint kmac_err {
ignore_bins ignore = {kmac_pkg::ErrNone};
// Covered by direct sequence, if scb enabled for those seq, can remove it from this list.
illegal_bins il = {kmac_pkg::ErrShadowRegUpdate,
kmac_pkg::ErrWaitTimerExpired,
illegal_bins il = {kmac_pkg::ErrWaitTimerExpired,
kmac_pkg::ErrIncorrectEntropyMode,
kmac_pkg::ErrSwHashingWithoutEntropyReady};
}
Expand Down
3 changes: 0 additions & 3 deletions hw/ip/kmac/rtl/kmac_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -456,9 +456,6 @@ package kmac_pkg;
// - Sw issues KMAC op without Entropy setting.
ErrSwHashingWithoutEntropyReady = 8'h 09,

// Error Shadow register update
ErrShadowRegUpdate = 8'h C0,

// Error due to lc_escalation_en_i or fatal fault
ErrFatalError = 8'h C1,

Expand Down
2 changes: 0 additions & 2 deletions sw/device/lib/dif/dif_kmac.h
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,6 @@ typedef enum dif_kmac_error {

kDifErrorSoftwareHashingWithoutEntropyReady = 9,

kDifErrorShadowRegisterUpdate = 0xC0,

kDifErrorFatalError = 0xC1,

kDifErrorPackerIntegrity = 0xC2,
Expand Down
1 change: 0 additions & 1 deletion sw/device/lib/dif/dif_kmac_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,6 @@ class KmacGetErrorTest : public KmacTest {
kDifErrorIncorrectFunctionName,
kDifErrorSoftwareCommandSequence,
kDifErrorSoftwareHashingWithoutEntropyReady,
kDifErrorShadowRegisterUpdate,
kDifErrorFatalError,
kDifErrorPackerIntegrity,
kDifErrorMsgFifoIntegrity,
Expand Down
Loading