blob: b448ed0b3ebd441b0e59e4fae319b29e9e8b204b [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
Wolfgang Denk8ae86b72011-02-04 14:25:17 +01008ifndef CONFIG_STANDALONE_LOAD_ADDR
Masahiro Yamadaa93fbf4a2017-04-25 13:10:11 +09009ifneq ($(CONFIG_ARCH_OMAP2PLUS),)
Wolfgang Denk8ae86b72011-02-04 14:25:17 +010010CONFIG_STANDALONE_LOAD_ADDR = 0x80300000
Mike Frysinger262ae0a2009-09-03 23:12:47 -040011else
Wolfgang Denk8ae86b72011-02-04 14:25:17 +010012CONFIG_STANDALONE_LOAD_ADDR = 0xc100000
Mike Frysinger262ae0a2009-09-03 23:12:47 -040013endif
14endif
15
Simon Glassdd46eef2016-11-07 08:47:10 -070016CFLAGS_NON_EFI := -fno-pic -ffixed-r9 -ffunction-sections -fdata-sections
17CFLAGS_EFI := -fpic -fshort-wchar
18
Tom Rinifd725692013-04-25 07:40:22 +000019LDFLAGS_FINAL += --gc-sections
Masahiro Yamada31022742013-09-07 17:42:37 +090020PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections \
David Feng0ae76532013-12-14 11:47:35 +080021 -fno-common -ffixed-r9
Masahiro Yamadabf1af3d2014-01-15 11:00:45 +090022PLATFORM_RELFLAGS += $(call cc-option, -msoft-float) \
23 $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,))
Tom Rinifd725692013-04-25 07:40:22 +000024
Tom Rinib745e822016-03-16 19:55:55 -040025# LLVM support
Tom Rini3b6407b2018-04-22 19:15:03 -040026LLVM_RELFLAGS := $(call cc-option,-mllvm,) \
27 $(call cc-option,-mno-movt,)
Tom Rinib745e822016-03-16 19:55:55 -040028PLATFORM_RELFLAGS += $(LLVM_RELFLAGS)
29
Masahiro Yamada90f984e2014-07-30 14:08:23 +090030PLATFORM_CPPFLAGS += -D__ARM__
Jean-Christophe PLAGNIOL-VILLARD10a451c2009-05-08 20:24:12 +020031
Álvaro Fernández Rojasd57259b2017-04-20 20:36:25 +020032ifdef CONFIG_ARM64
33PLATFORM_ELFFLAGS += -B aarch64 -O elf64-littleaarch64
34else
35PLATFORM_ELFFLAGS += -B arm -O elf32-littlearm
36endif
37
Aneesh V5356f542012-03-08 07:20:19 +000038# Choose between ARM/Thumb instruction sets
Tom Rini3a649402017-03-18 09:01:44 -040039ifeq ($(CONFIG_$(SPL_)SYS_THUMB_BUILD),y)
Stefan Agner75d7a0d2014-12-18 18:10:33 +010040AFLAGS_IMPLICIT_IT := $(call as-option,-Wa$(comma)-mimplicit-it=always)
41PF_CPPFLAGS_ARM := $(AFLAGS_IMPLICIT_IT) \
42 $(call cc-option, -mthumb -mthumb-interwork,\
Aneesh V5356f542012-03-08 07:20:19 +000043 $(call cc-option,-marm,)\
44 $(call cc-option,-mno-thumb-interwork,)\
45 )
46else
47PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \
48 $(call cc-option,-mno-thumb-interwork,)
49endif
Wolfgang Denkf772acf2009-08-17 13:17:29 +020050
Tom Rini06a119a2012-03-16 06:34:35 +000051# Only test once
Tom Rini3a649402017-03-18 09:01:44 -040052ifeq ($(CONFIG_$(SPL_)SYS_THUMB_BUILD),y)
Tom Rinid2366df2017-04-17 09:18:00 -040053archprepare: checkthumb checkgcc6
Masahiro Yamada388b2e52014-03-05 17:49:22 +090054
55checkthumb:
Tom Rini6e2f1532016-01-19 20:39:02 -050056 @if test "$(call cc-name)" = "gcc" -a \
57 "$(call cc-version)" -lt "0404"; then \
Masahiro Yamada388b2e52014-03-05 17:49:22 +090058 echo -n '*** Your GCC does not produce working '; \
59 echo 'binaries in THUMB mode.'; \
60 echo '*** Your board is configured for THUMB mode.'; \
61 false; \
62 fi
Tom Rinid2366df2017-04-17 09:18:00 -040063else
64archprepare: checkgcc6
Masahiro Yamada388b2e52014-03-05 17:49:22 +090065endif
Tom Rini06a119a2012-03-16 06:34:35 +000066
Tom Rinid2366df2017-04-17 09:18:00 -040067checkgcc6:
68 @if test "$(call cc-name)" = "gcc" -a \
69 "$(call cc-version)" -lt "0600"; then \
Tom Rini6b867da2017-12-02 20:11:31 -050070 echo '*** Your GCC is older than 6.0 and is not supported'; \
71 false; \
Tom Rinid2366df2017-04-17 09:18:00 -040072 fi
73
74
Wolfgang Denkf772acf2009-08-17 13:17:29 +020075# Try if EABI is supported, else fall back to old API,
76# i. e. for example:
77# - with ELDK 4.2 (EABI supported), use:
Aneesh V5356f542012-03-08 07:20:19 +000078# -mabi=aapcs-linux
Wolfgang Denkf772acf2009-08-17 13:17:29 +020079# - with ELDK 4.1 (gcc 4.x, no EABI), use:
Aneesh V5356f542012-03-08 07:20:19 +000080# -mabi=apcs-gnu
Wolfgang Denkf772acf2009-08-17 13:17:29 +020081# - with ELDK 3.1 (gcc 3.x), use:
Aneesh V5356f542012-03-08 07:20:19 +000082# -mapcs-32
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000083PF_CPPFLAGS_ABI := $(call cc-option,\
Aneesh V5356f542012-03-08 07:20:19 +000084 -mabi=aapcs-linux,\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000085 $(call cc-option,\
86 -mapcs-32,\
Wolfgang Denkf772acf2009-08-17 13:17:29 +020087 $(call cc-option,\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000088 -mabi=apcs-gnu,\
89 )\
Aneesh V5356f542012-03-08 07:20:19 +000090 )\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000091 )
92PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI)
Wolfgang Denkf772acf2009-08-17 13:17:29 +020093
94# For EABI, make sure to provide raise()
95ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
Aneesh V52534182011-07-19 05:51:41 +000096# This file is parsed many times, so the string may get added multiple
97# times. Also, the prefix needs to be different based on whether
98# CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry
99# before adding the correct one.
Masahiro Yamadaa86cf892014-02-27 22:40:34 +0900100PLATFORM_LIBS := arch/arm/lib/eabi_compat.o \
101 $(filter-out arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
Wolfgang Denkf772acf2009-08-17 13:17:29 +0200102endif
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200103
Albert Aribaud92d5ecb2010-10-11 13:13:28 +0200104# needed for relocation
Stefano Babica4594e42011-01-27 06:03:49 +0000105LDFLAGS_u-boot += -pie
Allen Martin0f20bb62012-07-18 13:45:53 +0000106
107#
108# FIXME: binutils versions < 2.22 have a bug in the assembler where
109# branches to weak symbols can be incorrectly optimized in thumb mode
110# to a short branch (b.n instruction) that won't reach when the symbol
111# gets preempted
112#
113# http://sourceware.org/bugzilla/show_bug.cgi?id=12532
114#
Tom Rini3a649402017-03-18 09:01:44 -0400115ifeq ($(CONFIG_$(SPL_)SYS_THUMB_BUILD),y)
Allen Martin0f20bb62012-07-18 13:45:53 +0000116ifeq ($(GAS_BUG_12532),)
117export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \
118 then echo y; else echo n; fi)
119endif
120ifeq ($(GAS_BUG_12532),y)
121PLATFORM_RELFLAGS += -fno-optimize-sibling-calls
122endif
123endif
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200124
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200125ifneq ($(CONFIG_SPL_BUILD),y)
Jeroen Hofstee373d7982013-08-24 13:55:38 +0200126# Check that only R_ARM_RELATIVE relocations are generated.
127ALL-y += checkarmreloc
128# The movt / movw can hardcode 16 bit parts of the addresses in the
129# instruction. Relocation is not supported for that case, so disable
130# such usage by requiring word relocations.
131PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
Peng Fan397d7d52016-01-30 12:10:49 +0800132PLATFORM_CPPFLAGS += $(call cc-option, -fno-pic)
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200133endif
Albert ARIBAUD47ed5dd2013-11-07 14:21:46 +0100134
135# limit ourselves to the sections we want in the .bin.
David Feng0ae76532013-12-14 11:47:35 +0800136ifdef CONFIG_ARM64
macro.wave.z@gmail.comdf88cb32016-12-08 11:58:22 +0800137OBJCOPYFLAGS += -j .text -j .secure_text -j .secure_data -j .rodata -j .data \
Simon Glasscf2a8fd2017-11-13 18:55:02 -0700138 -j .u_boot_list -j .rela.dyn -j .got -j .got.plt \
139 -j .binman_sym_table
David Feng0ae76532013-12-14 11:47:35 +0800140else
Chen-Yu Tsaia5aa7ff2016-07-05 21:45:06 +0800141OBJCOPYFLAGS += -j .text -j .secure_text -j .secure_data -j .rodata -j .hash \
Simon Glasscf2a8fd2017-11-13 18:55:02 -0700142 -j .data -j .got -j .got.plt -j .u_boot_list -j .rel.dyn \
143 -j .binman_sym_table
David Feng0ae76532013-12-14 11:47:35 +0800144endif
Masahiro Yamada630d2342014-02-24 11:12:21 +0900145
Pantelis Antoniou54cc4dc2017-05-25 19:23:58 +0300146# if a dtb section exists we always have to include it
147# there are only two cases where it is generated
148# 1) OF_EMBEDED is turned on
149# 2) unit tests include device tree blobs
Alexey Ignatov072b2d82014-07-07 03:21:44 +0400150OBJCOPYFLAGS += -j .dtb.init.rodata
Alexey Ignatov072b2d82014-07-07 03:21:44 +0400151
Alexander Graf50149ea2016-03-04 01:10:01 +0100152ifdef CONFIG_EFI_LOADER
153OBJCOPYFLAGS += -j .efi_runtime -j .efi_runtime_rel
154endif
155
Masahiro Yamada630d2342014-02-24 11:12:21 +0900156ifneq ($(CONFIG_IMX_CONFIG),)
157ifdef CONFIG_SPL
158ifndef CONFIG_SPL_BUILD
159ALL-y += SPL
160endif
161else
Stefano Babice64348f2014-03-31 09:50:35 +0200162ifeq ($(CONFIG_OF_SEPARATE),y)
163ALL-y += u-boot-dtb.imx
164else
Masahiro Yamada630d2342014-02-24 11:12:21 +0900165ALL-y += u-boot.imx
166endif
167endif
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200168ifneq ($(CONFIG_VF610),)
169ALL-y += u-boot.vyb
170endif
Stefano Babice64348f2014-03-31 09:50:35 +0200171endif
Simon Glassdd46eef2016-11-07 08:47:10 -0700172
173EFI_LDS := elf_arm_efi.lds
174EFI_CRT0 := crt0_arm_efi.o
175EFI_RELOC := reloc_arm_efi.o