Makefile 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. LD_BFD := elf64-s390
  16. LDFLAGS := -m elf64_s390
  17. KBUILD_AFLAGS_MODULE += -fPIC
  18. KBUILD_CFLAGS_MODULE += -fPIC
  19. KBUILD_CFLAGS += -m64
  20. KBUILD_AFLAGS += -m64
  21. UTS_MACHINE := s390x
  22. STACK_SIZE := 16384
  23. CHECKFLAGS += -D__s390__ -D__s390x__
  24. export LD_BFD
  25. mflags-$(CONFIG_MARCH_Z900) := -march=z900
  26. mflags-$(CONFIG_MARCH_Z990) := -march=z990
  27. mflags-$(CONFIG_MARCH_Z9_109) := -march=z9-109
  28. mflags-$(CONFIG_MARCH_Z10) := -march=z10
  29. mflags-$(CONFIG_MARCH_Z196) := -march=z196
  30. mflags-$(CONFIG_MARCH_ZEC12) := -march=zEC12
  31. mflags-$(CONFIG_MARCH_Z13) := -march=z13
  32. mflags-$(CONFIG_MARCH_Z14) := -march=z14
  33. export CC_FLAGS_MARCH := $(mflags-y)
  34. aflags-y += $(mflags-y)
  35. cflags-y += $(mflags-y)
  36. cflags-$(CONFIG_MARCH_Z900_TUNE) += -mtune=z900
  37. cflags-$(CONFIG_MARCH_Z990_TUNE) += -mtune=z990
  38. cflags-$(CONFIG_MARCH_Z9_109_TUNE) += -mtune=z9-109
  39. cflags-$(CONFIG_MARCH_Z10_TUNE) += -mtune=z10
  40. cflags-$(CONFIG_MARCH_Z196_TUNE) += -mtune=z196
  41. cflags-$(CONFIG_MARCH_ZEC12_TUNE) += -mtune=zEC12
  42. cflags-$(CONFIG_MARCH_Z13_TUNE) += -mtune=z13
  43. cflags-$(CONFIG_MARCH_Z14_TUNE) += -mtune=z14
  44. cflags-y += -Wa,-I$(srctree)/arch/$(ARCH)/include
  45. #KBUILD_IMAGE is necessary for make rpm
  46. KBUILD_IMAGE :=arch/s390/boot/image
  47. #
  48. # Prevent tail-call optimizations, to get clearer backtraces:
  49. #
  50. cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls
  51. # old style option for packed stacks
  52. ifeq ($(call cc-option-yn,-mkernel-backchain),y)
  53. cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK
  54. aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
  55. endif
  56. # new style option for packed stacks
  57. ifeq ($(call cc-option-yn,-mpacked-stack),y)
  58. cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK
  59. aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK
  60. endif
  61. ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y)
  62. cflags-$(CONFIG_CHECK_STACK) += -mstack-size=$(STACK_SIZE)
  63. ifneq ($(call cc-option-yn,-mstack-size=8192),y)
  64. cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD)
  65. endif
  66. endif
  67. ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y)
  68. cflags-$(CONFIG_WARN_DYNAMIC_STACK) += -mwarn-dynamicstack
  69. endif
  70. ifdef CONFIG_EXPOLINE
  71. ifeq ($(call cc-option-yn,$(CC_FLAGS_MARCH) -mindirect-branch=thunk),y)
  72. CC_FLAGS_EXPOLINE := -mindirect-branch=thunk
  73. CC_FLAGS_EXPOLINE += -mfunction-return=thunk
  74. CC_FLAGS_EXPOLINE += -mindirect-branch-table
  75. export CC_FLAGS_EXPOLINE
  76. cflags-y += $(CC_FLAGS_EXPOLINE) -DCC_USING_EXPOLINE
  77. endif
  78. endif
  79. ifdef CONFIG_FUNCTION_TRACER
  80. # make use of hotpatch feature if the compiler supports it
  81. cc_hotpatch := -mhotpatch=0,3
  82. ifeq ($(call cc-option-yn,$(cc_hotpatch)),y)
  83. CC_FLAGS_FTRACE := $(cc_hotpatch)
  84. KBUILD_AFLAGS += -DCC_USING_HOTPATCH
  85. KBUILD_CFLAGS += -DCC_USING_HOTPATCH
  86. endif
  87. endif
  88. KBUILD_CFLAGS += -mbackchain -msoft-float $(cflags-y)
  89. KBUILD_CFLAGS += -pipe -fno-strength-reduce -Wno-sign-compare
  90. KBUILD_AFLAGS += $(aflags-y)
  91. OBJCOPYFLAGS := -O binary
  92. head-y := arch/s390/kernel/head.o
  93. head-y += arch/s390/kernel/head64.o
  94. # See arch/s390/Kbuild for content of core part of the kernel
  95. core-y += arch/s390/
  96. libs-y += arch/s390/lib/
  97. drivers-y += drivers/s390/
  98. # must be linked after kernel
  99. drivers-$(CONFIG_OPROFILE) += arch/s390/oprofile/
  100. boot := arch/s390/boot
  101. tools := arch/s390/tools
  102. all: image bzImage
  103. install: vmlinux
  104. $(Q)$(MAKE) $(build)=$(boot) $@
  105. image bzImage: vmlinux
  106. $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
  107. zfcpdump:
  108. $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
  109. vdso_install:
  110. $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@
  111. $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@
  112. archclean:
  113. $(Q)$(MAKE) $(clean)=$(boot)
  114. $(Q)$(MAKE) $(clean)=$(tools)
  115. archprepare:
  116. $(Q)$(MAKE) $(build)=$(tools) include/generated/facilities.h
  117. # Don't use tabs in echo arguments
  118. define archhelp
  119. echo '* image - Kernel image for IPL ($(boot)/image)'
  120. echo '* bzImage - Compressed kernel image for IPL ($(boot)/bzImage)'
  121. echo ' install - Install kernel using'
  122. echo ' (your) ~/bin/$(INSTALLKERNEL) or'
  123. echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
  124. echo ' install to $$(INSTALL_PATH)'
  125. endef