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 | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 16 | ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | LDFLAGS := -m elf_s390 |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 18 | KBUILD_CFLAGS += -m31 |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 19 | KBUILD_AFLAGS += -m31 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | UTS_MACHINE := s390 |
| 21 | STACK_SIZE := 8192 |
Al Viro | 22bb3e9 | 2007-07-15 21:00:41 +0100 | [diff] [blame] | 22 | CHECKFLAGS += -D__s390__ -msize-long |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 23 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | LDFLAGS := -m elf64_s390 |
| 25 | MODFLAGS += -fpic -D__PIC__ |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 26 | KBUILD_CFLAGS += -m64 |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 27 | KBUILD_AFLAGS += -m64 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | UTS_MACHINE := s390x |
| 29 | STACK_SIZE := 16384 |
viro@ZenIV.linux.org.uk | d310a35 | 2005-09-09 16:56:05 +0100 | [diff] [blame] | 30 | CHECKFLAGS += -D__s390__ -D__s390x__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | endif |
| 32 | |
| 33 | cflags-$(CONFIG_MARCH_G5) += $(call cc-option,-march=g5) |
| 34 | cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900) |
| 35 | cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990) |
Christian Borntraeger | 0efa470 | 2006-09-28 16:55:46 +0200 | [diff] [blame] | 36 | cflags-$(CONFIG_MARCH_Z9_109) += $(call cc-option,-march=z9-109) |
Martin Schwidefsky | e37f50e | 2008-12-25 13:39:19 +0100 | [diff] [blame] | 37 | cflags-$(CONFIG_MARCH_Z10) += $(call cc-option,-march=z10) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Christian Borntraeger | 1681ced | 2006-12-04 15:40:49 +0100 | [diff] [blame] | 39 | #KBUILD_IMAGE is necessary for make rpm |
| 40 | KBUILD_IMAGE :=arch/s390/boot/image |
| 41 | |
Heiko Carstens | cbbd1fa | 2006-07-03 00:24:38 -0700 | [diff] [blame] | 42 | # |
| 43 | # Prevent tail-call optimizations, to get clearer backtraces: |
| 44 | # |
| 45 | cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | # old style option for packed stacks |
| 48 | ifeq ($(call cc-option-yn,-mkernel-backchain),y) |
| 49 | cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK |
| 50 | aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK |
| 51 | cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK |
| 52 | aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK |
| 53 | ifdef CONFIG_SMALL_STACK |
| 54 | STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) ) |
| 55 | endif |
| 56 | endif |
| 57 | |
| 58 | # new style option for packed stacks |
| 59 | ifeq ($(call cc-option-yn,-mpacked-stack),y) |
| 60 | cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK |
| 61 | aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK |
| 62 | cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK |
| 63 | aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK |
| 64 | ifdef CONFIG_SMALL_STACK |
| 65 | STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) ) |
| 66 | endif |
| 67 | endif |
| 68 | |
| 69 | ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y) |
| 70 | cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE) |
Martin Schwidefsky | be79628 | 2007-04-27 16:01:46 +0200 | [diff] [blame] | 71 | ifneq ($(call cc-option-yn,-mstack-size=8192),y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD) |
| 73 | endif |
Martin Schwidefsky | be79628 | 2007-04-27 16:01:46 +0200 | [diff] [blame] | 74 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y) |
| 77 | cflags-$(CONFIG_WARN_STACK) += -mwarn-dynamicstack |
| 78 | cflags-$(CONFIG_WARN_STACK) += -mwarn-framesize=$(CONFIG_WARN_STACK_SIZE) |
| 79 | endif |
| 80 | |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 81 | KBUILD_CFLAGS += -mbackchain -msoft-float $(cflags-y) |
| 82 | KBUILD_CFLAGS += -pipe -fno-strength-reduce -Wno-sign-compare |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 83 | KBUILD_AFLAGS += $(aflags-y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | OBJCOPYFLAGS := -O binary |
| 86 | LDFLAGS_vmlinux := -e start |
| 87 | |
Michael Holzheu | 4562c9f | 2007-02-21 10:55:46 +0100 | [diff] [blame] | 88 | head-y := arch/s390/kernel/head.o arch/s390/kernel/init_task.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Michael Holzheu | 4562c9f | 2007-02-21 10:55:46 +0100 | [diff] [blame] | 90 | core-y += arch/s390/mm/ arch/s390/kernel/ arch/s390/crypto/ \ |
Heiko Carstens | b0c632d | 2008-03-25 18:47:20 +0100 | [diff] [blame] | 91 | arch/s390/appldata/ arch/s390/hypfs/ arch/s390/kvm/ |
Michael Holzheu | 4562c9f | 2007-02-21 10:55:46 +0100 | [diff] [blame] | 92 | libs-y += arch/s390/lib/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | drivers-y += drivers/s390/ |
Michael Holzheu | 4562c9f | 2007-02-21 10:55:46 +0100 | [diff] [blame] | 94 | drivers-$(CONFIG_MATHEMU) += arch/s390/math-emu/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | # must be linked after kernel |
| 97 | drivers-$(CONFIG_OPROFILE) += arch/s390/oprofile/ |
| 98 | |
Michael Holzheu | 4562c9f | 2007-02-21 10:55:46 +0100 | [diff] [blame] | 99 | boot := arch/s390/boot |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
| 101 | all: image |
| 102 | |
| 103 | install: vmlinux |
| 104 | $(Q)$(MAKE) $(build)=$(boot) $@ |
| 105 | |
| 106 | image: vmlinux |
| 107 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 108 | |
Michael Holzheu | 411ed32 | 2007-04-27 16:01:49 +0200 | [diff] [blame] | 109 | zfcpdump: |
| 110 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | archclean: |
| 113 | $(Q)$(MAKE) $(clean)=$(boot) |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | # Don't use tabs in echo arguments |
| 116 | define archhelp |
| 117 | echo '* image - Kernel image for IPL ($(boot)/image)' |
| 118 | endef |