blob: 56e1d42a5796f3e8cc4ea90bac2d164d9e04b9e2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# This file is subject to the terms and conditions of the GNU General Public
3# License. See the file "COPYING" in the main directory of this archive
4# for more details.
5#
6# Copyright (C) 1994, 95, 96, 2003 by Ralf Baechle
7# DECStation modifications by Paul M. Antoine, 1996
8# Copyright (C) 2002, 2003, 2004 Maciej W. Rozycki
9#
10# This file is included by the global makefile so that you can add your own
11# architecture-specific flags and dependencies. Remember to do have actions
12# for "archclean" cleaning up for this architecture.
13#
14
15as-option = $(shell if $(CC) $(CFLAGS) $(1) -Wa,-Z -c -o /dev/null \
16 -xassembler /dev/null > /dev/null 2>&1; then echo "$(1)"; \
17 else echo "$(2)"; fi ;)
18
19cflags-y :=
20
21#
22# Select the object file format to substitute into the linker script.
23#
24ifdef CONFIG_CPU_LITTLE_ENDIAN
2532bit-tool-prefix = mipsel-linux-
2664bit-tool-prefix = mips64el-linux-
2732bit-bfd = elf32-tradlittlemips
2864bit-bfd = elf64-tradlittlemips
2932bit-emul = elf32ltsmip
3064bit-emul = elf64ltsmip
31else
3232bit-tool-prefix = mips-linux-
3364bit-tool-prefix = mips64-linux-
3432bit-bfd = elf32-tradbigmips
3564bit-bfd = elf64-tradbigmips
3632bit-emul = elf32btsmip
3764bit-emul = elf64btsmip
38endif
39
Ralf Baechle875d43e2005-09-03 15:56:16 -070040ifdef CONFIG_32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070041gcc-abi = 32
42tool-prefix = $(32bit-tool-prefix)
43UTS_MACHINE := mips
44endif
Ralf Baechle875d43e2005-09-03 15:56:16 -070045ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070046gcc-abi = 64
47tool-prefix = $(64bit-tool-prefix)
48UTS_MACHINE := mips64
49endif
50
51ifdef CONFIG_CROSSCOMPILE
52CROSS_COMPILE := $(tool-prefix)
53endif
54
Ralf Baechlefe00f942005-03-01 19:22:29 +000055CHECKFLAGS-y += -D__linux__ -D__mips__ \
56 -D_ABIO32=1 \
57 -D_ABIN32=2 \
58 -D_ABI64=3
59CHECKFLAGS-$(CONFIG_32BIT) += -D_MIPS_SIM=_ABIO32 \
60 -D_MIPS_SZLONG=32 \
61 -D__PTRDIFF_TYPE__=int
62CHECKFLAGS-$(CONFIG_64BIT) += -m64 -D_MIPS_SIM=_ABI64 \
63 -D_MIPS_SZLONG=64 \
64 -D__PTRDIFF_TYPE__="long int"
65CHECKFLAGS-$(CONFIG_CPU_BIG_ENDIAN) += -D__MIPSEB__
66CHECKFLAGS-$(CONFIG_CPU_LITTLE_ENDIAN) += -D__MIPSEL__
67
68CHECKFLAGS = $(CHECKFLAGS-y)
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070ifdef CONFIG_BUILD_ELF64
71gas-abi = 64
72ld-emul = $(64bit-emul)
73vmlinux-32 = vmlinux.32
74vmlinux-64 = vmlinux
75else
76gas-abi = 32
77ld-emul = $(32bit-emul)
78vmlinux-32 = vmlinux
79vmlinux-64 = vmlinux.64
80
Ralf Baechle875d43e2005-09-03 15:56:16 -070081cflags-$(CONFIG_64BIT) += $(call cc-option,-mno-explicit-relocs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082endif
83
84#
85# GCC uses -G 0 -mabicalls -fpic as default. We don't want PIC in the kernel
86# code since it only slows down the whole thing. At some point we might make
87# use of global pointer optimizations but their use of $28 conflicts with
88# the current pointer optimization.
89#
90# The DECStation requires an ECOFF kernel for remote booting, other MIPS
91# machines may also. Since BFD is incredibly buggy with respect to
92# crossformat linking we rely on the elf2ecoff tool for format conversion.
93#
94cflags-y += -I $(TOPDIR)/include/asm/gcc
95cflags-y += -G 0 -mno-abicalls -fno-pic -pipe
96cflags-y += $(call cc-option, -finline-limit=100000)
Thiemo Seufer9f83d832005-02-21 11:22:15 +000097LDFLAGS_vmlinux += -G 0 -static -n -nostdlib
Linus Torvalds1da177e2005-04-16 15:20:36 -070098MODFLAGS += -mlong-calls
99
100cflags-$(CONFIG_SB1XXX_CORELIS) += -mno-sched-prolog -fno-omit-frame-pointer
101
102#
103# Use: $(call set_gccflags,<cpu0>,<isa0>,<cpu1>,<isa1>,<isa2>)
104#
105# <cpu0>,<isa0> -- preferred CPU and ISA designations (may require
106# recent tools)
107# <cpu1>,<isa1> -- fallback CPU and ISA designations (have to work
108# with up to the oldest supported tools)
109# <isa2> -- an ISA designation used as an ABI selector for
110# gcc versions that do not support "-mabi=32"
111# (depending on the CPU type, either "mips1" or
112# "mips2")
113#
114set_gccflags = $(shell \
115while :; do \
116 cpu=$(1); isa=-$(2); \
117 for gcc_opt in -march= -mcpu=; do \
118 $(CC) $$gcc_opt$$cpu $$isa -S -o /dev/null \
119 -xc /dev/null > /dev/null 2>&1 && \
120 break 2; \
121 done; \
122 cpu=$(3); isa=-$(4); \
123 for gcc_opt in -march= -mcpu=; do \
124 $(CC) $$gcc_opt$$cpu $$isa -S -o /dev/null \
125 -xc /dev/null > /dev/null 2>&1 && \
126 break 2; \
127 done; \
128 break; \
129done; \
130gcc_abi=-mabi=$(gcc-abi); gcc_cpu=$$cpu; \
131if $(CC) $$gcc_abi -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then \
132 gcc_isa=$$isa; \
133else \
134 gcc_abi=; gcc_isa=-$(5); \
135fi; \
136gas_abi=-Wa,-$(gcc-abi); gas_cpu=$$cpu; gas_isa=-Wa,$$isa; \
137while :; do \
138 for gas_opt in -Wa,-march= -Wa,-mcpu=; do \
139 $(CC) $$gas_abi $$gas_opt$$cpu $$gas_isa -Wa,-Z -c \
140 -o /dev/null -xassembler /dev/null > /dev/null 2>&1 && \
141 break 2; \
142 done; \
143 gas_abi=; gas_opt=; gas_cpu=; gas_isa=; \
144 break; \
145done; \
146if test "$(gcc-abi)" != "$(gas-abi)"; then \
147 gas_abi="-Wa,-$(gas-abi) -Wa,-mgp$(gcc-abi)"; \
148fi; \
149if test "$$gcc_opt" = -march= && test -n "$$gcc_abi"; then \
150 $(CC) $$gcc_abi $$gcc_opt$$gcc_cpu -S -o /dev/null \
151 -xc /dev/null > /dev/null 2>&1 && \
152 gcc_isa=; \
153fi; \
154echo $$gcc_abi $$gcc_opt$$gcc_cpu $$gcc_isa $$gas_abi $$gas_opt$$gas_cpu $$gas_isa)
155
156#
157# CPU-dependent compiler/assembler options for optimization.
158#
159cflags-$(CONFIG_CPU_R3000) += \
160 $(call set_gccflags,r3000,mips1,r3000,mips1,mips1)
161
162cflags-$(CONFIG_CPU_TX39XX) += \
163 $(call set_gccflags,r3900,mips1,r3000,mips1,mips1)
164
165cflags-$(CONFIG_CPU_R6000) += \
166 $(call set_gccflags,r6000,mips2,r6000,mips2,mips2) \
167 -Wa,--trap
168
169cflags-$(CONFIG_CPU_R4300) += \
170 $(call set_gccflags,r4300,mips3,r4300,mips3,mips2) \
171 -Wa,--trap
172
173cflags-$(CONFIG_CPU_VR41XX) += \
174 $(call set_gccflags,r4100,mips3,r4600,mips3,mips2) \
175 -Wa,--trap
176
177cflags-$(CONFIG_CPU_R4X00) += \
178 $(call set_gccflags,r4600,mips3,r4600,mips3,mips2) \
179 -Wa,--trap
180
181cflags-$(CONFIG_CPU_TX49XX) += \
182 $(call set_gccflags,r4600,mips3,r4600,mips3,mips2) \
183 -Wa,--trap
184
Ralf Baechle6e760c82005-07-06 12:08:11 +0000185cflags-$(CONFIG_CPU_MIPS32_R1) += \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 $(call set_gccflags,mips32,mips32,r4600,mips3,mips2) \
187 -Wa,--trap
188
Ralf Baechle6e760c82005-07-06 12:08:11 +0000189cflags-$(CONFIG_CPU_MIPS64_R1) += \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 $(call set_gccflags,mips64,mips64,r4600,mips3,mips2) \
191 -Wa,--trap
192
193cflags-$(CONFIG_CPU_R5000) += \
194 $(call set_gccflags,r5000,mips4,r5000,mips4,mips2) \
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700195 -Wa,--trap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197cflags-$(CONFIG_CPU_R5432) += \
198 $(call set_gccflags,r5400,mips4,r5000,mips4,mips2) \
199 -Wa,--trap
200
201cflags-$(CONFIG_CPU_NEVADA) += \
202 $(call set_gccflags,rm5200,mips4,r5000,mips4,mips2) \
203 -Wa,--trap
204# $(call cc-option,-mmad)
205
206cflags-$(CONFIG_CPU_RM7000) += \
207 $(call set_gccflags,rm7000,mips4,r5000,mips4,mips2) \
208 -Wa,--trap
209
210cflags-$(CONFIG_CPU_RM9000) += \
211 $(call set_gccflags,rm9000,mips4,r5000,mips4,mips2) \
212 -Wa,--trap
213
214cflags-$(CONFIG_CPU_SB1) += \
215 $(call set_gccflags,sb1,mips64,r5000,mips4,mips2) \
216 -Wa,--trap
217
218cflags-$(CONFIG_CPU_R8000) += \
219 $(call set_gccflags,r8000,mips4,r8000,mips4,mips2) \
220 -Wa,--trap
221
222cflags-$(CONFIG_CPU_R10000) += \
223 $(call set_gccflags,r10000,mips4,r8000,mips4,mips2) \
224 -Wa,--trap
225
226ifdef CONFIG_CPU_SB1
227ifdef CONFIG_SB1_PASS_1_WORKAROUNDS
228MODFLAGS += -msb1-pass1-workarounds
229endif
230endif
231
232#
233# Firmware support
234#
235libs-$(CONFIG_ARC) += arch/mips/arc/
236libs-$(CONFIG_SIBYTE_CFE) += arch/mips/sibyte/cfe/
237
238#
239# Board-dependent options and extra files
240#
241
242#
243# Acer PICA 61, Mips Magnum 4000 and Olivetti M700.
244#
245core-$(CONFIG_MACH_JAZZ) += arch/mips/jazz/
246cflags-$(CONFIG_MACH_JAZZ) += -Iinclude/asm-mips/mach-jazz
247load-$(CONFIG_MACH_JAZZ) += 0xffffffff80080000
248
249#
250# Common Alchemy Au1x00 stuff
251#
252core-$(CONFIG_SOC_AU1X00) += arch/mips/au1000/common/
253cflags-$(CONFIG_SOC_AU1X00) += -Iinclude/asm-mips/mach-au1x00
254
255#
256# AMD Alchemy Pb1000 eval board
257#
258libs-$(CONFIG_MIPS_PB1000) += arch/mips/au1000/pb1000/
259cflags-$(CONFIG_MIPS_PB1000) += -Iinclude/asm-mips/mach-pb1x00
260load-$(CONFIG_MIPS_PB1000) += 0xffffffff80100000
261
262#
263# AMD Alchemy Pb1100 eval board
264#
265libs-$(CONFIG_MIPS_PB1100) += arch/mips/au1000/pb1100/
266cflags-$(CONFIG_MIPS_PB1100) += -Iinclude/asm-mips/mach-pb1x00
267load-$(CONFIG_MIPS_PB1100) += 0xffffffff80100000
268
269#
270# AMD Alchemy Pb1500 eval board
271#
272libs-$(CONFIG_MIPS_PB1500) += arch/mips/au1000/pb1500/
273cflags-$(CONFIG_MIPS_PB1500) += -Iinclude/asm-mips/mach-pb1x00
274load-$(CONFIG_MIPS_PB1500) += 0xffffffff80100000
275
276#
277# AMD Alchemy Pb1550 eval board
278#
279libs-$(CONFIG_MIPS_PB1550) += arch/mips/au1000/pb1550/
280cflags-$(CONFIG_MIPS_PB1550) += -Iinclude/asm-mips/mach-pb1x00
281load-$(CONFIG_MIPS_PB1550) += 0xffffffff80100000
282
283#
Pete Popove3ad1c22005-03-01 06:33:16 +0000284# AMD Alchemy Pb1200 eval board
285#
286libs-$(CONFIG_MIPS_PB1200) += arch/mips/au1000/pb1200/
287cflags-$(CONFIG_MIPS_PB1200) += -Iinclude/asm-mips/mach-pb1x00
288load-$(CONFIG_MIPS_PB1200) += 0xffffffff80100000
289
290#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291# AMD Alchemy Db1000 eval board
292#
293libs-$(CONFIG_MIPS_DB1000) += arch/mips/au1000/db1x00/
294cflags-$(CONFIG_MIPS_DB1000) += -Iinclude/asm-mips/mach-db1x00
295load-$(CONFIG_MIPS_DB1000) += 0xffffffff80100000
296
297#
298# AMD Alchemy Db1100 eval board
299#
300libs-$(CONFIG_MIPS_DB1100) += arch/mips/au1000/db1x00/
301cflags-$(CONFIG_MIPS_DB1100) += -Iinclude/asm-mips/mach-db1x00
302load-$(CONFIG_MIPS_DB1100) += 0xffffffff80100000
303
304#
305# AMD Alchemy Db1500 eval board
306#
307libs-$(CONFIG_MIPS_DB1500) += arch/mips/au1000/db1x00/
308cflags-$(CONFIG_MIPS_DB1500) += -Iinclude/asm-mips/mach-db1x00
309load-$(CONFIG_MIPS_DB1500) += 0xffffffff80100000
310
311#
312# AMD Alchemy Db1550 eval board
313#
314libs-$(CONFIG_MIPS_DB1550) += arch/mips/au1000/db1x00/
315cflags-$(CONFIG_MIPS_DB1550) += -Iinclude/asm-mips/mach-db1x00
316load-$(CONFIG_MIPS_DB1550) += 0xffffffff80100000
317
318#
Pete Popove3ad1c22005-03-01 06:33:16 +0000319# AMD Alchemy Db1200 eval board
320#
321libs-$(CONFIG_MIPS_DB1200) += arch/mips/au1000/pb1200/
322cflags-$(CONFIG_MIPS_DB1200) += -Iinclude/asm-mips/mach-db1x00
323load-$(CONFIG_MIPS_DB1200) += 0xffffffff80100000
324
325#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326# AMD Alchemy Bosporus eval board
327#
328libs-$(CONFIG_MIPS_BOSPORUS) += arch/mips/au1000/db1x00/
329cflags-$(CONFIG_MIPS_BOSPORUS) += -Iinclude/asm-mips/mach-db1x00
330load-$(CONFIG_MIPS_BOSPORUS) += 0xffffffff80100000
331
332#
333# AMD Alchemy Mirage eval board
334#
335libs-$(CONFIG_MIPS_MIRAGE) += arch/mips/au1000/db1x00/
336cflags-$(CONFIG_MIPS_MIRAGE) += -Iinclude/asm-mips/mach-db1x00
337load-$(CONFIG_MIPS_MIRAGE) += 0xffffffff80100000
338
339#
340# 4G-Systems eval board
341#
342libs-$(CONFIG_MIPS_MTX1) += arch/mips/au1000/mtx-1/
343load-$(CONFIG_MIPS_MTX1) += 0xffffffff80100000
344
345#
346# MyCable eval board
347#
348libs-$(CONFIG_MIPS_XXS1500) += arch/mips/au1000/xxs1500/
349load-$(CONFIG_MIPS_XXS1500) += 0xffffffff80100000
350
351#
352# Cobalt Server
353#
354core-$(CONFIG_MIPS_COBALT) += arch/mips/cobalt/
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000355cflags-$(CONFIG_MIPS_COBALT) += -Iinclude/asm-mips/cobalt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356load-$(CONFIG_MIPS_COBALT) += 0xffffffff80080000
357
358#
359# DECstation family
360#
361core-$(CONFIG_MACH_DECSTATION) += arch/mips/dec/
362cflags-$(CONFIG_MACH_DECSTATION)+= -Iinclude/asm-mips/mach-dec
363libs-$(CONFIG_MACH_DECSTATION) += arch/mips/dec/prom/
364load-$(CONFIG_MACH_DECSTATION) += 0xffffffff80040000
365CLEAN_FILES += drivers/tc/lk201-map.c
366
367#
368# Galileo EV64120 Board
369#
370core-$(CONFIG_MIPS_EV64120) += arch/mips/gt64120/ev64120/
371core-$(CONFIG_MIPS_EV64120) += arch/mips/gt64120/common/
372cflags-$(CONFIG_MIPS_EV64120) += -Iinclude/asm-mips/mach-ev64120
373load-$(CONFIG_MIPS_EV64120) += 0xffffffff80100000
374
375#
376# Galileo EV96100 Board
377#
378core-$(CONFIG_MIPS_EV96100) += arch/mips/galileo-boards/ev96100/
379cflags-$(CONFIG_MIPS_EV96100) += -Iinclude/asm-mips/mach-ev96100
380load-$(CONFIG_MIPS_EV96100) += 0xffffffff80100000
381
382#
383# Globespan IVR eval board with QED 5231 CPU
384#
385core-$(CONFIG_ITE_BOARD_GEN) += arch/mips/ite-boards/generic/
386core-$(CONFIG_MIPS_IVR) += arch/mips/ite-boards/ivr/
387load-$(CONFIG_MIPS_IVR) += 0xffffffff80100000
388
389#
390# ITE 8172 eval board with QED 5231 CPU
391#
392core-$(CONFIG_MIPS_ITE8172) += arch/mips/ite-boards/qed-4n-s01b/
393load-$(CONFIG_MIPS_ITE8172) += 0xffffffff80100000
394
395#
396# For all MIPS, Inc. eval boards
397#
398core-$(CONFIG_MIPS_BOARDS_GEN) += arch/mips/mips-boards/generic/
399
400#
401# MIPS Atlas board
402#
403core-$(CONFIG_MIPS_ATLAS) += arch/mips/mips-boards/atlas/
404cflags-$(CONFIG_MIPS_ATLAS) += -Iinclude/asm-mips/mach-atlas
405cflags-$(CONFIG_MIPS_ATLAS) += -Iinclude/asm-mips/mach-mips
406load-$(CONFIG_MIPS_ATLAS) += 0xffffffff80100000
407
408#
409# MIPS Malta board
410#
411core-$(CONFIG_MIPS_MALTA) += arch/mips/mips-boards/malta/
412cflags-$(CONFIG_MIPS_MALTA) += -Iinclude/asm-mips/mach-mips
413load-$(CONFIG_MIPS_MALTA) += 0xffffffff80100000
414
415#
416# MIPS SEAD board
417#
418core-$(CONFIG_MIPS_SEAD) += arch/mips/mips-boards/sead/
419load-$(CONFIG_MIPS_SEAD) += 0xffffffff80100000
420
421#
422# Momentum Ocelot board
423#
424# The Ocelot setup.o must be linked early - it does the ioremap() for the
425# mips_io_port_base.
426#
427core-$(CONFIG_MOMENCO_OCELOT) += arch/mips/gt64120/common/ \
428 arch/mips/gt64120/momenco_ocelot/
429cflags-$(CONFIG_MOMENCO_OCELOT) += -Iinclude/asm-mips/mach-ocelot
430load-$(CONFIG_MOMENCO_OCELOT) += 0xffffffff80100000
431
432#
433# Momentum Ocelot-G board
434#
435# The Ocelot-G setup.o must be linked early - it does the ioremap() for the
436# mips_io_port_base.
437#
438core-$(CONFIG_MOMENCO_OCELOT_G) += arch/mips/momentum/ocelot_g/
439load-$(CONFIG_MOMENCO_OCELOT_G) += 0xffffffff80100000
440
441#
442# Momentum Ocelot-C and -CS boards
443#
444# The Ocelot-C[S] setup.o must be linked early - it does the ioremap() for the
445# mips_io_port_base.
446core-$(CONFIG_MOMENCO_OCELOT_C) += arch/mips/momentum/ocelot_c/
447load-$(CONFIG_MOMENCO_OCELOT_C) += 0xffffffff80100000
448
449#
450# PMC-Sierra Yosemite
451#
452core-$(CONFIG_PMC_YOSEMITE) += arch/mips/pmc-sierra/yosemite/
453cflags-$(CONFIG_PMC_YOSEMITE) += -Iinclude/asm-mips/mach-yosemite
454load-$(CONFIG_PMC_YOSEMITE) += 0xffffffff80100000
455
Ralf Baechle07119622005-09-03 15:56:11 -0700456# Qemu simulating MIPS32 4Kc
457#
458core-$(CONFIG_QEMU) += arch/mips/qemu/
459cflags-$(CONFIG_QEMU) += -Iinclude/asm-mips/mach-qemu
460load-$(CONFIG_QEMU) += 0xffffffff80010000
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#
463# Momentum Ocelot-3
464#
465core-$(CONFIG_MOMENCO_OCELOT_3) += arch/mips/momentum/ocelot_3/
466cflags-$(CONFIG_MOMENCO_OCELOT_3) += -Iinclude/asm-mips/mach-ocelot3
467load-$(CONFIG_MOMENCO_OCELOT_3) += 0xffffffff80100000
468
469#
470# Momentum Jaguar ATX
471#
472core-$(CONFIG_MOMENCO_JAGUAR_ATX) += arch/mips/momentum/jaguar_atx/
473cflags-$(CONFIG_MOMENCO_JAGUAR_ATX) += -Iinclude/asm-mips/mach-ja
474#ifdef CONFIG_JAGUAR_DMALOW
475#load-$(CONFIG_MOMENCO_JAGUAR_ATX) += 0xffffffff88000000
476#else
477load-$(CONFIG_MOMENCO_JAGUAR_ATX) += 0xffffffff80100000
478#endif
479
480#
481# NEC DDB
482#
483core-$(CONFIG_DDB5XXX_COMMON) += arch/mips/ddb5xxx/common/
484
485#
486# NEC DDB Vrc-5074
487#
488core-$(CONFIG_DDB5074) += arch/mips/ddb5xxx/ddb5074/
489load-$(CONFIG_DDB5074) += 0xffffffff80080000
490
491#
492# NEC DDB Vrc-5476
493#
494core-$(CONFIG_DDB5476) += arch/mips/ddb5xxx/ddb5476/
495load-$(CONFIG_DDB5476) += 0xffffffff80080000
496
497#
498# NEC DDB Vrc-5477
499#
500core-$(CONFIG_DDB5477) += arch/mips/ddb5xxx/ddb5477/
501load-$(CONFIG_DDB5477) += 0xffffffff80100000
502
503core-$(CONFIG_LASAT) += arch/mips/lasat/
504cflags-$(CONFIG_LASAT) += -Iinclude/asm-mips/mach-lasat
505load-$(CONFIG_LASAT) += 0xffffffff80000000
506
507#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508# Common VR41xx
509#
510core-$(CONFIG_MACH_VR41XX) += arch/mips/vr41xx/common/
511cflags-$(CONFIG_MACH_VR41XX) += -Iinclude/asm-mips/mach-vr41xx
512
513#
514# NEC VR4133
515#
516core-$(CONFIG_NEC_CMBVR4133) += arch/mips/vr41xx/nec-cmbvr4133/
517load-$(CONFIG_NEC_CMBVR4133) += 0xffffffff80100000
518
519#
520# ZAO Networks Capcella (VR4131)
521#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522load-$(CONFIG_ZAO_CAPCELLA) += 0xffffffff80000000
523
524#
525# Victor MP-C303/304 (VR4122)
526#
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527load-$(CONFIG_VICTOR_MPC30X) += 0xffffffff80001000
528
529#
530# IBM WorkPad z50 (VR4121)
531#
532core-$(CONFIG_IBM_WORKPAD) += arch/mips/vr41xx/ibm-workpad/
533load-$(CONFIG_IBM_WORKPAD) += 0xffffffff80004000
534
535#
536# CASIO CASSIPEIA E-55/65 (VR4111)
537#
538core-$(CONFIG_CASIO_E55) += arch/mips/vr41xx/casio-e55/
539load-$(CONFIG_CASIO_E55) += 0xffffffff80004000
540
541#
Yoichi Yuasa63b799f2005-09-03 15:56:13 -0700542# TANBAC VR4131 multichip module(TB0225) and TANBAC VR4131DIMM(TB0229) (VR4131)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#
Yoichi Yuasa63b799f2005-09-03 15:56:13 -0700544load-$(CONFIG_TANBAC_TB022X) += 0xffffffff80000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546#
547# SGI IP22 (Indy/Indigo2)
548#
549# Set the load address to >= 0xffffffff88069000 if you want to leave space for
550# symmon, 0xffffffff80002000 for production kernels. Note that the value must
551# be aligned to a multiple of the kernel stack size or the handling of the
552# current variable will break so for 64-bit kernels we have to raise the start
553# address by 8kb.
554#
555core-$(CONFIG_SGI_IP22) += arch/mips/sgi-ip22/
556cflags-$(CONFIG_SGI_IP22) += -Iinclude/asm-mips/mach-ip22
Ralf Baechle875d43e2005-09-03 15:56:16 -0700557ifdef CONFIG_32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558load-$(CONFIG_SGI_IP22) += 0xffffffff88002000
559endif
Ralf Baechle875d43e2005-09-03 15:56:16 -0700560ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561load-$(CONFIG_SGI_IP22) += 0xffffffff88004000
562endif
563
564#
565# SGI-IP27 (Origin200/2000)
566#
567# Set the load address to >= 0xc000000000300000 if you want to leave space for
568# symmon, 0xc00000000001c000 for production kernels. Note that the value must
569# be 16kb aligned or the handling of the current variable will break.
570#
571ifdef CONFIG_SGI_IP27
572core-$(CONFIG_SGI_IP27) += arch/mips/sgi-ip27/
573cflags-$(CONFIG_SGI_IP27) += -Iinclude/asm-mips/mach-ip27
574ifdef CONFIG_BUILD_ELF64
575ifdef CONFIG_MAPPED_KERNEL
576load-$(CONFIG_SGI_IP27) += 0xc00000004001c000
577OBJCOPYFLAGS := --change-addresses=0x3fffffff80000000
578dataoffset-$(CONFIG_SGI_IP27) += 0x01000000
579else
580load-$(CONFIG_SGI_IP27) += 0xa80000000001c000
581OBJCOPYFLAGS := --change-addresses=0x57ffffff80000000
582endif
583else
584ifdef CONFIG_MAPPED_KERNEL
585load-$(CONFIG_SGI_IP27) += 0xffffffffc001c000
586OBJCOPYFLAGS := --change-addresses=0xc000000080000000
587dataoffset-$(CONFIG_SGI_IP27) += 0x01000000
588else
589load-$(CONFIG_SGI_IP27) += 0xffffffff8001c000
590OBJCOPYFLAGS := --change-addresses=0xa800000080000000
591endif
592endif
593endif
594
595#
596# SGI-IP32 (O2)
597#
598# Set the load address to >= 80069000 if you want to leave space for symmon,
599# 0xffffffff80004000 for production kernels. Note that the value must be aligned to
600# a multiple of the kernel stack size or the handling of the current variable
601# will break.
602#
603core-$(CONFIG_SGI_IP32) += arch/mips/sgi-ip32/
604cflags-$(CONFIG_SGI_IP32) += -Iinclude/asm-mips/mach-ip32
605load-$(CONFIG_SGI_IP32) += 0xffffffff80004000
606
607#
608# Sibyte SB1250 SOC
609#
610# This is a LIB so that it links at the end, and initcalls are later
611# the sequence; but it is built as an object so that modules don't get
612# removed (as happens, even if they have __initcall/module_init)
613#
614core-$(CONFIG_SIBYTE_BCM112X) += arch/mips/sibyte/sb1250/
615cflags-$(CONFIG_SIBYTE_BCM112X) += -Iinclude/asm-mips/mach-sibyte
616
617core-$(CONFIG_SIBYTE_SB1250) += arch/mips/sibyte/sb1250/
618cflags-$(CONFIG_SIBYTE_SB1250) += -Iinclude/asm-mips/mach-sibyte
619
620#
621# Sibyte BCM91120x (Carmel) board
622# Sibyte BCM91120C (CRhine) board
623# Sibyte BCM91125C (CRhone) board
624# Sibyte BCM91125E (Rhone) board
625# Sibyte SWARM board
626#
627libs-$(CONFIG_SIBYTE_CARMEL) += arch/mips/sibyte/swarm/
628load-$(CONFIG_SIBYTE_CARMEL) := 0xffffffff80100000
629libs-$(CONFIG_SIBYTE_CRHINE) += arch/mips/sibyte/swarm/
630load-$(CONFIG_SIBYTE_CRHINE) := 0xffffffff80100000
631libs-$(CONFIG_SIBYTE_CRHONE) += arch/mips/sibyte/swarm/
632load-$(CONFIG_SIBYTE_CRHONE) := 0xffffffff80100000
633libs-$(CONFIG_SIBYTE_RHONE) += arch/mips/sibyte/swarm/
634load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000
635libs-$(CONFIG_SIBYTE_SENTOSA) += arch/mips/sibyte/swarm/
636load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000
637libs-$(CONFIG_SIBYTE_SWARM) += arch/mips/sibyte/swarm/
638load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000
639
640#
641# SNI RM200 PCI
642#
643core-$(CONFIG_SNI_RM200_PCI) += arch/mips/sni/
644cflags-$(CONFIG_SNI_RM200_PCI) += -Iinclude/asm-mips/mach-rm200
645load-$(CONFIG_SNI_RM200_PCI) += 0xffffffff80600000
646
647#
648# Toshiba JMR-TX3927 board
649#
650core-$(CONFIG_TOSHIBA_JMR3927) += arch/mips/jmr3927/rbhma3100/ \
651 arch/mips/jmr3927/common/
652load-$(CONFIG_TOSHIBA_JMR3927) += 0xffffffff80050000
653
654#
655# Toshiba RBTX4927 board or
656# Toshiba RBTX4937 board
657#
658core-$(CONFIG_TOSHIBA_RBTX4927) += arch/mips/tx4927/toshiba_rbtx4927/
659core-$(CONFIG_TOSHIBA_RBTX4927) += arch/mips/tx4927/common/
660load-$(CONFIG_TOSHIBA_RBTX4927) += 0xffffffff80020000
661
662cflags-y += -Iinclude/asm-mips/mach-generic
663drivers-$(CONFIG_PCI) += arch/mips/pci/
664
Ralf Baechle875d43e2005-09-03 15:56:16 -0700665ifdef CONFIG_32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666ifdef CONFIG_CPU_LITTLE_ENDIAN
667JIFFIES = jiffies_64
668else
669JIFFIES = jiffies_64 + 4
670endif
671else
672JIFFIES = jiffies_64
673endif
674
675AFLAGS += $(cflags-y)
676CFLAGS += $(cflags-y)
677
678LDFLAGS += -m $(ld-emul)
679
680OBJCOPYFLAGS += --remove-section=.reginfo
681
682#
683# Choosing incompatible machines durings configuration will result in
684# error messages during linking. Select a default linkscript if
685# none has been choosen above.
686#
687
688CPPFLAGS_vmlinux.lds := \
689 $(CFLAGS) \
690 -D"LOADADDR=$(load-y)" \
691 -D"JIFFIES=$(JIFFIES)" \
692 -D"DATAOFFSET=$(if $(dataoffset-y),$(dataoffset-y),0)"
693
694head-y := arch/mips/kernel/head.o arch/mips/kernel/init_task.o
695
696libs-y += arch/mips/lib/
Ralf Baechle875d43e2005-09-03 15:56:16 -0700697libs-$(CONFIG_32BIT) += arch/mips/lib-32/
698libs-$(CONFIG_64BIT) += arch/mips/lib-64/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700core-y += arch/mips/kernel/ arch/mips/mm/ arch/mips/math-emu/
701
702drivers-$(CONFIG_OPROFILE) += arch/mips/oprofile/
703
704ifdef CONFIG_LASAT
705rom.bin rom.sw: vmlinux
Sam Ravnborg7c6b1552005-07-25 12:51:08 +0000706 $(Q)$(MAKE) $(build)=arch/mips/lasat/image $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707endif
708
709#
710# Some machines like the Indy need 32-bit ELF binaries for booting purposes.
711# Other need ECOFF, so we build a 32-bit ELF binary for them which we then
712# convert to ECOFF using elf2ecoff.
713#
714vmlinux.32: vmlinux
715 $(OBJCOPY) -O $(32bit-bfd) $(OBJCOPYFLAGS) $< $@
716
717#
718# The 64-bit ELF tools are pretty broken so at this time we generate 64-bit
719# ELF files from 32-bit files by conversion.
720#
721vmlinux.64: vmlinux
722 $(OBJCOPY) -O $(64bit-bfd) $(OBJCOPYFLAGS) $< $@
723
724makeboot =$(Q)$(MAKE) $(build)=arch/mips/boot VMLINUX=$(vmlinux-32) $(1)
725
726ifdef CONFIG_BOOT_ELF32
727all: $(vmlinux-32)
728endif
729
730ifdef CONFIG_BOOT_ELF64
731all: $(vmlinux-64)
732endif
733
Ralf Baechle149f60b2005-05-19 14:45:12 +0000734ifdef CONFIG_MIPS_ATLAS
735all: vmlinux.srec
736endif
737
738ifdef CONFIG_MIPS_MALTA
739all: vmlinux.srec
740endif
741
742ifdef CONFIG_MIPS_SEAD
743all: vmlinux.srec
744endif
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746ifdef CONFIG_SNI_RM200_PCI
747all: vmlinux.ecoff
748endif
749
750vmlinux.ecoff vmlinux.rm200: $(vmlinux-32)
751 +@$(call makeboot,$@)
752
753vmlinux.srec: $(vmlinux-32)
754 +@$(call makeboot,$@)
755
756CLEAN_FILES += vmlinux.ecoff \
757 vmlinux.srec \
758 vmlinux.rm200.tmp \
759 vmlinux.rm200
760
761archclean:
762 @$(MAKE) $(clean)=arch/mips/boot
763 @$(MAKE) $(clean)=arch/mips/lasat
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Sam Ravnborg048eb582005-09-09 22:32:31 +0200766CLEAN_FILES += vmlinux.32 \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 vmlinux.64 \
768 vmlinux.ecoff