blob: 792cb4345047c78b5b61cddf33c58d1eb474809d [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)
44ALL-$(CONFIG_SYS_THUMB_BUILD) += checkthumb
45endif
46
Wolfgang Denkf772acf2009-08-17 13:17:29 +020047# Try if EABI is supported, else fall back to old API,
48# i. e. for example:
49# - with ELDK 4.2 (EABI supported), use:
Aneesh V5356f542012-03-08 07:20:19 +000050# -mabi=aapcs-linux
Wolfgang Denkf772acf2009-08-17 13:17:29 +020051# - with ELDK 4.1 (gcc 4.x, no EABI), use:
Aneesh V5356f542012-03-08 07:20:19 +000052# -mabi=apcs-gnu
Wolfgang Denkf772acf2009-08-17 13:17:29 +020053# - with ELDK 3.1 (gcc 3.x), use:
Aneesh V5356f542012-03-08 07:20:19 +000054# -mapcs-32
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000055PF_CPPFLAGS_ABI := $(call cc-option,\
Aneesh V5356f542012-03-08 07:20:19 +000056 -mabi=aapcs-linux,\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000057 $(call cc-option,\
58 -mapcs-32,\
Wolfgang Denkf772acf2009-08-17 13:17:29 +020059 $(call cc-option,\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000060 -mabi=apcs-gnu,\
61 )\
Aneesh V5356f542012-03-08 07:20:19 +000062 )\
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000063 )
64PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI)
Wolfgang Denkf772acf2009-08-17 13:17:29 +020065
66# For EABI, make sure to provide raise()
67ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
Aneesh V52534182011-07-19 05:51:41 +000068# This file is parsed many times, so the string may get added multiple
69# times. Also, the prefix needs to be different based on whether
70# CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry
71# before adding the correct one.
Masahiro Yamadaa86cf892014-02-27 22:40:34 +090072PLATFORM_LIBS := arch/arm/lib/eabi_compat.o \
73 $(filter-out arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
Wolfgang Denkf772acf2009-08-17 13:17:29 +020074endif
Albert Aribaud92d5ecb2010-10-11 13:13:28 +020075
Albert Aribaud92d5ecb2010-10-11 13:13:28 +020076# needed for relocation
Stefano Babica4594e42011-01-27 06:03:49 +000077LDFLAGS_u-boot += -pie
Allen Martin0f20bb62012-07-18 13:45:53 +000078
79#
80# FIXME: binutils versions < 2.22 have a bug in the assembler where
81# branches to weak symbols can be incorrectly optimized in thumb mode
82# to a short branch (b.n instruction) that won't reach when the symbol
83# gets preempted
84#
85# http://sourceware.org/bugzilla/show_bug.cgi?id=12532
86#
87ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
88ifeq ($(GAS_BUG_12532),)
89export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \
90 then echo y; else echo n; fi)
91endif
92ifeq ($(GAS_BUG_12532),y)
93PLATFORM_RELFLAGS += -fno-optimize-sibling-calls
94endif
95endif
Albert ARIBAUDc37980c2013-06-11 14:17:30 +020096
Albert ARIBAUDc37980c2013-06-11 14:17:30 +020097ifneq ($(CONFIG_SPL_BUILD),y)
Jeroen Hofstee373d7982013-08-24 13:55:38 +020098# Check that only R_ARM_RELATIVE relocations are generated.
99ALL-y += checkarmreloc
100# The movt / movw can hardcode 16 bit parts of the addresses in the
101# instruction. Relocation is not supported for that case, so disable
102# such usage by requiring word relocations.
103PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
Albert ARIBAUDc37980c2013-06-11 14:17:30 +0200104endif
Albert ARIBAUD47ed5dd2013-11-07 14:21:46 +0100105
106# limit ourselves to the sections we want in the .bin.
David Feng0ae76532013-12-14 11:47:35 +0800107ifdef CONFIG_ARM64
Masahiro Yamada95ddcd62014-02-24 11:12:12 +0900108OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn
David Feng0ae76532013-12-14 11:47:35 +0800109else
Masahiro Yamada95ddcd62014-02-24 11:12:12 +0900110OBJCOPYFLAGS += -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 +0800111endif
Masahiro Yamada630d2342014-02-24 11:12:21 +0900112
113ifneq ($(CONFIG_IMX_CONFIG),)
114ifdef CONFIG_SPL
115ifndef CONFIG_SPL_BUILD
116ALL-y += SPL
117endif
118else
119ALL-y += u-boot.imx
120endif
121endif