Makefile 11 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2 3
# Unified Makefile for i386 and x86_64

4
# select defconfig based on actual architecture
5
ifeq ($(ARCH),x86)
6
  ifeq ($(shell uname -m | sed -e 's/i.86/i386/'),i386)
7
        KBUILD_DEFCONFIG := i386_defconfig
8 9
  else
        KBUILD_DEFCONFIG := x86_64_defconfig
10
  endif
11 12 13
else
        KBUILD_DEFCONFIG := $(ARCH)_defconfig
endif
14

15 16 17 18 19 20 21 22
ifdef CONFIG_CC_IS_GCC
RETPOLINE_CFLAGS	:= $(call cc-option,-mindirect-branch=thunk-extern -mindirect-branch-register)
RETPOLINE_VDSO_CFLAGS	:= $(call cc-option,-mindirect-branch=thunk-inline -mindirect-branch-register)
endif
ifdef CONFIG_CC_IS_CLANG
RETPOLINE_CFLAGS	:= -mretpoline-external-thunk
RETPOLINE_VDSO_CFLAGS	:= -mretpoline
endif
23
RETPOLINE_CFLAGS	+= $(call cc-option,-mindirect-branch-cs-prefix)
24

25
ifdef CONFIG_MITIGATION_RETHUNK
26 27 28 29
RETHUNK_CFLAGS		:= -mfunction-return=thunk-extern
RETPOLINE_CFLAGS	+= $(RETHUNK_CFLAGS)
endif

30
export RETHUNK_CFLAGS
31 32 33
export RETPOLINE_CFLAGS
export RETPOLINE_VDSO_CFLAGS

34 35 36
# For gcc stack alignment is specified with -mpreferred-stack-boundary,
# clang has the option -mstack-alignment for that purpose.
ifneq ($(call cc-option, -mpreferred-stack-boundary=4),)
37 38 39 40 41
      cc_stack_align4 := -mpreferred-stack-boundary=2
      cc_stack_align8 := -mpreferred-stack-boundary=3
else ifneq ($(call cc-option, -mstack-alignment=16),)
      cc_stack_align4 := -mstack-alignment=4
      cc_stack_align8 := -mstack-alignment=8
42 43
endif

44 45
# How to compile the 16-bit code.  Note we always compile for -march=i386;
# that way we can complain to the user if the CPU is insufficient.
46
REALMODE_CFLAGS	:= -std=gnu11 -m16 -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
47 48
		   -Wall -Wstrict-prototypes -march=i386 -mregparm=3 \
		   -fno-strict-aliasing -fomit-frame-pointer -fno-pic \
49
		   -mno-mmx -mno-sse $(call cc-option,-fcf-protection=none)
50

51
REALMODE_CFLAGS += -ffreestanding
52
REALMODE_CFLAGS += -fno-stack-protector
53 54
REALMODE_CFLAGS += -Wno-address-of-packed-member
REALMODE_CFLAGS += $(cc_stack_align4)
55
REALMODE_CFLAGS += $(CLANG_FLAGS)
56 57 58
ifdef CONFIG_CC_IS_CLANG
REALMODE_CFLAGS += -Wno-gnu
endif
59 60
export REALMODE_CFLAGS

61 62 63 64
# BITS is used as extension for files which are available in a 32 bit
# and a 64 bit version to simplify shared Makefiles.
# e.g.: obj-y += foo_$(BITS).o
export BITS
65

66 67 68 69 70 71 72
#
# Prevent GCC from generating any FP code by mistake.
#
# This must happen before we try the -mpreferred-stack-boundary, see:
#
#    https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53383
#
73
KBUILD_CFLAGS += -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx
74
KBUILD_RUSTFLAGS += --target=$(objtree)/scripts/target.json
75
KBUILD_RUSTFLAGS += -Ctarget-feature=-sse,-sse2,-sse3,-ssse3,-sse4.1,-sse4.2,-avx,-avx2
76

