SAMA5 Boards: When running from SDRAM, a 32KB offset is needed by the bootloader

This commit is contained in:
Gregory Nutt
2014-03-30 10:24:31 -06:00
parent 8068bc46b1
commit 33f57c6df2
2 changed files with 10 additions and 8 deletions
+5 -4
View File
@@ -33,9 +33,10 @@
*
****************************************************************************/
/* The SAMA5D36 has 128 KB of ISRAM beginning at virtual address 0x0030:0000.
* This memory configuration, however, loads into the 256 MB SDRAM on board
* the SAMA5D3-Xplained which lies at 0x2000:0000
/* The SAMA5D3 has 128 KB of ISRAM beginning at virtual address 0x0030:0000.
* This memory configuration, however, loads into the 256MB SDRAM on board
* the SAMA5D3 Xplained which lies at 0x2000:0000. An offset 0x00008000 is
* reserved by the bootloader.
*
* Vectors in low memory are assumed and 16KB of ISRAM is reserved at the
* high end of ISRAM for the page table.
@@ -44,7 +45,7 @@
MEMORY
{
isram (W!RX) : ORIGIN = 0x300000, LENGTH = 128K - 16K
sdram (W!RX) : ORIGIN = 0x20000000, LENGTH = 256M
sdram (W!RX) : ORIGIN = 0x20008000, LENGTH = 256M - 32K
}
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")