1 # SPDX-License-Identifier: GPL-2.0
5 # This file is included by the global makefile so that you can add your own
6 # architecture-specific flags and dependencies. Remember to do have actions
7 # for "archclean" and "archdep" for cleaning up and making dependencies for
10 # Copyright (C) 1994 by Linus Torvalds
14 LDFLAGS
:= -m elf64_s390
15 KBUILD_AFLAGS_MODULE
+= -fPIC
16 KBUILD_CFLAGS_MODULE
+= -fPIC
21 CHECKFLAGS
+= -D__s390__
-D__s390x__
-mbig-endian
25 mflags-
$(CONFIG_MARCH_Z900
) := -march
=z900
26 mflags-
$(CONFIG_MARCH_Z990
) := -march
=z990
27 mflags-
$(CONFIG_MARCH_Z9_109
) := -march
=z9-109
28 mflags-
$(CONFIG_MARCH_Z10
) := -march
=z10
29 mflags-
$(CONFIG_MARCH_Z196
) := -march
=z196
30 mflags-
$(CONFIG_MARCH_ZEC12
) := -march
=zEC12
31 mflags-
$(CONFIG_MARCH_Z13
) := -march
=z13
32 mflags-
$(CONFIG_MARCH_Z14
) := -march
=z14
34 export CC_FLAGS_MARCH
:= $(mflags-y
)
36 aflags-y
+= $(mflags-y
)
37 cflags-y
+= $(mflags-y
)
39 cflags-
$(CONFIG_MARCH_Z900_TUNE
) += -mtune
=z900
40 cflags-
$(CONFIG_MARCH_Z990_TUNE
) += -mtune
=z990
41 cflags-
$(CONFIG_MARCH_Z9_109_TUNE
) += -mtune
=z9-109
42 cflags-
$(CONFIG_MARCH_Z10_TUNE
) += -mtune
=z10
43 cflags-
$(CONFIG_MARCH_Z196_TUNE
) += -mtune
=z196
44 cflags-
$(CONFIG_MARCH_ZEC12_TUNE
) += -mtune
=zEC12
45 cflags-
$(CONFIG_MARCH_Z13_TUNE
) += -mtune
=z13
46 cflags-
$(CONFIG_MARCH_Z14_TUNE
) += -mtune
=z14
48 cflags-y
+= -Wa
,-I
$(srctree
)/arch
/$(ARCH
)/include
50 #KBUILD_IMAGE is necessary for make rpm
51 KBUILD_IMAGE
:=arch
/s390
/boot
/image
54 # Prevent tail-call optimizations, to get clearer backtraces:
56 cflags-
$(CONFIG_FRAME_POINTER
) += -fno-optimize-sibling-calls
58 # old style option for packed stacks
59 ifeq ($(call cc-option-yn
,-mkernel-backchain
),y
)
60 cflags-
$(CONFIG_PACK_STACK
) += -mkernel-backchain
-D__PACK_STACK
61 aflags-
$(CONFIG_PACK_STACK
) += -D__PACK_STACK
64 # new style option for packed stacks
65 ifeq ($(call cc-option-yn
,-mpacked-stack
),y
)
66 cflags-
$(CONFIG_PACK_STACK
) += -mpacked-stack
-D__PACK_STACK
67 aflags-
$(CONFIG_PACK_STACK
) += -D__PACK_STACK
70 ifeq ($(call cc-option-yn
,-mstack-size
=8192 -mstack-guard
=128),y
)
71 cflags-
$(CONFIG_CHECK_STACK
) += -mstack-size
=$(STACK_SIZE
)
72 ifneq ($(call cc-option-yn
,-mstack-size
=8192),y
)
73 cflags-
$(CONFIG_CHECK_STACK
) += -mstack-guard
=$(CONFIG_STACK_GUARD
)
77 ifeq ($(call cc-option-yn
,-mwarn-dynamicstack
),y
)
78 cflags-
$(CONFIG_WARN_DYNAMIC_STACK
) += -mwarn-dynamicstack
81 ifdef CONFIG_FUNCTION_TRACER
82 # make use of hotpatch feature if the compiler supports it
83 cc_hotpatch
:= -mhotpatch
=0,3
84 ifeq ($(call cc-option-yn
,$(cc_hotpatch
)),y
)
85 CC_FLAGS_FTRACE
:= $(cc_hotpatch
)
86 KBUILD_AFLAGS
+= -DCC_USING_HOTPATCH
87 KBUILD_CFLAGS
+= -DCC_USING_HOTPATCH
91 KBUILD_CFLAGS
+= -mbackchain
-msoft-float
$(cflags-y
)
92 KBUILD_CFLAGS
+= -pipe
-fno-strength-reduce
-Wno-sign-compare
93 KBUILD_AFLAGS
+= $(aflags-y
)
95 OBJCOPYFLAGS
:= -O binary
97 head-y
:= arch
/s390
/kernel
/head.o
98 head-y
+= arch
/s390
/kernel
/head64.o
100 # See arch/s390/Kbuild for content of core part of the kernel
103 libs-y
+= arch
/s390
/lib
/
104 drivers-y
+= drivers
/s390
/
106 # must be linked after kernel
107 drivers-
$(CONFIG_OPROFILE
) += arch
/s390
/oprofile
/
109 boot
:= arch
/s390
/boot
110 tools
:= arch
/s390
/tools
115 $(Q
)$(MAKE
) $(build
)=$(boot
) $@
117 image bzImage
: vmlinux
118 $(Q
)$(MAKE
) $(build
)=$(boot
) $(boot
)/$@
121 $(Q
)$(MAKE
) $(build
)=$(boot
) $(boot
)/$@
124 $(Q
)$(MAKE
) $(build
)=arch
/$(ARCH
)/kernel
/vdso64
$@
125 $(Q
)$(MAKE
) $(build
)=arch
/$(ARCH
)/kernel
/vdso32
$@
128 $(Q
)$(MAKE
) $(clean)=$(boot
)
129 $(Q
)$(MAKE
) $(clean)=$(tools
)
132 $(Q
)$(MAKE
) $(build
)=$(tools
) include/generated
/facilities.h
133 $(Q
)$(MAKE
) $(build
)=$(tools
) include/generated
/dis.h
135 # Don't use tabs in echo arguments
137 echo
'* image - Kernel image for IPL ($(boot)/image)'
138 echo
'* bzImage - Compressed kernel image for IPL ($(boot)/bzImage)'
139 echo
' install - Install kernel using'
140 echo
' (your) ~/bin/$(INSTALLKERNEL) or'
141 echo
' (distribution) /sbin/$(INSTALLKERNEL) or'
142 echo
' install to $$(INSTALL_PATH)'