Peter Zijlstra's avatar
Peter Zijlstra committed
77 78 79 80 81 82 83 84 85 86 87
ifeq ($(CONFIG_X86_KERNEL_IBT),y)
#
# Kernel IBT has S_CET.NOTRACK_EN=0, as such the compilers must not generate
# NOTRACK prefixes. Current generation compilers unconditionally employ NOTRACK
# for jump-tables, as such, disable jump-tables for now.
#
# (jump-tables are implicitly disabled by RETPOLINE)
#
#   https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104816
#
KBUILD_CFLAGS += $(call cc-option,-fcf-protection=branch -fno-jump-tables)
88
KBUILD_RUSTFLAGS += -Zcf-protection=branch -Zno-jump-tables
Peter Zijlstra's avatar
Peter Zijlstra committed
89
else
90
KBUILD_CFLAGS += $(call cc-option,-fcf-protection=none)
Peter Zijlstra's avatar
Peter Zijlstra committed
91
endif
92

93
ifeq ($(CONFIG_X86_32),y)
94
        BITS := 32
95
        UTS_MACHINE := i386
96
        CHECKFLAGS += -D__i386__
97

98 99
        KBUILD_AFLAGS += -m32
        KBUILD_CFLAGS += -m32
100 101 102

        KBUILD_CFLAGS += -msoft-float -mregparm=3 -freg-struct-return

103 104 105 106
        # Never want PIC in a 32-bit kernel, prevent breakage with GCC built
        # with nonstandard options
        KBUILD_CFLAGS += -fno-pic

107 108 109
        # Align the stack to the register width instead of using the default
        # alignment of 16 bytes. This reduces stack usage and the number of
        # alignment instructions.
110
        KBUILD_CFLAGS += $(cc_stack_align4)
111 112

        # CPU-specific tuning. Anything which can be shared with UML should go here.
113
        include $(srctree)/arch/x86/Makefile_32.cpu
114 115 116 117
        KBUILD_CFLAGS += $(cflags-y)

        # temporary until string.h is fixed
        KBUILD_CFLAGS += -ffreestanding
118

119 120
    ifeq ($(CONFIG_STACKPROTECTOR),y)
        ifeq ($(CONFIG_SMP),y)
121
			KBUILD_CFLAGS += -mstack-protector-guard-reg=fs -mstack-protector-guard-symbol=__stack_chk_guard
122
        else
123
			KBUILD_CFLAGS += -mstack-protector-guard=global
124
        endif
125
    endif
126
else
127
        BITS := 64
128
        UTS_MACHINE := x86_64
129
        CHECKFLAGS += -D__x86_64__
130 131 132 133

        KBUILD_AFLAGS += -m64
        KBUILD_CFLAGS += -m64

134
        # Align jump targets to 1 byte, not the default 16 bytes:
135
        KBUILD_CFLAGS += $(call cc-option,-falign-jumps=1)
136

137
        # Pack loops tightly as well:
138
        KBUILD_CFLAGS += $(call cc-option,-falign-loops=1)
139

140
        # Don't autogenerate traditional x87 instructions
141
        KBUILD_CFLAGS += -mno-80387
142
        KBUILD_CFLAGS += $(call cc-option,-mno-fp-ret-in-387)
143

144 145 146 147 148 149 150
        # By default gcc and clang use a stack alignment of 16 bytes for x86.
        # However the standard kernel entry on x86-64 leaves the stack on an
        # 8-byte boundary. If the compiler isn't informed about the actual
        # alignment it will generate extra alignment instructions for the
        # default alignment which keep the stack *mis*aligned.
        # Furthermore an alignment to the register width reduces stack usage
        # and the number of alignment instructions.
151
        KBUILD_CFLAGS += $(cc_stack_align8)
152

153 154 155
	# Use -mskip-rax-setup if supported.
	KBUILD_CFLAGS += $(call cc-option,-mskip-rax-setup)

156
        # FIXME - should be integrated in Makefile.cpu (Makefile_32.cpu)
157 158 159 160 161
        cflags-$(CONFIG_MK8)		+= -march=k8
        cflags-$(CONFIG_MPSC)		+= -march=nocona
        cflags-$(CONFIG_MCORE2)		+= -march=core2
        cflags-$(CONFIG_MATOM)		+= -march=atom
        cflags-$(CONFIG_GENERIC_CPU)	+= -mtune=generic
162 163
        KBUILD_CFLAGS += $(cflags-y)

164 165 166 167 168 169 170
        rustflags-$(CONFIG_MK8)		+= -Ctarget-cpu=k8
        rustflags-$(CONFIG_MPSC)	+= -Ctarget-cpu=nocona
        rustflags-$(CONFIG_MCORE2)	+= -Ctarget-cpu=core2
        rustflags-$(CONFIG_MATOM)	+= -Ctarget-cpu=atom
        rustflags-$(CONFIG_GENERIC_CPU)	+= -Ztune-cpu=generic
        KBUILD_RUSTFLAGS += $(rustflags-y)

171 172
        KBUILD_CFLAGS += -mno-red-zone
        KBUILD_CFLAGS += -mcmodel=kernel
173 174
        KBUILD_RUSTFLAGS += -Cno-redzone=y
        KBUILD_RUSTFLAGS += -Ccode-model=kernel
175
endif
176

177 178 179 180 181 182 183 184 185 186 187 188
#
# If the function graph tracer is used with mcount instead of fentry,
# '-maccumulate-outgoing-args' is needed to prevent a GCC bug
# (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42109)
#
ifdef CONFIG_FUNCTION_GRAPH_TRACER
  ifndef CONFIG_HAVE_FENTRY
	ACCUMULATE_OUTGOING_ARGS := 1
  endif
endif

ifeq ($(ACCUMULATE_OUTGOING_ARGS), 1)
189 190
	# This compiler flag is not supported by Clang:
	KBUILD_CFLAGS += $(call cc-option,-maccumulate-outgoing-args,)
191 192
endif

193 194 195 196
# Workaround for a gcc prelease that unfortunately was shipped in a suse release
KBUILD_CFLAGS += -Wno-sign-compare
#
KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
197

198
# Avoid indirect branches in kernel to deal with Spectre
199
ifdef CONFIG_MITIGATION_RETPOLINE
200
  KBUILD_CFLAGS += $(RETPOLINE_CFLAGS)
201 202 203
  # Additionally, avoid generating expensive indirect jumps which
  # are subject to retpolines for small number of switch cases.
  # clang turns off jump table generation by default when under
204 205 206 207
  # retpoline builds, however, gcc does not for x86. This has
  # only been fixed starting from gcc stable version 8.4.0 and
  # onwards, but not for older ones. See gcc bug #86952.
  ifndef CONFIG_CC_IS_CLANG
208
    KBUILD_CFLAGS += -fno-jump-tables
209
  endif
210 211
endif

212
ifdef CONFIG_MITIGATION_SLS
213 214 215
  KBUILD_CFLAGS += -mharden-sls=all
endif

216
ifdef CONFIG_CALL_PADDING
217 218 219 220 221
PADDING_CFLAGS := -fpatchable-function-entry=$(CONFIG_FUNCTION_PADDING_BYTES),$(CONFIG_FUNCTION_PADDING_BYTES)
KBUILD_CFLAGS += $(PADDING_CFLAGS)
export PADDING_CFLAGS
endif

222 223
KBUILD_LDFLAGS += -m elf_$(UTS_MACHINE)

224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
ifdef CONFIG_X86_NEED_RELOCS
LDFLAGS_vmlinux := --emit-relocs --discard-none
else
LDFLAGS_vmlinux :=
endif

#
# The 64-bit kernel must be aligned to 2MB.  Pass -z max-page-size=0x200000 to
# the linker to force 2MB page size regardless of the default page size used
# by the linker.
#
ifdef CONFIG_X86_64
LDFLAGS_vmlinux += -z max-page-size=0x200000
endif

239

240
archscripts: scripts_basic
241 242
	$(Q)$(MAKE) $(build)=arch/x86/tools relocs

243 244 245 246
###
# Syscall table generation

archheaders:
247
	$(Q)$(MAKE) $(build)=arch/x86/entry/syscalls all
248

249 250 251 252 253 254 255 256 257
###
# Kernel objects

libs-y  += arch/x86/lib/

# drivers-y are linked after core-y
drivers-$(CONFIG_MATH_EMULATION) += arch/x86/math-emu/
drivers-$(CONFIG_PCI)            += arch/x86/pci/

