Makefile 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # s390/Makefile
  4. #
  5. # This file is included by the global makefile so that you can add your own
  6. # architecture-specific flags and dependencies.
  7. #
  8. # Copyright (C) 1994 by Linus Torvalds
  9. #
  10. LD_BFD := elf64-s390
  11. KBUILD_LDFLAGS := -m elf64_s390
  12. KBUILD_AFLAGS_MODULE += -fPIC
  13. KBUILD_CFLAGS_MODULE += -fPIC
  14. KBUILD_AFLAGS += -m64
  15. KBUILD_CFLAGS += -m64
  16. KBUILD_CFLAGS += -fPIC
  17. LDFLAGS_vmlinux := -no-pie --emit-relocs --discard-none
  18. extra_tools := relocs
  19. aflags_dwarf := -Wa,-gdwarf-2
  20. KBUILD_AFLAGS_DECOMPRESSOR := $(CLANG_FLAGS) -m64 -D__ASSEMBLY__
  21. ifndef CONFIG_AS_IS_LLVM
  22. KBUILD_AFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO),$(aflags_dwarf))
  23. endif
  24. KBUILD_CFLAGS_DECOMPRESSOR := $(CLANG_FLAGS) -m64 -O2 -mpacked-stack -std=gnu11
  25. KBUILD_CFLAGS_DECOMPRESSOR += -DDISABLE_BRANCH_PROFILING -D__NO_FORTIFY
  26. KBUILD_CFLAGS_DECOMPRESSOR += -D__DECOMPRESSOR
  27. KBUILD_CFLAGS_DECOMPRESSOR += -fno-delete-null-pointer-checks -msoft-float -mbackchain
  28. KBUILD_CFLAGS_DECOMPRESSOR += -fno-asynchronous-unwind-tables
  29. KBUILD_CFLAGS_DECOMPRESSOR += -ffreestanding
  30. KBUILD_CFLAGS_DECOMPRESSOR += -fno-stack-protector
  31. KBUILD_CFLAGS_DECOMPRESSOR += -fPIE
  32. KBUILD_CFLAGS_DECOMPRESSOR += $(call cc-disable-warning, address-of-packed-member)
  33. KBUILD_CFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO),-g)
  34. KBUILD_CFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO_DWARF4), $(call cc-option, -gdwarf-4,))
  35. KBUILD_CFLAGS_DECOMPRESSOR += $(if $(CONFIG_CC_NO_ARRAY_BOUNDS),-Wno-array-bounds)
  36. UTS_MACHINE := s390x
  37. STACK_SIZE := $(if $(CONFIG_KASAN),65536,$(if $(CONFIG_KMSAN),65536,16384))
  38. CHECKFLAGS += -D__s390__ -D__s390x__
  39. export LD_BFD
  40. mflags-$(CONFIG_MARCH_Z10) := -march=z10
  41. mflags-$(CONFIG_MARCH_Z196) := -march=z196
  42. mflags-$(CONFIG_MARCH_ZEC12) := -march=zEC12
  43. mflags-$(CONFIG_MARCH_Z13) := -march=z13
  44. mflags-$(CONFIG_MARCH_Z14) := -march=z14
  45. mflags-$(CONFIG_MARCH_Z15) := -march=z15
  46. mflags-$(CONFIG_MARCH_Z16) := -march=z16
  47. export CC_FLAGS_MARCH := $(mflags-y)
  48. aflags-y += $(mflags-y)
  49. cflags-y += $(mflags-y)
  50. cflags-$(CONFIG_MARCH_Z10_TUNE) += -mtune=z10
  51. cflags-$(CONFIG_MARCH_Z196_TUNE) += -mtune=z196
  52. cflags-$(CONFIG_MARCH_ZEC12_TUNE) += -mtune=zEC12
  53. cflags-$(CONFIG_MARCH_Z13_TUNE) += -mtune=z13
  54. cflags-$(CONFIG_MARCH_Z14_TUNE) += -mtune=z14
  55. cflags-$(CONFIG_MARCH_Z15_TUNE) += -mtune=z15
  56. cflags-$(CONFIG_MARCH_Z16_TUNE) += -mtune=z16
  57. cflags-y += -Wa,-I$(srctree)/arch/$(ARCH)/include
  58. #
  59. # Prevent tail-call optimizations, to get clearer backtraces:
  60. #
  61. cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
  62. KBUILD_AFLAGS_DECOMPRESSOR += $(aflags-y)
  63. KBUILD_CFLAGS_DECOMPRESSOR += $(cflags-y)
  64. ifneq ($(call cc-option,-mstack-size=8192 -mstack-guard=128),)
  65. CC_FLAGS_CHECK_STACK := -mstack-size=$(STACK_SIZE)
  66. ifeq ($(call cc-option,-mstack-size=8192),)
  67. CC_FLAGS_CHECK_STACK += -mstack-guard=$(CONFIG_STACK_GUARD)
  68. endif
  69. export CC_FLAGS_CHECK_STACK
  70. cflags-$(CONFIG_CHECK_STACK) += $(CC_FLAGS_CHECK_STACK)
  71. endif
  72. ifdef CONFIG_EXPOLINE
  73. ifdef CONFIG_EXPOLINE_EXTERN
  74. CC_FLAGS_EXPOLINE := -mindirect-branch=thunk-extern
  75. CC_FLAGS_EXPOLINE += -mfunction-return=thunk-extern
  76. else
  77. CC_FLAGS_EXPOLINE := -mindirect-branch=thunk
  78. CC_FLAGS_EXPOLINE += -mfunction-return=thunk
  79. endif
  80. CC_FLAGS_EXPOLINE += -mindirect-branch-table
  81. export CC_FLAGS_EXPOLINE
  82. cflags-y += $(CC_FLAGS_EXPOLINE) -DCC_USING_EXPOLINE
  83. aflags-y += -DCC_USING_EXPOLINE
  84. endif
  85. ifdef CONFIG_FUNCTION_TRACER
  86. ifeq ($(call cc-option,-mfentry -mnop-mcount),)
  87. # make use of hotpatch feature if the compiler supports it
  88. cc_hotpatch := -mhotpatch=0,3
  89. ifneq ($(call cc-option,$(cc_hotpatch)),)
  90. CC_FLAGS_FTRACE := $(cc_hotpatch)
  91. KBUILD_AFLAGS += -DCC_USING_HOTPATCH
  92. KBUILD_CFLAGS += -DCC_USING_HOTPATCH
  93. endif
  94. endif
  95. endif
  96. # Test CFI features of binutils
  97. cfi := $(call as-instr,.cfi_startproc\n.cfi_val_offset 15$(comma)-160\n.cfi_endproc,-DCONFIG_AS_CFI_VAL_OFFSET=1)
  98. KBUILD_CFLAGS += -mpacked-stack -mbackchain -msoft-float $(cflags-y)
  99. KBUILD_CFLAGS += -pipe -Wno-sign-compare
  100. KBUILD_CFLAGS += -fno-asynchronous-unwind-tables $(cfi)
  101. KBUILD_AFLAGS += $(aflags-y) $(cfi)
  102. export KBUILD_AFLAGS_DECOMPRESSOR
  103. export KBUILD_CFLAGS_DECOMPRESSOR
  104. OBJCOPYFLAGS := -O binary
  105. libs-y += arch/s390/lib/
  106. boot := arch/s390/boot
  107. syscalls := arch/s390/kernel/syscalls
  108. tools := arch/s390/tools
  109. all: bzImage
  110. #KBUILD_IMAGE is necessary for packaging targets like rpm-pkg, deb-pkg...
  111. KBUILD_IMAGE := $(boot)/bzImage
  112. install:
  113. $(call cmd,install)
  114. bzImage: vmlinux
  115. $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
  116. zfcpdump:
  117. $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
  118. archheaders:
  119. $(Q)$(MAKE) $(build)=$(syscalls) uapi
  120. archprepare:
  121. $(Q)$(MAKE) $(build)=$(syscalls) kapi
  122. $(Q)$(MAKE) $(build)=$(tools) kapi $(extra_tools)
  123. ifeq ($(KBUILD_EXTMOD),)
  124. # We need to generate vdso-offsets.h before compiling certain files in kernel/.
  125. # In order to do that, we should use the archprepare target, but we can't since
  126. # asm-offsets.h is included in some files used to generate vdso-offsets.h, and
  127. # asm-offsets.h is built in prepare0, for which archprepare is a dependency.
  128. # Therefore we need to generate the header after prepare0 has been made, hence
  129. # this hack.
  130. prepare: vdso_prepare
  131. vdso_prepare: prepare0
  132. $(Q)$(MAKE) $(build)=arch/s390/kernel/vdso64 include/generated/vdso64-offsets.h
  133. $(if $(CONFIG_COMPAT),$(Q)$(MAKE) \
  134. $(build)=arch/s390/kernel/vdso32 include/generated/vdso32-offsets.h)
  135. vdso-install-y += arch/s390/kernel/vdso64/vdso64.so.dbg
  136. vdso-install-$(CONFIG_COMPAT) += arch/s390/kernel/vdso32/vdso32.so.dbg
  137. endif
  138. # Don't use tabs in echo arguments
  139. define archhelp
  140. echo '* bzImage - Kernel image for IPL ($(boot)/bzImage)'
  141. echo ' install - Install kernel using'
  142. echo ' (your) ~/bin/$(INSTALLKERNEL) or'
  143. echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
  144. echo ' install to $$(INSTALL_PATH)'
  145. endef