blob: 4dc88f4d51f1903cab3658f5a16386be137df6ca [file] [log] [blame]
wdenk6069ff22003-02-28 00:49:47 +00001#
2# (C) Copyright 2003
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
wdenk6069ff22003-02-28 00:49:47 +00006#
7
Daniel Schwierzeck837cad12014-10-26 14:16:23 +01008ifdef CONFIG_SYS_BIG_ENDIAN
932bit-emul := elf32btsmip
1064bit-emul := elf64btsmip
1132bit-bfd := elf32-tradbigmips
1264bit-bfd := elf64-tradbigmips
13PLATFORM_CPPFLAGS += -EB
14PLATFORM_LDFLAGS += -EB
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020015endif
16
17ifdef CONFIG_SYS_LITTLE_ENDIAN
Daniel Schwierzeck837cad12014-10-26 14:16:23 +01001832bit-emul := elf32ltsmip
1964bit-emul := elf64ltsmip
2032bit-bfd := elf32-tradlittlemips
2164bit-bfd := elf64-tradlittlemips
22PLATFORM_CPPFLAGS += -EL
23PLATFORM_LDFLAGS += -EL
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020024endif
25
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010026ifdef CONFIG_32BIT
27PLATFORM_CPPFLAGS += -mabi=32
28PLATFORM_LDFLAGS += -m $(32bit-emul)
29OBJCOPYFLAGS += -O $(32bit-bfd)
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020030endif
31
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010032ifdef CONFIG_64BIT
33PLATFORM_CPPFLAGS += -mabi=64
34PLATFORM_LDFLAGS += -m$(64bit-emul)
35OBJCOPYFLAGS += -O $(64bit-bfd)
36endif
37
38cpuflags-$(CONFIG_CPU_MIPS32_R1) += -march=mips32 -Wa,-mips32
39cpuflags-$(CONFIG_CPU_MIPS32_R2) += -march=mips32r2 -Wa,-mips32r2
40cpuflags-$(CONFIG_CPU_MIPS64_R1) += -march=mips64 -Wa,-mips64
41cpuflags-$(CONFIG_CPU_MIPS64_R2) += -march=mips64r2 -Wa,-mips64r2
42PLATFORM_CPPFLAGS += $(cpuflags-y)
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020043
Masahiro Yamada90f984e2014-07-30 14:08:23 +090044PLATFORM_CPPFLAGS += -D__MIPS__
Shinya Kuribayashi00101dd2007-10-21 21:30:42 +090045
Paul Burton9f0868f2014-04-07 10:11:22 +010046__HAVE_ARCH_GENERIC_BOARD := y
47
Shinya Kuribayashi00101dd2007-10-21 21:30:42 +090048#
49# From Linux arch/mips/Makefile
50#
51# GCC uses -G 0 -mabicalls -fpic as default. We don't want PIC in the kernel
52# code since it only slows down the whole thing. At some point we might make
53# use of global pointer optimizations but their use of $28 conflicts with
54# the current pointer optimization.
55#
56# The DECStation requires an ECOFF kernel for remote booting, other MIPS
57# machines may also. Since BFD is incredibly buggy with respect to
58# crossformat linking we rely on the elf2ecoff tool for format conversion.
59#
60# cflags-y += -G 0 -mno-abicalls -fno-pic -pipe
61# cflags-y += -msoft-float
62# LDFLAGS_vmlinux += -G 0 -static -n -nostdlib
63# MODFLAGS += -mlong-calls
64#
Shinya Kuribayashif0d5a6f2008-06-05 22:29:00 +090065# On the other hand, we want PIC in the U-Boot code to relocate it from ROM
66# to RAM. $28 is always used as gp.
Shinya Kuribayashi00101dd2007-10-21 21:30:42 +090067#
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010068PLATFORM_CPPFLAGS += -G 0 -mabicalls -fpic
Shinya Kuribayashi00101dd2007-10-21 21:30:42 +090069PLATFORM_CPPFLAGS += -msoft-float
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010070PLATFORM_LDFLAGS += -G 0 -static -n -nostdlib
Daniel Schwierzeck660da092011-04-15 17:16:44 +020071PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
Gabor Juhos04380c62013-02-12 22:22:13 +010072LDFLAGS_FINAL += --gc-sections -pie
Daniel Schwierzeck79fd7e62013-10-11 17:46:59 +020073OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .got
Daniel Schwierzeck265072b2014-10-29 17:30:36 +010074OBJCOPYFLAGS += -j .u_boot_list -j .rel.dyn -j .padding