-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Arthur Heymans <[email protected]>
- Loading branch information
1 parent
ab2d5cc
commit cfe728d
Showing
12 changed files
with
157 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// Licensed under the Apache-2.0 license | ||
|
||
use caliptra_api::mailbox::{CommandId, MailboxReqHeader, ManufDebugUnlockTokenReq}; | ||
use caliptra_api::SocManager; | ||
use caliptra_builder::firmware::ROM_WITH_UART; | ||
use caliptra_hw_model::{DbgManufServiceRegReq, DeviceLifecycle, HwModel, SecurityState}; | ||
use zerocopy::AsBytes; | ||
|
||
#[test] | ||
fn test_dbg_unlock_manuf() { | ||
let security_state = *SecurityState::default() | ||
.set_debug_locked(true) | ||
.set_device_lifecycle(DeviceLifecycle::Manufacturing); | ||
|
||
let dbg_manuf_service = *DbgManufServiceRegReq::default().set_manuf_dbg_unlock_req(true); | ||
|
||
let rom = caliptra_builder::build_firmware_rom(&ROM_WITH_UART).unwrap(); | ||
|
||
let mut hw = caliptra_hw_model::new( | ||
caliptra_hw_model::InitParams { | ||
rom: &rom, | ||
security_state, | ||
dbg_manuf_service, | ||
debug_intent: true, | ||
..Default::default() | ||
}, | ||
caliptra_hw_model::BootParams::default(), | ||
) | ||
.unwrap(); | ||
|
||
let token = ManufDebugUnlockTokenReq { | ||
token: caliptra_hw_model_types::DEFAULT_MANUF_DEBUG_UNLOCK_TOKEN | ||
.as_bytes() | ||
.try_into() | ||
.unwrap(), | ||
..Default::default() | ||
}; | ||
let checksum = caliptra_common::checksum::calc_checksum( | ||
u32::from(CommandId::MANUF_DEBUG_UNLOCK_REQ_TOKEN), | ||
&token.as_bytes()[4..], | ||
); | ||
let token = ManufDebugUnlockTokenReq { | ||
hdr: MailboxReqHeader { chksum: checksum }, | ||
..token | ||
}; | ||
hw.mailbox_execute( | ||
CommandId::MANUF_DEBUG_UNLOCK_REQ_TOKEN.into(), | ||
token.as_bytes(), | ||
) | ||
.unwrap(); | ||
|
||
hw.step_until(|m| { | ||
let resp = m.soc_ifc().ss_dbg_manuf_service_reg_rsp().read(); | ||
resp.manuf_dbg_unlock_success() | ||
}); | ||
} | ||
|
||
// [TODO][CAP2] write unit test for production |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters