blob: 8df7f0e4c3a62ee245ca120355c3545d944d793f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# 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.
14KERNELLOAD := $(CONFIG_KERNEL_START)
15
16HAS_BIARCH := $(call cc-option-yn, -m32)
17ifeq ($(HAS_BIARCH),y)
18AS := $(AS) -a32
19LD := $(LD) -m elf32ppc
20CC := $(CC) -m32
21endif
22
23LDFLAGS_vmlinux := -Ttext $(KERNELLOAD) -Bstatic
Stephen Rothwellb35b7072005-09-11 00:00:14 +100024# The -Iarch/$(ARCH)/include is temporary while we are merging
Sam Ravnborg06c50402007-10-15 22:17:25 +020025KBUILD_CPPFLAGS += -Iarch/$(ARCH) -Iarch/$(ARCH)/include
Sam Ravnborg222d3942007-10-15 21:59:31 +020026KBUILD_AFLAGS += -Iarch/$(ARCH)
Sam Ravnborga0f97e02007-10-14 22:21:35 +020027KBUILD_CFLAGS += -Iarch/$(ARCH) -msoft-float -pipe \
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 -ffixed-r2 -mmultiple
Lee Nicks9e3699e2005-10-28 17:46:09 -070029
30# No AltiVec instruction when building kernel
Sam Ravnborga0f97e02007-10-14 22:21:35 +020031KBUILD_CFLAGS += $(call cc-option, -mno-altivec)
Lee Nicks9e3699e2005-10-28 17:46:09 -070032
Sam Ravnborga0f97e02007-10-14 22:21:35 +020033CPP = $(CC) -E $(KBUILD_CFLAGS)
Stephen Rothwell45e2a6e2005-08-29 13:15:50 +100034# Temporary hack until we have migrated to asm-powerpc
Stephen Rothwellb35b7072005-09-11 00:00:14 +100035LINUXINCLUDE += -Iarch/$(ARCH)/include
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37CHECKFLAGS += -D__powerpc__
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039cpu-as-$(CONFIG_4xx) += -Wa,-m405
40cpu-as-$(CONFIG_6xx) += -Wa,-maltivec
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Sam Ravnborg222d3942007-10-15 21:59:31 +020042KBUILD_AFLAGS += $(cpu-as-y)
Sam Ravnborga0f97e02007-10-14 22:21:35 +020043KBUILD_CFLAGS += $(cpu-as-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45# Default to the common case.
46KBUILD_DEFCONFIG := common_defconfig
47
48head-y := arch/ppc/kernel/head.o
49head-$(CONFIG_8xx) := arch/ppc/kernel/head_8xx.o
50head-$(CONFIG_4xx) := arch/ppc/kernel/head_4xx.o
51head-$(CONFIG_44x) := arch/ppc/kernel/head_44x.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Paul Mackerrasfd582ec2005-10-11 22:08:12 +100053head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Paul Mackerrasfd582ec2005-10-11 22:08:12 +100055core-y += arch/ppc/kernel/ arch/powerpc/kernel/ \
56 arch/ppc/platforms/ \
Paul Mackerras25635c72005-10-26 16:36:55 +100057 arch/ppc/mm/ arch/ppc/lib/ \
David Gibsona0e60b22005-11-01 17:28:10 +110058 arch/ppc/syslib/ arch/powerpc/sysdev/ \
59 arch/powerpc/lib/
Linus Torvalds1da177e2005-04-16 15:20:36 -070060core-$(CONFIG_4xx) += arch/ppc/platforms/4xx/
Kumar Gala5cd27202006-03-27 23:43:27 -060061core-$(CONFIG_MATH_EMULATION) += arch/powerpc/math-emu/
Linus Torvalds1da177e2005-04-16 15:20:36 -070062core-$(CONFIG_XMON) += arch/ppc/xmon/
Linus Torvalds1da177e2005-04-16 15:20:36 -070063drivers-$(CONFIG_8xx) += arch/ppc/8xx_io/
64drivers-$(CONFIG_4xx) += arch/ppc/4xx_io/
65drivers-$(CONFIG_CPM2) += arch/ppc/8260_io/
66
Stephen Rothwell86a5cdd2005-09-19 23:24:08 +100067drivers-$(CONFIG_OPROFILE) += arch/powerpc/oprofile/
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd vmlinux.sm
70
Paul Smith4f193362006-03-05 17:14:10 -050071PHONY += $(BOOT_TARGETS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73all: uImage zImage
74
75CPPFLAGS_vmlinux.lds := -Upowerpc
76
77# All the instructions talk about "make bzImage".
78bzImage: zImage
79
80boot := arch/$(ARCH)/boot
81
82$(BOOT_TARGETS): vmlinux
83 $(Q)$(MAKE) $(build)=$(boot) $@
84
85uImage: vmlinux
86 $(Q)$(MAKE) $(build)=$(boot)/images $(boot)/images/$@
87
88define 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'
96endef
97
98archclean:
99 $(Q)$(MAKE) $(clean)=arch/ppc/boot
Stephen Rothwellb35b7072005-09-11 00:00:14 +1000100 # Temporary hack until we have migrated to asm-powerpc
101 $(Q)rm -rf arch/$(ARCH)/include
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Sam Ravnborg5bb78262005-09-11 22:30:22 +0200103archprepare: checkbin
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Stephen Rothwell45e2a6e2005-08-29 13:15:50 +1000105# Temporary hack until we have migrated to asm-powerpc
Stephen Rothwellb35b7072005-09-11 00:00:14 +1000106include/asm: arch/$(ARCH)/include/asm
107arch/$(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 Rothwell45e2a6e2005-08-29 13:15:50 +1000110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111# 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.
113TOUT := .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 Torvalds1da177e2005-04-16 15:20:36 -0700117
118checkbin:
Sam Ravnborgad143362006-01-08 19:58:51 +0100119 @if test "$(call cc-version)" = "0304" ; then \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 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 Ravnborg0013a852005-09-09 20:57:26 +0200134CLEAN_FILES += $(TOUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135