1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for the linux s390-specific parts of the memory manager. 4# 5 6# Tooling runtimes are unavailable and cannot be linked for early boot code 7KCOV_INSTRUMENT := n 8GCOV_PROFILE := n 9UBSAN_SANITIZE := n 10KASAN_SANITIZE := n 11KCSAN_SANITIZE := n 12KMSAN_SANITIZE := n 13 14# 15# Use minimum architecture level so it is possible to print an error 16# message if the kernel is started on a machine which is too old 17# 18CC_FLAGS_MARCH_MINIMUM := -march=z10 19 20KBUILD_AFLAGS := $(filter-out $(CC_FLAGS_MARCH),$(KBUILD_AFLAGS_DECOMPRESSOR)) 21KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_MARCH),$(KBUILD_CFLAGS_DECOMPRESSOR)) 22KBUILD_AFLAGS += $(CC_FLAGS_MARCH_MINIMUM) -D__DISABLE_EXPORTS 23KBUILD_CFLAGS += $(CC_FLAGS_MARCH_MINIMUM) -D__DISABLE_EXPORTS 24KBUILD_CFLAGS += $(call cc-option, -Wno-default-const-init-unsafe) 25 26CFLAGS_sclp_early_core.o += -I$(srctree)/drivers/s390/char 27 28# string.o implements standard library functions like memset/memcpy etc. 29# Use -ffreestanding to ensure that the compiler does not try to "optimize" 30# them into calls to themselves. 31CFLAGS_string.o = -ffreestanding 32 33obj-y := head.o als.o startup.o physmem_info.o ipl_parm.o ipl_report.o vmem.o 34obj-y += string.o ebcdic.o sclp_early_core.o ipl_vmparm.o cmdline.o 35obj-y += version.o pgm_check.o ctype.o ipl_data.o relocs.o alternative.o 36obj-y += uv.o printk.o trampoline.o 37obj-$(CONFIG_RANDOMIZE_BASE) += kaslr.o 38obj-y += $(if $(CONFIG_KERNEL_UNCOMPRESSED),,decompressor.o) info.o 39obj-$(CONFIG_KERNEL_ZSTD) += clz_ctz.o 40obj-$(CONFIG_KMSAN) += kmsan.o 41obj-$(CONFIG_STACKPROTECTOR) += stackprotector.o 42obj-all := $(obj-y) piggy.o syms.o 43 44targets := bzImage section_cmp.boot.data section_cmp.boot.preserved.data $(obj-y) 45targets += vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 46targets += vmlinux.bin.xz vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.lz4 47targets += vmlinux.bin.zst info.bin syms.bin vmlinux.syms $(obj-all) 48targets += relocs.S 49 50OBJECTS := $(addprefix $(obj)/,$(obj-y)) 51OBJECTS_ALL := $(addprefix $(obj)/,$(obj-all)) 52 53clean-files += vmlinux.map 54 55quiet_cmd_section_cmp = SECTCMP $* 56define cmd_section_cmp 57 s1=`$(OBJDUMP) -t "$<" | grep "\s$*\s\+" | sort | \ 58 sed -n "/0000000000000000/! s/.*\s$*\s\+//p" | sha256sum`; \ 59 s2=`$(OBJDUMP) -t "$(word 2,$^)" | grep "\s$*\s\+" | sort | \ 60 sed -n "/0000000000000000/! s/.*\s$*\s\+//p" | sha256sum`; \ 61 if [ "$$s1" != "$$s2" ]; then \ 62 echo "error: section $* differs between $< and $(word 2,$^)" >&2; \ 63 exit 1; \ 64 fi; \ 65 touch $@ 66endef 67 68$(obj)/bzImage: $(obj)/vmlinux $(obj)/section_cmp.boot.data $(obj)/section_cmp.boot.preserved.data FORCE 69 $(call if_changed,objcopy) 70 71$(obj)/section_cmp%: vmlinux $(obj)/vmlinux FORCE 72 $(call if_changed,section_cmp) 73 74LDFLAGS_vmlinux-$(CONFIG_LD_ORPHAN_WARN) := --orphan-handling=$(CONFIG_LD_ORPHAN_WARN_LEVEL) 75LDFLAGS_vmlinux := $(LDFLAGS_vmlinux-y) --oformat $(LD_BFD) -e startup $(if $(CONFIG_VMLINUX_MAP),-Map=$(obj)/vmlinux.map) --build-id=sha1 -T 76$(obj)/vmlinux: $(obj)/vmlinux.lds $(OBJECTS_ALL) FORCE 77 $(call if_changed,ld) 78 79LDFLAGS_vmlinux.syms := $(LDFLAGS_vmlinux-y) --oformat $(LD_BFD) -e startup -T 80$(obj)/vmlinux.syms: $(obj)/vmlinux.lds $(OBJECTS) FORCE 81 $(call if_changed,ld) 82 83quiet_cmd_dumpsyms = DUMPSYMS $< 84define cmd_dumpsyms 85 $(NM) -n -S --format=bsd "$<" | sed -nE 's/^0*([0-9a-fA-F]+) 0*([0-9a-fA-F]+) [tT] ([^ ]*)$$/\1 \2 \3/p' | tr '\n' '\0' > "$@" 86endef 87 88$(obj)/syms.bin: $(obj)/vmlinux.syms FORCE 89 $(call if_changed,dumpsyms) 90 91OBJCOPYFLAGS_syms.o := -I binary -O elf64-s390 -B s390:64-bit --rename-section .data=.decompressor.syms 92$(obj)/syms.o: $(obj)/syms.bin FORCE 93 $(call if_changed,objcopy) 94 95OBJCOPYFLAGS_info.bin := -O binary --only-section=.vmlinux.info --set-section-flags .vmlinux.info=alloc,load 96$(obj)/info.bin: vmlinux FORCE 97 $(call if_changed,objcopy) 98 99OBJCOPYFLAGS_info.o := -I binary -O elf64-s390 -B s390:64-bit --rename-section .data=.vmlinux.info 100$(obj)/info.o: $(obj)/info.bin FORCE 101 $(call if_changed,objcopy) 102 103OBJCOPYFLAGS_vmlinux.bin := -O binary --remove-section=.comment --remove-section=.vmlinux.info -S 104$(obj)/vmlinux.bin: vmlinux FORCE 105 $(call if_changed,objcopy) 106 107# relocs.S is created by the vmlinux postlink step. 108$(obj)/relocs.S: vmlinux 109 @true 110 111suffix-$(CONFIG_KERNEL_GZIP) := .gz 112suffix-$(CONFIG_KERNEL_BZIP2) := .bz2 113suffix-$(CONFIG_KERNEL_LZ4) := .lz4 114suffix-$(CONFIG_KERNEL_LZMA) := .lzma 115suffix-$(CONFIG_KERNEL_LZO) := .lzo 116suffix-$(CONFIG_KERNEL_XZ) := .xz 117suffix-$(CONFIG_KERNEL_ZSTD) := .zst 118 119$(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE 120 $(call if_changed,gzip) 121$(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE 122 $(call if_changed,bzip2_with_size) 123$(obj)/vmlinux.bin.lz4: $(obj)/vmlinux.bin FORCE 124 $(call if_changed,lz4_with_size) 125$(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE 126 $(call if_changed,lzma_with_size) 127$(obj)/vmlinux.bin.lzo: $(obj)/vmlinux.bin FORCE 128 $(call if_changed,lzo_with_size) 129$(obj)/vmlinux.bin.xz: $(obj)/vmlinux.bin FORCE 130 $(call if_changed,xzkern_with_size) 131$(obj)/vmlinux.bin.zst: $(obj)/vmlinux.bin FORCE 132 $(call if_changed,zstd22_with_size) 133 134OBJCOPYFLAGS_piggy.o := -I binary -O elf64-s390 -B s390:64-bit --rename-section .data=.vmlinux.bin.compressed 135$(obj)/piggy.o: $(obj)/vmlinux.bin$(suffix-y) FORCE 136 $(call if_changed,objcopy) 137