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