]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/config.mk
kbuild: consolidate PLATFORM_LIBS
[people/ms/u-boot.git] / arch / arm / config.mk
CommitLineData
39f0e5f8
WD
1#
2# (C) Copyright 2000-2002
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
39f0e5f8
WD
6#
7
1ea6bcd8
MF
8CROSS_COMPILE ?= arm-linux-
9
8ae86b76 10ifndef CONFIG_STANDALONE_LOAD_ADDR
806d2792 11ifneq ($(CONFIG_OMAP_COMMON),)
8ae86b76 12CONFIG_STANDALONE_LOAD_ADDR = 0x80300000
262ae0a6 13else
8ae86b76 14CONFIG_STANDALONE_LOAD_ADDR = 0xc100000
262ae0a6
MF
15endif
16endif
17
fd725691 18LDFLAGS_FINAL += --gc-sections
3102274d 19PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections \
0ae76531 20 -fno-common -ffixed-r9
bf1af3d8
MY
21PLATFORM_RELFLAGS += $(call cc-option, -msoft-float) \
22 $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,))
fd725691 23
959daa21
SG
24# Support generic board on ARM
25__HAVE_ARCH_GENERIC_BOARD := y
26
39f0e5f8 27PLATFORM_CPPFLAGS += -DCONFIG_ARM -D__ARM__
10a451cd 28
5356f545
A
29# Choose between ARM/Thumb instruction sets
30ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
31PF_CPPFLAGS_ARM := $(call cc-option, -mthumb -mthumb-interwork,\
32 $(call cc-option,-marm,)\
33 $(call cc-option,-mno-thumb-interwork,)\
34 )
35else
36PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \
37 $(call cc-option,-mno-thumb-interwork,)
38endif
f772acf8 39
06a119a0
TR
40# Only test once
41ifneq ($(CONFIG_SPL_BUILD),y)
42ALL-$(CONFIG_SYS_THUMB_BUILD) += checkthumb
43endif
44
f772acf8
WD
45# Try if EABI is supported, else fall back to old API,
46# i. e. for example:
47# - with ELDK 4.2 (EABI supported), use:
5356f545 48# -mabi=aapcs-linux
f772acf8 49# - with ELDK 4.1 (gcc 4.x, no EABI), use:
5356f545 50# -mabi=apcs-gnu
f772acf8 51# - with ELDK 3.1 (gcc 3.x), use:
5356f545 52# -mapcs-32
cca4e4ae 53PF_CPPFLAGS_ABI := $(call cc-option,\
5356f545 54 -mabi=aapcs-linux,\
cca4e4ae
WD
55 $(call cc-option,\
56 -mapcs-32,\
f772acf8 57 $(call cc-option,\
cca4e4ae
WD
58 -mabi=apcs-gnu,\
59 )\
5356f545 60 )\
cca4e4ae
WD
61 )
62PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI)
f772acf8
WD
63
64# For EABI, make sure to provide raise()
65ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
5253418a
A
66# This file is parsed many times, so the string may get added multiple
67# times. Also, the prefix needs to be different based on whether
68# CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry
69# before adding the correct one.
a86cf89c
MY
70PLATFORM_LIBS := arch/arm/lib/eabi_compat.o \
71 $(filter-out arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
f772acf8 72endif
92d5ecba 73
92d5ecba 74# needed for relocation
a4594e41 75LDFLAGS_u-boot += -pie
0f20bb60
AM
76
77#
78# FIXME: binutils versions < 2.22 have a bug in the assembler where
79# branches to weak symbols can be incorrectly optimized in thumb mode
80# to a short branch (b.n instruction) that won't reach when the symbol
81# gets preempted
82#
83# http://sourceware.org/bugzilla/show_bug.cgi?id=12532
84#
85ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
86ifeq ($(GAS_BUG_12532),)
87export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \
88 then echo y; else echo n; fi)
89endif
90ifeq ($(GAS_BUG_12532),y)
91PLATFORM_RELFLAGS += -fno-optimize-sibling-calls
92endif
93endif
c37980c3 94
c37980c3 95ifneq ($(CONFIG_SPL_BUILD),y)
373d7983
JH
96# Check that only R_ARM_RELATIVE relocations are generated.
97ALL-y += checkarmreloc
98# The movt / movw can hardcode 16 bit parts of the addresses in the
99# instruction. Relocation is not supported for that case, so disable
100# such usage by requiring word relocations.
101PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
c37980c3 102endif
47ed5dd0
AA
103
104# limit ourselves to the sections we want in the .bin.
0ae76531 105ifdef CONFIG_ARM64
95ddcd68 106OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn
0ae76531 107else
95ddcd68 108OBJCOPYFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn
0ae76531 109endif
630d2345
MY
110
111ifneq ($(CONFIG_IMX_CONFIG),)
112ifdef CONFIG_SPL
113ifndef CONFIG_SPL_BUILD
114ALL-y += SPL
115endif
116else
117ALL-y += u-boot.imx
118endif
119endif