]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/s390/Makefile
Merge tag 'mmc-v4.15-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
[mirror_ubuntu-bionic-kernel.git] / arch / s390 / Makefile
CommitLineData
0b73214f 1# SPDX-License-Identifier: GPL-2.0
1da177e4
LT
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#
1da177e4
LT
10# Copyright (C) 1994 by Linus Torvalds
11#
12
1844c9bc 13LD_BFD := elf64-s390
1da177e4 14LDFLAGS := -m elf64_s390
7bdc229f
MS
15KBUILD_AFLAGS_MODULE += -fPIC
16KBUILD_CFLAGS_MODULE += -fPIC
a0f97e06 17KBUILD_CFLAGS += -m64
222d394d 18KBUILD_AFLAGS += -m64
1da177e4
LT
19UTS_MACHINE := s390x
20STACK_SIZE := 16384
3b42c17a 21CHECKFLAGS += -D__s390__ -D__s390x__ -mbig-endian
1da177e4 22
1844c9bc
MS
23export LD_BFD
24
0f1b1ff5
HC
25mflags-$(CONFIG_MARCH_Z900) := -march=z900
26mflags-$(CONFIG_MARCH_Z990) := -march=z990
27mflags-$(CONFIG_MARCH_Z9_109) := -march=z9-109
28mflags-$(CONFIG_MARCH_Z10) := -march=z10
29mflags-$(CONFIG_MARCH_Z196) := -march=z196
30mflags-$(CONFIG_MARCH_ZEC12) := -march=zEC12
6997c323
MS
31mflags-$(CONFIG_MARCH_Z13) := -march=z13
32mflags-$(CONFIG_MARCH_Z14) := -march=z14
0f1b1ff5 33
22362a0e
MS
34export CC_FLAGS_MARCH := $(mflags-y)
35
0f1b1ff5
HC
36aflags-y += $(mflags-y)
37cflags-y += $(mflags-y)
1da177e4 38
1db9e051
HC
39cflags-$(CONFIG_MARCH_Z900_TUNE) += -mtune=z900
40cflags-$(CONFIG_MARCH_Z990_TUNE) += -mtune=z990
41cflags-$(CONFIG_MARCH_Z9_109_TUNE) += -mtune=z9-109
42cflags-$(CONFIG_MARCH_Z10_TUNE) += -mtune=z10
43cflags-$(CONFIG_MARCH_Z196_TUNE) += -mtune=z196
44cflags-$(CONFIG_MARCH_ZEC12_TUNE) += -mtune=zEC12
6997c323
MS
45cflags-$(CONFIG_MARCH_Z13_TUNE) += -mtune=z13
46cflags-$(CONFIG_MARCH_Z14_TUNE) += -mtune=z14
1db9e051 47
c783b91e
MS
48cflags-y += -Wa,-I$(srctree)/arch/$(ARCH)/include
49
1681ceda
CB
50#KBUILD_IMAGE is necessary for make rpm
51KBUILD_IMAGE :=arch/s390/boot/image
52
cbbd1fa7
HC
53#
54# Prevent tail-call optimizations, to get clearer backtraces:
55#
56cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
57
1da177e4
LT
58# old style option for packed stacks
59ifeq ($(call cc-option-yn,-mkernel-backchain),y)
60cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK
61aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
1da177e4
LT
62endif
63
64# new style option for packed stacks
65ifeq ($(call cc-option-yn,-mpacked-stack),y)
66cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK
67aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
1da177e4
LT
68endif
69
70ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
71cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE)
be796285 72ifneq ($(call cc-option-yn,-mstack-size=8192),y)
1da177e4
LT
73cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD)
74endif
be796285 75endif
1da177e4
LT
76
77ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
2c190da4 78cflags-$(CONFIG_WARN_DYNAMIC_STACK) += -mwarn-dynamicstack
1da177e4
LT
79endif
80
e6d60b36
HC
81ifdef CONFIG_FUNCTION_TRACER
82# make use of hotpatch feature if the compiler supports it
83cc_hotpatch := -mhotpatch=0,3
84ifeq ($(call cc-option-yn,$(cc_hotpatch)),y)
85CC_FLAGS_FTRACE := $(cc_hotpatch)
86KBUILD_AFLAGS += -DCC_USING_HOTPATCH
87KBUILD_CFLAGS += -DCC_USING_HOTPATCH
88endif
89endif
90
a0f97e06
SR
91KBUILD_CFLAGS += -mbackchain -msoft-float $(cflags-y)
92KBUILD_CFLAGS += -pipe -fno-strength-reduce -Wno-sign-compare
222d394d 93KBUILD_AFLAGS += $(aflags-y)
1da177e4
LT
94
95OBJCOPYFLAGS := -O binary
1da177e4 96
1844c9bc 97head-y := arch/s390/kernel/head.o
5a79859a 98head-y += arch/s390/kernel/head64.o
1da177e4 99
01485943
HC
100# See arch/s390/Kbuild for content of core part of the kernel
101core-y += arch/s390/
155af2f9 102
4562c9ff 103libs-y += arch/s390/lib/
1da177e4 104drivers-y += drivers/s390/
1da177e4
LT
105
106# must be linked after kernel
107drivers-$(CONFIG_OPROFILE) += arch/s390/oprofile/
108
4562c9ff 109boot := arch/s390/boot
c30f6828 110tools := arch/s390/tools
1da177e4 111
1844c9bc 112all: image bzImage
1da177e4
LT
113
114install: vmlinux
115 $(Q)$(MAKE) $(build)=$(boot) $@
116
1844c9bc 117image bzImage: vmlinux
1da177e4
LT
118 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
119
411ed322
MH
120zfcpdump:
121 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
122
f3cb31e4 123vdso_install:
f3cb31e4 124 $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@
f3cb31e4
HB
125 $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@
126
1da177e4
LT
127archclean:
128 $(Q)$(MAKE) $(clean)=$(boot)
c30f6828
HC
129 $(Q)$(MAKE) $(clean)=$(tools)
130
131archprepare:
132 $(Q)$(MAKE) $(build)=$(tools) include/generated/facilities.h
8bc1e4ec 133 $(Q)$(MAKE) $(build)=$(tools) include/generated/dis.h
1da177e4 134
1da177e4
LT
135# Don't use tabs in echo arguments
136define archhelp
137 echo '* image - Kernel image for IPL ($(boot)/image)'
1844c9bc 138 echo '* bzImage - Compressed kernel image for IPL ($(boot)/bzImage)'
b8eecf36
MH
139 echo ' install - Install kernel using'
140 echo ' (your) ~/bin/$(INSTALLKERNEL) or'
141 echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
142 echo ' install to $$(INSTALL_PATH)'
1da177e4 143endef