blob: f9b0d778dd82ee1d0ec03b2273f46511a51cdf4c [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
24CPPFLAGS += -Iarch/$(ARCH)
25AFLAGS += -Iarch/$(ARCH)
26CFLAGS += -Iarch/$(ARCH) -msoft-float -pipe \
27 -ffixed-r2 -mmultiple
28CPP = $(CC) -E $(CFLAGS)
29
30CHECKFLAGS += -D__powerpc__
31
Kumar Gala33d9e9b2005-06-25 14:54:37 -070032ifndef CONFIG_FSL_BOOKE
Linus Torvalds1da177e2005-04-16 15:20:36 -070033CFLAGS += -mstring
34endif
35
36cpu-as-$(CONFIG_PPC64BRIDGE) += -Wa,-mppc64bridge
37cpu-as-$(CONFIG_4xx) += -Wa,-m405
38cpu-as-$(CONFIG_6xx) += -Wa,-maltivec
39cpu-as-$(CONFIG_POWER4) += -Wa,-maltivec
40cpu-as-$(CONFIG_E500) += -Wa,-me500
Kumar Gala33d9e9b2005-06-25 14:54:37 -070041cpu-as-$(CONFIG_E200) += -Wa,-me200
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43AFLAGS += $(cpu-as-y)
44CFLAGS += $(cpu-as-y)
45
46# Default to the common case.
47KBUILD_DEFCONFIG := common_defconfig
48
49head-y := arch/ppc/kernel/head.o
50head-$(CONFIG_8xx) := arch/ppc/kernel/head_8xx.o
51head-$(CONFIG_4xx) := arch/ppc/kernel/head_4xx.o
52head-$(CONFIG_44x) := arch/ppc/kernel/head_44x.o
53head-$(CONFIG_FSL_BOOKE) := arch/ppc/kernel/head_fsl_booke.o
54
55head-$(CONFIG_6xx) += arch/ppc/kernel/idle_6xx.o
56head-$(CONFIG_POWER4) += arch/ppc/kernel/idle_power4.o
Paul Mackerras443a8482005-05-01 08:58:40 -070057head-$(CONFIG_PPC_FPU) += arch/ppc/kernel/fpu.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59core-y += arch/ppc/kernel/ arch/ppc/platforms/ \
60 arch/ppc/mm/ arch/ppc/lib/ arch/ppc/syslib/
61core-$(CONFIG_4xx) += arch/ppc/platforms/4xx/
62core-$(CONFIG_83xx) += arch/ppc/platforms/83xx/
63core-$(CONFIG_85xx) += arch/ppc/platforms/85xx/
64core-$(CONFIG_MATH_EMULATION) += arch/ppc/math-emu/
65core-$(CONFIG_XMON) += arch/ppc/xmon/
66core-$(CONFIG_APUS) += arch/ppc/amiga/
67drivers-$(CONFIG_8xx) += arch/ppc/8xx_io/
68drivers-$(CONFIG_4xx) += arch/ppc/4xx_io/
69drivers-$(CONFIG_CPM2) += arch/ppc/8260_io/
70
71drivers-$(CONFIG_OPROFILE) += arch/ppc/oprofile/
72
73BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd vmlinux.sm
74
75.PHONY: $(BOOT_TARGETS)
76
77all: uImage zImage
78
79CPPFLAGS_vmlinux.lds := -Upowerpc
80
81# All the instructions talk about "make bzImage".
82bzImage: zImage
83
84boot := arch/$(ARCH)/boot
85
86$(BOOT_TARGETS): vmlinux
87 $(Q)$(MAKE) $(build)=$(boot) $@
88
89uImage: vmlinux
90 $(Q)$(MAKE) $(build)=$(boot)/images $(boot)/images/$@
91
92define archhelp
93 @echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/images/zImage.*)'
94 @echo ' uImage - Create a bootable image for U-Boot / PPCBoot'
95 @echo ' install - Install kernel using'
96 @echo ' (your) ~/bin/installkernel or'
97 @echo ' (distribution) /sbin/installkernel or'
98 @echo ' install to $$(INSTALL_PATH) and run lilo'
99 @echo ' *_defconfig - Select default config from arch/$(ARCH)/ppc/configs'
100endef
101
102archclean:
103 $(Q)$(MAKE) $(clean)=arch/ppc/boot
104
105prepare: include/asm-$(ARCH)/offsets.h checkbin
106
107arch/$(ARCH)/kernel/asm-offsets.s: include/asm include/linux/version.h \
108 include/config/MARKER
109
110include/asm-$(ARCH)/offsets.h: arch/$(ARCH)/kernel/asm-offsets.s
111 $(call filechk,gen-asm-offsets)
112
113# Use the file '.tmp_gas_check' for binutils tests, as gas won't output
114# to stdout and these checks are run even on install targets.
115TOUT := .tmp_gas_check
116# Ensure this is binutils 2.12.1 (or 2.12.90.0.7) or later for altivec
117# instructions.
118# gcc-3.4 and binutils-2.14 are a fatal combination.
119GCC_VERSION := $(call cc-version)
120
121checkbin:
122 @if test "$(GCC_VERSION)" = "0304" ; then \
123 if ! /bin/echo mftb 5 | $(AS) -v -mppc -many -o $(TOUT) >/dev/null 2>&1 ; then \
124 echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build '; \
125 echo 'correctly with gcc-3.4 and your version of binutils.'; \
126 echo '*** Please upgrade your binutils or downgrade your gcc'; \
127 false; \
128 fi ; \
129 fi
130 @if ! /bin/echo dssall | $(AS) -many -o $(TOUT) >/dev/null 2>&1 ; then \
131 echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build ' ; \
132 echo 'correctly with old versions of binutils.' ; \
133 echo '*** Please upgrade your binutils to 2.12.1 or newer' ; \
134 false ; \
135 fi
136
137CLEAN_FILES += include/asm-$(ARCH)/offsets.h \
138 arch/$(ARCH)/kernel/asm-offsets.s \
139 $(TOUT)
140