Skip to content

Commit

Permalink
Set PL0 PAUSER to 1 for test image bundles
Browse files Browse the repository at this point in the history
HwModel currently defaults to setting the caller to be PAUSER 1 in all
cases.

Set the PL0 PAUSER to 1 so that DPE can be fully tested with this
configuration. Some DPE features are only available to the PL0 PAUSER.
  • Loading branch information
jhand2 committed Oct 11, 2023
1 parent 3a0f877 commit 9f365d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ hw-latest/fpga/caliptra_build/
hw-latest/fpga/build_fpga.log
hw-latest/fpga/vivado*.jou
hw-latest/fpga/vivado*.log

# libcaliptra build artifacts
libcaliptra/libcaliptra.a
2 changes: 1 addition & 1 deletion image/fake-keys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ pub const VENDOR_CONFIG_KEY_0: ImageGeneratorVendorConfig = ImageGeneratorVendor
priv_keys: Some(VENDOR_PRIVATE_KEYS),
not_before: [0u8; 15],
not_after: [0u8; 15],
pl0_pauser: None,
pl0_pauser: Some(0x1),
};

pub const VENDOR_CONFIG_KEY_1: ImageGeneratorVendorConfig = ImageGeneratorVendorConfig {
Expand Down

0 comments on commit 9f365d1

Please sign in to comment.