blob: aedc9ae13b2a942e9ae639e12c0c4585f84c32a0 [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
25CPPFLAGS += -Iarch/$(ARCH) -Iarch/$(ARCH)/include
Linus Torvalds1da177e2005-04-16 15:20:36 -070026AFLAGS += -Iarch/$(ARCH)
27CFLAGS += -Iarch/$(ARCH) -msoft-float -pipe \
28 -ffixed-r2 -mmultiple
29CPP = $(CC) -E $(CFLAGS)
Stephen Rothwell45e2a6e2005-08-29 13:15:50 +100030# Temporary hack until we have migrated to asm-powerpc
Stephen Rothwellb35b7072005-09-11 00:00:14 +100031LINUXINCLUDE += -Iarch/$(ARCH)/include
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33CHECKFLAGS += -D__powerpc__
34
Kumar Gala33d9e9b2005-06-25 14:54:37 -070035ifndef CONFIG_FSL_BOOKE
Linus Torvalds1da177e2005-04-16 15:20:36 -070036CFLAGS += -mstring
37endif
38
39cpu-as-$(CONFIG_PPC64BRIDGE) += -Wa,-mppc64bridge
40cpu-as-$(CONFIG_4xx) += -Wa,-m405
41cpu-as-$(CONFIG_6xx) += -Wa,-maltivec
42cpu-as-$(CONFIG_POWER4) += -Wa,-maltivec
43cpu-as-$(CONFIG_E500) += -Wa,-me500
Kumar Gala33d9e9b2005-06-25 14:54:37 -070044cpu-as-$(CONFIG_E200) += -Wa,-me200
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46AFLAGS += $(cpu-as-y)
47CFLAGS += $(cpu-as-y)
48
49# Default to the common case.
50KBUILD_DEFCONFIG := common_defconfig
51
52head-y := arch/ppc/kernel/head.o
53head-$(CONFIG_8xx) := arch/ppc/kernel/head_8xx.o
54head-$(CONFIG_4xx) := arch/ppc/kernel/head_4xx.o
55head-$(CONFIG_44x) := arch/ppc/kernel/head_44x.o
56head-$(CONFIG_FSL_BOOKE) := arch/ppc/kernel/head_fsl_booke.o
57
58head-$(CONFIG_6xx) += arch/ppc/kernel/idle_6xx.o
59head-$(CONFIG_POWER4) += arch/ppc/kernel/idle_power4.o
Paul Mackerrasfd582ec2005-10-11 22:08:12 +100060head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Paul Mackerrasfd582ec2005-10-11 22:08:12 +100062core-y += arch/ppc/kernel/ arch/powerpc/kernel/ \
63 arch/ppc/platforms/ \
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 arch/ppc/mm/ arch/ppc/lib/ arch/ppc/syslib/
65core-$(CONFIG_4xx) += arch/ppc/platforms/4xx/
66core-$(CONFIG_83xx) += arch/ppc/platforms/83xx/
67core-$(CONFIG_85xx) += arch/ppc/platforms/85xx/
68core-$(CONFIG_MATH_EMULATION) += arch/ppc/math-emu/
69core-$(CONFIG_XMON) += arch/ppc/xmon/
70core-$(CONFIG_APUS) += arch/ppc/amiga/
71drivers-$(CONFIG_8xx) += arch/ppc/8xx_io/
72drivers-$(CONFIG_4xx) += arch/ppc/4xx_io/
73drivers-$(CONFIG_CPM2) += arch/ppc/8260_io/
74
Stephen Rothwell86a5cdd2005-09-19 23:24:08 +100075drivers-$(CONFIG_OPROFILE) += arch/powerpc/oprofile/
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd vmlinux.sm
78
79.PHONY: $(BOOT_TARGETS)
80
81all: uImage zImage
82
83CPPFLAGS_vmlinux.lds := -Upowerpc
84
85# All the instructions talk about "make bzImage".
86bzImage: zImage
87
88boot := arch/$(ARCH)/boot
89
90$(BOOT_TARGETS): vmlinux
91 $(Q)$(MAKE) $(build)=$(boot) $@
92
93uImage: vmlinux
94 $(Q)$(MAKE) $(build)=$(boot)/images $(boot)/images/$@
95
96define archhelp
97 @echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/images/zImage.*)'
98 @echo ' uImage - Create a bootable image for U-Boot / PPCBoot'
99 @echo ' install - Install kernel using'
100 @echo ' (your) ~/bin/installkernel or'
101 @echo ' (distribution) /sbin/installkernel or'
102 @echo ' install to $$(INSTALL_PATH) and run lilo'
103 @echo ' *_defconfig - Select default config from arch/$(ARCH)/ppc/configs'
104endef
105
106archclean:
107 $(Q)$(MAKE) $(clean)=arch/ppc/boot
Stephen Rothwellb35b7072005-09-11 00:00:14 +1000108 # Temporary hack until we have migrated to asm-powerpc
109 $(Q)rm -rf arch/$(ARCH)/include
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Sam Ravnborg5bb78262005-09-11 22:30:22 +0200111archprepare: checkbin
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Stephen Rothwell45e2a6e2005-08-29 13:15:50 +1000113# Temporary hack until we have migrated to asm-powerpc
Stephen Rothwellb35b7072005-09-11 00:00:14 +1000114include/asm: arch/$(ARCH)/include/asm
115arch/$(ARCH)/include/asm:
116 $(Q)if [ ! -d arch/$(ARCH)/include ]; then mkdir -p arch/$(ARCH)/include; fi
117 $(Q)ln -fsn $(srctree)/include/asm-powerpc arch/$(ARCH)/include/asm
Stephen Rothwell45e2a6e2005-08-29 13:15:50 +1000118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119# Use the file '.tmp_gas_check' for binutils tests, as gas won't output
120# to stdout and these checks are run even on install targets.
121TOUT := .tmp_gas_check
122# Ensure this is binutils 2.12.1 (or 2.12.90.0.7) or later for altivec
123# instructions.
124# gcc-3.4 and binutils-2.14 are a fatal combination.
125GCC_VERSION := $(call cc-version)
126
127checkbin:
128 @if test "$(GCC_VERSION)" = "0304" ; then \
129 if ! /bin/echo mftb 5 | $(AS) -v -mppc -many -o $(TOUT) >/dev/null 2>&1 ; then \
130 echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build '; \
131 echo 'correctly with gcc-3.4 and your version of binutils.'; \
132 echo '*** Please upgrade your binutils or downgrade your gcc'; \
133 false; \
134 fi ; \
135 fi
136 @if ! /bin/echo dssall | $(AS) -many -o $(TOUT) >/dev/null 2>&1 ; then \
137 echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build ' ; \
138 echo 'correctly with old versions of binutils.' ; \
139 echo '*** Please upgrade your binutils to 2.12.1 or newer' ; \
140 false ; \
141 fi
142
Sam Ravnborg0013a852005-09-09 20:57:26 +0200143CLEAN_FILES += $(TOUT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144