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 | |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 8 | ifndef CONFIG_STANDALONE_LOAD_ADDR |
Lokesh Vutla | 806d279 | 2013-07-30 11:36:30 +0530 | [diff] [blame] | 9 | ifneq ($(CONFIG_OMAP_COMMON),) |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 10 | CONFIG_STANDALONE_LOAD_ADDR = 0x80300000 |
Mike Frysinger | 262ae0a | 2009-09-03 23:12:47 -0400 | [diff] [blame] | 11 | else |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 12 | CONFIG_STANDALONE_LOAD_ADDR = 0xc100000 |
Mike Frysinger | 262ae0a | 2009-09-03 23:12:47 -0400 | [diff] [blame] | 13 | endif |
| 14 | endif |
| 15 | |
Tom Rini | fd72569 | 2013-04-25 07:40:22 +0000 | [diff] [blame] | 16 | LDFLAGS_FINAL += --gc-sections |
Masahiro Yamada | 3102274 | 2013-09-07 17:42:37 +0900 | [diff] [blame] | 17 | PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections \ |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 18 | -fno-common -ffixed-r9 |
Masahiro Yamada | bf1af3d | 2014-01-15 11:00:45 +0900 | [diff] [blame] | 19 | PLATFORM_RELFLAGS += $(call cc-option, -msoft-float) \ |
| 20 | $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) |
Tom Rini | fd72569 | 2013-04-25 07:40:22 +0000 | [diff] [blame] | 21 | |
Tom Rini | b745e82 | 2016-03-16 19:55:55 -0400 | [diff] [blame] | 22 | # LLVM support |
| 23 | LLVMS_RELFLAGS := $(call cc-option,-mllvm,) \ |
| 24 | $(call cc-option,-target arm-none-eabi,) \ |
| 25 | $(call cc-option,-arm-use-movt=0,) |
| 26 | PLATFORM_RELFLAGS += $(LLVM_RELFLAGS) |
| 27 | |
Masahiro Yamada | 90f984e | 2014-07-30 14:08:23 +0900 | [diff] [blame] | 28 | PLATFORM_CPPFLAGS += -D__ARM__ |
Jean-Christophe PLAGNIOL-VILLARD | 10a451c | 2009-05-08 20:24:12 +0200 | [diff] [blame] | 29 | |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 30 | # Choose between ARM/Thumb instruction sets |
| 31 | ifeq ($(CONFIG_SYS_THUMB_BUILD),y) |
Stefan Agner | 75d7a0d | 2014-12-18 18:10:33 +0100 | [diff] [blame] | 32 | AFLAGS_IMPLICIT_IT := $(call as-option,-Wa$(comma)-mimplicit-it=always) |
| 33 | PF_CPPFLAGS_ARM := $(AFLAGS_IMPLICIT_IT) \ |
| 34 | $(call cc-option, -mthumb -mthumb-interwork,\ |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 35 | $(call cc-option,-marm,)\ |
| 36 | $(call cc-option,-mno-thumb-interwork,)\ |
| 37 | ) |
| 38 | else |
| 39 | PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \ |
| 40 | $(call cc-option,-mno-thumb-interwork,) |
| 41 | endif |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 42 | |
Tom Rini | 06a119a | 2012-03-16 06:34:35 +0000 | [diff] [blame] | 43 | # Only test once |
| 44 | ifneq ($(CONFIG_SPL_BUILD),y) |
Masahiro Yamada | 388b2e5 | 2014-03-05 17:49:22 +0900 | [diff] [blame] | 45 | ifeq ($(CONFIG_SYS_THUMB_BUILD),y) |
| 46 | archprepare: checkthumb |
| 47 | |
| 48 | checkthumb: |
Tom Rini | 6e2f153 | 2016-01-19 20:39:02 -0500 | [diff] [blame] | 49 | @if test "$(call cc-name)" = "gcc" -a \ |
| 50 | "$(call cc-version)" -lt "0404"; then \ |
Masahiro Yamada | 388b2e5 | 2014-03-05 17:49:22 +0900 | [diff] [blame] | 51 | echo -n '*** Your GCC does not produce working '; \ |
| 52 | echo 'binaries in THUMB mode.'; \ |
| 53 | echo '*** Your board is configured for THUMB mode.'; \ |
| 54 | false; \ |
| 55 | fi |
| 56 | endif |
Tom Rini | 06a119a | 2012-03-16 06:34:35 +0000 | [diff] [blame] | 57 | endif |
| 58 | |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 59 | # Try if EABI is supported, else fall back to old API, |
| 60 | # i. e. for example: |
| 61 | # - with ELDK 4.2 (EABI supported), use: |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 62 | # -mabi=aapcs-linux |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 63 | # - with ELDK 4.1 (gcc 4.x, no EABI), use: |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 64 | # -mabi=apcs-gnu |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 65 | # - with ELDK 3.1 (gcc 3.x), use: |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 66 | # -mapcs-32 |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 67 | PF_CPPFLAGS_ABI := $(call cc-option,\ |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 68 | -mabi=aapcs-linux,\ |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 69 | $(call cc-option,\ |
| 70 | -mapcs-32,\ |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 71 | $(call cc-option,\ |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 72 | -mabi=apcs-gnu,\ |
| 73 | )\ |
Aneesh V | 5356f54 | 2012-03-08 07:20:19 +0000 | [diff] [blame] | 74 | )\ |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 75 | ) |
| 76 | PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI) |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 77 | |
| 78 | # For EABI, make sure to provide raise() |
| 79 | ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS))) |
Aneesh V | 5253418 | 2011-07-19 05:51:41 +0000 | [diff] [blame] | 80 | # This file is parsed many times, so the string may get added multiple |
| 81 | # times. Also, the prefix needs to be different based on whether |
| 82 | # CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry |
| 83 | # before adding the correct one. |
Masahiro Yamada | a86cf89 | 2014-02-27 22:40:34 +0900 | [diff] [blame] | 84 | PLATFORM_LIBS := arch/arm/lib/eabi_compat.o \ |
| 85 | $(filter-out arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS)) |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 86 | endif |
Albert Aribaud | 92d5ecb | 2010-10-11 13:13:28 +0200 | [diff] [blame] | 87 | |
Albert Aribaud | 92d5ecb | 2010-10-11 13:13:28 +0200 | [diff] [blame] | 88 | # needed for relocation |
Stefano Babic | a4594e4 | 2011-01-27 06:03:49 +0000 | [diff] [blame] | 89 | LDFLAGS_u-boot += -pie |
Allen Martin | 0f20bb6 | 2012-07-18 13:45:53 +0000 | [diff] [blame] | 90 | |
| 91 | # |
| 92 | # FIXME: binutils versions < 2.22 have a bug in the assembler where |
| 93 | # branches to weak symbols can be incorrectly optimized in thumb mode |
| 94 | # to a short branch (b.n instruction) that won't reach when the symbol |
| 95 | # gets preempted |
| 96 | # |
| 97 | # http://sourceware.org/bugzilla/show_bug.cgi?id=12532 |
| 98 | # |
| 99 | ifeq ($(CONFIG_SYS_THUMB_BUILD),y) |
| 100 | ifeq ($(GAS_BUG_12532),) |
| 101 | export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \ |
| 102 | then echo y; else echo n; fi) |
| 103 | endif |
| 104 | ifeq ($(GAS_BUG_12532),y) |
| 105 | PLATFORM_RELFLAGS += -fno-optimize-sibling-calls |
| 106 | endif |
| 107 | endif |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 108 | |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 109 | ifneq ($(CONFIG_SPL_BUILD),y) |
Jeroen Hofstee | 373d798 | 2013-08-24 13:55:38 +0200 | [diff] [blame] | 110 | # Check that only R_ARM_RELATIVE relocations are generated. |
| 111 | ALL-y += checkarmreloc |
| 112 | # The movt / movw can hardcode 16 bit parts of the addresses in the |
| 113 | # instruction. Relocation is not supported for that case, so disable |
| 114 | # such usage by requiring word relocations. |
| 115 | PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations) |
Peng Fan | 397d7d5 | 2016-01-30 12:10:49 +0800 | [diff] [blame] | 116 | PLATFORM_CPPFLAGS += $(call cc-option, -fno-pic) |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 117 | endif |
Albert ARIBAUD | 47ed5dd | 2013-11-07 14:21:46 +0100 | [diff] [blame] | 118 | |
| 119 | # limit ourselves to the sections we want in the .bin. |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 120 | ifdef CONFIG_ARM64 |
Masahiro Yamada | 95ddcd6 | 2014-02-24 11:12:12 +0900 | [diff] [blame] | 121 | OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 122 | else |
Chen-Yu Tsai | a5aa7ff | 2016-07-05 21:45:06 +0800 | [diff] [blame] | 123 | OBJCOPYFLAGS += -j .text -j .secure_text -j .secure_data -j .rodata -j .hash \ |
| 124 | -j .data -j .got -j .got.plt -j .u_boot_list -j .rel.dyn |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 125 | endif |
Masahiro Yamada | 630d234 | 2014-02-24 11:12:21 +0900 | [diff] [blame] | 126 | |
Alexey Ignatov | 072b2d8 | 2014-07-07 03:21:44 +0400 | [diff] [blame] | 127 | ifdef CONFIG_OF_EMBED |
| 128 | OBJCOPYFLAGS += -j .dtb.init.rodata |
| 129 | endif |
| 130 | |
Alexander Graf | 50149ea | 2016-03-04 01:10:01 +0100 | [diff] [blame] | 131 | ifdef CONFIG_EFI_LOADER |
| 132 | OBJCOPYFLAGS += -j .efi_runtime -j .efi_runtime_rel |
| 133 | endif |
| 134 | |
Masahiro Yamada | 630d234 | 2014-02-24 11:12:21 +0900 | [diff] [blame] | 135 | ifneq ($(CONFIG_IMX_CONFIG),) |
| 136 | ifdef CONFIG_SPL |
| 137 | ifndef CONFIG_SPL_BUILD |
| 138 | ALL-y += SPL |
| 139 | endif |
| 140 | else |
Stefano Babic | e64348f | 2014-03-31 09:50:35 +0200 | [diff] [blame] | 141 | ifeq ($(CONFIG_OF_SEPARATE),y) |
| 142 | ALL-y += u-boot-dtb.imx |
| 143 | else |
Masahiro Yamada | 630d234 | 2014-02-24 11:12:21 +0900 | [diff] [blame] | 144 | ALL-y += u-boot.imx |
| 145 | endif |
| 146 | endif |
Stefano Babic | e64348f | 2014-03-31 09:50:35 +0200 | [diff] [blame] | 147 | endif |