Skip to content

Commit

Permalink
Adjust wolfBoot linker script and documentation about exception level.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarske committed Aug 27, 2024
1 parent 175aa0b commit 8df8f8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions IDE/XilinxSDK/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ the_ROM_image:
}
```

Note: If using the wolfboot.elf compiled from our makefile use "exception_level=el-3".

From the workspace root:

```sh
Expand Down
3 changes: 2 additions & 1 deletion hal/zynq.ld
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ _EL2_STACK_SIZE = DEFINED(_EL2_STACK_SIZE) ? _EL2_STACK_SIZE : 1024;
/* Define Memories in the system */
MEMORY
{
psu_ddr_0_MEM_0 : ORIGIN = 0x0, LENGTH = 0x7FF00000
psu_ddr_0_MEM_0 : ORIGIN = 0x40000000, LENGTH = 0x100000
/* psu_ddr_0_MEM_0 : ORIGIN = 0x0, LENGTH = 0x7FF00000 */
psu_ddr_1_MEM_0 : ORIGIN = 0x800000000, LENGTH = 0x80000000
psu_ocm_ram_0_MEM_0 : ORIGIN = 0xFFFC0000, LENGTH = 0x40000
psu_qspi_linear_0_MEM_0 : ORIGIN = 0xC0000000, LENGTH = 0x20000000
Expand Down

0 comments on commit 8df8f8e

Please sign in to comment.