-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
60 additions
and
24 deletions.
There are no files selected for viewing
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
Submodule linux
updated
11534 files
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,44 @@ | ||
diff --git firmware/fw_base.ldS firmware/fw_base.ldS | ||
index 0ac75f2..9aa9c1a 100644 | ||
--- firmware/fw_base.ldS | ||
+++ firmware/fw_base.ldS | ||
@@ -79,3 +79,39 @@ | ||
. = ALIGN(0x1000); /* Need this to create proper sections */ | ||
|
||
PROVIDE(_fw_end = .); | ||
+ | ||
+ * # Sanctum params */ | ||
+ /* ================ */ | ||
+ . = 0x801ff000; /* the last page before the payload */ | ||
+ | ||
+ /* ## manufacturer_keys : */ | ||
+ | ||
+ /* 32 Bytes : manufacturer public key */ | ||
+ PROVIDE( sanctum_m_public_key = . ); | ||
+ . += 0x20; | ||
+ | ||
+ /* 32 Bytes : device public key */ | ||
+ PROVIDE( sanctum_dev_public_key = . ); | ||
+ . += 0x20; | ||
+ | ||
+ /* 64 Bytes : device secret key */ | ||
+ PROVIDE( sanctum_dev_secret_key = . ); | ||
+ . += 0x40; | ||
+ | ||
+ /* ## security_monitor_keys : */ | ||
+ | ||
+ /* 64 Bytes : security monitor hash */ | ||
+ PROVIDE( sanctum_sm_hash = . ); | ||
+ . += 0x40; | ||
+ | ||
+ /* 32 Bytes : security monitor public key */ | ||
+ PROVIDE( sanctum_sm_public_key = . ); | ||
+ . += 0x20; | ||
+ | ||
+ /* 64 Bytes : security monitor secret key */ | ||
+ PROVIDE( sanctum_sm_secret_key = . ); | ||
+ . += 0x40; | ||
+ | ||
+ /* 64 Bytes : security monitor's signature by device */ | ||
+ PROVIDE( sanctum_sm_signature = . ); | ||
+ . += 0x40; |
Submodule sdk
updated
10 files