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 | |
Simon Glass | 081dfcf | 2022-01-04 03:51:16 -0700 | [diff] [blame^] | 23 | EFI_IS_32BIT := $(IS_32BIT) |
| 24 | ifdef CONFIG_EFI_STUB_64BIT |
| 25 | EFI_IS_32BIT := |
| 26 | endif |
| 27 | |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 28 | ifeq ($(IS_32BIT),y) |
Vasili Galka | dbb7234 | 2014-06-10 16:14:56 +0300 | [diff] [blame] | 29 | PLATFORM_CPPFLAGS += -march=i386 -m32 |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 30 | else |
Bin Meng | a139cc1 | 2018-10-13 20:52:01 -0700 | [diff] [blame] | 31 | PLATFORM_CPPFLAGS += $(if $(CONFIG_SPL_BUILD),,-fpic) -fno-common -march=core2 -m64 |
Bin Meng | dd4611d | 2018-10-13 20:52:02 -0700 | [diff] [blame] | 32 | PLATFORM_CPPFLAGS += -mno-mmx -mno-sse |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 33 | endif |
Graeme Russ | d664adb | 2010-10-07 20:03:20 +1100 | [diff] [blame] | 34 | |
Alexander Graf | 1acbd0e | 2018-08-20 14:20:51 +0200 | [diff] [blame] | 35 | PLATFORM_RELFLAGS += -fdata-sections -ffunction-sections -fvisibility=hidden |
Graeme Russ | a85f53c | 2011-02-12 15:11:21 +1100 | [diff] [blame] | 36 | |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 37 | KBUILD_LDFLAGS += -Bsymbolic -Bsymbolic-functions |
| 38 | KBUILD_LDFLAGS += -m $(if $(IS_32BIT),elf_i386,elf_x86_64) |
Graeme Russ | a85f53c | 2011-02-12 15:11:21 +1100 | [diff] [blame] | 39 | |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 40 | # This is used in the top-level Makefile which does not include |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 41 | # KBUILD_LDFLAGS |
Bin Meng | 972ffcd | 2018-10-02 07:39:30 -0700 | [diff] [blame] | 42 | LDFLAGS_EFI_PAYLOAD := -Bsymbolic -Bsymbolic-functions -shared --no-undefined -s |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 43 | |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 44 | OBJCOPYFLAGS_EFI := -j .text -j .sdata -j .data -j .dynamic -j .dynsym \ |
Simon Glass | 8d76744 | 2021-09-24 18:30:19 -0600 | [diff] [blame] | 45 | -j .rel -j .rela -j .reloc --strip-all |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 46 | |
Heinrich Schuchardt | 1598c83 | 2021-04-11 11:21:57 +0200 | [diff] [blame] | 47 | # Compiler flags to be added when building UEFI applications |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 48 | CFLAGS_EFI := -fpic -fshort-wchar |
Heinrich Schuchardt | 1598c83 | 2021-04-11 11:21:57 +0200 | [diff] [blame] | 49 | # Compiler flags to be removed when building UEFI applications |
Joel Peshkin | 4e9bce1 | 2021-04-11 11:21:58 +0200 | [diff] [blame] | 50 | CFLAGS_NON_EFI := -mregparm=3 -fstack-protector-strong |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 51 | |
Simon Glass | 081dfcf | 2022-01-04 03:51:16 -0700 | [diff] [blame^] | 52 | ifeq ($(IS_32BIT),y) |
| 53 | EFIPAYLOAD_BFDARCH = i386 |
| 54 | else |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 55 | CFLAGS_EFI += $(call cc-option, -mno-red-zone) |
Simon Glass | 081dfcf | 2022-01-04 03:51:16 -0700 | [diff] [blame^] | 56 | EFIPAYLOAD_BFDARCH = x86_64 |
| 57 | endif |
| 58 | |
| 59 | ifeq ($(EFI_IS_32BIT),y) |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 60 | EFIARCH = ia32 |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 61 | EFIPAYLOAD_BFDTARGET = elf32-i386 |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 62 | else |
| 63 | EFIARCH = x86_64 |
| 64 | EFIPAYLOAD_BFDTARGET = elf64-x86-64 |
| 65 | endif |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 66 | |
Simon Glass | d36badf | 2016-11-07 08:47:13 -0700 | [diff] [blame] | 67 | LDSCRIPT_EFI := $(srctree)/arch/x86/lib/elf_$(EFIARCH)_efi.lds |
Simon Glass | 2dcd4e9 | 2016-11-07 08:47:14 -0700 | [diff] [blame] | 68 | EFISTUB := crt0_$(EFIARCH)_efi.o reloc_$(EFIARCH)_efi.o |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 69 | OBJCOPYFLAGS_EFI += --target=efi-app-$(EFIARCH) |
| 70 | |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 71 | CPPFLAGS_REMOVE_crt0-efi-$(EFIARCH).o += $(CFLAGS_NON_EFI) |
| 72 | CPPFLAGS_crt0-efi-$(EFIARCH).o += $(CFLAGS_EFI) |
| 73 | |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 74 | ifeq ($(CONFIG_EFI_APP),y) |
| 75 | |
| 76 | PLATFORM_CPPFLAGS += $(CFLAGS_EFI) |
Simon Glass | 8d76744 | 2021-09-24 18:30:19 -0600 | [diff] [blame] | 77 | LDFLAGS_FINAL += -znocombreloc -shared |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 78 | LDSCRIPT := $(LDSCRIPT_EFI) |
| 79 | |
| 80 | else |
| 81 | |
Heinrich Schuchardt | 1598c83 | 2021-04-11 11:21:57 +0200 | [diff] [blame] | 82 | ifeq ($(IS_32BIT),y) |
| 83 | PLATFORM_CPPFLAGS += -mregparm=3 |
| 84 | endif |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 85 | KBUILD_LDFLAGS += --emit-relocs |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 86 | LDFLAGS_FINAL += --gc-sections $(if $(CONFIG_SPL_BUILD),,-pie) |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 87 | |
| 88 | endif |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 89 | |
Simon Glass | 3a03703 | 2017-01-16 07:04:26 -0700 | [diff] [blame] | 90 | ifdef CONFIG_X86_64 |
| 91 | ifndef CONFIG_SPL_BUILD |
| 92 | PLATFORM_CPPFLAGS += -D__x86_64__ |
| 93 | else |
| 94 | PLATFORM_CPPFLAGS += -D__I386__ |
| 95 | endif |
| 96 | else |
| 97 | PLATFORM_CPPFLAGS += -D__I386__ |
| 98 | endif |
| 99 | |
Heinrich Schuchardt | 508d856 | 2018-05-18 19:12:19 +0200 | [diff] [blame] | 100 | ifdef CONFIG_EFI_STUB |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 101 | |
Heinrich Schuchardt | 508d856 | 2018-05-18 19:12:19 +0200 | [diff] [blame] | 102 | ifdef CONFIG_EFI_STUB_64BIT |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 103 | EFI_LDS := elf_x86_64_efi.lds |
| 104 | EFI_CRT0 := crt0_x86_64_efi.o |
| 105 | EFI_RELOC := reloc_x86_64_efi.o |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 106 | else |
| 107 | EFI_LDS := elf_ia32_efi.lds |
| 108 | EFI_CRT0 := crt0_ia32_efi.o |
| 109 | EFI_RELOC := reloc_ia32_efi.o |
Heinrich Schuchardt | f4cf153 | 2018-04-06 15:36:31 +0200 | [diff] [blame] | 110 | endif |
| 111 | |
Heinrich Schuchardt | 508d856 | 2018-05-18 19:12:19 +0200 | [diff] [blame] | 112 | else |
| 113 | |
| 114 | ifdef CONFIG_X86_64 |
| 115 | EFI_LDS := elf_x86_64_efi.lds |
| 116 | EFI_CRT0 := crt0_x86_64_efi.o |
| 117 | EFI_RELOC := reloc_x86_64_efi.o |
| 118 | else |
| 119 | EFI_LDS := elf_ia32_efi.lds |
| 120 | EFI_CRT0 := crt0_ia32_efi.o |
| 121 | EFI_RELOC := reloc_ia32_efi.o |
| 122 | endif |
| 123 | |
| 124 | endif |
| 125 | |
Heinrich Schuchardt | f4cf153 | 2018-04-06 15:36:31 +0200 | [diff] [blame] | 126 | ifdef CONFIG_X86_64 |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 127 | EFI_TARGET := --target=efi-app-x86_64 |
Heinrich Schuchardt | f4cf153 | 2018-04-06 15:36:31 +0200 | [diff] [blame] | 128 | else |
| 129 | EFI_TARGET := --target=efi-app-ia32 |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 130 | endif |