Makefile 4.38 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "COPYING" in the main directory of this archive
# for more details.
#
# This file is included by the global makefile so that you can add your own
# architecture-specific flags and dependencies. Remember to do have actions
# for "archclean" and "archdep" for cleaning up and making dependencies for
# this architecture
#

#
# Select the object file format to substitute into the linker script.
#
ifdef CONFIG_CPU_LITTLE_ENDIAN
tool-prefix	= mips64el-linux-
else
tool-prefix	= mips64-linux-
endif

ifdef CONFIG_CROSSCOMPILE
CROSS_COMPILE  = $(tool-prefix)
endif

#
# The ELF GCC uses -G0 -mabicalls -fpic as default.  We don't need PIC
# code in the kernel since it only slows down the whole thing.  For the
# old GCC these options are just the defaults.  At some point we might
# make use of global pointer optimizations.
#
# The DECStation requires an ECOFF kernel for remote booting, other MIPS
# machines may also.  Since BFD is incredibly buggy with respect to
# crossformat linking we rely on the elf2ecoff tool for format conversion.
#
Linus Torvalds's avatar
Linus Torvalds committed
35
CFLAGS		+= -I $(TOPDIR)/include/asm/gcc $(CFLAGS)
Linus Torvalds's avatar
Linus Torvalds committed
36
CFLAGS		+= -mabi=64 -G 0 -mno-abicalls -fno-pic -Wa,--trap -pipe
37
LDFLAGS_vmlinux	+= -G 0 -static # -N
Linus Torvalds's avatar
Linus Torvalds committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
MODFLAGS	+= -mlong-calls

ifdef CONFIG_REMOTE_DEBUG
CFLAGS		:= $(CFLAGS) -g
endif

#
# CPU-dependent compiler/assembler options for optimization.
#
ifdef CONFIG_CPU_R4300
CFLAGS		:= $(CFLAGS) -mcpu=r4300 -mips3
endif
ifdef CONFIG_CPU_R4X00
CFLAGS		:= $(CFLAGS) -mcpu=r4600 -mips3
endif
ifdef CONFIG_CPU_R5000
CFLAGS		:= $(CFLAGS) -mcpu=r8000 -mips4
endif
ifdef CONFIG_CPU_NEVADA
CFLAGS		:= $(CFLAGS) -mcpu=r8000 -mips3 -mmad
endif
ifdef CONFIG_CPU_R8000
CFLAGS		:= $(CFLAGS) -mcpu=r8000 -mips4
endif
ifdef CONFIG_CPU_R10000
CFLAGS		:= $(CFLAGS) -mcpu=r8000 -mips4
endif

66
core-$(CONFIG_MIPS_FPU_EMULATOR)	+= arch/mips64/math-emu/
Linus Torvalds's avatar
Linus Torvalds committed
67

Linus Torvalds's avatar
Linus Torvalds committed
68 69 70
#
# Board-dependent options and extra files
#
71

Linus Torvalds's avatar
Linus Torvalds committed
72
ifdef CONFIG_SGI_IP22
73 74
libs-y					+= arch/mips64/sgi-ip22/ \
					   arch/mips64/arc/
Linus Torvalds's avatar
Linus Torvalds committed
75 76 77 78 79
#
# Set LOADADDR to >= 0x88069000 if you want to leave space for symmon,
# 0x88004000 for production kernels.  Note that the value must be
# 16kb aligned or the handling of the current variable will break.
#
80
LOADADDR	+= 0x88004000
Linus Torvalds's avatar
Linus Torvalds committed
81 82 83
endif

ifdef CONFIG_SGI_IP27
84 85
core-y					+= arch/mips64/sgi-ip27/
libs-y					+= arch/mips64/arc/
Linus Torvalds's avatar
Linus Torvalds committed
86 87 88 89 90 91 92 93 94 95 96 97 98
#
# Set LOADADDR to >= 0xc000000000300000 if you want to leave space for
# symmon, 0xc00000000001c000 for production kernels.  Note that the value
# must be 16kb aligned or the handling of the current variable will break.
#
#LOADADDR      += 0xa80000000001c000
ifdef CONFIG_MAPPED_KERNEL
LOADADDR      += 0xc001c000
else
LOADADDR      += 0x8001c000
endif
endif

Linus Torvalds's avatar
Linus Torvalds committed
99
ifdef CONFIG_SGI_IP32
100 101
libs-y					+= arch/mips64/sgi-ip32/
					   arch/mips64/arc/
Linus Torvalds's avatar
Linus Torvalds committed
102 103 104 105 106 107 108 109
#
# Set LOADADDR to >= 0x????????? if you want to leave space for symmon,
# 0x80002000 for production kernels.  Note that the value must be
# 16kb aligned or the handling of the current variable will break.
#
LOADADDR	+= 0x80002000
endif

Linus Torvalds's avatar
Linus Torvalds committed
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
#
# Some machines like the Indy need 32-bit ELF binaries for booting purposes.
# Other need ECOFF, so we build a 32-bit ELF binary for them which we then
# convert to ECOFF using elf2ecoff.
#
ifdef CONFIG_BOOT_ELF32
CFLAGS += -Wa,-32
endif
#
# The 64-bit ELF tools are pretty broken so at this time we generate 64-bit
# ELF files from 32-bit files by conversion.
#
ifdef CONFIG_BOOT_ELF64
CFLAGS += -Wa,-32
#AS += -64
125
#LDFLAGS += -m elf64bmip
126
#LDFLAGS_vmlinux += -T arch/mips64/ld.script.elf64
Linus Torvalds's avatar
Linus Torvalds committed
127 128
endif

129
LDFLAGS_vmlinux += -Ttext $(LOADADDR)
Linus Torvalds's avatar
Linus Torvalds committed
130

131
head-y := arch/mips64/kernel/head.o arch/mips64/kernel/init_task.o
Linus Torvalds's avatar
Linus Torvalds committed
132

133 134 135
SUBDIRS		:= arch/mips64/tools $(SUBDIRS)
core-y		+= arch/mips64/kernel/ arch/mips64/mm/
libs-y		+= arch/mips64/lib/lib.a
Linus Torvalds's avatar
Linus Torvalds committed
136 137 138 139 140 141 142 143 144

MAKEBOOT = $(MAKE) -C arch/$(ARCH)/boot

ifdef CONFIG_CPU_LITTLE_ENDIAN
64bit-bfd = elf64-littlemips
else
64bit-bfd = elf64-bigmips
endif

145
AFLAGS_vmlinux.lds.o := -imacros $(srctree)/include/asm-mips64/sn/mapped_kernel.h
Linus Torvalds's avatar
Linus Torvalds committed
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169

ifdef CONFIG_MAPPED_KERNEL
vmlinux.64: vmlinux
	$(OBJCOPY) -O $(64bit-bfd) --change-addresses=0xbfffffff40000000 $< $@
else
vmlinux.64: vmlinux
	$(OBJCOPY) -O $(64bit-bfd) --change-addresses=0xa7ffffff80000000 $< $@
endif

zImage: vmlinux
	@$(MAKEBOOT) zImage

compressed: zImage

zdisk: vmlinux
	@$(MAKEBOOT) zdisk

archclean:
	@$(MAKEBOOT) clean
	$(MAKE) -C arch/$(ARCH)/tools clean

archmrproper:
	@$(MAKEBOOT) mrproper
	$(MAKE) -C arch/$(ARCH)/tools mrproper