blob: 008da39a6c02d11b5b8aa02a34363d9cc3b187e0 [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
Tom Rini187f9dc2016-11-07 21:34:55 -05009ifneq ($(CONFIG_ARCH_OMAP2),)
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
26LLVMS_RELFLAGS := $(call cc-option,-mllvm,) \
27 $(call cc-option,-target arm-none-eabi,) \
28 $(call cc-option,-arm-use-movt=0,)
29PLATFORM_RELFLAGS += $(LLVM_RELFLAGS)
30
Masahiro Yamada90f984e2014-07-30 14:08:23 +090031PLATFORM_CPPFLAGS += -D__ARM__
Jean-Christophe PLAGNIOL-VILLARD10a451c2009-05-08 20:24:12 +020032
Aneesh V5356f542012-03-08 07:20:19 +000033# Choose between ARM/Thumb instruction sets
34ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
Stefan Agner75d7a0d2014-12-18 18:10:33 +010035AFLAGS_IMPLICIT_IT := $(call as-option,-Wa$(comma)-mimplicit-it=always)
36PF_CPPFLAGS_ARM := $(AFLAGS_IMPLICIT_IT) \
37 $(call cc-option, -mthumb -mthumb-interwork,\
Aneesh V5356f542012-03-08 07:20:19 +000038 $(call cc-option,-marm,)\
39 $(call cc-option,-mno-thumb-interwork,)\
40 )
41else
42PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \
43 $(call cc-option,-mno-thumb-interwork,)
44endif
Wolfgang Denkf772acf2009-08-17 13:17:29 +020045
Tom Rini06a119a2012-03-16 06:34:35 +000046# Only test once
47ifneq ($(CONFIG_SPL_BUILD),y)
Masahiro Yamada388b2e52014-03-05 17:49:22 +090048ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
49archprepare: checkthumb
50
51checkthumb:
Tom Rini6e2f1532016-01-19 20:39:02 -050052 @if test "$(call cc-name)" = "gcc" -a \
53 "$(call cc-version)" -lt "0404"; then \
Masahiro Yamada388b2e52014-03-05 17:49:22 +090054 echo -n '*** Your GCC does not produce working '; \
55 echo 'binaries in THUMB mode.'; \
56 echo '*** Your board is configured for THUMB mode.'; \
57 false; \
58 fi
59endif
Tom Rini06a119a2012-03-16 06:34:35 +000060endif
61
Wolfgang Denkf772acf2009-08-17 13:17:29 +020062# Try if EABI is supported, else fall back to old API,
63# i. e. for example:
64# - with ELDK 4.2 (EABI supported), use:
Aneesh V5356f542012-03-08 07:20:19 +000065# -mabi=aapcs-linux
Wolfgang Denkf772acf2009-08-17 13:17:29 +020066# - with ELDK 4.1 (gcc 4.x, no EABI), use:
Aneesh V5356f542012-03-08 07:20:19 +000067# -mabi=apcs-gnu
Wolfgang Denkf772acf2009-08-17 13:17:29 +020068# - with ELDK 3.1 (gcc 3.x), use:
Aneesh V5356f542012-03-08 07:20:19 +000069# -mapcs-32
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000070PF_CPPFLAGS_ABI := $(call cc-option,\
Aneesh V5356f542012-03-08 07:20:19 +000071 -mabi=aapcs-linux,\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000072 $(call cc-option,\
73 -mapcs-32,\
Wolfgang Denkf772acf2009-08-17 13:17:29 +020074 $(call cc-option,\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000075 -mabi=apcs-gnu,\
76 )\
Aneesh V5356f542012-03-08 07:20:19 +000077 )\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000078 )
79PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI)
Wolfgang Denkf772acf2009-08-17 13:17:29 +020080
81# For EABI, make sure to provide raise()
82ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
Aneesh V52534182011-07-19 05:51:41 +000083# This file is parsed many times, so the string may get added multiple
84# times. Also, the prefix needs to be different based on whether
85# CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry
86# before adding the correct one.
Masahiro Yamadaa86cf892014-02-27 22:40:34 +090087PLATFORM_LIBS := arch/arm/lib/eabi_compat.o \
88 $(filter-out arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
Wolfgang Denkf772acf2009-08-17 13:17:29 +020089endif
Albert Aribaud92d5ecb2010-10-11 13:13:28 +020090
Albert Aribaud92d5ecb2010-10-11 13:13:28 +020091# needed for relocation
Stefano Babica4594e42011-01-27 06:03:49 +000092LDFLAGS_u-boot += -pie
Allen Martin0f20bb62012-07-18 13:45:53 +000093
94#
95# FIXME: binutils versions < 2.22 have a bug in the assembler where
96# branches to weak symbols can be incorrectly optimized in thumb mode
97# to a short branch (b.n instruction) that won't reach when the symbol
98# gets preempted
99#
100# http://sourceware.org/bugzilla/show_bug.cgi?id=12532
101#
102ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
103ifeq ($(GAS_BUG_12532),)
104export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \
105 then echo y; else echo n; fi)
106endif
107ifeq ($(GAS_BUG_12532),y)
108PLATFORM_RELFLAGS += -fno-optimize-sibling-calls
109endif
110endif
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200111
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200112ifneq ($(CONFIG_SPL_BUILD),y)
Jeroen Hofstee373d7982013-08-24 13:55:38 +0200113# Check that only R_ARM_RELATIVE relocations are generated.
114ALL-y += checkarmreloc
115# The movt / movw can hardcode 16 bit parts of the addresses in the
116# instruction. Relocation is not supported for that case, so disable
117# such usage by requiring word relocations.
118PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
Peng Fan397d7d52016-01-30 12:10:49 +0800119PLATFORM_CPPFLAGS += $(call cc-option, -fno-pic)
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200120endif
Albert ARIBAUD47ed5dd2013-11-07 14:21:46 +0100121
122# limit ourselves to the sections we want in the .bin.
David Feng0ae76532013-12-14 11:47:35 +0800123ifdef CONFIG_ARM64
Masahiro Yamada95ddcd62014-02-24 11:12:12 +0900124OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn
David Feng0ae76532013-12-14 11:47:35 +0800125else
Chen-Yu Tsaia5aa7ff2016-07-05 21:45:06 +0800126OBJCOPYFLAGS += -j .text -j .secure_text -j .secure_data -j .rodata -j .hash \
127 -j .data -j .got -j .got.plt -j .u_boot_list -j .rel.dyn
David Feng0ae76532013-12-14 11:47:35 +0800128endif
Masahiro Yamada630d2342014-02-24 11:12:21 +0900129
Alexey Ignatov072b2d82014-07-07 03:21:44 +0400130ifdef CONFIG_OF_EMBED
131OBJCOPYFLAGS += -j .dtb.init.rodata
132endif
133
Alexander Graf50149ea2016-03-04 01:10:01 +0100134ifdef CONFIG_EFI_LOADER
135OBJCOPYFLAGS += -j .efi_runtime -j .efi_runtime_rel
136endif
137
Masahiro Yamada630d2342014-02-24 11:12:21 +0900138ifneq ($(CONFIG_IMX_CONFIG),)
139ifdef CONFIG_SPL
140ifndef CONFIG_SPL_BUILD
141ALL-y += SPL
142endif
143else
Stefano Babice64348f2014-03-31 09:50:35 +0200144ifeq ($(CONFIG_OF_SEPARATE),y)
145ALL-y += u-boot-dtb.imx
146else
Masahiro Yamada630d2342014-02-24 11:12:21 +0900147ALL-y += u-boot.imx
148endif
149endif
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200150ifneq ($(CONFIG_VF610),)
151ALL-y += u-boot.vyb
152endif
Stefano Babice64348f2014-03-31 09:50:35 +0200153endif
Simon Glassdd46eef2016-11-07 08:47:10 -0700154
155EFI_LDS := elf_arm_efi.lds
156EFI_CRT0 := crt0_arm_efi.o
157EFI_RELOC := reloc_arm_efi.o