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 | 1a45966 | 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 | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 8 | CROSS_COMPILE ?= arm-linux- |
| 9 | |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 10 | ifndef CONFIG_STANDALONE_LOAD_ADDR |
Lokesh Vutla | 806d279 | 2013-07-30 11:36:30 +0530 | [diff] [blame] | 11 | ifneq ($(CONFIG_OMAP_COMMON),) |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 12 | CONFIG_STANDALONE_LOAD_ADDR = 0x80300000 |
Mike Frysinger | 262ae0a | 2009-09-03 23:12:47 -0400 | [diff] [blame] | 13 | else |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 14 | CONFIG_STANDALONE_LOAD_ADDR = 0xc100000 |
Mike Frysinger | 262ae0a | 2009-09-03 23:12:47 -0400 | [diff] [blame] | 15 | endif |
| 16 | endif |
| 17 | |
Tom Rini | fd72569 | 2013-04-25 07:40:22 +0000 | [diff] [blame] | 18 | LDFLAGS_FINAL += --gc-sections |
Masahiro Yamada | 3102274 | 2013-09-07 17:42:37 +0900 | [diff] [blame] | 19 | PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections \ |
Wolfgang Denk | 93e1459 | 2013-10-04 17:43:24 +0200 | [diff] [blame] | 20 | -fno-common -ffixed-r9 -msoft-float |
Tom Rini | fd72569 | 2013-04-25 07:40:22 +0000 | [diff] [blame] | 21 | |
Simon Glass | 959daa2 | 2013-03-11 06:49:57 +0000 | [diff] [blame] | 22 | # Support generic board on ARM |
| 23 | __HAVE_ARCH_GENERIC_BOARD := y |
| 24 | |
wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 25 | PLATFORM_CPPFLAGS += -DCONFIG_ARM -D__ARM__ |
Jean-Christophe PLAGNIOL-VILLARD | 10a451c | 2009-05-08 20:24:12 +0200 | [diff] [blame] | 26 | |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 27 | # Choose between ARM/Thumb instruction sets |
| 28 | ifeq ($(CONFIG_SYS_THUMB_BUILD),y) |
| 29 | PF_CPPFLAGS_ARM := $(call cc-option, -mthumb -mthumb-interwork,\ |
| 30 | $(call cc-option,-marm,)\ |
| 31 | $(call cc-option,-mno-thumb-interwork,)\ |
| 32 | ) |
| 33 | else |
| 34 | PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \ |
| 35 | $(call cc-option,-mno-thumb-interwork,) |
| 36 | endif |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 37 | |
Tom Rini | 06a119a | 2012-03-16 06:34:35 +0000 | [diff] [blame] | 38 | # Only test once |
| 39 | ifneq ($(CONFIG_SPL_BUILD),y) |
| 40 | ALL-$(CONFIG_SYS_THUMB_BUILD) += checkthumb |
| 41 | endif |
| 42 | |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 43 | # Try if EABI is supported, else fall back to old API, |
| 44 | # i. e. for example: |
| 45 | # - with ELDK 4.2 (EABI supported), use: |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 46 | # -mabi=aapcs-linux |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 47 | # - with ELDK 4.1 (gcc 4.x, no EABI), use: |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 48 | # -mabi=apcs-gnu |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 49 | # - with ELDK 3.1 (gcc 3.x), use: |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 50 | # -mapcs-32 |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 51 | PF_CPPFLAGS_ABI := $(call cc-option,\ |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 52 | -mabi=aapcs-linux,\ |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 53 | $(call cc-option,\ |
| 54 | -mapcs-32,\ |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 55 | $(call cc-option,\ |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 56 | -mabi=apcs-gnu,\ |
| 57 | )\ |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 58 | )\ |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 59 | ) |
| 60 | PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI) |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 61 | |
| 62 | # For EABI, make sure to provide raise() |
| 63 | ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS))) |
Aneesh V | 5253418 | 2011-07-19 05:51:41 +0000 | [diff] [blame] | 64 | # This file is parsed many times, so the string may get added multiple |
| 65 | # times. Also, the prefix needs to be different based on whether |
| 66 | # CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry |
| 67 | # before adding the correct one. |
| 68 | ifdef CONFIG_SPL_BUILD |
| 69 | PLATFORM_LIBS := $(SPLTREE)/arch/arm/lib/eabi_compat.o \ |
| 70 | $(filter-out %/arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS)) |
| 71 | else |
| 72 | PLATFORM_LIBS := $(OBJTREE)/arch/arm/lib/eabi_compat.o \ |
| 73 | $(filter-out %/arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS)) |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 74 | endif |
| 75 | endif |
Albert Aribaud | 92d5ecb | 2010-10-11 13:13:28 +0200 | [diff] [blame] | 76 | |
Albert Aribaud | 92d5ecb | 2010-10-11 13:13:28 +0200 | [diff] [blame] | 77 | # needed for relocation |
Stefano Babic | a4594e4 | 2011-01-27 06:03:49 +0000 | [diff] [blame] | 78 | LDFLAGS_u-boot += -pie |
Allen Martin | 0f20bb6 | 2012-07-18 13:45:53 +0000 | [diff] [blame] | 79 | |
| 80 | # |
| 81 | # FIXME: binutils versions < 2.22 have a bug in the assembler where |
| 82 | # branches to weak symbols can be incorrectly optimized in thumb mode |
| 83 | # to a short branch (b.n instruction) that won't reach when the symbol |
| 84 | # gets preempted |
| 85 | # |
| 86 | # http://sourceware.org/bugzilla/show_bug.cgi?id=12532 |
| 87 | # |
| 88 | ifeq ($(CONFIG_SYS_THUMB_BUILD),y) |
| 89 | ifeq ($(GAS_BUG_12532),) |
| 90 | export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \ |
| 91 | then echo y; else echo n; fi) |
| 92 | endif |
| 93 | ifeq ($(GAS_BUG_12532),y) |
| 94 | PLATFORM_RELFLAGS += -fno-optimize-sibling-calls |
| 95 | endif |
| 96 | endif |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 97 | |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 98 | ifneq ($(CONFIG_SPL_BUILD),y) |
Jeroen Hofstee | 373d798 | 2013-08-24 13:55:38 +0200 | [diff] [blame] | 99 | # Check that only R_ARM_RELATIVE relocations are generated. |
| 100 | ALL-y += checkarmreloc |
| 101 | # The movt / movw can hardcode 16 bit parts of the addresses in the |
| 102 | # instruction. Relocation is not supported for that case, so disable |
| 103 | # such usage by requiring word relocations. |
| 104 | PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations) |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 105 | endif |
Albert ARIBAUD | 47ed5dd | 2013-11-07 14:21:46 +0100 | [diff] [blame] | 106 | |
| 107 | # limit ourselves to the sections we want in the .bin. |
| 108 | OBJCFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rel.dyn |