258
# suspend and hibernation support
259
drivers-$(CONFIG_PM) += arch/x86/power/
260

261
drivers-$(CONFIG_FB_CORE) += arch/x86/video/
262 263 264 265 266 267

####
# boot loader support. Several targets are kept for legacy purposes

boot := arch/x86/boot

268
BOOT_TARGETS = bzdisk fdimage fdimage144 fdimage288 hdimage isoimage
269 270

PHONY += bzImage $(BOOT_TARGETS)
271 272 273 274 275

# Default kernel to build
all: bzImage

# KBUILD_IMAGE specify target image being built
276
KBUILD_IMAGE := $(boot)/bzImage
277

278
bzImage: vmlinux
279 280 281
ifeq ($(CONFIG_X86_DECODER_SELFTEST),y)
	$(Q)$(MAKE) $(build)=arch/x86/tools posttest
endif
282 283
	$(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
	$(Q)mkdir -p $(objtree)/arch/$(UTS_MACHINE)/boot
284
	$(Q)ln -fsn ../../x86/boot/bzImage $(objtree)/arch/$(UTS_MACHINE)/boot/$@
285

286 287
$(BOOT_TARGETS): vmlinux
	$(Q)$(MAKE) $(build)=$(boot) $@
288

289 290
PHONY += install
install:
291
	$(call cmd,install)
292

293 294
vdso-install-$(CONFIG_X86_64)		+= arch/x86/entry/vdso/vdso64.so.dbg
vdso-install-$(CONFIG_X86_X32_ABI)	+= arch/x86/entry/vdso/vdsox32.so.dbg
295
vdso-install-$(CONFIG_COMPAT_32)	+= arch/x86/entry/vdso/vdso32.so.dbg
296

297 298
archprepare: checkbin
checkbin:
299
ifdef CONFIG_MITIGATION_RETPOLINE
300 301 302 303 304 305
ifeq ($(RETPOLINE_CFLAGS),)
	@echo "You are building kernel with non-retpoline compiler." >&2
	@echo "Please update your compiler." >&2
	@false
endif
endif
306

307 308 309 310 311 312 313 314 315 316 317 318
ifdef CONFIG_UNWINDER_ORC
orc_hash_h := arch/$(SRCARCH)/include/generated/asm/orc_hash.h
orc_hash_sh := $(srctree)/scripts/orc_hash.sh
targets += $(orc_hash_h)
quiet_cmd_orc_hash = GEN     $@
      cmd_orc_hash = mkdir -p $(dir $@); \
		     $(CONFIG_SHELL) $(orc_hash_sh) < $< > $@
$(orc_hash_h): $(srctree)/arch/x86/include/asm/orc_types.h $(orc_hash_sh) FORCE
	$(call if_changed,orc_hash)
archprepare: $(orc_hash_h)
endif

319 320 321 322 323
archclean:
	$(Q)rm -rf $(objtree)/arch/i386
	$(Q)rm -rf $(objtree)/arch/x86_64

define archhelp
324 325 326 327 328 329 330 331
  echo  '* bzImage		- Compressed kernel image (arch/x86/boot/bzImage)'
  echo  '  install		- Install kernel using (your) ~/bin/$(INSTALLKERNEL) or'
  echo  '			  (distribution) /sbin/$(INSTALLKERNEL) or install to '
  echo  '			  $$(INSTALL_PATH) and run lilo'
  echo  ''
  echo  '  fdimage		- Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
  echo  '  fdimage144		- Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
  echo  '  fdimage288		- Create 2.8MB boot floppy image (arch/x86/boot/fdimage)'
332
  echo  '  hdimage		- Create a BIOS/EFI hard disk image (arch/x86/boot/hdimage)'
333
  echo  '  isoimage		- Create a boot CD-ROM image (arch/x86/boot/image.iso)'
334
  echo  '			  bzdisk/fdimage*/hdimage/isoimage also accept:'
335
  echo  '			  FDARGS="..."  arguments for the booted kernel'
336
  echo  '			  FDINITRD=file initrd for the booted kernel'
337

338
endef