Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1 | # This file is included by the global makefile so that you can add your own |
| 2 | # architecture-specific flags and dependencies. Remember to do have actions |
| 3 | # for "archclean" and "archdep" for cleaning up and making dependencies for |
| 4 | # this architecture. |
| 5 | # |
| 6 | # This file is subject to the terms and conditions of the GNU General Public |
| 7 | # License. See the file "COPYING" in the main directory of this archive |
| 8 | # for more details. |
| 9 | # |
| 10 | # Copyright (C) 1994 by Linus Torvalds |
| 11 | # Changes for PPC by Gary Thomas |
| 12 | # Rewritten by Cort Dougan and Paul Mackerras |
| 13 | # |
| 14 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 15 | HAS_BIARCH := $(call cc-option-yn, -m32) |
| 16 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 17 | # Set default 32 bits cross compilers for vdso and boot wrapper |
| 18 | CROSS32_COMPILE ?= |
| 19 | |
| 20 | CROSS32CC := $(CROSS32_COMPILE)gcc |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 21 | CROSS32AR := $(CROSS32_COMPILE)ar |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 22 | |
| 23 | ifeq ($(HAS_BIARCH),y) |
| 24 | ifeq ($(CROSS32_COMPILE),) |
| 25 | CROSS32CC := $(CC) -m32 |
Segher Boessenkool | 8995ac8 | 2007-05-16 22:34:38 +1000 | [diff] [blame] | 26 | CROSS32AR := GNUTARGET=elf32-powerpc $(AR) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 27 | endif |
| 28 | endif |
| 29 | |
Segher Boessenkool | 1976aef | 2008-06-08 09:42:52 +1000 | [diff] [blame] | 30 | export CROSS32CC CROSS32AR |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 31 | |
Adrian Bunk | ca786f8 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 32 | ifeq ($(CROSS_COMPILE),) |
Paul Mackerras | 8a5abdf | 2005-11-18 16:39:08 +1100 | [diff] [blame] | 33 | KBUILD_DEFCONFIG := $(shell uname -m)_defconfig |
Adrian Bunk | ca786f8 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 34 | else |
| 35 | KBUILD_DEFCONFIG := ppc64_defconfig |
| 36 | endif |
Paul Mackerras | 8a5abdf | 2005-11-18 16:39:08 +1100 | [diff] [blame] | 37 | |
Paul Mackerras | 94b212c | 2005-11-16 13:38:21 +1100 | [diff] [blame] | 38 | ifeq ($(CONFIG_PPC64),y) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 39 | new_nm := $(shell if $(NM) --help 2>&1 | grep -- '--synthetic' > /dev/null; then echo y; else echo n; fi) |
| 40 | |
| 41 | ifeq ($(new_nm),y) |
| 42 | NM := $(NM) --synthetic |
| 43 | endif |
Anton Blanchard | a058801 | 2013-09-23 12:04:53 +1000 | [diff] [blame] | 44 | endif |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 45 | |
Anton Blanchard | a058801 | 2013-09-23 12:04:53 +1000 | [diff] [blame] | 46 | ifeq ($(CONFIG_PPC64),y) |
| 47 | ifeq ($(CONFIG_CPU_LITTLE_ENDIAN),y) |
| 48 | OLDARCH := ppc64le |
| 49 | else |
| 50 | OLDARCH := ppc64 |
| 51 | endif |
| 52 | else |
| 53 | ifeq ($(CONFIG_CPU_LITTLE_ENDIAN),y) |
| 54 | OLDARCH := ppcle |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 55 | else |
Stephen Rothwell | bbeb3f4 | 2005-09-27 13:51:59 +1000 | [diff] [blame] | 56 | OLDARCH := ppc |
Stephen Rothwell | 2578bfa | 2007-09-21 10:16:20 +1000 | [diff] [blame] | 57 | endif |
Anton Blanchard | a058801 | 2013-09-23 12:04:53 +1000 | [diff] [blame] | 58 | endif |
Stephen Rothwell | 2578bfa | 2007-09-21 10:16:20 +1000 | [diff] [blame] | 59 | |
| 60 | # It seems there are times we use this Makefile without |
| 61 | # including the config file, but this replicates the old behaviour |
| 62 | ifeq ($(CONFIG_WORD_SIZE),) |
| 63 | CONFIG_WORD_SIZE := 32 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 64 | endif |
| 65 | |
Stephen Rothwell | 190554d | 2005-10-13 16:14:15 +1000 | [diff] [blame] | 66 | UTS_MACHINE := $(OLDARCH) |
| 67 | |
Ian Munsie | d72b080 | 2013-09-23 12:05:11 +1000 | [diff] [blame] | 68 | ifeq ($(CONFIG_CPU_LITTLE_ENDIAN),y) |
Anton Blanchard | f036b36 | 2013-09-23 12:05:13 +1000 | [diff] [blame] | 69 | override CC += -mlittle-endian -mno-strict-align |
Ian Munsie | d72b080 | 2013-09-23 12:05:11 +1000 | [diff] [blame] | 70 | override AS += -mlittle-endian |
| 71 | override LD += -EL |
| 72 | override CROSS32CC += -mlittle-endian |
| 73 | override CROSS32AS += -mlittle-endian |
| 74 | LDEMULATION := lppc |
| 75 | GNUTARGET := powerpcle |
| 76 | MULTIPLEWORD := -mno-multiple |
Tony Breeds | d3d35d9 | 2014-03-12 15:12:01 +1100 | [diff] [blame] | 77 | KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect) |
Ian Munsie | d72b080 | 2013-09-23 12:05:11 +1000 | [diff] [blame] | 78 | else |
Michael Neuling | 924dd50 | 2013-11-21 14:59:07 +1100 | [diff] [blame] | 79 | ifeq ($(call cc-option-yn,-mbig-endian),y) |
Ian Munsie | d72b080 | 2013-09-23 12:05:11 +1000 | [diff] [blame] | 80 | override CC += -mbig-endian |
| 81 | override AS += -mbig-endian |
Michael Neuling | 924dd50 | 2013-11-21 14:59:07 +1100 | [diff] [blame] | 82 | endif |
Ian Munsie | d72b080 | 2013-09-23 12:05:11 +1000 | [diff] [blame] | 83 | override LD += -EB |
| 84 | LDEMULATION := ppc |
| 85 | GNUTARGET := powerpc |
| 86 | MULTIPLEWORD := -mmultiple |
| 87 | endif |
| 88 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 89 | ifeq ($(HAS_BIARCH),y) |
Stephen Rothwell | 2578bfa | 2007-09-21 10:16:20 +1000 | [diff] [blame] | 90 | override AS += -a$(CONFIG_WORD_SIZE) |
Ian Munsie | d72b080 | 2013-09-23 12:05:11 +1000 | [diff] [blame] | 91 | override LD += -m elf$(CONFIG_WORD_SIZE)$(LDEMULATION) |
Stephen Rothwell | 2578bfa | 2007-09-21 10:16:20 +1000 | [diff] [blame] | 92 | override CC += -m$(CONFIG_WORD_SIZE) |
Ian Munsie | d72b080 | 2013-09-23 12:05:11 +1000 | [diff] [blame] | 93 | override AR := GNUTARGET=elf$(CONFIG_WORD_SIZE)-$(GNUTARGET) $(AR) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 94 | endif |
| 95 | |
Suzuki Poulose | 9c5f7d3 | 2011-12-14 22:58:12 +0000 | [diff] [blame] | 96 | LDFLAGS_vmlinux-y := -Bstatic |
| 97 | LDFLAGS_vmlinux-$(CONFIG_RELOCATABLE) := -pie |
| 98 | LDFLAGS_vmlinux := $(LDFLAGS_vmlinux-y) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 99 | |
Anton Blanchard | 1fbe9cf | 2012-11-26 17:41:08 +0000 | [diff] [blame] | 100 | ifeq ($(CONFIG_PPC64),y) |
| 101 | ifeq ($(call cc-option-yn,-mcmodel=medium),y) |
| 102 | # -mcmodel=medium breaks modules because it uses 32bit offsets from |
| 103 | # the TOC pointer to create pointers where possible. Pointers into the |
| 104 | # percpu data area are created by this method. |
| 105 | # |
| 106 | # The kernel module loader relocates the percpu data section from the |
| 107 | # original location (starting with 0xd...) to somewhere in the base |
| 108 | # kernel percpu data space (starting with 0xc...). We need a full |
| 109 | # 64bit relocation for this to work, hence -mcmodel=large. |
| 110 | KBUILD_CFLAGS_MODULE += -mcmodel=large |
| 111 | else |
| 112 | export NO_MINIMAL_TOC := -mno-minimal-toc |
| 113 | endif |
| 114 | endif |
| 115 | |
Anton Blanchard | 721aeaa | 2014-03-10 21:06:12 +1100 | [diff] [blame] | 116 | CFLAGS-$(CONFIG_PPC64) := -mtraceback=no |
| 117 | ifeq ($(CONFIG_CPU_LITTLE_ENDIAN),y) |
| 118 | CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2,-mcall-aixdesc) |
| 119 | AFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2) |
| 120 | else |
| 121 | CFLAGS-$(CONFIG_PPC64) += -mcall-aixdesc |
| 122 | endif |
Anton Blanchard | 1fbe9cf | 2012-11-26 17:41:08 +0000 | [diff] [blame] | 123 | CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcmodel=medium,-mminimal-toc) |
Anton Blanchard | 98679fb | 2012-12-12 14:43:12 +0000 | [diff] [blame] | 124 | CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mno-pointers-to-nested-functions) |
Ian Munsie | d72b080 | 2013-09-23 12:05:11 +1000 | [diff] [blame] | 125 | CFLAGS-$(CONFIG_PPC32) := -ffixed-r2 $(MULTIPLEWORD) |
Anton Blanchard | d23c6fb | 2012-04-17 18:45:28 +0000 | [diff] [blame] | 126 | |
Scott Wood | 01718ba | 2013-08-20 19:55:36 -0500 | [diff] [blame] | 127 | ifeq ($(CONFIG_PPC_BOOK3S_64),y) |
Anton Blanchard | d23c6fb | 2012-04-17 18:45:28 +0000 | [diff] [blame] | 128 | CFLAGS-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=power7,-mtune=power4) |
Scott Wood | 01718ba | 2013-08-20 19:55:36 -0500 | [diff] [blame] | 129 | else |
| 130 | CFLAGS-$(CONFIG_GENERIC_CPU) += -mcpu=powerpc64 |
| 131 | endif |
| 132 | |
Anton Blanchard | d23c6fb | 2012-04-17 18:45:28 +0000 | [diff] [blame] | 133 | CFLAGS-$(CONFIG_CELL_CPU) += $(call cc-option,-mcpu=cell) |
| 134 | CFLAGS-$(CONFIG_POWER4_CPU) += $(call cc-option,-mcpu=power4) |
| 135 | CFLAGS-$(CONFIG_POWER5_CPU) += $(call cc-option,-mcpu=power5) |
| 136 | CFLAGS-$(CONFIG_POWER6_CPU) += $(call cc-option,-mcpu=power6) |
| 137 | CFLAGS-$(CONFIG_POWER7_CPU) += $(call cc-option,-mcpu=power7) |
Anton Blanchard | ff2e466 | 2014-09-16 10:47:49 +1000 | [diff] [blame] | 138 | CFLAGS-$(CONFIG_POWER8_CPU) += $(call cc-option,-mcpu=power8) |
Anton Blanchard | d23c6fb | 2012-04-17 18:45:28 +0000 | [diff] [blame] | 139 | |
Tiejun Chen | cbf8a35 | 2013-11-22 10:49:00 +0800 | [diff] [blame] | 140 | # Altivec option not allowed with e500mc64 in GCC. |
| 141 | ifeq ($(CONFIG_ALTIVEC),y) |
| 142 | E5500_CPU := -mcpu=powerpc64 |
| 143 | else |
Scott Wood | 01718ba | 2013-08-20 19:55:36 -0500 | [diff] [blame] | 144 | E5500_CPU := $(call cc-option,-mcpu=e500mc64,-mcpu=powerpc64) |
Tiejun Chen | cbf8a35 | 2013-11-22 10:49:00 +0800 | [diff] [blame] | 145 | endif |
Scott Wood | 01718ba | 2013-08-20 19:55:36 -0500 | [diff] [blame] | 146 | CFLAGS-$(CONFIG_E5500_CPU) += $(E5500_CPU) |
| 147 | CFLAGS-$(CONFIG_E6500_CPU) += $(call cc-option,-mcpu=e6500,$(E5500_CPU)) |
| 148 | |
Scott Wood | 847f56b | 2013-08-15 19:19:10 -0500 | [diff] [blame] | 149 | ifeq ($(CONFIG_PPC32),y) |
| 150 | ifeq ($(CONFIG_PPC_E500MC),y) |
| 151 | CFLAGS-y += $(call cc-option,-mcpu=e500mc,-mcpu=powerpc) |
| 152 | else |
| 153 | CFLAGS-$(CONFIG_E500) += $(call cc-option,-mcpu=8540 -msoft-float,-mcpu=powerpc) |
| 154 | endif |
| 155 | endif |
| 156 | |
Anton Blanchard | d23c6fb | 2012-04-17 18:45:28 +0000 | [diff] [blame] | 157 | CFLAGS-$(CONFIG_TUNE_CELL) += $(call cc-option,-mtune=cell) |
| 158 | |
Guenter Roeck | 7998eb3 | 2014-05-15 09:33:42 -0700 | [diff] [blame] | 159 | asinstr := $(call as-instr,lis 9$(comma)foo@high,-DHAVE_AS_ATHIGH=1) |
| 160 | |
| 161 | KBUILD_CPPFLAGS += -Iarch/$(ARCH) $(asinstr) |
Anton Blanchard | 58aedccb | 2014-04-23 10:02:04 +1000 | [diff] [blame] | 162 | KBUILD_AFLAGS += -Iarch/$(ARCH) $(AFLAGS-y) |
Kumar Gala | 1993cbf | 2008-04-16 05:52:20 +1000 | [diff] [blame] | 163 | KBUILD_CFLAGS += -msoft-float -pipe -Iarch/$(ARCH) $(CFLAGS-y) |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 164 | CPP = $(CC) -E $(KBUILD_CFLAGS) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 165 | |
Stephen Rothwell | 2578bfa | 2007-09-21 10:16:20 +1000 | [diff] [blame] | 166 | CHECKFLAGS += -m$(CONFIG_WORD_SIZE) -D__powerpc__ -D__powerpc$(CONFIG_WORD_SIZE)__ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 167 | |
Michal Marek | 772320e | 2010-08-04 13:59:13 +0200 | [diff] [blame] | 168 | KBUILD_LDFLAGS_MODULE += arch/powerpc/lib/crtsavres.o |
Stephen Rothwell | 7fca5dc | 2010-06-29 20:08:42 +0000 | [diff] [blame] | 169 | |
Alistair Popple | d5b35cf | 2014-02-24 18:00:56 +1100 | [diff] [blame] | 170 | ifeq ($(CONFIG_476FPE_ERR46),y) |
| 171 | KBUILD_LDFLAGS_MODULE += --ppc476-workaround \ |
| 172 | -T $(srctree)/arch/powerpc/platforms/44x/ppc476_modules.lds |
| 173 | endif |
| 174 | |
Anton Blanchard | d23c6fb | 2012-04-17 18:45:28 +0000 | [diff] [blame] | 175 | # No AltiVec or VSX instructions when building kernel |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 176 | KBUILD_CFLAGS += $(call cc-option,-mno-altivec) |
Anton Blanchard | d23c6fb | 2012-04-17 18:45:28 +0000 | [diff] [blame] | 177 | KBUILD_CFLAGS += $(call cc-option,-mno-vsx) |
Paul Mackerras | d3f67fb | 2005-10-29 15:31:17 +1000 | [diff] [blame] | 178 | |
Kumar Gala | 0197cd2 | 2007-10-18 16:53:19 -0500 | [diff] [blame] | 179 | # No SPE instruction when building kernel |
Thiemo Seufer | ce400c0 | 2008-09-02 00:23:02 +1000 | [diff] [blame] | 180 | # (We use all available options to help semi-broken compilers) |
Kumar Gala | 0197cd2 | 2007-10-18 16:53:19 -0500 | [diff] [blame] | 181 | KBUILD_CFLAGS += $(call cc-option,-mno-spe) |
Thiemo Seufer | ce400c0 | 2008-09-02 00:23:02 +1000 | [diff] [blame] | 182 | KBUILD_CFLAGS += $(call cc-option,-mspe=no) |
Kumar Gala | 0197cd2 | 2007-10-18 16:53:19 -0500 | [diff] [blame] | 183 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 184 | # Enable unit-at-a-time mode when possible. It shrinks the |
| 185 | # kernel considerably. |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 186 | KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 187 | |
Andi Kleen | d0679c7 | 2010-02-02 14:40:02 -0800 | [diff] [blame] | 188 | # FIXME: the module load should be taught about the additional relocs |
| 189 | # generated by this. |
| 190 | # revert to pre-gcc-4.4 behaviour of .eh_frame |
| 191 | KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm) |
| 192 | |
Benjamin Herrenschmidt | 57647a4 | 2007-03-22 17:23:44 +1100 | [diff] [blame] | 193 | # Never use string load/store instructions as they are |
| 194 | # often slow when they are implemented at all |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 195 | KBUILD_CFLAGS += -mno-string |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 196 | |
Olaf Hering | f48b829 | 2006-04-11 20:42:08 +0200 | [diff] [blame] | 197 | ifeq ($(CONFIG_6xx),y) |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 198 | KBUILD_CFLAGS += -mcpu=powerpc |
Olaf Hering | f48b829 | 2006-04-11 20:42:08 +0200 | [diff] [blame] | 199 | endif |
| 200 | |
Tony Breeds | 7563dc6 | 2008-09-02 16:50:38 +1000 | [diff] [blame] | 201 | # Work around a gcc code-gen bug with -fno-omit-frame-pointer. |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 202 | ifeq ($(CONFIG_FUNCTION_TRACER),y) |
Tony Breeds | 7563dc6 | 2008-09-02 16:50:38 +1000 | [diff] [blame] | 203 | KBUILD_CFLAGS += -mno-sched-epilog |
| 204 | endif |
| 205 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 206 | cpu-as-$(CONFIG_4xx) += -Wa,-m405 |
Matthew McClintock | e1fc235 | 2010-09-07 08:56:55 +0000 | [diff] [blame] | 207 | cpu-as-$(CONFIG_ALTIVEC) += -Wa,-maltivec |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 208 | cpu-as-$(CONFIG_E200) += -Wa,-me200 |
| 209 | |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 210 | KBUILD_AFLAGS += $(cpu-as-y) |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 211 | KBUILD_CFLAGS += $(cpu-as-y) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 212 | |
Stephen Rothwell | 2578bfa | 2007-09-21 10:16:20 +1000 | [diff] [blame] | 213 | head-y := arch/powerpc/kernel/head_$(CONFIG_WORD_SIZE).o |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 214 | head-$(CONFIG_8xx) := arch/powerpc/kernel/head_8xx.o |
Josh Boyer | 15f6527 | 2007-08-20 07:27:07 -0500 | [diff] [blame] | 215 | head-$(CONFIG_40x) := arch/powerpc/kernel/head_40x.o |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 216 | head-$(CONFIG_44x) := arch/powerpc/kernel/head_44x.o |
| 217 | head-$(CONFIG_FSL_BOOKE) := arch/powerpc/kernel/head_fsl_booke.o |
| 218 | |
Paul Mackerras | 9994a33 | 2005-10-10 22:36:14 +1000 | [diff] [blame] | 219 | head-$(CONFIG_PPC64) += arch/powerpc/kernel/entry_64.o |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 220 | head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o |
Benjamin Herrenschmidt | e821ea7 | 2009-06-02 21:17:37 +0000 | [diff] [blame] | 221 | head-$(CONFIG_ALTIVEC) += arch/powerpc/kernel/vector.o |
Anton Blanchard | 5ac47f7 | 2012-11-26 17:39:03 +0000 | [diff] [blame] | 222 | head-$(CONFIG_PPC_OF_BOOT_TRAMPOLINE) += arch/powerpc/kernel/prom_init.o |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 223 | |
Paul Mackerras | daec962 | 2005-10-10 22:25:26 +1000 | [diff] [blame] | 224 | core-y += arch/powerpc/kernel/ \ |
Paul Mackerras | daec962 | 2005-10-10 22:25:26 +1000 | [diff] [blame] | 225 | arch/powerpc/mm/ \ |
| 226 | arch/powerpc/lib/ \ |
| 227 | arch/powerpc/sysdev/ \ |
Liu Yu | 1a3d1fc | 2009-03-10 11:09:49 +0800 | [diff] [blame] | 228 | arch/powerpc/platforms/ \ |
Matt Evans | 0ca87f0 | 2011-07-20 15:51:00 +0000 | [diff] [blame] | 229 | arch/powerpc/math-emu/ \ |
Michael Ellerman | 323a6bf | 2012-09-13 23:00:49 +0000 | [diff] [blame] | 230 | arch/powerpc/crypto/ \ |
Matt Evans | 0ca87f0 | 2011-07-20 15:51:00 +0000 | [diff] [blame] | 231 | arch/powerpc/net/ |
Paul Mackerras | f78541d | 2005-10-28 22:53:37 +1000 | [diff] [blame] | 232 | core-$(CONFIG_XMON) += arch/powerpc/xmon/ |
Hollis Blanchard | bbf45ba | 2008-04-16 23:28:09 -0500 | [diff] [blame] | 233 | core-$(CONFIG_KVM) += arch/powerpc/kvm/ |
Michael Ellerman | f269949 | 2012-02-20 17:02:09 +0000 | [diff] [blame] | 234 | core-$(CONFIG_PERF_EVENTS) += arch/powerpc/perf/ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 235 | |
| 236 | drivers-$(CONFIG_OPROFILE) += arch/powerpc/oprofile/ |
| 237 | |
Tom Rini | 135f0b1 | 2006-01-12 16:55:58 -0700 | [diff] [blame] | 238 | # Default to zImage, override when needed |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 239 | all: zImage |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 240 | |
Sam Ravnborg | e32e78c | 2010-08-02 20:47:48 +0000 | [diff] [blame] | 241 | # With make 3.82 we cannot mix normal and wildcard targets |
Anatolij Gustschin | c686ecf | 2010-08-15 22:26:56 +0000 | [diff] [blame] | 242 | BOOT_TARGETS1 := zImage zImage.initrd uImage |
Benjamin Herrenschmidt | 11eab297 | 2011-12-01 19:35:08 +0000 | [diff] [blame] | 243 | BOOT_TARGETS2 := zImage% dtbImage% treeImage.% cuImage.% simpleImage.% uImage.% |
Stephen Rothwell | cabb558 | 2005-09-30 16:16:52 +1000 | [diff] [blame] | 244 | |
Sam Ravnborg | e32e78c | 2010-08-02 20:47:48 +0000 | [diff] [blame] | 245 | PHONY += $(BOOT_TARGETS1) $(BOOT_TARGETS2) |
Stephen Rothwell | cabb558 | 2005-09-30 16:16:52 +1000 | [diff] [blame] | 246 | |
Paul Mackerras | 94b212c | 2005-11-16 13:38:21 +1100 | [diff] [blame] | 247 | boot := arch/$(ARCH)/boot |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 248 | |
Tony Breeds | 144ef90 | 2009-09-14 19:57:02 +0000 | [diff] [blame] | 249 | ifeq ($(CONFIG_RELOCATABLE),y) |
| 250 | quiet_cmd_relocs_check = CALL $< |
Stephen Rothwell | a71aa05 | 2015-03-18 16:46:16 +1100 | [diff] [blame] | 251 | cmd_relocs_check = $(CONFIG_SHELL) $< "$(OBJDUMP)" "$(obj)/vmlinux" |
Tony Breeds | 144ef90 | 2009-09-14 19:57:02 +0000 | [diff] [blame] | 252 | |
| 253 | PHONY += relocs_check |
Stephen Rothwell | a71aa05 | 2015-03-18 16:46:16 +1100 | [diff] [blame] | 254 | relocs_check: arch/powerpc/relocs_check.sh vmlinux |
Tony Breeds | 144ef90 | 2009-09-14 19:57:02 +0000 | [diff] [blame] | 255 | $(call cmd,relocs_check) |
| 256 | |
| 257 | zImage: relocs_check |
| 258 | endif |
| 259 | |
Sam Ravnborg | e32e78c | 2010-08-02 20:47:48 +0000 | [diff] [blame] | 260 | $(BOOT_TARGETS1): vmlinux |
| 261 | $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) |
| 262 | $(BOOT_TARGETS2): vmlinux |
Paul Mackerras | 20f6295 | 2005-10-11 09:25:40 +1000 | [diff] [blame] | 263 | $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 264 | |
Sam Ravnborg | e32e78c | 2010-08-02 20:47:48 +0000 | [diff] [blame] | 265 | |
| 266 | bootwrapper_install: |
| 267 | $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) |
| 268 | |
Matthew McClintock | 8662d0b | 2012-09-18 09:50:55 +0000 | [diff] [blame] | 269 | %.dtb: scripts |
David Woodhouse | 773f76b | 2007-12-03 13:56:58 +1100 | [diff] [blame] | 270 | $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) |
| 271 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 272 | define archhelp |
Grant Likely | 70bf033 | 2008-06-25 13:14:36 -0700 | [diff] [blame] | 273 | @echo '* zImage - Build default images selected by kernel config' |
| 274 | @echo ' zImage.* - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)' |
| 275 | @echo ' uImage - U-Boot native image format' |
| 276 | @echo ' cuImage.<dt> - Backwards compatible U-Boot image for older' |
| 277 | @echo ' versions which do not support device trees' |
| 278 | @echo ' dtbImage.<dt> - zImage with an embedded device tree blob' |
| 279 | @echo ' simpleImage.<dt> - Firmware independent image.' |
| 280 | @echo ' treeImage.<dt> - Support for older IBM 4xx firmware (not U-Boot)' |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 281 | @echo ' install - Install kernel using' |
Sam Ravnborg | caa27b6 | 2009-07-20 21:37:11 +0200 | [diff] [blame] | 282 | @echo ' (your) ~/bin/$(INSTALLKERNEL) or' |
| 283 | @echo ' (distribution) /sbin/$(INSTALLKERNEL) or' |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 284 | @echo ' install to $$(INSTALL_PATH) and run lilo' |
Paul Mackerras | 437a58d | 2005-11-18 15:43:34 +1100 | [diff] [blame] | 285 | @echo ' *_defconfig - Select default config from arch/$(ARCH)/configs' |
Grant Likely | 70bf033 | 2008-06-25 13:14:36 -0700 | [diff] [blame] | 286 | @echo '' |
| 287 | @echo ' Targets with <dt> embed a device tree blob inside the image' |
| 288 | @echo ' These targets support board with firmware that does not' |
| 289 | @echo ' support passing a device tree directly. Replace <dt> with the' |
| 290 | @echo ' name of a dts file from the arch/$(ARCH)/boot/dts/ directory' |
| 291 | @echo ' (minus the .dts extension).' |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 292 | endef |
| 293 | |
Sam Ravnborg | 3f85d63 | 2008-02-16 12:36:10 +0100 | [diff] [blame] | 294 | install: |
Grant Likely | 2543133 | 2008-02-07 05:18:34 +1100 | [diff] [blame] | 295 | $(Q)$(MAKE) $(build)=$(boot) install |
Akinobu Mita | 928370c | 2007-04-10 21:05:31 +1000 | [diff] [blame] | 296 | |
Roland McGrath | 8150caa | 2007-10-02 13:30:04 -0700 | [diff] [blame] | 297 | vdso_install: |
| 298 | ifeq ($(CONFIG_PPC64),y) |
| 299 | $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@ |
| 300 | endif |
| 301 | $(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@ |
| 302 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 303 | archclean: |
Paul Mackerras | a3a9e99 | 2005-09-28 15:53:36 +1000 | [diff] [blame] | 304 | $(Q)$(MAKE) $(clean)=$(boot) |
Andreas Gruenbacher | 7056729 | 2006-02-10 01:51:07 -0800 | [diff] [blame] | 305 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 306 | archprepare: checkbin |
| 307 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 308 | # Use the file '.tmp_gas_check' for binutils tests, as gas won't output |
| 309 | # to stdout and these checks are run even on install targets. |
| 310 | TOUT := .tmp_gas_check |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 311 | |
Anton Blanchard | 82a8508 | 2012-04-17 18:42:54 +0000 | [diff] [blame] | 312 | # Check gcc and binutils versions: |
| 313 | # - gcc-3.4 and binutils-2.14 are a fatal combination |
| 314 | # - Require gcc 4.0 or above on 64-bit |
| 315 | # - gcc-4.2.0 has issues compiling modules on 64-bit |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 316 | checkbin: |
Masahiro Yamada | 665d92e | 2014-12-25 14:31:24 +0900 | [diff] [blame] | 317 | @if test "$(cc-version)" = "0304" ; then \ |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 318 | if ! /bin/echo mftb 5 | $(AS) -v -mppc -many -o $(TOUT) >/dev/null 2>&1 ; then \ |
| 319 | echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build '; \ |
| 320 | echo 'correctly with gcc-3.4 and your version of binutils.'; \ |
| 321 | echo '*** Please upgrade your binutils or downgrade your gcc'; \ |
| 322 | false; \ |
| 323 | fi ; \ |
| 324 | fi |
Masahiro Yamada | 665d92e | 2014-12-25 14:31:24 +0900 | [diff] [blame] | 325 | @if test "$(cc-version)" -lt "0400" \ |
Anton Blanchard | 82a8508 | 2012-04-17 18:42:54 +0000 | [diff] [blame] | 326 | && test "x${CONFIG_PPC64}" = "xy" ; then \ |
| 327 | echo -n "Sorry, GCC v4.0 or above is required to build " ; \ |
| 328 | echo "the 64-bit powerpc kernel." ; \ |
| 329 | false ; \ |
| 330 | fi |
Masahiro Yamada | 665d92e | 2014-12-25 14:31:24 +0900 | [diff] [blame] | 331 | @if test "$(cc-fullversion)" = "040200" \ |
Segher Boessenkool | f5e83fa | 2007-05-19 18:49:08 +0200 | [diff] [blame] | 332 | && test "x${CONFIG_MODULES}${CONFIG_PPC64}" = "xyy" ; then \ |
| 333 | echo -n '*** GCC-4.2.0 cannot compile the 64-bit powerpc ' ; \ |
| 334 | echo 'kernel with modules enabled.' ; \ |
| 335 | echo -n '*** Please use a different GCC version or ' ; \ |
| 336 | echo 'disable kernel modules' ; \ |
| 337 | false ; \ |
| 338 | fi |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 339 | |
| 340 | CLEAN_FILES += $(TOUT) |
| 341 | |