blob: 2e3a7119e798b2068d7df74711cb3eca3991eefd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00002#
3# (C) Copyright 2000-2002
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk2262cfe2002-11-18 00:14:45 +00005
Graeme Russ5c161652010-10-07 20:03:23 +11006PLATFORM_CPPFLAGS += -fomit-frame-pointer
Masahiro Yamadaf6941832014-02-26 14:51:01 +09007PF_CPPFLAGS_X86 := $(call cc-option, -fno-toplevel-reorder, \
Bin Meng9a95f512017-07-27 06:12:34 -07008 $(call cc-option, -fno-unit-at-a-time))
Ben Stoltz3f1c0462015-08-04 12:33:42 -06009
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000010PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_X86)
Graeme Russa85f53c2011-02-12 15:11:21 +110011PLATFORM_CPPFLAGS += -fno-dwarf2-cfi-asm
Simon Glass3a037032017-01-16 07:04:26 -070012
13ifdef CONFIG_SPL_BUILD
14IS_32BIT := y
15else
16ifndef CONFIG_X86_64
17IS_32BIT := y
18endif
19endif
20
Simon Glass081dfcf2022-01-04 03:51:16 -070021EFI_IS_32BIT := $(IS_32BIT)
22ifdef CONFIG_EFI_STUB_64BIT
23EFI_IS_32BIT :=
24endif
25
Simon Glass3a037032017-01-16 07:04:26 -070026ifeq ($(IS_32BIT),y)
Vasili Galkadbb72342014-06-10 16:14:56 +030027PLATFORM_CPPFLAGS += -march=i386 -m32
Simon Glass3a037032017-01-16 07:04:26 -070028else
Bin Menga139cc12018-10-13 20:52:01 -070029PLATFORM_CPPFLAGS += $(if $(CONFIG_SPL_BUILD),,-fpic) -fno-common -march=core2 -m64
Simon Glass5716be52024-01-04 08:10:39 -070030
31ifndef CONFIG_X86_HARDFP
Bin Mengdd4611d2018-10-13 20:52:02 -070032PLATFORM_CPPFLAGS += -mno-mmx -mno-sse
Simon Glass3a037032017-01-16 07:04:26 -070033endif
Graeme Russd664adb2010-10-07 20:03:20 +110034
Simon Glass5716be52024-01-04 08:10:39 -070035endif # IS_32BIT
36
Alexander Graf1acbd0e2018-08-20 14:20:51 +020037PLATFORM_RELFLAGS += -fdata-sections -ffunction-sections -fvisibility=hidden
Graeme Russa85f53c2011-02-12 15:11:21 +110038
Tom Rini587e4a42020-03-27 11:46:27 -040039KBUILD_LDFLAGS += -Bsymbolic -Bsymbolic-functions
40KBUILD_LDFLAGS += -m $(if $(IS_32BIT),elf_i386,elf_x86_64)
Graeme Russa85f53c2011-02-12 15:11:21 +110041
Simon Glass476476e2015-08-04 12:33:52 -060042# This is used in the top-level Makefile which does not include
Tom Rini587e4a42020-03-27 11:46:27 -040043# KBUILD_LDFLAGS
Tom Rinid85bc192023-02-14 15:09:32 -050044LDFLAGS_EFI_PAYLOAD := -Bsymbolic -Bsymbolic-functions -shared --no-undefined \
45 -s -zexecstack
Simon Glass476476e2015-08-04 12:33:52 -060046
Ben Stoltz3f1c0462015-08-04 12:33:42 -060047OBJCOPYFLAGS_EFI := -j .text -j .sdata -j .data -j .dynamic -j .dynsym \
Simon Glass8d767442021-09-24 18:30:19 -060048 -j .rel -j .rela -j .reloc --strip-all
Ben Stoltz3f1c0462015-08-04 12:33:42 -060049
Heinrich Schuchardt1598c832021-04-11 11:21:57 +020050# Compiler flags to be added when building UEFI applications
Ben Stoltz3f1c0462015-08-04 12:33:42 -060051CFLAGS_EFI := -fpic -fshort-wchar
Heinrich Schuchardt1598c832021-04-11 11:21:57 +020052# Compiler flags to be removed when building UEFI applications
Joel Peshkin4e9bce12021-04-11 11:21:58 +020053CFLAGS_NON_EFI := -mregparm=3 -fstack-protector-strong
Ben Stoltz3f1c0462015-08-04 12:33:42 -060054
Simon Glass081dfcf2022-01-04 03:51:16 -070055ifeq ($(IS_32BIT),y)
56EFIPAYLOAD_BFDARCH = i386
57else
Simon Glass96a8d402015-08-04 12:33:56 -060058CFLAGS_EFI += $(call cc-option, -mno-red-zone)
Simon Glass081dfcf2022-01-04 03:51:16 -070059EFIPAYLOAD_BFDARCH = x86_64
60endif
61
62ifeq ($(EFI_IS_32BIT),y)
Ben Stoltz3f1c0462015-08-04 12:33:42 -060063EFIARCH = ia32
Simon Glass476476e2015-08-04 12:33:52 -060064EFIPAYLOAD_BFDTARGET = elf32-i386
Simon Glass96a8d402015-08-04 12:33:56 -060065else
66EFIARCH = x86_64
67EFIPAYLOAD_BFDTARGET = elf64-x86-64
68endif
Simon Glass476476e2015-08-04 12:33:52 -060069
Simon Glassd36badf2016-11-07 08:47:13 -070070LDSCRIPT_EFI := $(srctree)/arch/x86/lib/elf_$(EFIARCH)_efi.lds
Simon Glass2dcd4e92016-11-07 08:47:14 -070071EFISTUB := crt0_$(EFIARCH)_efi.o reloc_$(EFIARCH)_efi.o
Ben Stoltz3f1c0462015-08-04 12:33:42 -060072OBJCOPYFLAGS_EFI += --target=efi-app-$(EFIARCH)
73
Simon Glass96a8d402015-08-04 12:33:56 -060074CPPFLAGS_REMOVE_crt0-efi-$(EFIARCH).o += $(CFLAGS_NON_EFI)
75CPPFLAGS_crt0-efi-$(EFIARCH).o += $(CFLAGS_EFI)
76
Ben Stoltz3f1c0462015-08-04 12:33:42 -060077ifeq ($(CONFIG_EFI_APP),y)
78
79PLATFORM_CPPFLAGS += $(CFLAGS_EFI)
Simon Glass8d767442021-09-24 18:30:19 -060080LDFLAGS_FINAL += -znocombreloc -shared
Ben Stoltz3f1c0462015-08-04 12:33:42 -060081LDSCRIPT := $(LDSCRIPT_EFI)
82
83else
84
Heinrich Schuchardt1598c832021-04-11 11:21:57 +020085ifeq ($(IS_32BIT),y)
86PLATFORM_CPPFLAGS += -mregparm=3
87endif
Tom Rini587e4a42020-03-27 11:46:27 -040088KBUILD_LDFLAGS += --emit-relocs
Simon Glass3a037032017-01-16 07:04:26 -070089LDFLAGS_FINAL += --gc-sections $(if $(CONFIG_SPL_BUILD),,-pie)
Ben Stoltz3f1c0462015-08-04 12:33:42 -060090
91endif
Simon Glass5bd828b2016-11-07 08:47:15 -070092
Simon Glass3a037032017-01-16 07:04:26 -070093ifdef CONFIG_X86_64
94ifndef CONFIG_SPL_BUILD
95PLATFORM_CPPFLAGS += -D__x86_64__
96else
97PLATFORM_CPPFLAGS += -D__I386__
98endif
99else
100PLATFORM_CPPFLAGS += -D__I386__
101endif
102
Heinrich Schuchardt508d8562018-05-18 19:12:19 +0200103ifdef CONFIG_EFI_STUB
Simon Glass5bd828b2016-11-07 08:47:15 -0700104
Heinrich Schuchardt508d8562018-05-18 19:12:19 +0200105ifdef CONFIG_EFI_STUB_64BIT
Simon Glass5bd828b2016-11-07 08:47:15 -0700106EFI_LDS := elf_x86_64_efi.lds
107EFI_CRT0 := crt0_x86_64_efi.o
108EFI_RELOC := reloc_x86_64_efi.o
Simon Glass5bd828b2016-11-07 08:47:15 -0700109else
110EFI_LDS := elf_ia32_efi.lds
111EFI_CRT0 := crt0_ia32_efi.o
112EFI_RELOC := reloc_ia32_efi.o
Heinrich Schuchardtf4cf1532018-04-06 15:36:31 +0200113endif
114
Heinrich Schuchardt508d8562018-05-18 19:12:19 +0200115else
116
117ifdef CONFIG_X86_64
118EFI_LDS := elf_x86_64_efi.lds
119EFI_CRT0 := crt0_x86_64_efi.o
120EFI_RELOC := reloc_x86_64_efi.o
121else
122EFI_LDS := elf_ia32_efi.lds
123EFI_CRT0 := crt0_ia32_efi.o
124EFI_RELOC := reloc_ia32_efi.o
125endif
126
127endif
128
Heinrich Schuchardtf4cf1532018-04-06 15:36:31 +0200129ifdef CONFIG_X86_64
Simon Glass5bd828b2016-11-07 08:47:15 -0700130EFI_TARGET := --target=efi-app-x86_64
Heinrich Schuchardtf4cf1532018-04-06 15:36:31 +0200131else
132EFI_TARGET := --target=efi-app-ia32
Simon Glass5bd828b2016-11-07 08:47:15 -0700133endif