]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/config.mk
1db80be3546c8c2913f444935034303f0ac29b32
[karo-tx-uboot.git] / arch / arm / config.mk
1 #
2 # (C) Copyright 2000-2002
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 CROSS_COMPILE ?= arm-linux-
9
10 ifndef CONFIG_STANDALONE_LOAD_ADDR
11 ifneq ($(CONFIG_OMAP_COMMON),)
12 CONFIG_STANDALONE_LOAD_ADDR = 0x80300000
13 else
14 CONFIG_STANDALONE_LOAD_ADDR = 0xc100000
15 endif
16 endif
17
18 LDFLAGS_FINAL += --gc-sections
19 PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections \
20                      -fno-common -ffixed-r9
21 PLATFORM_RELFLAGS += $(call cc-option, -msoft-float) \
22       $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,))
23
24 # Support generic board on ARM
25 __HAVE_ARCH_GENERIC_BOARD := y
26
27 PLATFORM_CPPFLAGS += -DCONFIG_ARM -D__ARM__
28
29 # Choose between ARM/Thumb instruction sets
30 ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
31 PF_CPPFLAGS_ARM := $(call cc-option, -mthumb -mthumb-interwork,\
32                         $(call cc-option,-marm,)\
33                         $(call cc-option,-mno-thumb-interwork,)\
34                 )
35 else
36 PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \
37                 $(call cc-option,-mno-thumb-interwork,)
38 endif
39
40 # Only test once
41 ifneq ($(CONFIG_SPL_BUILD),y)
42 ALL-$(CONFIG_SYS_THUMB_BUILD)   += checkthumb
43 endif
44
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:
48 #       -mabi=aapcs-linux
49 # - with ELDK 4.1 (gcc 4.x, no EABI), use:
50 #       -mabi=apcs-gnu
51 # - with ELDK 3.1 (gcc 3.x), use:
52 #       -mapcs-32
53 PF_CPPFLAGS_ABI := $(call cc-option,\
54                         -mabi=aapcs-linux,\
55                         $(call cc-option,\
56                                 -mapcs-32,\
57                                 $(call cc-option,\
58                                         -mabi=apcs-gnu,\
59                                 )\
60                         )\
61                 )
62 PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI)
63
64 # For EABI, make sure to provide raise()
65 ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
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.
70 PLATFORM_LIBS := arch/arm/lib/eabi_compat.o \
71         $(filter-out arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
72 endif
73
74 # needed for relocation
75 LDFLAGS_u-boot += -pie
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 #
85 ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
86 ifeq ($(GAS_BUG_12532),)
87 export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \
88         then echo y; else echo n; fi)
89 endif
90 ifeq ($(GAS_BUG_12532),y)
91 PLATFORM_RELFLAGS += -fno-optimize-sibling-calls
92 endif
93 endif
94
95 ifneq ($(CONFIG_SPL_BUILD),y)
96 # Check that only R_ARM_RELATIVE relocations are generated.
97 ALL-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.
101 PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
102 endif
103
104 # limit ourselves to the sections we want in the .bin.
105 ifdef CONFIG_ARM64
106 OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn
107 else
108 OBJCOPYFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn
109 endif
110
111 ifneq ($(CONFIG_IMX_CONFIG),)
112 ifdef CONFIG_SPL
113 ifndef CONFIG_SPL_BUILD
114 ALL-y += SPL
115 endif
116 else
117 ALL-y += u-boot.imx
118 endif
119 endif