xref: /openbmc/linux/arch/x86/Makefile (revision d15cb3da)
1# SPDX-License-Identifier: GPL-2.0
2# Unified Makefile for i386 and x86_64
3
4# select defconfig based on actual architecture
5ifeq ($(ARCH),x86)
6  ifeq ($(shell uname -m),x86_64)
7        KBUILD_DEFCONFIG := x86_64_defconfig
8  else
9        KBUILD_DEFCONFIG := i386_defconfig
10  endif
11else
12        KBUILD_DEFCONFIG := $(ARCH)_defconfig
13endif
14
15ifdef CONFIG_CC_IS_GCC
16RETPOLINE_CFLAGS	:= $(call cc-option,-mindirect-branch=thunk-extern -mindirect-branch-register)
17RETPOLINE_CFLAGS	+= $(call cc-option,-mindirect-branch-cs-prefix)
18RETPOLINE_VDSO_CFLAGS	:= $(call cc-option,-mindirect-branch=thunk-inline -mindirect-branch-register)
19endif
20ifdef CONFIG_CC_IS_CLANG
21RETPOLINE_CFLAGS	:= -mretpoline-external-thunk
22RETPOLINE_VDSO_CFLAGS	:= -mretpoline
23endif
24export RETPOLINE_CFLAGS
25export RETPOLINE_VDSO_CFLAGS
26
27# For gcc stack alignment is specified with -mpreferred-stack-boundary,
28# clang has the option -mstack-alignment for that purpose.
29ifneq ($(call cc-option, -mpreferred-stack-boundary=4),)
30      cc_stack_align4 := -mpreferred-stack-boundary=2
31      cc_stack_align8 := -mpreferred-stack-boundary=3
32else ifneq ($(call cc-option, -mstack-alignment=16),)
33      cc_stack_align4 := -mstack-alignment=4
34      cc_stack_align8 := -mstack-alignment=8
35endif
36
37# How to compile the 16-bit code.  Note we always compile for -march=i386;
38# that way we can complain to the user if the CPU is insufficient.
39REALMODE_CFLAGS	:= -m16 -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
40		   -Wall -Wstrict-prototypes -march=i386 -mregparm=3 \
41		   -fno-strict-aliasing -fomit-frame-pointer -fno-pic \
42		   -mno-mmx -mno-sse $(call cc-option,-fcf-protection=none)
43
44REALMODE_CFLAGS += -ffreestanding
45REALMODE_CFLAGS += -fno-stack-protector
46REALMODE_CFLAGS += -Wno-address-of-packed-member
47REALMODE_CFLAGS += $(cc_stack_align4)
48REALMODE_CFLAGS += $(CLANG_FLAGS)
49export REALMODE_CFLAGS
50
51# BITS is used as extension for files which are available in a 32 bit
52# and a 64 bit version to simplify shared Makefiles.
53# e.g.: obj-y += foo_$(BITS).o
54export BITS
55
56#
57# Prevent GCC from generating any FP code by mistake.
58#
59# This must happen before we try the -mpreferred-stack-boundary, see:
60#
61#    https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53383
62#
63KBUILD_CFLAGS += -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx
64
65ifeq ($(CONFIG_X86_KERNEL_IBT),y)
66#
67# Kernel IBT has S_CET.NOTRACK_EN=0, as such the compilers must not generate
68# NOTRACK prefixes. Current generation compilers unconditionally employ NOTRACK
69# for jump-tables, as such, disable jump-tables for now.
70#
71# (jump-tables are implicitly disabled by RETPOLINE)
72#
73#   https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104816
74#
75KBUILD_CFLAGS += $(call cc-option,-fcf-protection=branch -fno-jump-tables)
76else
77KBUILD_CFLAGS += $(call cc-option,-fcf-protection=none)
78endif
79
80ifeq ($(CONFIG_X86_32),y)
81        BITS := 32
82        UTS_MACHINE := i386
83        CHECKFLAGS += -D__i386__
84
85        KBUILD_AFLAGS += -m32
86        KBUILD_CFLAGS += -m32
87
88        KBUILD_CFLAGS += -msoft-float -mregparm=3 -freg-struct-return
89
90        # Never want PIC in a 32-bit kernel, prevent breakage with GCC built
91        # with nonstandard options
92        KBUILD_CFLAGS += -fno-pic
93
94        # Align the stack to the register width instead of using the default
95        # alignment of 16 bytes. This reduces stack usage and the number of
96        # alignment instructions.
97        KBUILD_CFLAGS += $(cc_stack_align4)
98
99        # CPU-specific tuning. Anything which can be shared with UML should go here.
100        include $(srctree)/arch/x86/Makefile_32.cpu
101        KBUILD_CFLAGS += $(cflags-y)
102
103        # temporary until string.h is fixed
104        KBUILD_CFLAGS += -ffreestanding
105
106	ifeq ($(CONFIG_STACKPROTECTOR),y)
107		ifeq ($(CONFIG_SMP),y)
108			KBUILD_CFLAGS += -mstack-protector-guard-reg=fs -mstack-protector-guard-symbol=__stack_chk_guard
109		else
110			KBUILD_CFLAGS += -mstack-protector-guard=global
111		endif
112	endif
113else
114        BITS := 64
115        UTS_MACHINE := x86_64
116        CHECKFLAGS += -D__x86_64__
117
118        KBUILD_AFLAGS += -m64
119        KBUILD_CFLAGS += -m64
120
121        # Align jump targets to 1 byte, not the default 16 bytes:
122        KBUILD_CFLAGS += $(call cc-option,-falign-jumps=1)
123
124        # Pack loops tightly as well:
125        KBUILD_CFLAGS += $(call cc-option,-falign-loops=1)
126
127        # Don't autogenerate traditional x87 instructions
128        KBUILD_CFLAGS += -mno-80387
129        KBUILD_CFLAGS += $(call cc-option,-mno-fp-ret-in-387)
130
131        # By default gcc and clang use a stack alignment of 16 bytes for x86.
132        # However the standard kernel entry on x86-64 leaves the stack on an
133        # 8-byte boundary. If the compiler isn't informed about the actual
134        # alignment it will generate extra alignment instructions for the
135        # default alignment which keep the stack *mis*aligned.
136        # Furthermore an alignment to the register width reduces stack usage
137        # and the number of alignment instructions.
138        KBUILD_CFLAGS += $(cc_stack_align8)
139
140	# Use -mskip-rax-setup if supported.
141	KBUILD_CFLAGS += $(call cc-option,-mskip-rax-setup)
142
143        # FIXME - should be integrated in Makefile.cpu (Makefile_32.cpu)
144        cflags-$(CONFIG_MK8)		+= -march=k8
145        cflags-$(CONFIG_MPSC)		+= -march=nocona
146        cflags-$(CONFIG_MCORE2)		+= -march=core2
147        cflags-$(CONFIG_MATOM)		+= -march=atom
148        cflags-$(CONFIG_GENERIC_CPU)	+= -mtune=generic
149        KBUILD_CFLAGS += $(cflags-y)
150
151        KBUILD_CFLAGS += -mno-red-zone
152        KBUILD_CFLAGS += -mcmodel=kernel
153endif
154
155ifdef CONFIG_X86_X32
156	x32_ld_ok := $(call try-run,\
157			/bin/echo -e '1: .quad 1b' | \
158			$(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" - && \
159			$(OBJCOPY) -O elf32-x86-64 "$$TMP" "$$TMP.o" && \
160			$(LD) -m elf32_x86_64 "$$TMP.o" -o "$$TMP",y,n)
161        ifeq ($(x32_ld_ok),y)
162                CONFIG_X86_X32_ABI := y
163                KBUILD_AFLAGS += -DCONFIG_X86_X32_ABI
164                KBUILD_CFLAGS += -DCONFIG_X86_X32_ABI
165        else
166                $(warning CONFIG_X86_X32 enabled but no binutils support)
167        endif
168endif
169export CONFIG_X86_X32_ABI
170
171#
172# If the function graph tracer is used with mcount instead of fentry,
173# '-maccumulate-outgoing-args' is needed to prevent a GCC bug
174# (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42109)
175#
176ifdef CONFIG_FUNCTION_GRAPH_TRACER
177  ifndef CONFIG_HAVE_FENTRY
178	ACCUMULATE_OUTGOING_ARGS := 1
179  endif
180endif
181
182ifeq ($(ACCUMULATE_OUTGOING_ARGS), 1)
183	# This compiler flag is not supported by Clang:
184	KBUILD_CFLAGS += $(call cc-option,-maccumulate-outgoing-args,)
185endif
186
187# Workaround for a gcc prelease that unfortunately was shipped in a suse release
188KBUILD_CFLAGS += -Wno-sign-compare
189#
190KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
191
192# Avoid indirect branches in kernel to deal with Spectre
193ifdef CONFIG_RETPOLINE
194  KBUILD_CFLAGS += $(RETPOLINE_CFLAGS)
195  # Additionally, avoid generating expensive indirect jumps which
196  # are subject to retpolines for small number of switch cases.
197  # clang turns off jump table generation by default when under
198  # retpoline builds, however, gcc does not for x86. This has
199  # only been fixed starting from gcc stable version 8.4.0 and
200  # onwards, but not for older ones. See gcc bug #86952.
201  ifndef CONFIG_CC_IS_CLANG
202    KBUILD_CFLAGS += -fno-jump-tables
203  endif
204endif
205
206ifdef CONFIG_SLS
207  KBUILD_CFLAGS += -mharden-sls=all
208endif
209
210KBUILD_LDFLAGS += -m elf_$(UTS_MACHINE)
211
212ifdef CONFIG_LTO_CLANG
213ifeq ($(shell test $(CONFIG_LLD_VERSION) -lt 130000; echo $$?),0)
214KBUILD_LDFLAGS	+= -plugin-opt=-stack-alignment=$(if $(CONFIG_X86_32),4,8)
215endif
216endif
217
218ifdef CONFIG_X86_NEED_RELOCS
219LDFLAGS_vmlinux := --emit-relocs --discard-none
220else
221LDFLAGS_vmlinux :=
222endif
223
224#
225# The 64-bit kernel must be aligned to 2MB.  Pass -z max-page-size=0x200000 to
226# the linker to force 2MB page size regardless of the default page size used
227# by the linker.
228#
229ifdef CONFIG_X86_64
230LDFLAGS_vmlinux += -z max-page-size=0x200000
231endif
232
233
234archscripts: scripts_basic
235	$(Q)$(MAKE) $(build)=arch/x86/tools relocs
236
237###
238# Syscall table generation
239
240archheaders:
241	$(Q)$(MAKE) $(build)=arch/x86/entry/syscalls all
242
243###
244# Kernel objects
245
246head-y := arch/x86/kernel/head_$(BITS).o
247head-y += arch/x86/kernel/head$(BITS).o
248head-y += arch/x86/kernel/ebda.o
249head-y += arch/x86/kernel/platform-quirks.o
250
251libs-y  += arch/x86/lib/
252
253# drivers-y are linked after core-y
254drivers-$(CONFIG_MATH_EMULATION) += arch/x86/math-emu/
255drivers-$(CONFIG_PCI)            += arch/x86/pci/
256
257# suspend and hibernation support
258drivers-$(CONFIG_PM) += arch/x86/power/
259
260drivers-$(CONFIG_FB) += arch/x86/video/
261
262####
263# boot loader support. Several targets are kept for legacy purposes
264
265boot := arch/x86/boot
266
267BOOT_TARGETS = bzdisk fdimage fdimage144 fdimage288 hdimage isoimage
268
269PHONY += bzImage $(BOOT_TARGETS)
270
271# Default kernel to build
272all: bzImage
273
274# KBUILD_IMAGE specify target image being built
275KBUILD_IMAGE := $(boot)/bzImage
276
277bzImage: vmlinux
278ifeq ($(CONFIG_X86_DECODER_SELFTEST),y)
279	$(Q)$(MAKE) $(build)=arch/x86/tools posttest
280endif
281	$(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
282	$(Q)mkdir -p $(objtree)/arch/$(UTS_MACHINE)/boot
283	$(Q)ln -fsn ../../x86/boot/bzImage $(objtree)/arch/$(UTS_MACHINE)/boot/$@
284
285$(BOOT_TARGETS): vmlinux
286	$(Q)$(MAKE) $(build)=$(boot) $@
287
288PHONY += install
289install:
290	$(CONFIG_SHELL) $(srctree)/$(boot)/install.sh $(KERNELRELEASE) \
291		$(KBUILD_IMAGE) System.map "$(INSTALL_PATH)"
292
293PHONY += vdso_install
294vdso_install:
295	$(Q)$(MAKE) $(build)=arch/x86/entry/vdso $@
296
297archprepare: checkbin
298checkbin:
299ifndef CONFIG_CC_HAS_ASM_GOTO
300	@echo Compiler lacks asm-goto support.
301	@exit 1
302endif
303ifdef CONFIG_RETPOLINE
304ifeq ($(RETPOLINE_CFLAGS),)
305	@echo "You are building kernel with non-retpoline compiler." >&2
306	@echo "Please update your compiler." >&2
307	@false
308endif
309endif
310
311archclean:
312	$(Q)rm -rf $(objtree)/arch/i386
313	$(Q)rm -rf $(objtree)/arch/x86_64
314
315define archhelp
316  echo  '* bzImage		- Compressed kernel image (arch/x86/boot/bzImage)'
317  echo  '  install		- Install kernel using (your) ~/bin/$(INSTALLKERNEL) or'
318  echo  '			  (distribution) /sbin/$(INSTALLKERNEL) or install to '
319  echo  '			  $$(INSTALL_PATH) and run lilo'
320  echo  ''
321  echo  '  fdimage		- Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
322  echo  '  fdimage144		- Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
323  echo  '  fdimage288		- Create 2.8MB boot floppy image (arch/x86/boot/fdimage)'
324  echo  '  hdimage		- Create a BIOS/EFI hard disk image (arch/x86/boot/hdimage)'
325  echo  '  isoimage		- Create a boot CD-ROM image (arch/x86/boot/image.iso)'
326  echo  '			  bzdisk/fdimage*/hdimage/isoimage also accept:'
327  echo  '			  FDARGS="..."  arguments for the booted kernel'
328  echo  '			  FDINITRD=file initrd for the booted kernel'
329  echo  ''
330  echo  '  kvm_guest.config	- Enable Kconfig items for running this kernel as a KVM guest'
331  echo  '  xen.config		- Enable Kconfig items for running this kernel as a Xen guest'
332
333endef
334