Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 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 Schwidefsky | 1844c9b | 2010-02-26 22:37:53 +0100 | [diff] [blame] | 16 | LD_BFD := elf64-s390 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | LDFLAGS := -m elf64_s390 |
Martin Schwidefsky | 7bdc229 | 2013-01-11 15:26:01 +0100 | [diff] [blame] | 18 | KBUILD_AFLAGS_MODULE += -fPIC |
| 19 | KBUILD_CFLAGS_MODULE += -fPIC |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 20 | KBUILD_CFLAGS += -m64 |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 21 | KBUILD_AFLAGS += -m64 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | UTS_MACHINE := s390x |
| 23 | STACK_SIZE := 16384 |
viro@ZenIV.linux.org.uk | d310a35a | 2005-09-09 16:56:05 +0100 | [diff] [blame] | 24 | CHECKFLAGS += -D__s390__ -D__s390x__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Martin Schwidefsky | 1844c9b | 2010-02-26 22:37:53 +0100 | [diff] [blame] | 26 | export LD_BFD |
| 27 | |
Heiko Carstens | 0f1b1ff | 2014-08-14 16:06:02 +0200 | [diff] [blame] | 28 | mflags-$(CONFIG_MARCH_Z900) := -march=z900 |
| 29 | mflags-$(CONFIG_MARCH_Z990) := -march=z990 |
| 30 | mflags-$(CONFIG_MARCH_Z9_109) := -march=z9-109 |
| 31 | mflags-$(CONFIG_MARCH_Z10) := -march=z10 |
| 32 | mflags-$(CONFIG_MARCH_Z196) := -march=z196 |
| 33 | mflags-$(CONFIG_MARCH_ZEC12) := -march=zEC12 |
Martin Schwidefsky | 6997c32 | 2017-04-12 14:17:25 +0200 | [diff] [blame] | 34 | mflags-$(CONFIG_MARCH_Z13) := -march=z13 |
| 35 | mflags-$(CONFIG_MARCH_Z14) := -march=z14 |
Heiko Carstens | 0f1b1ff | 2014-08-14 16:06:02 +0200 | [diff] [blame] | 36 | |
Martin Schwidefsky | 22362a0 | 2015-07-08 10:20:04 +0200 | [diff] [blame] | 37 | export CC_FLAGS_MARCH := $(mflags-y) |
| 38 | |
Heiko Carstens | 0f1b1ff | 2014-08-14 16:06:02 +0200 | [diff] [blame] | 39 | aflags-y += $(mflags-y) |
| 40 | cflags-y += $(mflags-y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Heiko Carstens | 1db9e05 | 2013-10-30 12:12:50 +0100 | [diff] [blame] | 42 | cflags-$(CONFIG_MARCH_Z900_TUNE) += -mtune=z900 |
| 43 | cflags-$(CONFIG_MARCH_Z990_TUNE) += -mtune=z990 |
| 44 | cflags-$(CONFIG_MARCH_Z9_109_TUNE) += -mtune=z9-109 |
| 45 | cflags-$(CONFIG_MARCH_Z10_TUNE) += -mtune=z10 |
| 46 | cflags-$(CONFIG_MARCH_Z196_TUNE) += -mtune=z196 |
| 47 | cflags-$(CONFIG_MARCH_ZEC12_TUNE) += -mtune=zEC12 |
Martin Schwidefsky | 6997c32 | 2017-04-12 14:17:25 +0200 | [diff] [blame] | 48 | cflags-$(CONFIG_MARCH_Z13_TUNE) += -mtune=z13 |
| 49 | cflags-$(CONFIG_MARCH_Z14_TUNE) += -mtune=z14 |
Heiko Carstens | 1db9e05 | 2013-10-30 12:12:50 +0100 | [diff] [blame] | 50 | |
Martin Schwidefsky | c783b91 | 2016-09-06 10:46:36 +0200 | [diff] [blame] | 51 | cflags-y += -Wa,-I$(srctree)/arch/$(ARCH)/include |
| 52 | |
Christian Borntraeger | 1681ced | 2006-12-04 15:40:49 +0100 | [diff] [blame] | 53 | #KBUILD_IMAGE is necessary for make rpm |
| 54 | KBUILD_IMAGE :=arch/s390/boot/image |
| 55 | |
Heiko Carstens | cbbd1fa | 2006-07-03 00:24:38 -0700 | [diff] [blame] | 56 | # |
| 57 | # Prevent tail-call optimizations, to get clearer backtraces: |
| 58 | # |
| 59 | cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | # old style option for packed stacks |
| 62 | ifeq ($(call cc-option-yn,-mkernel-backchain),y) |
| 63 | cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK |
| 64 | aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | endif |
| 66 | |
| 67 | # new style option for packed stacks |
| 68 | ifeq ($(call cc-option-yn,-mpacked-stack),y) |
| 69 | cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK |
| 70 | aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | endif |
| 72 | |
| 73 | ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y) |
| 74 | cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE) |
Martin Schwidefsky | be79628 | 2007-04-27 16:01:46 +0200 | [diff] [blame] | 75 | ifneq ($(call cc-option-yn,-mstack-size=8192),y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD) |
| 77 | endif |
Martin Schwidefsky | be79628 | 2007-04-27 16:01:46 +0200 | [diff] [blame] | 78 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y) |
Jan Glauber | 2c190da | 2011-03-15 17:08:19 +0100 | [diff] [blame] | 81 | cflags-$(CONFIG_WARN_DYNAMIC_STACK) += -mwarn-dynamicstack |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | endif |
| 83 | |
Heiko Carstens | e6d60b3 | 2015-01-09 13:08:28 +0100 | [diff] [blame] | 84 | ifdef CONFIG_FUNCTION_TRACER |
| 85 | # make use of hotpatch feature if the compiler supports it |
| 86 | cc_hotpatch := -mhotpatch=0,3 |
| 87 | ifeq ($(call cc-option-yn,$(cc_hotpatch)),y) |
| 88 | CC_FLAGS_FTRACE := $(cc_hotpatch) |
| 89 | KBUILD_AFLAGS += -DCC_USING_HOTPATCH |
| 90 | KBUILD_CFLAGS += -DCC_USING_HOTPATCH |
| 91 | endif |
| 92 | endif |
| 93 | |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 94 | KBUILD_CFLAGS += -mbackchain -msoft-float $(cflags-y) |
| 95 | KBUILD_CFLAGS += -pipe -fno-strength-reduce -Wno-sign-compare |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 96 | KBUILD_AFLAGS += $(aflags-y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
| 98 | OBJCOPYFLAGS := -O binary |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Martin Schwidefsky | 1844c9b | 2010-02-26 22:37:53 +0100 | [diff] [blame] | 100 | head-y := arch/s390/kernel/head.o |
Heiko Carstens | 5a79859 | 2015-02-12 13:08:27 +0100 | [diff] [blame] | 101 | head-y += arch/s390/kernel/head64.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Heiko Carstens | 0148594 | 2010-10-25 16:10:09 +0200 | [diff] [blame] | 103 | # See arch/s390/Kbuild for content of core part of the kernel |
| 104 | core-y += arch/s390/ |
Hans-Joachim Picht | 155af2f | 2009-06-16 10:30:52 +0200 | [diff] [blame] | 105 | |
Michael Holzheu | 4562c9f | 2007-02-21 10:55:46 +0100 | [diff] [blame] | 106 | libs-y += arch/s390/lib/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | drivers-y += drivers/s390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | # must be linked after kernel |
| 110 | drivers-$(CONFIG_OPROFILE) += arch/s390/oprofile/ |
| 111 | |
Michael Holzheu | 4562c9f | 2007-02-21 10:55:46 +0100 | [diff] [blame] | 112 | boot := arch/s390/boot |
Heiko Carstens | c30f682 | 2015-02-02 07:08:44 +0100 | [diff] [blame] | 113 | tools := arch/s390/tools |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Martin Schwidefsky | 1844c9b | 2010-02-26 22:37:53 +0100 | [diff] [blame] | 115 | all: image bzImage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | install: vmlinux |
| 118 | $(Q)$(MAKE) $(build)=$(boot) $@ |
| 119 | |
Martin Schwidefsky | 1844c9b | 2010-02-26 22:37:53 +0100 | [diff] [blame] | 120 | image bzImage: vmlinux |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 122 | |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 123 | zfcpdump: |
| 124 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 125 | |
Hendrik Brueckner | f3cb31e | 2010-05-17 10:00:09 +0200 | [diff] [blame] | 126 | vdso_install: |
Hendrik Brueckner | f3cb31e | 2010-05-17 10:00:09 +0200 | [diff] [blame] | 127 | $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@ |
Hendrik Brueckner | f3cb31e | 2010-05-17 10:00:09 +0200 | [diff] [blame] | 128 | $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@ |
| 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | archclean: |
| 131 | $(Q)$(MAKE) $(clean)=$(boot) |
Heiko Carstens | c30f682 | 2015-02-02 07:08:44 +0100 | [diff] [blame] | 132 | $(Q)$(MAKE) $(clean)=$(tools) |
| 133 | |
| 134 | archprepare: |
| 135 | $(Q)$(MAKE) $(build)=$(tools) include/generated/facilities.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | # Don't use tabs in echo arguments |
| 138 | define archhelp |
| 139 | echo '* image - Kernel image for IPL ($(boot)/image)' |
Martin Schwidefsky | 1844c9b | 2010-02-26 22:37:53 +0100 | [diff] [blame] | 140 | echo '* bzImage - Compressed kernel image for IPL ($(boot)/bzImage)' |
Michael Holzheu | b8eecf3 | 2015-11-25 11:54:36 +0100 | [diff] [blame] | 141 | echo ' install - Install kernel using' |
| 142 | echo ' (your) ~/bin/$(INSTALLKERNEL) or' |
| 143 | echo ' (distribution) /sbin/$(INSTALLKERNEL) or' |
| 144 | echo ' install to $$(INSTALL_PATH)' |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | endef |