wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2000-2002 |
| 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 6 | # |
| 7 | |
Mike Frysinger | 8378ba4 | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 8 | CROSS_COMPILE ?= arm-linux- |
| 9 | |
Wolfgang Denk | 33a5734 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 10 | ifndef CONFIG_STANDALONE_LOAD_ADDR |
Tom Rini | bdc9b24 | 2013-03-14 06:49:04 +0000 | [diff] [blame] | 11 | ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX)$(CONFIG_TI814X),) |
Wolfgang Denk | 33a5734 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 12 | CONFIG_STANDALONE_LOAD_ADDR = 0x80300000 |
Mike Frysinger | 5b66044 | 2009-09-03 23:12:47 -0400 | [diff] [blame] | 13 | else |
Wolfgang Denk | 33a5734 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 14 | CONFIG_STANDALONE_LOAD_ADDR = 0xc100000 |
Mike Frysinger | 5b66044 | 2009-09-03 23:12:47 -0400 | [diff] [blame] | 15 | endif |
| 16 | endif |
| 17 | |
Tom Rini | efc9072 | 2013-04-25 07:40:22 +0000 | [diff] [blame] | 18 | LDFLAGS_FINAL += --gc-sections |
| 19 | PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections |
| 20 | |
Simon Glass | 97bbf18 | 2013-03-11 06:49:57 +0000 | [diff] [blame] | 21 | # Support generic board on ARM |
| 22 | __HAVE_ARCH_GENERIC_BOARD := y |
| 23 | |
wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 24 | PLATFORM_CPPFLAGS += -DCONFIG_ARM -D__ARM__ |
Jean-Christophe PLAGNIOL-VILLARD | 7580b86 | 2009-05-08 20:24:12 +0200 | [diff] [blame] | 25 | |
Aneesh V | b8e4080 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 26 | # Choose between ARM/Thumb instruction sets |
| 27 | ifeq ($(CONFIG_SYS_THUMB_BUILD),y) |
| 28 | PF_CPPFLAGS_ARM := $(call cc-option, -mthumb -mthumb-interwork,\ |
| 29 | $(call cc-option,-marm,)\ |
| 30 | $(call cc-option,-mno-thumb-interwork,)\ |
| 31 | ) |
| 32 | else |
| 33 | PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \ |
| 34 | $(call cc-option,-mno-thumb-interwork,) |
| 35 | endif |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 36 | |
Tom Rini | 20eef6c | 2012-03-16 06:34:35 +0000 | [diff] [blame] | 37 | # Only test once |
| 38 | ifneq ($(CONFIG_SPL_BUILD),y) |
| 39 | ALL-$(CONFIG_SYS_THUMB_BUILD) += checkthumb |
| 40 | endif |
| 41 | |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 42 | # Try if EABI is supported, else fall back to old API, |
| 43 | # i. e. for example: |
| 44 | # - with ELDK 4.2 (EABI supported), use: |
Aneesh V | b8e4080 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 45 | # -mabi=aapcs-linux |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 46 | # - with ELDK 4.1 (gcc 4.x, no EABI), use: |
Aneesh V | b8e4080 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 47 | # -mabi=apcs-gnu |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 48 | # - with ELDK 3.1 (gcc 3.x), use: |
Aneesh V | b8e4080 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 49 | # -mapcs-32 |
Wolfgang Denk | 9209ed5 | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 50 | PF_CPPFLAGS_ABI := $(call cc-option,\ |
Aneesh V | b8e4080 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 51 | -mabi=aapcs-linux,\ |
Wolfgang Denk | 9209ed5 | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 52 | $(call cc-option,\ |
| 53 | -mapcs-32,\ |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 54 | $(call cc-option,\ |
Wolfgang Denk | 9209ed5 | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 55 | -mabi=apcs-gnu,\ |
| 56 | )\ |
Aneesh V | b8e4080 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 57 | )\ |
Wolfgang Denk | 9209ed5 | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 58 | ) |
| 59 | PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI) |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 60 | |
| 61 | # For EABI, make sure to provide raise() |
| 62 | ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS))) |
Aneesh V | ad35628 | 2011-07-19 05:51:41 +0000 | [diff] [blame] | 63 | # This file is parsed many times, so the string may get added multiple |
| 64 | # times. Also, the prefix needs to be different based on whether |
| 65 | # CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry |
| 66 | # before adding the correct one. |
| 67 | ifdef CONFIG_SPL_BUILD |
| 68 | PLATFORM_LIBS := $(SPLTREE)/arch/arm/lib/eabi_compat.o \ |
| 69 | $(filter-out %/arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS)) |
| 70 | else |
| 71 | PLATFORM_LIBS := $(OBJTREE)/arch/arm/lib/eabi_compat.o \ |
| 72 | $(filter-out %/arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS)) |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 73 | endif |
| 74 | endif |
Albert Aribaud | 6d1fcb1 | 2010-10-11 13:13:28 +0200 | [diff] [blame] | 75 | |
Albert Aribaud | 6d1fcb1 | 2010-10-11 13:13:28 +0200 | [diff] [blame] | 76 | # needed for relocation |
Stefano Babic | 8b378e1 | 2011-01-27 06:03:49 +0000 | [diff] [blame] | 77 | LDFLAGS_u-boot += -pie |
Allen Martin | a8c7aea | 2012-07-18 13:45:53 +0000 | [diff] [blame] | 78 | |
| 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 | # |
| 87 | ifeq ($(CONFIG_SYS_THUMB_BUILD),y) |
| 88 | ifeq ($(GAS_BUG_12532),) |
| 89 | export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \ |
| 90 | then echo y; else echo n; fi) |
| 91 | endif |
| 92 | ifeq ($(GAS_BUG_12532),y) |
| 93 | PLATFORM_RELFLAGS += -fno-optimize-sibling-calls |
| 94 | endif |
| 95 | endif |
Albert ARIBAUD | 446dd12 | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 96 | |
| 97 | # check that only R_ARM_RELATIVE relocations are generated |
| 98 | ifneq ($(CONFIG_SPL_BUILD),y) |
| 99 | ALL-y += checkarmreloc |
| 100 | endif |