-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial support for LS1028A. Booting into OCRAM app. #306
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
71b782b
Initial support for LS1028A. Booting into OCRAM app.
billphipps 6f613df
Update to add verbose unsealing during wolfboot
billphipps fc41632
Initial support for LS1028A. Booting into OCRAM app.
billphipps b64ee37
Update to add verbose unsealing during wolfboot
billphipps File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,65 @@ | ||
ARCH=AARCH64 | ||
TARGET=nxp_ls1028a | ||
SIGN?=ECC256 | ||
HASH?=SHA256 | ||
DEBUG?=1 | ||
DEBUG_UART?=1 | ||
VTOR?=0 | ||
CORTEX_M0?=0 | ||
NO_ASM?=0 | ||
EXT_FLASH?=1 | ||
SPI_FLASH?=0 | ||
## Force app to be copied into ram | ||
NO_XIP?=1 | ||
UART_FLASH?=0 | ||
ALLOW_DOWNGRADE?=0 | ||
NVM_FLASH_WRITEONCE?=0 | ||
WOLFBOOT_VERSION?=0 | ||
V?=0 | ||
NO_MPU?=0 | ||
SPMATH?=1 | ||
RAM_CODE?=0 | ||
DUALBANK_SWAP?=0 | ||
PKA?=0 | ||
|
||
WOLFTPM?=1 | ||
|
||
MEASURED_BOOT?=0 | ||
MEASURED_PCR_A?=3 | ||
|
||
WOLFBOOT_TPM_KEYSTORE?=1 | ||
WOLFBOOT_TPM_KEYSTORE_NV_INDEX?=25166336 | ||
WOLFBOOT_TPM_POLICY_NV_INDEX?=25166337 | ||
WOLFBOOT_TPM_PCR_INDEX?=16 | ||
|
||
# NOR Base Address | ||
ARCH_FLASH_OFFSET?=0x20000000 | ||
|
||
# Flash Sector Size (128 KB) | ||
WOLFBOOT_SECTOR_SIZE=0x20000 | ||
|
||
# wolfBoot start address | ||
WOLFBOOT_ORIGIN=0x20020000 | ||
|
||
# wolfBoot partition size | ||
BOOTLOADER_PARTITION_SIZE=0x20000 | ||
|
||
# Application Partition size | ||
WOLFBOOT_PARTITION_SIZE?=0x20000 | ||
|
||
# Location in Flash for Application Partition | ||
WOLFBOOT_PARTITION_BOOT_ADDRESS?=0x20040000 | ||
|
||
# Load Partition to RAM Address | ||
WOLFBOOT_LOAD_ADDRESS?=0x18020100 | ||
|
||
# Location in Flash for Update Partition | ||
WOLFBOOT_PARTITION_UPDATE_ADDRESS?=0x20060000 | ||
|
||
# Location of temporary sector used during updates | ||
WOLFBOOT_PARTITION_SWAP_ADDRESS?=0x20080000 | ||
|
||
# DTS (Device Tree) | ||
WOLFBOOT_LOAD_DTS_ADDRESS?=0x80000000 | ||
WOLFBOOT_DTS_BOOT_ADDRESS?=0x20F00000 | ||
WOLFBOOT_DTS_UPDATE_ADDRESS?=0x20F00000 |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move up one line to sort with other NXP targets.