xref: /openbmc/linux/arch/mips/Makefile (revision 3f66601e)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# This file is subject to the terms and conditions of the GNU General Public
31da177e4SLinus Torvalds# License.  See the file "COPYING" in the main directory of this archive
41da177e4SLinus Torvalds# for more details.
51da177e4SLinus Torvalds#
61da177e4SLinus Torvalds# Copyright (C) 1994, 95, 96, 2003 by Ralf Baechle
71da177e4SLinus Torvalds# DECStation modifications by Paul M. Antoine, 1996
81da177e4SLinus Torvalds# Copyright (C) 2002, 2003, 2004  Maciej W. Rozycki
91da177e4SLinus Torvalds#
101da177e4SLinus Torvalds# This file is included by the global makefile so that you can add your own
111da177e4SLinus Torvalds# architecture-specific flags and dependencies. Remember to do have actions
121da177e4SLinus Torvalds# for "archclean" cleaning up for this architecture.
131da177e4SLinus Torvalds#
141da177e4SLinus Torvalds
15aadeec4dSMatt Redfearnarchscripts: scripts_basic
16e245767aSPaul Burton	$(Q)$(MAKE) $(build)=arch/mips/tools elf-entry
17e4acfbc1SPaul Burtonifeq ($(CONFIG_CPU_LOONGSON3_WORKAROUNDS),y)
18e4acfbc1SPaul Burton	$(Q)$(MAKE) $(build)=arch/mips/tools loongson3-llsc-check
19e4acfbc1SPaul Burtonendif
20aadeec4dSMatt Redfearn	$(Q)$(MAKE) $(build)=arch/mips/boot/tools relocs
21aadeec4dSMatt Redfearn
2204d8405eSMatt RedfearnKBUILD_DEFCONFIG := 32r2el_defconfig
23637dfa0fSCedric HombourgerKBUILD_DTBS      := dtbs
24de0c1698SAdrian Bunk
251da177e4SLinus Torvalds#
261da177e4SLinus Torvalds# Select the object file format to substitute into the linker script.
271da177e4SLinus Torvalds#
281da177e4SLinus Torvaldsifdef CONFIG_CPU_LITTLE_ENDIAN
2917f690beSRalf Baechle32bit-tool-archpref	= mipsel
3017f690beSRalf Baechle64bit-tool-archpref	= mips64el
311da177e4SLinus Torvalds32bit-bfd		= elf32-tradlittlemips
321da177e4SLinus Torvalds64bit-bfd		= elf64-tradlittlemips
331da177e4SLinus Torvalds32bit-emul		= elf32ltsmip
341da177e4SLinus Torvalds64bit-emul		= elf64ltsmip
351da177e4SLinus Torvaldselse
3617f690beSRalf Baechle32bit-tool-archpref	= mips
3717f690beSRalf Baechle64bit-tool-archpref	= mips64
381da177e4SLinus Torvalds32bit-bfd		= elf32-tradbigmips
391da177e4SLinus Torvalds64bit-bfd		= elf64-tradbigmips
401da177e4SLinus Torvalds32bit-emul		= elf32btsmip
411da177e4SLinus Torvalds64bit-emul		= elf64btsmip
421da177e4SLinus Torvaldsendif
431da177e4SLinus Torvalds
44875d43e7SRalf Baechleifdef CONFIG_32BIT
4517f690beSRalf Baechletool-archpref		= $(32bit-tool-archpref)
461da177e4SLinus TorvaldsUTS_MACHINE		:= mips
471da177e4SLinus Torvaldsendif
48875d43e7SRalf Baechleifdef CONFIG_64BIT
4917f690beSRalf Baechletool-archpref		= $(64bit-tool-archpref)
501da177e4SLinus TorvaldsUTS_MACHINE		:= mips64
511da177e4SLinus Torvaldsendif
521da177e4SLinus Torvalds
5323243c1aSMasahiro Yamadaifdef cross_compiling
5417f690beSRalf Baechle  ifeq ($(CROSS_COMPILE),)
553247989eSMaciej W. Rozycki    CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux-  $(tool-archpref)-linux-gnu-  $(tool-archpref)-unknown-linux-gnu-)
5617f690beSRalf Baechle  endif
571da177e4SLinus Torvaldsendif
581da177e4SLinus Torvalds
597326c4e5SWu Zhangjinifdef CONFIG_FUNCTION_GRAPH_TRACER
607326c4e5SWu Zhangjin  ifndef KBUILD_MCOUNT_RA_ADDRESS
617326c4e5SWu Zhangjin    ifeq ($(call cc-option-yn,-mmcount-ra-address), y)
627326c4e5SWu Zhangjin      cflags-y += -mmcount-ra-address -DKBUILD_MCOUNT_RA_ADDRESS
637326c4e5SWu Zhangjin    endif
647326c4e5SWu Zhangjin  endif
657326c4e5SWu Zhangjinendif
661a4ba061SRalf Baechlecflags-y += $(call cc-option, -mno-check-zero-division)
6705e41404SRalf Baechle
688145095cSRalf Baechleifdef CONFIG_32BIT
691da177e4SLinus Torvaldsld-emul			= $(32bit-emul)
701da177e4SLinus Torvaldsvmlinux-32		= vmlinux
711da177e4SLinus Torvaldsvmlinux-64		= vmlinux.64
7259b3e8e9SRalf Baechle
7359b3e8e9SRalf Baechlecflags-y		+= -mabi=32
748145095cSRalf Baechleendif
751da177e4SLinus Torvalds
768145095cSRalf Baechleifdef CONFIG_64BIT
778145095cSRalf Baechleld-emul			= $(64bit-emul)
788145095cSRalf Baechlevmlinux-32		= vmlinux.32
798145095cSRalf Baechlevmlinux-64		= vmlinux
808145095cSRalf Baechle
8159b3e8e9SRalf Baechlecflags-y		+= -mabi=64
8259b3e8e9SRalf Baechleendif
8359b3e8e9SRalf Baechle
848496b401SRalf Baechleall-$(CONFIG_BOOT_ELF32)	:= $(vmlinux-32)
858496b401SRalf Baechleall-$(CONFIG_BOOT_ELF64)	:= $(vmlinux-64)
861b93b3c3SWu Zhangjinall-$(CONFIG_SYS_SUPPORTS_ZBOOT)+= vmlinuz
871da177e4SLinus Torvalds
881da177e4SLinus Torvalds#
891da177e4SLinus Torvalds# GCC uses -G 0 -mabicalls -fpic as default.  We don't want PIC in the kernel
901da177e4SLinus Torvalds# code since it only slows down the whole thing.  At some point we might make
911da177e4SLinus Torvalds# use of global pointer optimizations but their use of $28 conflicts with
921da177e4SLinus Torvalds# the current pointer optimization.
931da177e4SLinus Torvalds#
941da177e4SLinus Torvalds# The DECStation requires an ECOFF kernel for remote booting, other MIPS
951da177e4SLinus Torvalds# machines may also.  Since BFD is incredibly buggy with respect to
961da177e4SLinus Torvalds# crossformat linking we rely on the elf2ecoff tool for format conversion.
971da177e4SLinus Torvalds#
981da177e4SLinus Torvaldscflags-y			+= -G 0 -mno-abicalls -fno-pic -pipe
996218cf44SRalf Baechlecflags-y			+= -msoft-float
1009f83d839SThiemo SeuferLDFLAGS_vmlinux			+= -G 0 -static -n -nostdlib
1016588169dSSam RavnborgKBUILD_AFLAGS_MODULE		+= -mlong-calls
1026588169dSSam RavnborgKBUILD_CFLAGS_MODULE		+= -mlong-calls
1031da177e4SLinus Torvalds
104e818fac5SMatt Redfearnifeq ($(CONFIG_RELOCATABLE),y)
105e818fac5SMatt RedfearnLDFLAGS_vmlinux			+= --emit-relocs
106e818fac5SMatt Redfearnendif
107e818fac5SMatt Redfearn
108842dfc11SManuel Lauss#
109842dfc11SManuel Lauss# pass -msoft-float to GAS if it supports it.  However on newer binutils
110842dfc11SManuel Lauss# (specifically newer than 2.24.51.20140728) we then also need to explicitly
111842dfc11SManuel Lauss# set ".set hardfloat" in all files which manipulate floating point registers.
112842dfc11SManuel Lauss#
113842dfc11SManuel Laussifneq ($(call as-option,-Wa$(comma)-msoft-float,),)
114842dfc11SManuel Lauss	cflags-y		+= -DGAS_HAS_SET_HARDFLOAT -Wa,-msoft-float
115842dfc11SManuel Laussendif
116842dfc11SManuel Lauss
11772fbfb26SRalf Baechlecflags-y += -ffreestanding
11872fbfb26SRalf Baechle
119c6d6f4c5SPaul Burtoncflags-$(CONFIG_CPU_BIG_ENDIAN)		+= -EB
120c6d6f4c5SPaul Burtoncflags-$(CONFIG_CPU_LITTLE_ENDIAN)	+= -EL
121f425a6dcSThiemo Seufer
1229007c9a2SRalf Baechlecflags-$(CONFIG_SB1XXX_CORELIS)	+= $(call cc-option,-mno-sched-prolog) \
1239007c9a2SRalf Baechle				   -fno-omit-frame-pointer
124573deec0SJoshua Kinard
125573deec0SJoshua Kinard# Some distribution-specific toolchains might pass the -fstack-check
126573deec0SJoshua Kinard# option during the build, which adds a simple stack-probe at the beginning
127573deec0SJoshua Kinard# of every function.  This stack probe is to ensure that there is enough
128573deec0SJoshua Kinard# stack space, else a SEGV is generated.  This is not desirable for MIPS
129573deec0SJoshua Kinard# as kernel stacks are small, placed in unmapped virtual memory, and do not
130573deec0SJoshua Kinard# grow when overflowed.  Especially on SGI IP27 platforms, this check will
131573deec0SJoshua Kinard# lead to a NULL pointer dereference in _raw_spin_lock_irq.
132573deec0SJoshua Kinard#
133573deec0SJoshua Kinard# In disassembly, this stack probe appears at the top of a function as:
134573deec0SJoshua Kinard#    sd		zero,<offset>(sp)
135573deec0SJoshua Kinard# Where <offset> is a negative value.
136573deec0SJoshua Kinard#
137573deec0SJoshua Kinardcflags-y += -fno-stack-check
138573deec0SJoshua Kinard
1395373ae67SAurelien Jarno# binutils from v2.35 when built with --enable-mips-fix-loongson3-llsc=yes,
1405373ae67SAurelien Jarno# supports an -mfix-loongson3-llsc flag which emits a sync prior to each ll
1415373ae67SAurelien Jarno# instruction to work around a CPU bug (see __SYNC_loongson3_war in asm/sync.h
1425373ae67SAurelien Jarno# for a description).
1435373ae67SAurelien Jarno#
1445373ae67SAurelien Jarno# We disable this in order to prevent the assembler meddling with the
1455373ae67SAurelien Jarno# instruction that labels refer to, ie. if we label an ll instruction:
1465373ae67SAurelien Jarno#
1475373ae67SAurelien Jarno# 1: ll v0, 0(a0)
1485373ae67SAurelien Jarno#
1495373ae67SAurelien Jarno# ...then with the assembler fix applied the label may actually point at a sync
1505373ae67SAurelien Jarno# instruction inserted by the assembler, and if we were using the label in an
1515373ae67SAurelien Jarno# exception table the table would no longer contain the address of the ll
1525373ae67SAurelien Jarno# instruction.
1535373ae67SAurelien Jarno#
1545373ae67SAurelien Jarno# Avoid this by explicitly disabling that assembler behaviour.
1555373ae67SAurelien Jarno#
1565373ae67SAurelien Jarnocflags-y += $(call as-option,-Wa$(comma)-mno-fix-loongson3-llsc,)
1575373ae67SAurelien Jarno
1581da177e4SLinus Torvalds#
1591da177e4SLinus Torvalds# CPU-dependent compiler/assembler options for optimization.
1601da177e4SLinus Torvalds#
16159b3e8e9SRalf Baechlecflags-$(CONFIG_CPU_R3000)	+= -march=r3000
16259b3e8e9SRalf Baechlecflags-$(CONFIG_CPU_TX39XX)	+= -march=r3900
16365ce6197SLauri Kasanencflags-$(CONFIG_CPU_R4300)	+= -march=r4300 -Wa,--trap
16459b3e8e9SRalf Baechlecflags-$(CONFIG_CPU_VR41XX)	+= -march=r4100 -Wa,--trap
16559b3e8e9SRalf Baechlecflags-$(CONFIG_CPU_R4X00)	+= -march=r4600 -Wa,--trap
16659b3e8e9SRalf Baechlecflags-$(CONFIG_CPU_TX49XX)	+= -march=r4600 -Wa,--trap
167344ebf09SPaul Burtoncflags-$(CONFIG_CPU_MIPS32_R1)	+= -march=mips32 -Wa,--trap
168344ebf09SPaul Burtoncflags-$(CONFIG_CPU_MIPS32_R2)	+= -march=mips32r2 -Wa,--trap
169ab7c01fdSSerge Semincflags-$(CONFIG_CPU_MIPS32_R5)	+= -march=mips32r5 -Wa,--trap -modd-spreg
17021855a6eSMiodrag Diniccflags-$(CONFIG_CPU_MIPS32_R6)	+= -march=mips32r6 -Wa,--trap -modd-spreg
171344ebf09SPaul Burtoncflags-$(CONFIG_CPU_MIPS64_R1)	+= -march=mips64 -Wa,--trap
172344ebf09SPaul Burtoncflags-$(CONFIG_CPU_MIPS64_R2)	+= -march=mips64r2 -Wa,--trap
173ab7c01fdSSerge Semincflags-$(CONFIG_CPU_MIPS64_R5)	+= -march=mips64r5 -Wa,--trap
1747fd08ca5SLeonid Yegoshincflags-$(CONFIG_CPU_MIPS64_R6)	+= -march=mips64r6 -Wa,--trap
175281e3aeaSSerge Semincflags-$(CONFIG_CPU_P5600)	+= -march=p5600 -Wa,--trap -modd-spreg
17659b3e8e9SRalf Baechlecflags-$(CONFIG_CPU_R5000)	+= -march=r5000 -Wa,--trap
177542c1020SShinya Kuribayashicflags-$(CONFIG_CPU_R5500)	+= $(call cc-option,-march=r5500,-march=r5000) \
178542c1020SShinya Kuribayashi			-Wa,--trap
179c9e321e0SRalf Baechlecflags-$(CONFIG_CPU_NEVADA)	+= $(call cc-option,-march=rm5200,-march=r5000) \
1801da177e4SLinus Torvalds			-Wa,--trap
18159b3e8e9SRalf Baechlecflags-$(CONFIG_CPU_RM7000)	+= $(call cc-option,-march=rm7000,-march=r5000) \
1821da177e4SLinus Torvalds			-Wa,--trap
183b625cd4aSMaciej W. Rozyckicflags-$(CONFIG_CPU_SB1)	+= $(call cc-option,-march=sb1,-march=r5000) \
1841da177e4SLinus Torvalds			-Wa,--trap
185b625cd4aSMaciej W. Rozyckicflags-$(CONFIG_CPU_SB1)	+= $(call cc-option,-mno-mdmx)
186b625cd4aSMaciej W. Rozyckicflags-$(CONFIG_CPU_SB1)	+= $(call cc-option,-mno-mips3d)
18759b3e8e9SRalf Baechlecflags-$(CONFIG_CPU_R10000)	+= $(call cc-option,-march=r10000,-march=r8000) \
1881da177e4SLinus Torvalds			-Wa,--trap
1897e69deb8SDavid Daneycflags-$(CONFIG_CPU_CAVIUM_OCTEON) += $(call cc-option,-march=octeon) -Wa,--trap
1907e69deb8SDavid Daneyifeq (,$(findstring march=octeon, $(cflags-$(CONFIG_CPU_CAVIUM_OCTEON))))
1917e69deb8SDavid Daneycflags-$(CONFIG_CPU_CAVIUM_OCTEON) += -Wa,-march=octeon
1927e69deb8SDavid Daneyendif
193c9941158SDavid Daneycflags-$(CONFIG_CAVIUM_CN63XXP1) += -Wa,-mfix-cn63xxp1
1941c7c4451SKevin Cernekeecflags-$(CONFIG_CPU_BMIPS)	+= -march=mips32 -Wa,-mips32 -Wa,--trap
1951da177e4SLinus Torvalds
19620d60d99SMaciej W. Rozyckicflags-$(CONFIG_CPU_R4000_WORKAROUNDS)	+= $(call cc-option,-mfix-r4000,)
19720d60d99SMaciej W. Rozyckicflags-$(CONFIG_CPU_R4400_WORKAROUNDS)	+= $(call cc-option,-mfix-r4400,)
19820d60d99SMaciej W. Rozyckicflags-$(CONFIG_CPU_DADDI_WORKAROUNDS)	+= $(call cc-option,-mno-daddi,)
19920d60d99SMaciej W. Rozycki
20032098ec7SMarkos Chandras# For smartmips configurations, there are hundreds of warnings due to ISA overrides
20132098ec7SMarkos Chandras# in assembly and header files. smartmips is only supported for MIPS32r1 onwards
20232098ec7SMarkos Chandras# and there is no support for 64-bit. Various '.set mips2' or '.set mips3' or
20332098ec7SMarkos Chandras# similar directives in the kernel will spam the build logs with the following warnings:
20432098ec7SMarkos Chandras# Warning: the `smartmips' extension requires MIPS32 revision 1 or greater
20532098ec7SMarkos Chandras# or
20632098ec7SMarkos Chandras# Warning: the 64-bit MIPS architecture does not support the `smartmips' extension
20732098ec7SMarkos Chandras# Pass -Wa,--no-warn to disable all assembler warnings until the kernel code has
20832098ec7SMarkos Chandras# been fixed properly.
2095306a545SMarkos Chandrasmips-cflags				:= $(cflags-y)
2105306a545SMarkos Chandrasifeq ($(CONFIG_CPU_HAS_SMARTMIPS),y)
2115306a545SMarkos Chandrassmartmips-ase				:= $(call cc-option-yn,$(mips-cflags) -msmartmips)
2125306a545SMarkos Chandrascflags-$(smartmips-ase)			+= -msmartmips -Wa,--no-warn
2135306a545SMarkos Chandrasendif
2145306a545SMarkos Chandrasifeq ($(CONFIG_CPU_MICROMIPS),y)
2155306a545SMarkos Chandrasmicromips-ase				:= $(call cc-option-yn,$(mips-cflags) -mmicromips)
2165306a545SMarkos Chandrascflags-$(micromips-ase)			+= -mmicromips
2175306a545SMarkos Chandrasendif
21832098ec7SMarkos Chandrasifeq ($(CONFIG_CPU_HAS_MSA),y)
2195306a545SMarkos Chandrastoolchain-msa				:= $(call cc-option-yn,$(mips-cflags) -mhard-float -mfp64 -Wa$(comma)-mmsa)
22032098ec7SMarkos Chandrascflags-$(toolchain-msa)			+= -DTOOLCHAIN_SUPPORTS_MSA
22132098ec7SMarkos Chandrasendif
222bad50d79SJames Hogantoolchain-virt				:= $(call cc-option-yn,$(mips-cflags) -mvirt)
223bad50d79SJames Hogancflags-$(toolchain-virt)		+= -DTOOLCHAIN_SUPPORTS_VIRT
2248e4789d2SJames Hogan# For -mmicromips, use -Wa,-fatal-warnings to catch unsupported -mxpa which
2258e4789d2SJames Hogan# only warns
2268e4789d2SJames Hoganxpa-cflags-y				:= $(mips-cflags)
2278e4789d2SJames Hoganxpa-cflags-$(micromips-ase)		+= -mmicromips -Wa$(comma)-fatal-warnings
2288e4789d2SJames Hogantoolchain-xpa				:= $(call cc-option-yn,$(xpa-cflags-y) -mxpa)
2298e4789d2SJames Hogancflags-$(toolchain-xpa)			+= -DTOOLCHAIN_SUPPORTS_XPA
2304a5dc51eSMarcin Nowakowskitoolchain-crc				:= $(call cc-option-yn,$(mips-cflags) -Wa$(comma)-mcrc)
2314a5dc51eSMarcin Nowakowskicflags-$(toolchain-crc)			+= -DTOOLCHAIN_SUPPORTS_CRC
232edbb4233SPaul Burtontoolchain-dsp				:= $(call cc-option-yn,$(mips-cflags) -Wa$(comma)-mdsp)
233edbb4233SPaul Burtoncflags-$(toolchain-dsp)			+= -DTOOLCHAIN_SUPPORTS_DSP
23453511389SPaul Burtontoolchain-ginv				:= $(call cc-option-yn,$(mips-cflags) -Wa$(comma)-mginv)
23553511389SPaul Burtoncflags-$(toolchain-ginv)		+= -DTOOLCHAIN_SUPPORTS_GINV
23632098ec7SMarkos Chandras
2371da177e4SLinus Torvalds#
2381da177e4SLinus Torvalds# Firmware support
2391da177e4SLinus Torvalds#
2400e2794b0SRalf Baechlelibs-$(CONFIG_FW_ARC)		+= arch/mips/fw/arc/
2410e2794b0SRalf Baechlelibs-$(CONFIG_FW_CFE)		+= arch/mips/fw/cfe/
2420e2794b0SRalf Baechlelibs-$(CONFIG_FW_SNIPROM)	+= arch/mips/fw/sni/
243231a35d3SThomas Bogendoerferlibs-y				+= arch/mips/fw/lib/
2441da177e4SLinus Torvalds
2451da177e4SLinus Torvalds#
246ebc89718SRalf Baechle# Kernel compression
247ebc89718SRalf Baechle#
248809769a8SDaniel Sabogalifdef CONFIG_SYS_SUPPORTS_ZBOOT
249ebc89718SRalf BaechleCOMPRESSION_FNAME		= vmlinuz
250ebc89718SRalf Baechleelse
251ebc89718SRalf BaechleCOMPRESSION_FNAME		= vmlinux
252ebc89718SRalf Baechleendif
253ebc89718SRalf Baechle
254ebc89718SRalf Baechle#
2551da177e4SLinus Torvalds# Board-dependent options and extra files
2561da177e4SLinus Torvalds#
257a436bb7bSMasahiro Yamadainclude arch/mips/Kbuild.platforms
2587ca5dc14SFlorian Fainelli
259abe77f90SRalf Baechleifdef CONFIG_PHYSICAL_START
260abe77f90SRalf Baechleload-y					= $(CONFIG_PHYSICAL_START)
261abe77f90SRalf Baechleendif
2625fc9484fSPaul Burton
263e245767aSPaul Burtonentry-y				= $(shell $(objtree)/arch/mips/tools/elf-entry vmlinux)
264384740dcSRalf Baechlecflags-y			+= -I$(srctree)/arch/mips/include/asm/mach-generic
2651da177e4SLinus Torvaldsdrivers-$(CONFIG_PCI)		+= arch/mips/pci/
2661da177e4SLinus Torvalds
267adff90a9SFranck Bui-Huu#
268adff90a9SFranck Bui-Huu# Automatically detect the build format. By default we choose
269adff90a9SFranck Bui-Huu# the elf format according to the load address.
270adff90a9SFranck Bui-Huu# We can always force a build with a 64-bits symbol format by
271054c51b4SFranck Bui-Huu# passing 'KBUILD_SYM32=no' option to the make's command line.
272adff90a9SFranck Bui-Huu#
273adff90a9SFranck Bui-Huuifdef CONFIG_64BIT
274054c51b4SFranck Bui-Huu  ifndef KBUILD_SYM32
275adff90a9SFranck Bui-Huu    ifeq ($(shell expr $(load-y) \< 0xffffffff80000000), 0)
276054c51b4SFranck Bui-Huu      KBUILD_SYM32 = y
277adff90a9SFranck Bui-Huu    endif
278adff90a9SFranck Bui-Huu  endif
279adff90a9SFranck Bui-Huu
28020d60d99SMaciej W. Rozycki  ifeq ($(KBUILD_SYM32)$(call cc-option-yn,-msym32), yy)
281054c51b4SFranck Bui-Huu    cflags-y += -msym32 -DKBUILD_64BIT_SYM32
28220d60d99SMaciej W. Rozycki  else
28320d60d99SMaciej W. Rozycki    ifeq ($(CONFIG_CPU_DADDI_WORKAROUNDS), y)
28420d60d99SMaciej W. Rozycki      $(error CONFIG_CPU_DADDI_WORKAROUNDS unsupported without -msym32)
285adff90a9SFranck Bui-Huu    endif
286adff90a9SFranck Bui-Huu  endif
287e58d95abSFranck Bui-Huuendif
288adff90a9SFranck Bui-Huu
289ff487d41SJiaxun Yang# When linking a 32-bit executable the LLVM linker cannot cope with a
290ff487d41SJiaxun Yang# 32-bit load address that has been sign-extended to 64 bits.  Simply
291ff487d41SJiaxun Yang# remove the upper 32 bits then, as it is safe to do so with other
292ff487d41SJiaxun Yang# linkers.
293ff487d41SJiaxun Yangifdef CONFIG_64BIT
294ff487d41SJiaxun Yang	load-ld			= $(load-y)
295ff487d41SJiaxun Yangelse
296ff487d41SJiaxun Yang	load-ld			= $(subst 0xffffffff,0x,$(load-y))
297ff487d41SJiaxun Yangendif
298ff487d41SJiaxun Yang
299222d394dSSam RavnborgKBUILD_AFLAGS	+= $(cflags-y)
30051b563fcSSam RavnborgKBUILD_CFLAGS	+= $(cflags-y)
301ff487d41SJiaxun YangKBUILD_CPPFLAGS += -DVMLINUX_LOAD_ADDRESS=$(load-y) -DLINKER_LOAD_ADDRESS=$(load-ld)
302f7fc237eSMichal MarekKBUILD_CPPFLAGS += -DDATAOFFSET=$(if $(dataoffset-y),$(dataoffset-y),0)
3031da177e4SLinus Torvalds
3043185557dSJames Hoganbootvars-y	= VMLINUX_LOAD_ADDRESS=$(load-y) \
305ff487d41SJiaxun Yang		  LINKER_LOAD_ADDRESS=$(load-ld) \
306cf2a5e0bSPaul Burton		  VMLINUX_ENTRY_ADDRESS=$(entry-y) \
307436c6a44SPaul Burton		  PLATFORM="$(platform-y)" \
308436c6a44SPaul Burton		  ITS_INPUTS="$(its-y)"
309eed0eabdSPaul Burtonifdef CONFIG_32BIT
310eed0eabdSPaul Burtonbootvars-y	+= ADDR_BITS=32
311eed0eabdSPaul Burtonendif
312eed0eabdSPaul Burtonifdef CONFIG_64BIT
313eed0eabdSPaul Burtonbootvars-y	+= ADDR_BITS=64
314eed0eabdSPaul Burtonendif
3153185557dSJames Hogan
316866b6a89SCorey Minyard# This is required to get dwarf unwinding tables into .debug_frame
317866b6a89SCorey Minyard# instead of .eh_frame so we don't discard them.
318866b6a89SCorey MinyardKBUILD_CFLAGS += -fno-asynchronous-unwind-tables
319866b6a89SCorey Minyard
320d503ac53SMasahiro YamadaKBUILD_LDFLAGS		+= -m $(ld-emul)
3211da177e4SLinus Torvalds
32259b3e8e9SRalf Baechleifdef CONFIG_MIPS
323a0f97e06SSam RavnborgCHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \
32448c35b2dSAlexey Dobriyan	egrep -vw '__GNUC_(|MINOR_|PATCHLEVEL_)_' | \
32573d8f99cSAaro Koskinen	sed -e "s/^\#define /-D'/" -e "s/ /'='/" -e "s/$$/'/" -e 's/\$$/&&/g')
32659b3e8e9SRalf Baechleendif
32759b3e8e9SRalf Baechle
3281da177e4SLinus TorvaldsOBJCOPYFLAGS		+= --remove-section=.reginfo
3291da177e4SLinus Torvalds
330957b369cSThomas Gleixnerhead-y := arch/mips/kernel/head.o
3311da177e4SLinus Torvalds
3321da177e4SLinus Torvaldslibs-y			+= arch/mips/lib/
33342b10815SPaul Burtonlibs-$(CONFIG_MIPS_FP_SUPPORT) += arch/mips/math-emu/
3341da177e4SLinus Torvalds
3353a2f58f3SArd Biesheuveldrivers-y			+= arch/mips/crypto/
3361da177e4SLinus Torvalds
337363c55caSWu Zhangjin# suspend and hibernation support
338363c55caSWu Zhangjindrivers-$(CONFIG_PM)	+= arch/mips/power/
339363c55caSWu Zhangjin
34038d2d649SJames Hogan# boot image targets (arch/mips/boot/)
34138d2d649SJames Hoganboot-y			:= vmlinux.bin
34238d2d649SJames Hoganboot-y			+= vmlinux.ecoff
34338d2d649SJames Hoganboot-y			+= vmlinux.srec
3444defe455SJames Hoganifeq ($(shell expr $(load-y) \< 0xffffffff80000000 2> /dev/null), 0)
3454defe455SJames Hoganboot-y			+= uImage
3469d6b80faSMarkos Chandrasboot-y			+= uImage.bin
3479d6b80faSMarkos Chandrasboot-y			+= uImage.bz2
3484defe455SJames Hoganboot-y			+= uImage.gz
3499d6b80faSMarkos Chandrasboot-y			+= uImage.lzma
3509d6b80faSMarkos Chandrasboot-y			+= uImage.lzo
3514defe455SJames Hoganendif
352cf2a5e0bSPaul Burtonboot-y			+= vmlinux.itb
353cf2a5e0bSPaul Burtonboot-y			+= vmlinux.gz.itb
354cf2a5e0bSPaul Burtonboot-y			+= vmlinux.bz2.itb
355cf2a5e0bSPaul Burtonboot-y			+= vmlinux.lzma.itb
356cf2a5e0bSPaul Burtonboot-y			+= vmlinux.lzo.itb
35738d2d649SJames Hogan
35838d2d649SJames Hogan# compressed boot image targets (arch/mips/boot/compressed/)
35938d2d649SJames Hoganbootz-y			:= vmlinuz
36038d2d649SJames Hoganbootz-y			+= vmlinuz.bin
36138d2d649SJames Hoganbootz-y			+= vmlinuz.ecoff
36238d2d649SJames Hoganbootz-y			+= vmlinuz.srec
363ccebb88aSMaarten ter Huurneifeq ($(shell expr $(zload-y) \< 0xffffffff80000000 2> /dev/null), 0)
364ccebb88aSMaarten ter Huurnebootz-y			+= uzImage.bin
365ccebb88aSMaarten ter Huurneendif
366a3fb6550SAlexander Lobakinbootz-y			+= vmlinuz.itb
36738d2d649SJames Hogan
3681da177e4SLinus Torvalds#
3691da177e4SLinus Torvalds# Some machines like the Indy need 32-bit ELF binaries for booting purposes.
3701da177e4SLinus Torvalds# Other need ECOFF, so we build a 32-bit ELF binary for them which we then
3711da177e4SLinus Torvalds# convert to ECOFF using elf2ecoff.
3721da177e4SLinus Torvalds#
373007fbbeaSWu Zhangjinquiet_cmd_32 = OBJCOPY $@
374007fbbeaSWu Zhangjin	cmd_32 = $(OBJCOPY) -O $(32bit-bfd) $(OBJCOPYFLAGS) $< $@
3751da177e4SLinus Torvaldsvmlinux.32: vmlinux
376007fbbeaSWu Zhangjin	$(call cmd,32)
3771da177e4SLinus Torvalds
3781da177e4SLinus Torvalds#
3791da177e4SLinus Torvalds# The 64-bit ELF tools are pretty broken so at this time we generate 64-bit
3801da177e4SLinus Torvalds# ELF files from 32-bit files by conversion.
3811da177e4SLinus Torvalds#
382007fbbeaSWu Zhangjinquiet_cmd_64 = OBJCOPY $@
383007fbbeaSWu Zhangjin	cmd_64 = $(OBJCOPY) -O $(64bit-bfd) $(OBJCOPYFLAGS) $< $@
3841da177e4SLinus Torvaldsvmlinux.64: vmlinux
385007fbbeaSWu Zhangjin	$(call cmd,64)
3861da177e4SLinus Torvalds
387637dfa0fSCedric Hombourgerall:	$(all-y) $(KBUILD_DTBS)
3881da177e4SLinus Torvalds
38935eaa1e9SSam Ravnborg# boot
39038d2d649SJames Hogan$(boot-y): $(vmlinux-32) FORCE
3913185557dSJames Hogan	$(Q)$(MAKE) $(build)=arch/mips/boot VMLINUX=$(vmlinux-32) \
3923185557dSJames Hogan		$(bootvars-y) arch/mips/boot/$@
3931da177e4SLinus Torvalds
39426fca83aSFlorian Fainelliifdef CONFIG_SYS_SUPPORTS_ZBOOT
39535eaa1e9SSam Ravnborg# boot/compressed
39638d2d649SJames Hogan$(bootz-y): $(vmlinux-32) FORCE
39735eaa1e9SSam Ravnborg	$(Q)$(MAKE) $(build)=arch/mips/boot/compressed \
3989d63bcb8SAlexander Lobakin		$(bootvars-y) 32bit-bfd=$(32bit-bfd) arch/mips/boot/$@
39926fca83aSFlorian Fainellielse
40026fca83aSFlorian Fainellivmlinuz: FORCE
40126fca83aSFlorian Fainelli	@echo '   CONFIG_SYS_SUPPORTS_ZBOOT is not enabled'
40226fca83aSFlorian Fainelli	/bin/false
40326fca83aSFlorian Fainelliendif
40435eaa1e9SSam Ravnborg
40535eaa1e9SSam Ravnborg
406d745866eSSam RavnborgCLEAN_FILES += vmlinux.32 vmlinux.64
4071da177e4SLinus Torvalds
4087fafb068SAndrew Bresticker# device-trees
40937c8a5faSRob Herringcore-y += arch/mips/boot/dts/
410c8d333dfSAndrew Bresticker
411e48ce6b8SAtsushi Nemotoarchprepare:
412e48ce6b8SAtsushi Nemotoifdef CONFIG_MIPS32_N32
4138c9b23ffSArnd Bergmann	@$(kecho) '  Checking missing-syscalls for N32'
41444656fa0SDavid Daney	$(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=n32"
415e48ce6b8SAtsushi Nemotoendif
416e48ce6b8SAtsushi Nemotoifdef CONFIG_MIPS32_O32
4178c9b23ffSArnd Bergmann	@$(kecho) '  Checking missing-syscalls for O32'
41844656fa0SDavid Daney	$(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=32"
419e48ce6b8SAtsushi Nemotoendif
420e48ce6b8SAtsushi Nemoto
42159968d3bSRalf Baechleinstall:
42259968d3bSRalf Baechle	$(Q)install -D -m 755 vmlinux $(INSTALL_PATH)/vmlinux-$(KERNELRELEASE)
423d9beeecaSRalf Baechleifdef CONFIG_SYS_SUPPORTS_ZBOOT
4241b93b3c3SWu Zhangjin	$(Q)install -D -m 755 vmlinuz $(INSTALL_PATH)/vmlinuz-$(KERNELRELEASE)
425d9beeecaSRalf Baechleendif
42659968d3bSRalf Baechle	$(Q)install -D -m 644 .config $(INSTALL_PATH)/config-$(KERNELRELEASE)
42759968d3bSRalf Baechle	$(Q)install -D -m 644 System.map $(INSTALL_PATH)/System.map-$(KERNELRELEASE)
42859968d3bSRalf Baechle
4291da177e4SLinus Torvaldsarchclean:
430d745866eSSam Ravnborg	$(Q)$(MAKE) $(clean)=arch/mips/boot
431d745866eSSam Ravnborg	$(Q)$(MAKE) $(clean)=arch/mips/boot/compressed
432aadeec4dSMatt Redfearn	$(Q)$(MAKE) $(clean)=arch/mips/boot/tools
4331da177e4SLinus Torvalds
43499bf73ebSFiroz Khanarchheaders:
43599bf73ebSFiroz Khan	$(Q)$(MAKE) $(build)=arch/mips/kernel/syscalls all
43699bf73ebSFiroz Khan
437e7865765SRalf Baechledefine archhelp
43859968d3bSRalf Baechle	echo '  install              - install kernel into $(INSTALL_PATH)'
439e7865765SRalf Baechle	echo '  vmlinux.ecoff        - ECOFF boot image'
440e7865765SRalf Baechle	echo '  vmlinux.bin          - Raw binary boot image'
441e7865765SRalf Baechle	echo '  vmlinux.srec         - SREC boot image'
44278931652SJoshua Kinard	echo '  vmlinux.32           - 64-bit boot image wrapped in 32bits (IP22/IP32)'
4431b93b3c3SWu Zhangjin	echo '  vmlinuz              - Compressed boot(zboot) image'
4441b93b3c3SWu Zhangjin	echo '  vmlinuz.ecoff        - ECOFF zboot image'
4451b93b3c3SWu Zhangjin	echo '  vmlinuz.bin          - Raw binary zboot image'
4461b93b3c3SWu Zhangjin	echo '  vmlinuz.srec         - SREC zboot image'
4474defe455SJames Hogan	echo '  uImage               - U-Boot image'
4489d6b80faSMarkos Chandras	echo '  uImage.bin           - U-Boot image (uncompressed)'
4499d6b80faSMarkos Chandras	echo '  uImage.bz2           - U-Boot image (bz2)'
4504defe455SJames Hogan	echo '  uImage.gz            - U-Boot image (gzip)'
4519d6b80faSMarkos Chandras	echo '  uImage.lzma          - U-Boot image (lzma)'
4529d6b80faSMarkos Chandras	echo '  uImage.lzo           - U-Boot image (lzo)'
453ccebb88aSMaarten ter Huurne	echo '  uzImage.bin          - U-Boot image (self-extracting)'
454e7865765SRalf Baechle	echo
45525985edcSLucas De Marchi	echo '  These will be default as appropriate for a configured platform.'
456eed0eabdSPaul Burton	echo
457eed0eabdSPaul Burton	echo '  If you are targeting a system supported by generic kernels you may'
458eed0eabdSPaul Burton	echo '  configure the kernel for a given architecture target like so:'
459eed0eabdSPaul Burton	echo
460eed0eabdSPaul Burton	echo '  {micro32,32,64}{r1,r2,r6}{el,}_defconfig <BOARDS="list of boards">'
461eed0eabdSPaul Burton	echo
462cccd0b9aSJames Hogan	echo '  Where BOARDS is some subset of the following:'
463cccd0b9aSJames Hogan	for board in $(sort $(BOARDS)); do echo "    $${board}"; done
464cccd0b9aSJames Hogan	echo
465cccd0b9aSJames Hogan	echo '  Specifically the following generic default configurations are'
466cccd0b9aSJames Hogan	echo '  supported:'
467cccd0b9aSJames Hogan	echo
468cccd0b9aSJames Hogan	$(foreach cfg,$(generic_defconfigs),
469cccd0b9aSJames Hogan	  printf "  %-24s - Build generic kernel for $(call describe_generic_defconfig,$(cfg))\n" $(cfg);)
470cccd0b9aSJames Hogan	echo
471cccd0b9aSJames Hogan	echo '  The following legacy default configurations have been converted to'
472cccd0b9aSJames Hogan	echo '  generic and can still be used:'
473cccd0b9aSJames Hogan	echo
474cccd0b9aSJames Hogan	$(foreach cfg,$(sort $(legacy_defconfigs)),
475cccd0b9aSJames Hogan	  printf "  %-24s - Build $($(cfg)-y)\n" $(cfg);)
476cccd0b9aSJames Hogan	echo
477eed0eabdSPaul Burton	echo '  Otherwise, the following default configurations are available:'
478e7865765SRalf Baechleendef
479eed0eabdSPaul Burton
480eed0eabdSPaul Burtongeneric_config_dir = $(srctree)/arch/$(ARCH)/configs/generic
481eed0eabdSPaul Burtongeneric_defconfigs :=
482eed0eabdSPaul Burton
483eed0eabdSPaul Burton#
484eed0eabdSPaul Burton# If the user generates a generic kernel configuration without specifying a
485eed0eabdSPaul Burton# list of boards to include the config fragments for, default to including all
486eed0eabdSPaul Burton# available board config fragments.
487eed0eabdSPaul Burton#
488eed0eabdSPaul Burtonifeq ($(BOARDS),)
489eed0eabdSPaul BurtonBOARDS = $(patsubst board-%.config,%,$(notdir $(wildcard $(generic_config_dir)/board-*.config)))
490eed0eabdSPaul Burtonendif
491eed0eabdSPaul Burton
492eed0eabdSPaul Burton#
493eed0eabdSPaul Burton# Generic kernel configurations which merge generic_defconfig with the
494eed0eabdSPaul Burton# appropriate config fragments from arch/mips/configs/generic/, resulting in
495eed0eabdSPaul Burton# the ability to easily configure the kernel for a given architecture,
496eed0eabdSPaul Burton# endianness & set of boards without duplicating the needed configuration in
497eed0eabdSPaul Burton# hundreds of defconfig files.
498eed0eabdSPaul Burton#
499eed0eabdSPaul Burtondefine gen_generic_defconfigs
500eed0eabdSPaul Burton$(foreach bits,$(1),$(foreach rev,$(2),$(foreach endian,$(3),
501eed0eabdSPaul Burtontarget := $(bits)$(rev)$(filter el,$(endian))_defconfig
502eed0eabdSPaul Burtongeneric_defconfigs += $$(target)
503eed0eabdSPaul Burton$$(target): $(generic_config_dir)/$(bits)$(rev).config
504eed0eabdSPaul Burton$$(target): $(generic_config_dir)/$(endian).config
505eed0eabdSPaul Burton)))
506eed0eabdSPaul Burtonendef
507eed0eabdSPaul Burton
508eed0eabdSPaul Burton$(eval $(call gen_generic_defconfigs,32 64,r1 r2 r6,eb el))
509eed0eabdSPaul Burton$(eval $(call gen_generic_defconfigs,micro32,r2,eb el))
510eed0eabdSPaul Burton
511cccd0b9aSJames Hogandefine describe_generic_defconfig
512cccd0b9aSJames Hogan$(subst 32r,MIPS32 r,$(subst 64r,MIPS64 r,$(subst el, little endian,$(patsubst %_defconfig,%,$(1)))))
513cccd0b9aSJames Hoganendef
514cccd0b9aSJames Hogan
515eed0eabdSPaul Burton.PHONY: $(generic_defconfigs)
516eed0eabdSPaul Burton$(generic_defconfigs):
517eed0eabdSPaul Burton	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
51827e0d4b0SPaul Burton		-m -O $(objtree) $(srctree)/arch/$(ARCH)/configs/generic_defconfig $^ | \
51927e0d4b0SPaul Burton		grep -Ev '^#'
52027e0d4b0SPaul Burton	$(Q)cp $(KCONFIG_CONFIG) $(objtree)/.config.$@
52127e0d4b0SPaul Burton	$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig \
52227e0d4b0SPaul Burton		KCONFIG_CONFIG=$(objtree)/.config.$@ >/dev/null
52327e0d4b0SPaul Burton	$(Q)$(CONFIG_SHELL) $(srctree)/arch/$(ARCH)/tools/generic-board-config.sh \
52427e0d4b0SPaul Burton		$(srctree) $(objtree) $(objtree)/.config.$@ $(KCONFIG_CONFIG) \
52527e0d4b0SPaul Burton		"$(origin BOARDS)" $(BOARDS)
526337b775bSMarcin Nowakowski	$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
527eed0eabdSPaul Burton
528eed0eabdSPaul Burton#
529eed0eabdSPaul Burton# Prevent generic merge_config rules attempting to merge single fragments
530eed0eabdSPaul Burton#
531eed0eabdSPaul Burton$(generic_config_dir)/%.config: ;
5323f5f0a44SPaul Burton
5333f5f0a44SPaul Burton#
534a4c2f797SPaul Burton# Prevent direct use of generic_defconfig, which is intended to be used as the
535a4c2f797SPaul Burton# basis of the various ISA-specific targets generated above.
536a4c2f797SPaul Burton#
537a4c2f797SPaul Burton.PHONY: generic_defconfig
538a4c2f797SPaul Burtongeneric_defconfig:
539a4c2f797SPaul Burton	$(Q)echo "generic_defconfig is not intended for direct use, but should instead be"
540a4c2f797SPaul Burton	$(Q)echo "used via an ISA-specific target from the following list:"
541a4c2f797SPaul Burton	$(Q)echo
542a4c2f797SPaul Burton	$(Q)for cfg in $(generic_defconfigs); do echo "  $${cfg}"; done
543a4c2f797SPaul Burton	$(Q)echo
544a4c2f797SPaul Burton	$(Q)false
545a4c2f797SPaul Burton
546a4c2f797SPaul Burton#
5473f5f0a44SPaul Burton# Legacy defconfig compatibility - these targets used to be real defconfigs but
5483f5f0a44SPaul Burton# now that the boards have been converted to use the generic kernel they are
5493f5f0a44SPaul Burton# wrappers around the generic rules above.
5503f5f0a44SPaul Burton#
5516bce3deaSAlexandre Bellonilegacy_defconfigs		+= ocelot_defconfig
5526bce3deaSAlexandre Belloniocelot_defconfig-y		:= 32r2el_defconfig BOARDS=ocelot
5536bce3deaSAlexandre Belloni
554318df806SJames Hoganlegacy_defconfigs		+= sead3_defconfig
555318df806SJames Hogansead3_defconfig-y		:= 32r2el_defconfig BOARDS=sead-3
5563f5f0a44SPaul Burton
557318df806SJames Hoganlegacy_defconfigs		+= sead3micro_defconfig
558318df806SJames Hogansead3micro_defconfig-y		:= micro32r2el_defconfig BOARDS=sead-3
5590861aa12SZubair Lutfullah Kakakhel
560318df806SJames Hoganlegacy_defconfigs		+= xilfpga_defconfig
561318df806SJames Hoganxilfpga_defconfig-y		:= 32r2el_defconfig BOARDS=xilfpga
562318df806SJames Hogan
563*3f66601eSJiaxun Yanglegacy_defconfigs		+= pistachio_defconfig
564*3f66601eSJiaxun Yangpistachio_defconfig-y		:= 32r2el_defconfig BOARDS=marduk
565*3f66601eSJiaxun Yang
566318df806SJames Hogan.PHONY: $(legacy_defconfigs)
567318df806SJames Hogan$(legacy_defconfigs):
568318df806SJames Hogan	$(Q)$(MAKE) -f $(srctree)/Makefile $($@-y)
569