Merge tag 'for-linus-4.16' of git://git.kernel.org/pub/scm/linux/kernel/git/hubcap...
[linux-2.6-microblaze.git] / arch / s390 / Makefile
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. Remember to do have actions
7 # for "archclean" and "archdep" for cleaning up and making dependencies for
8 # this architecture
9 #
10 # Copyright (C) 1994 by Linus Torvalds
11 #
12
13 LD_BFD          := elf64-s390
14 LDFLAGS         := -m elf64_s390
15 KBUILD_AFLAGS_MODULE += -fPIC
16 KBUILD_CFLAGS_MODULE += -fPIC
17 KBUILD_CFLAGS   += -m64
18 KBUILD_AFLAGS   += -m64
19 UTS_MACHINE     := s390x
20 STACK_SIZE      := 16384
21 CHECKFLAGS      += -D__s390__ -D__s390x__ -mbig-endian
22
23 export LD_BFD
24
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
33
34 export CC_FLAGS_MARCH := $(mflags-y)
35
36 aflags-y += $(mflags-y)
37 cflags-y += $(mflags-y)
38
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
47
48 cflags-y += -Wa,-I$(srctree)/arch/$(ARCH)/include
49
50 #KBUILD_IMAGE is necessary for make rpm
51 KBUILD_IMAGE    :=arch/s390/boot/image
52
53 #
54 # Prevent tail-call optimizations, to get clearer backtraces:
55 #
56 cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
57
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
62 endif
63
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
68 endif
69
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)
74 endif
75 endif
76
77 ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
78 cflags-$(CONFIG_WARN_DYNAMIC_STACK) += -mwarn-dynamicstack
79 endif
80
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
88 endif
89 endif
90
91 # Test CFI features of binutils
92 cfi := $(call as-instr,.cfi_startproc\n.cfi_val_offset 15$(comma)-160\n.cfi_endproc,-DCONFIG_AS_CFI_VAL_OFFSET=1)
93
94 KBUILD_CFLAGS   += -mbackchain -msoft-float $(cflags-y)
95 KBUILD_CFLAGS   += -pipe -fno-strength-reduce -Wno-sign-compare
96 KBUILD_CFLAGS   += -fno-asynchronous-unwind-tables $(cfi)
97 KBUILD_AFLAGS   += $(aflags-y) $(cfi)
98
99 OBJCOPYFLAGS    := -O binary
100
101 head-y          := arch/s390/kernel/head.o
102 head-y          += arch/s390/kernel/head64.o
103
104 # See arch/s390/Kbuild for content of core part of the kernel
105 core-y          += arch/s390/
106
107 libs-y          += arch/s390/lib/
108 drivers-y       += drivers/s390/
109
110 # must be linked after kernel
111 drivers-$(CONFIG_OPROFILE)      += arch/s390/oprofile/
112
113 boot            := arch/s390/boot
114 syscalls        := arch/s390/kernel/syscalls
115 tools           := arch/s390/tools
116
117 all: image bzImage
118
119 install: vmlinux
120         $(Q)$(MAKE) $(build)=$(boot) $@
121
122 image bzImage: vmlinux
123         $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
124
125 zfcpdump:
126         $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
127
128 vdso_install:
129         $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@
130         $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@
131
132 archclean:
133         $(Q)$(MAKE) $(clean)=$(boot)
134         $(Q)$(MAKE) $(clean)=$(tools)
135
136 archheaders:
137         $(Q)$(MAKE) $(build)=$(syscalls) uapi
138
139 archprepare:
140         $(Q)$(MAKE) $(build)=$(syscalls) kapi
141         $(Q)$(MAKE) $(build)=$(tools) kapi
142
143 # Don't use tabs in echo arguments
144 define archhelp
145   echo  '* image           - Kernel image for IPL ($(boot)/image)'
146   echo  '* bzImage         - Compressed kernel image for IPL ($(boot)/bzImage)'
147   echo  '  install         - Install kernel using'
148   echo  '                    (your) ~/bin/$(INSTALLKERNEL) or'
149   echo  '                    (distribution) /sbin/$(INSTALLKERNEL) or'
150   echo  '                    install to $$(INSTALL_PATH)'
151 endef