Skip to content

Commit

Permalink
Reduce reserved memory size by 4K
Browse files Browse the repository at this point in the history
  • Loading branch information
clundin25 committed Oct 28, 2024
1 parent 3f6de25 commit 851aa39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/src/memory_layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub const DPE_ORG: u32 = 0x50005400;
pub const PCR_RESET_COUNTER_ORG: u32 = 0x50006800;
pub const AUTH_MAN_IMAGE_METADATA_LIST_ORG: u32 = 0x50006C00;
pub const RESERVED_MEMORY_ORG: u32 = 0x50007000;
pub const DATA_ORG: u32 = 0x50012000;
pub const DATA_ORG: u32 = 0x50011000;

pub const STACK_ORG: u32 = 0x5001A000;
pub const ROM_STACK_ORG: u32 = 0x5001C000;
Expand Down Expand Up @@ -73,7 +73,7 @@ pub const FUSE_LOG_SIZE: u32 = 1024;
pub const DPE_SIZE: u32 = 5 * 1024;
pub const PCR_RESET_COUNTER_SIZE: u32 = 1024;
pub const AUTH_MAN_IMAGE_METADATA_LIST_MAX_SIZE: u32 = 1024;
pub const RESERVED_MEMORY_SIZE: u32 = 44 * 1024;
pub const RESERVED_MEMORY_SIZE: u32 = 40 * 1024;
pub const DATA_SIZE: u32 = 32 * 1024;
pub const STACK_SIZE: u32 = 22 * 1024;
pub const ROM_STACK_SIZE: u32 = 14 * 1024;
Expand Down

0 comments on commit 851aa39

Please sign in to comment.