blob: f4c2d81044addd5b1a6446940c29d39e49b95450 [file] [log] [blame]
wdenk39f0e5f2002-08-14 20:30:46 +00001#
2# (C) Copyright 2000-2002
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
wdenk39f0e5f2002-08-14 20:30:46 +00006#
7
Masahiro Yamada9b6e2c32014-02-28 14:33:30 +09008ifeq ($(CROSS_COMPILE),)
9CROSS_COMPILE := arm-linux-
10endif
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -040011
Wolfgang Denk8ae86b72011-02-04 14:25:17 +010012ifndef CONFIG_STANDALONE_LOAD_ADDR
Lokesh Vutla806d2792013-07-30 11:36:30 +053013ifneq ($(CONFIG_OMAP_COMMON),)
Wolfgang Denk8ae86b72011-02-04 14:25:17 +010014CONFIG_STANDALONE_LOAD_ADDR = 0x80300000
Mike Frysinger262ae0a2009-09-03 23:12:47 -040015else
Wolfgang Denk8ae86b72011-02-04 14:25:17 +010016CONFIG_STANDALONE_LOAD_ADDR = 0xc100000
Mike Frysinger262ae0a2009-09-03 23:12:47 -040017endif
18endif
19
Tom Rinifd725692013-04-25 07:40:22 +000020LDFLAGS_FINAL += --gc-sections
Masahiro Yamada31022742013-09-07 17:42:37 +090021PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections \
David Feng0ae76532013-12-14 11:47:35 +080022 -fno-common -ffixed-r9
Masahiro Yamadabf1af3d2014-01-15 11:00:45 +090023PLATFORM_RELFLAGS += $(call cc-option, -msoft-float) \
24 $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,))
Tom Rinifd725692013-04-25 07:40:22 +000025
Simon Glass959daa22013-03-11 06:49:57 +000026# Support generic board on ARM
27__HAVE_ARCH_GENERIC_BOARD := y
28
wdenk39f0e5f2002-08-14 20:30:46 +000029PLATFORM_CPPFLAGS += -DCONFIG_ARM -D__ARM__
Jean-Christophe PLAGNIOL-VILLARD10a451c2009-05-08 20:24:12 +020030
Aneesh V5356f542012-03-08 07:20:19 +000031# Choose between ARM/Thumb instruction sets
32ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
33PF_CPPFLAGS_ARM := $(call cc-option, -mthumb -mthumb-interwork,\
34 $(call cc-option,-marm,)\
35 $(call cc-option,-mno-thumb-interwork,)\
36 )
37else
38PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \
39 $(call cc-option,-mno-thumb-interwork,)
40endif
Wolfgang Denkf772acf2009-08-17 13:17:29 +020041
Tom Rini06a119a2012-03-16 06:34:35 +000042# Only test once
43ifneq ($(CONFIG_SPL_BUILD),y)
Masahiro Yamada388b2e52014-03-05 17:49:22 +090044ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
45archprepare: checkthumb
46
47checkthumb:
48 @if test "$(call cc-version)" -lt "0404"; then \
49 echo -n '*** Your GCC does not produce working '; \
50 echo 'binaries in THUMB mode.'; \
51 echo '*** Your board is configured for THUMB mode.'; \
52 false; \
53 fi
54endif
Tom Rini06a119a2012-03-16 06:34:35 +000055endif
56
Wolfgang Denkf772acf2009-08-17 13:17:29 +020057# Try if EABI is supported, else fall back to old API,
58# i. e. for example:
59# - with ELDK 4.2 (EABI supported), use:
Aneesh V5356f542012-03-08 07:20:19 +000060# -mabi=aapcs-linux
Wolfgang Denkf772acf2009-08-17 13:17:29 +020061# - with ELDK 4.1 (gcc 4.x, no EABI), use:
Aneesh V5356f542012-03-08 07:20:19 +000062# -mabi=apcs-gnu
Wolfgang Denkf772acf2009-08-17 13:17:29 +020063# - with ELDK 3.1 (gcc 3.x), use:
Aneesh V5356f542012-03-08 07:20:19 +000064# -mapcs-32
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000065PF_CPPFLAGS_ABI := $(call cc-option,\
Aneesh V5356f542012-03-08 07:20:19 +000066 -mabi=aapcs-linux,\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000067 $(call cc-option,\
68 -mapcs-32,\
Wolfgang Denkf772acf2009-08-17 13:17:29 +020069 $(call cc-option,\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000070 -mabi=apcs-gnu,\
71 )\
Aneesh V5356f542012-03-08 07:20:19 +000072 )\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000073 )
74PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI)
Wolfgang Denkf772acf2009-08-17 13:17:29 +020075
76# For EABI, make sure to provide raise()
77ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
Aneesh V52534182011-07-19 05:51:41 +000078# This file is parsed many times, so the string may get added multiple
79# times. Also, the prefix needs to be different based on whether
80# CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry
81# before adding the correct one.
Masahiro Yamadaa86cf892014-02-27 22:40:34 +090082PLATFORM_LIBS := arch/arm/lib/eabi_compat.o \
83 $(filter-out arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
Wolfgang Denkf772acf2009-08-17 13:17:29 +020084endif
Albert Aribaud92d5ecb2010-10-11 13:13:28 +020085
Albert Aribaud92d5ecb2010-10-11 13:13:28 +020086# needed for relocation
Stefano Babica4594e42011-01-27 06:03:49 +000087LDFLAGS_u-boot += -pie
Allen Martin0f20bb62012-07-18 13:45:53 +000088
89#
90# FIXME: binutils versions < 2.22 have a bug in the assembler where
91# branches to weak symbols can be incorrectly optimized in thumb mode
92# to a short branch (b.n instruction) that won't reach when the symbol
93# gets preempted
94#
95# http://sourceware.org/bugzilla/show_bug.cgi?id=12532
96#
97ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
98ifeq ($(GAS_BUG_12532),)
99export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \
100 then echo y; else echo n; fi)
101endif
102ifeq ($(GAS_BUG_12532),y)
103PLATFORM_RELFLAGS += -fno-optimize-sibling-calls
104endif
105endif
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200106
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200107ifneq ($(CONFIG_SPL_BUILD),y)
Jeroen Hofstee373d7982013-08-24 13:55:38 +0200108# Check that only R_ARM_RELATIVE relocations are generated.
109ALL-y += checkarmreloc
110# The movt / movw can hardcode 16 bit parts of the addresses in the
111# instruction. Relocation is not supported for that case, so disable
112# such usage by requiring word relocations.
113PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200114endif
Albert ARIBAUD47ed5dd2013-11-07 14:21:46 +0100115
116# limit ourselves to the sections we want in the .bin.
David Feng0ae76532013-12-14 11:47:35 +0800117ifdef CONFIG_ARM64
Masahiro Yamada95ddcd62014-02-24 11:12:12 +0900118OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn
David Feng0ae76532013-12-14 11:47:35 +0800119else
Masahiro Yamada95ddcd62014-02-24 11:12:12 +0900120OBJCOPYFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn
David Feng0ae76532013-12-14 11:47:35 +0800121endif
Masahiro Yamada630d2342014-02-24 11:12:21 +0900122
123ifneq ($(CONFIG_IMX_CONFIG),)
124ifdef CONFIG_SPL
125ifndef CONFIG_SPL_BUILD
126ALL-y += SPL
127endif
128else
129ALL-y += u-boot.imx
130endif
131endif