Skip to content

Commit

Permalink
[fix] Plumb MLDSA vendor key revocation fuse (#1875)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhatrevi authored Jan 3, 2025
1 parent e11ed03 commit 001630f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions api/src/soc_mgr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ pub trait SocManager {
self.soc_ifc()
.fuse_lms_revocation()
.write(|_| fuses.fuse_lms_revocation);
self.soc_ifc()
.fuse_mldsa_revocation()
.write(|_| fuses.fuse_mldsa_revocation.into());
self.soc_ifc()
.fuse_soc_stepping_id()
.write(|w| w.soc_stepping_id(fuses.soc_stepping_id.into()));
Expand Down
1 change: 1 addition & 0 deletions hw-model/types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ impl std::fmt::Debug for FusesWrapper {
)
.field("life_cycle", &self.0.life_cycle)
.field("fuse_lms_revocation", &self.0.fuse_lms_revocation)
.field("fuse_mldsa_revocation", &self.0.fuse_mldsa_revocation)
.field("soc_stepping_id", &self.0.soc_stepping_id)
.finish()
}
Expand Down

0 comments on commit 001630f

Please sign in to comment.