mirror of https://github.com/wolfSSL/wolfBoot.git
72 lines
1.6 KiB
Plaintext
72 lines
1.6 KiB
Plaintext
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = @WOLFBOOT_ORIGIN@, LENGTH = @BOOTLOADER_PARTITION_SIZE@ - 0x20000
|
|
RAM (rwx) : ORIGIN = 0x30000000, LENGTH = 0x30000
|
|
RAM_KV (rw): ORIGIN = 0x30020000, LENGTH = 0x10000
|
|
RAM_HEAP (rw): ORIGIN = 0x30030000, LENGTH = 0x10000 /* 64KB Heap for wolfcrypt/PKCS11 */
|
|
FLASH_KEYVAULT(rw): ORIGIN = @WOLFBOOT_ORIGIN@ + 0x20000, LENGTH = 0x18000
|
|
FLASH_NSC(rx): ORIGIN = @WOLFBOOT_ORIGIN@ + 0x38000, LENGTH = 0x8000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
_start_text = .;
|
|
KEEP(*(.isr_vector))
|
|
*(.text*)
|
|
*(.rodata*)
|
|
. = ALIGN(8);
|
|
_end_text = .;
|
|
} > FLASH
|
|
|
|
.edidx :
|
|
{
|
|
. = ALIGN(4);
|
|
*(.ARM.exidx*)
|
|
} > FLASH
|
|
|
|
.gnu.sgstubs :
|
|
{
|
|
. += 0x400;
|
|
. = ALIGN(4);
|
|
*(.gnu.sgstubs*) /* Secure Gateway stubs */
|
|
. = ALIGN(4);
|
|
} >FLASH_NSC
|
|
|
|
_stored_data = .;
|
|
.data : AT (_stored_data)
|
|
{
|
|
_start_data = .;
|
|
KEEP(*(.data*))
|
|
. = ALIGN(8);
|
|
KEEP(*(.ramcode))
|
|
. = ALIGN(8);
|
|
_end_data = .;
|
|
} > RAM
|
|
|
|
.bss (NOLOAD) :
|
|
{
|
|
_start_bss = .;
|
|
__bss_start__ = .;
|
|
*(.bss*)
|
|
*(COMMON)
|
|
. = ALIGN(8);
|
|
_end_bss = .;
|
|
__bss_end__ = .;
|
|
_end = .;
|
|
} > RAM
|
|
. = ALIGN(8);
|
|
}
|
|
|
|
END_STACK = ORIGIN(RAM) + LENGTH(RAM);
|
|
|
|
_keyvault_origin = ORIGIN(RAM_KV);
|
|
_keyvault_size = LENGTH(RAM_KV);
|
|
|
|
_flash_keyvault = ORIGIN(FLASH_KEYVAULT);
|
|
_flash_keyvault_size = LENGTH(FLASH_KEYVAULT);
|
|
|
|
_start_heap = ORIGIN(RAM_HEAP);
|
|
_heap_size = LENGTH(RAM_HEAP);
|