mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Make STANDALONE_LOAD_ADDR configurable per board
Rename STANDALONE_LOAD_ADDR into CONFIG_STANDALONE_LOAD_ADDR and allow that the architecture-specific default value gets overwritten by defining the value in the board header file. Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: Mike Frysinger <vapier@gentoo.org> Cc: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> Cc: Daniel Hellstrom <daniel@gaisler.com> Cc: Tsi Chung Liew <tsi-chung.liew@freescale.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
This commit is contained in:
parent
13d72f02ef
commit
8ae86b76c6
13 changed files with 24 additions and 16 deletions
8
README
8
README
|
@ -1997,6 +1997,14 @@ The following options need to be configured:
|
||||||
example, some LED's) on your board. At the moment,
|
example, some LED's) on your board. At the moment,
|
||||||
the following checkpoints are implemented:
|
the following checkpoints are implemented:
|
||||||
|
|
||||||
|
- Standalone program support:
|
||||||
|
CONFIG_STANDALONE_LOAD_ADDR
|
||||||
|
|
||||||
|
This option allows to define board specific values
|
||||||
|
for the address where standalone program gets loaded,
|
||||||
|
thus overwriting the architecutre dependent default
|
||||||
|
settings.
|
||||||
|
|
||||||
Legacy uImage format:
|
Legacy uImage format:
|
||||||
|
|
||||||
Arg Where When
|
Arg Where When
|
||||||
|
|
|
@ -23,13 +23,11 @@
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-linux-
|
CROSS_COMPILE ?= arm-linux-
|
||||||
|
|
||||||
ifeq ($(BOARD),omap2420h4)
|
ifndef CONFIG_STANDALONE_LOAD_ADDR
|
||||||
STANDALONE_LOAD_ADDR = 0x80300000
|
|
||||||
else
|
|
||||||
ifeq ($(SOC),omap3)
|
ifeq ($(SOC),omap3)
|
||||||
STANDALONE_LOAD_ADDR = 0x80300000
|
CONFIG_STANDALONE_LOAD_ADDR = 0x80300000
|
||||||
else
|
else
|
||||||
STANDALONE_LOAD_ADDR = 0xc100000
|
CONFIG_STANDALONE_LOAD_ADDR = 0xc100000
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
CROSS_COMPILE ?= avr32-linux-
|
CROSS_COMPILE ?= avr32-linux-
|
||||||
|
|
||||||
STANDALONE_LOAD_ADDR = 0x00000000
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x00000000
|
||||||
|
|
||||||
PLATFORM_RELFLAGS += -ffixed-r5 -fPIC -mno-init-got -mrelax
|
PLATFORM_RELFLAGS += -ffixed-r5 -fPIC -mno-init-got -mrelax
|
||||||
PLATFORM_LDFLAGS += --relax
|
PLATFORM_LDFLAGS += --relax
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
CROSS_COMPILE ?= bfin-uclinux-
|
CROSS_COMPILE ?= bfin-uclinux-
|
||||||
|
|
||||||
STANDALONE_LOAD_ADDR = 0x1000 -m elf32bfin
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x1000 -m elf32bfin
|
||||||
|
|
||||||
ifeq ($(CONFIG_BFIN_CPU),)
|
ifeq ($(CONFIG_BFIN_CPU),)
|
||||||
CONFIG_BFIN_CPU := \
|
CONFIG_BFIN_CPU := \
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
# MA 02111-1307 USA
|
# MA 02111-1307 USA
|
||||||
#
|
#
|
||||||
|
|
||||||
STANDALONE_LOAD_ADDR = 0x40000
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000
|
||||||
|
|
||||||
PLATFORM_CPPFLAGS += -fno-strict-aliasing
|
PLATFORM_CPPFLAGS += -fno-strict-aliasing
|
||||||
PLATFORM_CPPFLAGS += -Wstrict-prototypes
|
PLATFORM_CPPFLAGS += -Wstrict-prototypes
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
CROSS_COMPILE ?= m68k-elf-
|
CROSS_COMPILE ?= m68k-elf-
|
||||||
|
|
||||||
clibdir = $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
|
clibdir = $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
|
||||||
STANDALONE_LOAD_ADDR = 0x20000 -L $(clibdir)
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x20000 -L $(clibdir)
|
||||||
|
|
||||||
PLATFORM_CPPFLAGS += -DCONFIG_M68K -D__M68K__
|
PLATFORM_CPPFLAGS += -DCONFIG_M68K -D__M68K__
|
||||||
PLATFORM_LDFLAGS += -n
|
PLATFORM_LDFLAGS += -n
|
||||||
|
|
|
@ -26,6 +26,6 @@
|
||||||
|
|
||||||
CROSS_COMPILE ?= mb-
|
CROSS_COMPILE ?= mb-
|
||||||
|
|
||||||
STANDALONE_LOAD_ADDR = 0x80F00000
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x80F00000
|
||||||
|
|
||||||
PLATFORM_CPPFLAGS += -ffixed-r31 -D__microblaze__
|
PLATFORM_CPPFLAGS += -ffixed-r31 -D__microblaze__
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
CROSS_COMPILE ?= mips_4KC-
|
CROSS_COMPILE ?= mips_4KC-
|
||||||
|
|
||||||
STANDALONE_LOAD_ADDR = 0x80200000 -T mips.lds
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000 -T mips.lds
|
||||||
|
|
||||||
PLATFORM_CPPFLAGS += -DCONFIG_MIPS -D__MIPS__
|
PLATFORM_CPPFLAGS += -DCONFIG_MIPS -D__MIPS__
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
CROSS_COMPILE ?= ppc_8xx-
|
CROSS_COMPILE ?= ppc_8xx-
|
||||||
|
|
||||||
STANDALONE_LOAD_ADDR = 0x40000
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000
|
||||||
LDFLAGS_FINAL += --gc-sections
|
LDFLAGS_FINAL += --gc-sections
|
||||||
PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections
|
PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections
|
||||||
PLATFORM_RELFLAGS += $(call cc-option,-msingle-pic-base,)
|
PLATFORM_RELFLAGS += $(call cc-option,-msingle-pic-base,)
|
||||||
|
|
|
@ -23,9 +23,9 @@
|
||||||
|
|
||||||
CROSS_COMPILE ?= sh4-linux-
|
CROSS_COMPILE ?= sh4-linux-
|
||||||
|
|
||||||
STANDALONE_LOAD_ADDR = 0x8C000000
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x8C000000
|
||||||
ifeq ($(CPU),sh2)
|
ifeq ($(CPU),sh2)
|
||||||
STANDALONE_LOAD_ADDR += -EB
|
CONFIG_STANDALONE_LOAD_ADDR += -EB
|
||||||
endif
|
endif
|
||||||
|
|
||||||
PLATFORM_CPPFLAGS += -DCONFIG_SH -D__SH__
|
PLATFORM_CPPFLAGS += -DCONFIG_SH -D__SH__
|
||||||
|
|
|
@ -23,6 +23,6 @@
|
||||||
|
|
||||||
CROSS_COMPILE ?= sparc-elf-
|
CROSS_COMPILE ?= sparc-elf-
|
||||||
|
|
||||||
STANDALONE_LOAD_ADDR = 0x00000000 -L $(gcclibdir) -T sparc.lds
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x00000000 -L $(gcclibdir) -T sparc.lds
|
||||||
|
|
||||||
PLATFORM_CPPFLAGS += -DCONFIG_SPARC -D__sparc__
|
PLATFORM_CPPFLAGS += -DCONFIG_SPARC -D__sparc__
|
||||||
|
|
|
@ -95,7 +95,7 @@ $(LIB): $(obj).depend $(LIBOBJS)
|
||||||
|
|
||||||
$(ELF):
|
$(ELF):
|
||||||
$(obj)%: $(obj)%.o $(LIB)
|
$(obj)%: $(obj)%.o $(LIB)
|
||||||
$(LD) -g -Ttext $(STANDALONE_LOAD_ADDR) \
|
$(LD) -g -Ttext $(CONFIG_STANDALONE_LOAD_ADDR) \
|
||||||
-o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \
|
-o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \
|
||||||
-L$(gcclibdir) -lgcc
|
-L$(gcclibdir) -lgcc
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,8 @@
|
||||||
/*#define CONFIG_APTIX 1 #* define if on APTIX test chip */
|
/*#define CONFIG_APTIX 1 #* define if on APTIX test chip */
|
||||||
/*#define CONFIG_VIRTIO 1 #* Using Virtio simulator */
|
/*#define CONFIG_VIRTIO 1 #* Using Virtio simulator */
|
||||||
|
|
||||||
|
#define CONFIG_STANDALONE_LOAD_ADDR 0x80300000
|
||||||
|
|
||||||
/* Clock config to target*/
|
/* Clock config to target*/
|
||||||
#define PRCM_CONFIG_II 1
|
#define PRCM_CONFIG_II 1
|
||||||
/* #define PRCM_CONFIG_III 1 */
|
/* #define PRCM_CONFIG_III 1 */
|
||||||
|
|
Loading…
Reference in a new issue