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