blob: 0da10746e0e52ea3bdfd82bf0cad14dd8e28d295 [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 Schwidefsky347a8dc2006-01-06 00:19:28 -080016ifndef CONFIG_64BIT
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +010017LD_BFD := elf32-s390
Linus Torvalds1da177e2005-04-16 15:20:36 -070018LDFLAGS := -m elf_s390
Sam Ravnborga0f97e02007-10-14 22:21:35 +020019KBUILD_CFLAGS += -m31
Sam Ravnborg222d3942007-10-15 21:59:31 +020020KBUILD_AFLAGS += -m31
Linus Torvalds1da177e2005-04-16 15:20:36 -070021UTS_MACHINE := s390
22STACK_SIZE := 8192
Al Viro22bb3e92007-07-15 21:00:41 +010023CHECKFLAGS += -D__s390__ -msize-long
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080024else
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +010025LD_BFD := elf64-s390
Linus Torvalds1da177e2005-04-16 15:20:36 -070026LDFLAGS := -m elf64_s390
27MODFLAGS += -fpic -D__PIC__
Sam Ravnborga0f97e02007-10-14 22:21:35 +020028KBUILD_CFLAGS += -m64
Sam Ravnborg222d3942007-10-15 21:59:31 +020029KBUILD_AFLAGS += -m64
Linus Torvalds1da177e2005-04-16 15:20:36 -070030UTS_MACHINE := s390x
31STACK_SIZE := 16384
viro@ZenIV.linux.org.ukd310a352005-09-09 16:56:05 +010032CHECKFLAGS += -D__s390__ -D__s390x__
Linus Torvalds1da177e2005-04-16 15:20:36 -070033endif
34
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +010035export LD_BFD
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037cflags-$(CONFIG_MARCH_G5) += $(call cc-option,-march=g5)
38cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900)
39cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990)
Christian Borntraeger0efa4702006-09-28 16:55:46 +020040cflags-$(CONFIG_MARCH_Z9_109) += $(call cc-option,-march=z9-109)
Martin Schwidefskye37f50e2008-12-25 13:39:19 +010041cflags-$(CONFIG_MARCH_Z10) += $(call cc-option,-march=z10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Christian Borntraeger1681ced2006-12-04 15:40:49 +010043#KBUILD_IMAGE is necessary for make rpm
44KBUILD_IMAGE :=arch/s390/boot/image
45
Heiko Carstenscbbd1fa2006-07-03 00:24:38 -070046#
47# Prevent tail-call optimizations, to get clearer backtraces:
48#
49cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051# old style option for packed stacks
52ifeq ($(call cc-option-yn,-mkernel-backchain),y)
53cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK
54aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
55cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
56aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
57ifdef CONFIG_SMALL_STACK
58STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
59endif
60endif
61
62# new style option for packed stacks
63ifeq ($(call cc-option-yn,-mpacked-stack),y)
64cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK
65aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
66cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
67aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK
68ifdef CONFIG_SMALL_STACK
69STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) )
70endif
71endif
72
73ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
74cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE)
Martin Schwidefskybe796282007-04-27 16:01:46 +020075ifneq ($(call cc-option-yn,-mstack-size=8192),y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD)
77endif
Martin Schwidefskybe796282007-04-27 16:01:46 +020078endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
81cflags-$(CONFIG_WARN_STACK) += -mwarn-dynamicstack
82cflags-$(CONFIG_WARN_STACK) += -mwarn-framesize=$(CONFIG_WARN_STACK_SIZE)
83endif
84
Sam Ravnborga0f97e02007-10-14 22:21:35 +020085KBUILD_CFLAGS += -mbackchain -msoft-float $(cflags-y)
86KBUILD_CFLAGS += -pipe -fno-strength-reduce -Wno-sign-compare
Sam Ravnborg222d3942007-10-15 21:59:31 +020087KBUILD_AFLAGS += $(aflags-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89OBJCOPYFLAGS := -O binary
90LDFLAGS_vmlinux := -e start
91
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +010092head-y := arch/s390/kernel/head.o
93head-y += arch/s390/kernel/$(if $(CONFIG_64BIT),head64.o,head31.o)
94head-y += arch/s390/kernel/init_task.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Michael Holzheu4562c9f2007-02-21 10:55:46 +010096core-y += arch/s390/mm/ arch/s390/kernel/ arch/s390/crypto/ \
Heiko Carstensc48ff642009-09-11 10:28:37 +020097 arch/s390/appldata/ arch/s390/hypfs/ arch/s390/kvm/
Hans-Joachim Picht155af2f2009-06-16 10:30:52 +020098
Michael Holzheu4562c9f2007-02-21 10:55:46 +010099libs-y += arch/s390/lib/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100drivers-y += drivers/s390/
Michael Holzheu4562c9f2007-02-21 10:55:46 +0100101drivers-$(CONFIG_MATHEMU) += arch/s390/math-emu/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103# must be linked after kernel
104drivers-$(CONFIG_OPROFILE) += arch/s390/oprofile/
105
Michael Holzheu4562c9f2007-02-21 10:55:46 +0100106boot := arch/s390/boot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +0100108all: image bzImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110install: vmlinux
111 $(Q)$(MAKE) $(build)=$(boot) $@
112
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +0100113image bzImage: vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
115
Michael Holzheu411ed322007-04-27 16:01:49 +0200116zfcpdump:
117 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119archclean:
120 $(Q)$(MAKE) $(clean)=$(boot)
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122# Don't use tabs in echo arguments
123define archhelp
124 echo '* image - Kernel image for IPL ($(boot)/image)'
Martin Schwidefsky1844c9b2010-02-26 22:37:53 +0100125 echo '* bzImage - Compressed kernel image for IPL ($(boot)/bzImage)'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126endef