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