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