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