blob: 54e00526b8dfcf1b8d3f21278b1626551dc68459 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# s390/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies. Remember to do have actions
6# for "archclean" and "archdep" for cleaning up and making dependencies for
7# this architecture
8#
9# This file is subject to the terms and conditions of the GNU General Public
10# License. See the file "COPYING" in the main directory of this archive
11# for more details.
12#
13# Copyright (C) 1994 by Linus Torvalds
14#
15
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +010016LD_BFD := elf64-s390
Linus Torvalds1da177e2005-04-16 15:20:36 -070017LDFLAGS := -m elf64_s390
Martin Schwidefsky7bdc2292013-01-11 15:26:01 +010018KBUILD_AFLAGS_MODULE += -fPIC
19KBUILD_CFLAGS_MODULE += -fPIC
Sam Ravnborga0f97e02007-10-14 22:21:35 +020020KBUILD_CFLAGS += -m64
Sam Ravnborg222d3942007-10-15 21:59:31 +020021KBUILD_AFLAGS += -m64
Linus Torvalds1da177e2005-04-16 15:20:36 -070022UTS_MACHINE := s390x
23STACK_SIZE := 16384
viro@ZenIV.linux.org.ukd310a352005-09-09 16:56:05 +010024CHECKFLAGS += -D__s390__ -D__s390x__
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +010026export LD_BFD
27
Heiko Carstens0f1b1ff2014-08-14 16:06:02 +020028mflags-$(CONFIG_MARCH_Z900) := -march=z900
29mflags-$(CONFIG_MARCH_Z990) := -march=z990
30mflags-$(CONFIG_MARCH_Z9_109) := -march=z9-109
31mflags-$(CONFIG_MARCH_Z10) := -march=z10
32mflags-$(CONFIG_MARCH_Z196) := -march=z196
33mflags-$(CONFIG_MARCH_ZEC12) := -march=zEC12
Martin Schwidefskyf8b2dcb2015-01-14 17:50:19 +010034mflags-$(CONFIG_MARCH_Z13) := -march=z13
Heiko Carstens0f1b1ff2014-08-14 16:06:02 +020035
Martin Schwidefsky22362a02015-07-08 10:20:04 +020036export CC_FLAGS_MARCH := $(mflags-y)
37
Heiko Carstens0f1b1ff2014-08-14 16:06:02 +020038aflags-y += $(mflags-y)
39cflags-y += $(mflags-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Heiko Carstens1db9e052013-10-30 12:12:50 +010041cflags-$(CONFIG_MARCH_Z900_TUNE) += -mtune=z900
42cflags-$(CONFIG_MARCH_Z990_TUNE) += -mtune=z990
43cflags-$(CONFIG_MARCH_Z9_109_TUNE) += -mtune=z9-109
44cflags-$(CONFIG_MARCH_Z10_TUNE) += -mtune=z10
45cflags-$(CONFIG_MARCH_Z196_TUNE) += -mtune=z196
46cflags-$(CONFIG_MARCH_ZEC12_TUNE) += -mtune=zEC12
Martin Schwidefskyf8b2dcb2015-01-14 17:50:19 +010047cflags-$(CONFIG_MARCH_Z13_TUNE) += -mtune=z13
Heiko Carstens1db9e052013-10-30 12:12:50 +010048
Martin Schwidefskyc783b912016-09-06 10:46:36 +020049cflags-y += -Wa,-I$(srctree)/arch/$(ARCH)/include
50
Christian Borntraeger1681ced2006-12-04 15:40:49 +010051#KBUILD_IMAGE is necessary for make rpm
52KBUILD_IMAGE :=arch/s390/boot/image
53
Heiko Carstenscbbd1fa2006-07-03 00:24:38 -070054#
55# Prevent tail-call optimizations, to get clearer backtraces:
56#
57cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059# old style option for packed stacks
60ifeq ($(call cc-option-yn,-mkernel-backchain),y)
61cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK
62aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
Linus Torvalds1da177e2005-04-16 15:20:36 -070063endif
64
65# new style option for packed stacks
66ifeq ($(call cc-option-yn,-mpacked-stack),y)
67cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK
68aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
Linus Torvalds1da177e2005-04-16 15:20:36 -070069endif
70
71ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
72cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE)
Martin Schwidefskybe796282007-04-27 16:01:46 +020073ifneq ($(call cc-option-yn,-mstack-size=8192),y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD)
75endif
Martin Schwidefskybe796282007-04-27 16:01:46 +020076endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
Jan Glauber2c190da2011-03-15 17:08:19 +010079cflags-$(CONFIG_WARN_DYNAMIC_STACK) += -mwarn-dynamicstack
Linus Torvalds1da177e2005-04-16 15:20:36 -070080endif
81
Heiko Carstense6d60b32015-01-09 13:08:28 +010082ifdef CONFIG_FUNCTION_TRACER
83# make use of hotpatch feature if the compiler supports it
84cc_hotpatch := -mhotpatch=0,3
85ifeq ($(call cc-option-yn,$(cc_hotpatch)),y)
86CC_FLAGS_FTRACE := $(cc_hotpatch)
87KBUILD_AFLAGS += -DCC_USING_HOTPATCH
88KBUILD_CFLAGS += -DCC_USING_HOTPATCH
89endif
90endif
91
Sam Ravnborga0f97e02007-10-14 22:21:35 +020092KBUILD_CFLAGS += -mbackchain -msoft-float $(cflags-y)
93KBUILD_CFLAGS += -pipe -fno-strength-reduce -Wno-sign-compare
Sam Ravnborg222d3942007-10-15 21:59:31 +020094KBUILD_AFLAGS += $(aflags-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96OBJCOPYFLAGS := -O binary
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +010098head-y := arch/s390/kernel/head.o
Heiko Carstens5a798592015-02-12 13:08:27 +010099head-y += arch/s390/kernel/head64.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Heiko Carstens01485942010-10-25 16:10:09 +0200101# See arch/s390/Kbuild for content of core part of the kernel
102core-y += arch/s390/
Hans-Joachim Picht155af2f2009-06-16 10:30:52 +0200103
Michael Holzheu4562c9f2007-02-21 10:55:46 +0100104libs-y += arch/s390/lib/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105drivers-y += drivers/s390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107# must be linked after kernel
108drivers-$(CONFIG_OPROFILE) += arch/s390/oprofile/
109
Michael Holzheu4562c9f2007-02-21 10:55:46 +0100110boot := arch/s390/boot
Heiko Carstensc30f6822015-02-02 07:08:44 +0100111tools := arch/s390/tools
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +0100113all: image bzImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115install: vmlinux
116 $(Q)$(MAKE) $(build)=$(boot) $@
117
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +0100118image bzImage: vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
120
Michael Holzheu411ed322007-04-27 16:01:49 +0200121zfcpdump:
122 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
123
Hendrik Bruecknerf3cb31e2010-05-17 10:00:09 +0200124vdso_install:
Hendrik Bruecknerf3cb31e2010-05-17 10:00:09 +0200125 $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@
Hendrik Bruecknerf3cb31e2010-05-17 10:00:09 +0200126 $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128archclean:
129 $(Q)$(MAKE) $(clean)=$(boot)
Heiko Carstensc30f6822015-02-02 07:08:44 +0100130 $(Q)$(MAKE) $(clean)=$(tools)
131
132archprepare:
133 $(Q)$(MAKE) $(build)=$(tools) include/generated/facilities.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135# Don't use tabs in echo arguments
136define archhelp
137 echo '* image - Kernel image for IPL ($(boot)/image)'
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +0100138 echo '* bzImage - Compressed kernel image for IPL ($(boot)/bzImage)'
Michael Holzheub8eecf32015-11-25 11:54:36 +0100139 echo ' install - Install kernel using'
140 echo ' (your) ~/bin/$(INSTALLKERNEL) or'
141 echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
142 echo ' install to $$(INSTALL_PATH)'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143endef