Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2000-2002 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 5 | |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 6 | CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000 |
Mike Frysinger | 262ae0a | 2009-09-03 23:12:47 -0400 | [diff] [blame] | 7 | |
Graeme Russ | 5c16165 | 2010-10-07 20:03:23 +1100 | [diff] [blame] | 8 | PLATFORM_CPPFLAGS += -fomit-frame-pointer |
Masahiro Yamada | f694183 | 2014-02-26 14:51:01 +0900 | [diff] [blame] | 9 | PF_CPPFLAGS_X86 := $(call cc-option, -fno-toplevel-reorder, \ |
Bin Meng | 9a95f51 | 2017-07-27 06:12:34 -0700 | [diff] [blame] | 10 | $(call cc-option, -fno-unit-at-a-time)) |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 11 | |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 12 | PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_X86) |
Graeme Russ | a85f53c | 2011-02-12 15:11:21 +1100 | [diff] [blame] | 13 | PLATFORM_CPPFLAGS += -fno-dwarf2-cfi-asm |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 14 | |
| 15 | ifdef CONFIG_SPL_BUILD |
| 16 | IS_32BIT := y |
| 17 | else |
| 18 | ifndef CONFIG_X86_64 |
| 19 | IS_32BIT := y |
| 20 | endif |
| 21 | endif |
| 22 | |
| 23 | ifeq ($(IS_32BIT),y) |
Vasili Galka | dbb7234 | 2014-06-10 16:14:56 +0300 | [diff] [blame] | 24 | PLATFORM_CPPFLAGS += -march=i386 -m32 |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 25 | else |
Bin Meng | e719b6b | 2017-07-27 06:12:35 -0700 | [diff] [blame] | 26 | PLATFORM_CPPFLAGS += $(if $(CONFIG_SPL_BUILD),,-fpic) -fno-common -m64 |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 27 | endif |
Graeme Russ | d664adb | 2010-10-07 20:03:20 +1100 | [diff] [blame] | 28 | |
Alexander Graf | 1acbd0e | 2018-08-20 14:20:51 +0200 | [diff] [blame] | 29 | PLATFORM_RELFLAGS += -fdata-sections -ffunction-sections -fvisibility=hidden |
Graeme Russ | a85f53c | 2011-02-12 15:11:21 +1100 | [diff] [blame] | 30 | |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 31 | PLATFORM_LDFLAGS += -Bsymbolic -Bsymbolic-functions |
| 32 | PLATFORM_LDFLAGS += -m $(if $(IS_32BIT),elf_i386,elf_x86_64) |
Graeme Russ | a85f53c | 2011-02-12 15:11:21 +1100 | [diff] [blame] | 33 | |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 34 | # This is used in the top-level Makefile which does not include |
| 35 | # PLATFORM_LDFLAGS |
| 36 | LDFLAGS_EFI_PAYLOAD := -Bsymbolic -Bsymbolic-functions -shared --no-undefined |
| 37 | |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 38 | OBJCOPYFLAGS_EFI := -j .text -j .sdata -j .data -j .dynamic -j .dynsym \ |
| 39 | -j .rel -j .rela -j .reloc |
| 40 | |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 41 | ifeq ($(IS_32BIT),y) |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 42 | CFLAGS_NON_EFI := -mregparm=3 |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 43 | endif |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 44 | CFLAGS_EFI := -fpic -fshort-wchar |
| 45 | |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 46 | ifeq ($(CONFIG_EFI_STUB_64BIT),) |
| 47 | CFLAGS_EFI += $(call cc-option, -mno-red-zone) |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 48 | EFIARCH = ia32 |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 49 | EFIPAYLOAD_BFDTARGET = elf32-i386 |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 50 | else |
| 51 | EFIARCH = x86_64 |
| 52 | EFIPAYLOAD_BFDTARGET = elf64-x86-64 |
| 53 | endif |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 54 | |
| 55 | EFIPAYLOAD_BFDARCH = i386 |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 56 | |
Simon Glass | d36badf | 2016-11-07 08:47:13 -0700 | [diff] [blame] | 57 | LDSCRIPT_EFI := $(srctree)/arch/x86/lib/elf_$(EFIARCH)_efi.lds |
Simon Glass | 2dcd4e9 | 2016-11-07 08:47:14 -0700 | [diff] [blame] | 58 | EFISTUB := crt0_$(EFIARCH)_efi.o reloc_$(EFIARCH)_efi.o |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 59 | OBJCOPYFLAGS_EFI += --target=efi-app-$(EFIARCH) |
| 60 | |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 61 | CPPFLAGS_REMOVE_crt0-efi-$(EFIARCH).o += $(CFLAGS_NON_EFI) |
| 62 | CPPFLAGS_crt0-efi-$(EFIARCH).o += $(CFLAGS_EFI) |
| 63 | |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 64 | ifeq ($(CONFIG_EFI_APP),y) |
| 65 | |
| 66 | PLATFORM_CPPFLAGS += $(CFLAGS_EFI) |
| 67 | LDFLAGS_FINAL += -znocombreloc -shared |
| 68 | LDSCRIPT := $(LDSCRIPT_EFI) |
| 69 | |
| 70 | else |
| 71 | |
| 72 | PLATFORM_CPPFLAGS += $(CFLAGS_NON_EFI) |
| 73 | PLATFORM_LDFLAGS += --emit-relocs |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 74 | LDFLAGS_FINAL += --gc-sections $(if $(CONFIG_SPL_BUILD),,-pie) |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 75 | |
| 76 | endif |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 77 | |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 78 | ifdef CONFIG_X86_64 |
| 79 | ifndef CONFIG_SPL_BUILD |
| 80 | PLATFORM_CPPFLAGS += -D__x86_64__ |
| 81 | else |
| 82 | PLATFORM_CPPFLAGS += -D__I386__ |
| 83 | endif |
| 84 | else |
| 85 | PLATFORM_CPPFLAGS += -D__I386__ |
| 86 | endif |
| 87 | |
Heinrich Schuchardt | 508d856 | 2018-05-18 19:12:19 +0200 | [diff] [blame] | 88 | ifdef CONFIG_EFI_STUB |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 89 | |
Heinrich Schuchardt | 508d856 | 2018-05-18 19:12:19 +0200 | [diff] [blame] | 90 | ifdef CONFIG_EFI_STUB_64BIT |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 91 | EFI_LDS := elf_x86_64_efi.lds |
| 92 | EFI_CRT0 := crt0_x86_64_efi.o |
| 93 | EFI_RELOC := reloc_x86_64_efi.o |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 94 | else |
| 95 | EFI_LDS := elf_ia32_efi.lds |
| 96 | EFI_CRT0 := crt0_ia32_efi.o |
| 97 | EFI_RELOC := reloc_ia32_efi.o |
Heinrich Schuchardt | f4cf153 | 2018-04-06 15:36:31 +0200 | [diff] [blame] | 98 | endif |
| 99 | |
Heinrich Schuchardt | 508d856 | 2018-05-18 19:12:19 +0200 | [diff] [blame] | 100 | else |
| 101 | |
| 102 | ifdef CONFIG_X86_64 |
| 103 | EFI_LDS := elf_x86_64_efi.lds |
| 104 | EFI_CRT0 := crt0_x86_64_efi.o |
| 105 | EFI_RELOC := reloc_x86_64_efi.o |
| 106 | else |
| 107 | EFI_LDS := elf_ia32_efi.lds |
| 108 | EFI_CRT0 := crt0_ia32_efi.o |
| 109 | EFI_RELOC := reloc_ia32_efi.o |
| 110 | endif |
| 111 | |
| 112 | endif |
| 113 | |
Heinrich Schuchardt | f4cf153 | 2018-04-06 15:36:31 +0200 | [diff] [blame] | 114 | ifdef CONFIG_X86_64 |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 115 | EFI_TARGET := --target=efi-app-x86_64 |
Heinrich Schuchardt | f4cf153 | 2018-04-06 15:36:31 +0200 | [diff] [blame] | 116 | else |
| 117 | EFI_TARGET := --target=efi-app-ia32 |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 118 | endif |