Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # This file is included by the global makefile so that you can add your own |
| 2 | # architecture-specific flags and dependencies. |
| 3 | # |
| 4 | # This file is subject to the terms and conditions of the GNU General Public |
| 5 | # License. See the file "COPYING" in the main directory of this archive |
| 6 | # for more details. |
| 7 | # |
| 8 | # Copyright (C) 1994 by Linus Torvalds |
| 9 | # Changes for PPC by Gary Thomas |
| 10 | # Rewritten by Cort Dougan and Paul Mackerras |
| 11 | # |
| 12 | |
| 13 | # This must match PAGE_OFFSET in include/asm-ppc/page.h. |
| 14 | KERNELLOAD := $(CONFIG_KERNEL_START) |
| 15 | |
| 16 | HAS_BIARCH := $(call cc-option-yn, -m32) |
| 17 | ifeq ($(HAS_BIARCH),y) |
| 18 | AS := $(AS) -a32 |
| 19 | LD := $(LD) -m elf32ppc |
| 20 | CC := $(CC) -m32 |
| 21 | endif |
| 22 | |
| 23 | LDFLAGS_vmlinux := -Ttext $(KERNELLOAD) -Bstatic |
Stephen Rothwell | b35b707 | 2005-09-11 00:00:14 +1000 | [diff] [blame] | 24 | # The -Iarch/$(ARCH)/include is temporary while we are merging |
Sam Ravnborg | 06c5040 | 2007-10-15 22:17:25 +0200 | [diff] [blame] | 25 | KBUILD_CPPFLAGS += -Iarch/$(ARCH) -Iarch/$(ARCH)/include |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 26 | KBUILD_AFLAGS += -Iarch/$(ARCH) |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 27 | KBUILD_CFLAGS += -Iarch/$(ARCH) -msoft-float -pipe \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | -ffixed-r2 -mmultiple |
Lee Nicks | 9e3699e | 2005-10-28 17:46:09 -0700 | [diff] [blame] | 29 | |
| 30 | # No AltiVec instruction when building kernel |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 31 | KBUILD_CFLAGS += $(call cc-option, -mno-altivec) |
Lee Nicks | 9e3699e | 2005-10-28 17:46:09 -0700 | [diff] [blame] | 32 | |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 33 | CPP = $(CC) -E $(KBUILD_CFLAGS) |
Stephen Rothwell | 45e2a6e | 2005-08-29 13:15:50 +1000 | [diff] [blame] | 34 | # Temporary hack until we have migrated to asm-powerpc |
Stephen Rothwell | b35b707 | 2005-09-11 00:00:14 +1000 | [diff] [blame] | 35 | LINUXINCLUDE += -Iarch/$(ARCH)/include |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | CHECKFLAGS += -D__powerpc__ |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | cpu-as-$(CONFIG_4xx) += -Wa,-m405 |
| 40 | cpu-as-$(CONFIG_6xx) += -Wa,-maltivec |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 42 | KBUILD_AFLAGS += $(cpu-as-y) |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 43 | KBUILD_CFLAGS += $(cpu-as-y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | # Default to the common case. |
| 46 | KBUILD_DEFCONFIG := common_defconfig |
| 47 | |
| 48 | head-y := arch/ppc/kernel/head.o |
| 49 | head-$(CONFIG_8xx) := arch/ppc/kernel/head_8xx.o |
| 50 | head-$(CONFIG_4xx) := arch/ppc/kernel/head_4xx.o |
| 51 | head-$(CONFIG_44x) := arch/ppc/kernel/head_44x.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Paul Mackerras | fd582ec | 2005-10-11 22:08:12 +1000 | [diff] [blame] | 53 | head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Paul Mackerras | fd582ec | 2005-10-11 22:08:12 +1000 | [diff] [blame] | 55 | core-y += arch/ppc/kernel/ arch/powerpc/kernel/ \ |
| 56 | arch/ppc/platforms/ \ |
Paul Mackerras | 25635c7 | 2005-10-26 16:36:55 +1000 | [diff] [blame] | 57 | arch/ppc/mm/ arch/ppc/lib/ \ |
David Gibson | a0e60b2 | 2005-11-01 17:28:10 +1100 | [diff] [blame] | 58 | arch/ppc/syslib/ arch/powerpc/sysdev/ \ |
| 59 | arch/powerpc/lib/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | core-$(CONFIG_4xx) += arch/ppc/platforms/4xx/ |
Kumar Gala | 5cd2720 | 2006-03-27 23:43:27 -0600 | [diff] [blame] | 61 | core-$(CONFIG_MATH_EMULATION) += arch/powerpc/math-emu/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | core-$(CONFIG_XMON) += arch/ppc/xmon/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | drivers-$(CONFIG_8xx) += arch/ppc/8xx_io/ |
| 64 | drivers-$(CONFIG_4xx) += arch/ppc/4xx_io/ |
| 65 | drivers-$(CONFIG_CPM2) += arch/ppc/8260_io/ |
| 66 | |
Stephen Rothwell | 86a5cdd | 2005-09-19 23:24:08 +1000 | [diff] [blame] | 67 | drivers-$(CONFIG_OPROFILE) += arch/powerpc/oprofile/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd vmlinux.sm |
| 70 | |
Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 71 | PHONY += $(BOOT_TARGETS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | all: uImage zImage |
| 74 | |
| 75 | CPPFLAGS_vmlinux.lds := -Upowerpc |
| 76 | |
| 77 | # All the instructions talk about "make bzImage". |
| 78 | bzImage: zImage |
| 79 | |
| 80 | boot := arch/$(ARCH)/boot |
| 81 | |
| 82 | $(BOOT_TARGETS): vmlinux |
| 83 | $(Q)$(MAKE) $(build)=$(boot) $@ |
| 84 | |
| 85 | uImage: vmlinux |
| 86 | $(Q)$(MAKE) $(build)=$(boot)/images $(boot)/images/$@ |
| 87 | |
| 88 | define archhelp |
| 89 | @echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/images/zImage.*)' |
| 90 | @echo ' uImage - Create a bootable image for U-Boot / PPCBoot' |
| 91 | @echo ' install - Install kernel using' |
| 92 | @echo ' (your) ~/bin/installkernel or' |
| 93 | @echo ' (distribution) /sbin/installkernel or' |
| 94 | @echo ' install to $$(INSTALL_PATH) and run lilo' |
| 95 | @echo ' *_defconfig - Select default config from arch/$(ARCH)/ppc/configs' |
| 96 | endef |
| 97 | |
| 98 | archclean: |
| 99 | $(Q)$(MAKE) $(clean)=arch/ppc/boot |
Stephen Rothwell | b35b707 | 2005-09-11 00:00:14 +1000 | [diff] [blame] | 100 | # Temporary hack until we have migrated to asm-powerpc |
| 101 | $(Q)rm -rf arch/$(ARCH)/include |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Sam Ravnborg | 5bb7826 | 2005-09-11 22:30:22 +0200 | [diff] [blame] | 103 | archprepare: checkbin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Stephen Rothwell | 45e2a6e | 2005-08-29 13:15:50 +1000 | [diff] [blame] | 105 | # Temporary hack until we have migrated to asm-powerpc |
Stephen Rothwell | b35b707 | 2005-09-11 00:00:14 +1000 | [diff] [blame] | 106 | include/asm: arch/$(ARCH)/include/asm |
| 107 | arch/$(ARCH)/include/asm: |
| 108 | $(Q)if [ ! -d arch/$(ARCH)/include ]; then mkdir -p arch/$(ARCH)/include; fi |
| 109 | $(Q)ln -fsn $(srctree)/include/asm-powerpc arch/$(ARCH)/include/asm |
Stephen Rothwell | 45e2a6e | 2005-08-29 13:15:50 +1000 | [diff] [blame] | 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | # Use the file '.tmp_gas_check' for binutils tests, as gas won't output |
| 112 | # to stdout and these checks are run even on install targets. |
| 113 | TOUT := .tmp_gas_check |
| 114 | # Ensure this is binutils 2.12.1 (or 2.12.90.0.7) or later for altivec |
| 115 | # instructions. |
| 116 | # gcc-3.4 and binutils-2.14 are a fatal combination. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | checkbin: |
Sam Ravnborg | ad14336 | 2006-01-08 19:58:51 +0100 | [diff] [blame] | 119 | @if test "$(call cc-version)" = "0304" ; then \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | if ! /bin/echo mftb 5 | $(AS) -v -mppc -many -o $(TOUT) >/dev/null 2>&1 ; then \ |
| 121 | echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build '; \ |
| 122 | echo 'correctly with gcc-3.4 and your version of binutils.'; \ |
| 123 | echo '*** Please upgrade your binutils or downgrade your gcc'; \ |
| 124 | false; \ |
| 125 | fi ; \ |
| 126 | fi |
| 127 | @if ! /bin/echo dssall | $(AS) -many -o $(TOUT) >/dev/null 2>&1 ; then \ |
| 128 | echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build ' ; \ |
| 129 | echo 'correctly with old versions of binutils.' ; \ |
| 130 | echo '*** Please upgrade your binutils to 2.12.1 or newer' ; \ |
| 131 | false ; \ |
| 132 | fi |
| 133 | |
Sam Ravnborg | 0013a85 | 2005-09-09 20:57:26 +0200 | [diff] [blame] | 134 | CLEAN_FILES += $(TOUT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |