mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 06:46:59 +00:00
Merge branch 'master' of git://git.denx.de/u-boot-blackfin
This commit is contained in:
commit
e149128874
1 changed files with 8 additions and 1 deletions
|
@ -46,12 +46,19 @@
|
|||
# define L1_DATA_B_SRAM_SIZE 0
|
||||
#endif
|
||||
|
||||
/* The 0xC offset is so we don't clobber the tiny LDR jump block. */
|
||||
#ifdef CONFIG_BFIN_BOOTROM_USES_EVT1
|
||||
# define L1_CODE_ORIGIN L1_INST_SRAM
|
||||
#else
|
||||
# define L1_CODE_ORIGIN L1_INST_SRAM + 0xC
|
||||
#endif
|
||||
|
||||
OUTPUT_ARCH(bfin)
|
||||
|
||||
MEMORY
|
||||
{
|
||||
ram : ORIGIN = CONFIG_SYS_MONITOR_BASE, LENGTH = CONFIG_SYS_MONITOR_LEN
|
||||
l1_code : ORIGIN = L1_INST_SRAM, LENGTH = L1_INST_SRAM_SIZE
|
||||
l1_code : ORIGIN = L1_CODE_ORIGIN, LENGTH = L1_INST_SRAM_SIZE
|
||||
l1_data : ORIGIN = L1_DATA_B_SRAM, LENGTH = L1_DATA_B_SRAM_SIZE
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue