blob: 9d3a84539a7d8f146a866aa71b3b97d1e79294e2 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
wdenk4fc95692003-02-28 00:49:47 +00002#
3# (C) Copyright 2003
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk4fc95692003-02-28 00:49:47 +00005
Daniel Schwierzeckc03df262014-10-26 14:16:23 +01006ifdef CONFIG_SYS_BIG_ENDIAN
732bit-emul := elf32btsmip
864bit-emul := elf64btsmip
932bit-bfd := elf32-tradbigmips
1064bit-bfd := elf64-tradbigmips
11PLATFORM_CPPFLAGS += -EB
12PLATFORM_LDFLAGS += -EB
Masahiro Yamadaf0ac9e02014-02-28 14:33:30 +090013endif
Mike Frysinger8378ba42009-06-14 23:33:14 -040014
Daniel Schwierzeckc03df262014-10-26 14:16:23 +010015ifdef CONFIG_SYS_LITTLE_ENDIAN
1632bit-emul := elf32ltsmip
1764bit-emul := elf64ltsmip
1832bit-bfd := elf32-tradlittlemips
1964bit-bfd := elf64-tradlittlemips
20PLATFORM_CPPFLAGS += -EL
21PLATFORM_LDFLAGS += -EL
Daniel Schwierzeckc390ba52012-08-21 23:27:37 +020022endif
23
Daniel Schwierzeckc03df262014-10-26 14:16:23 +010024ifdef CONFIG_32BIT
25PLATFORM_CPPFLAGS += -mabi=32
26PLATFORM_LDFLAGS += -m $(32bit-emul)
27OBJCOPYFLAGS += -O $(32bit-bfd)
Daniel Schwierzeck80733672018-09-23 19:15:17 +020028CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000
Daniel Schwierzeckc390ba52012-08-21 23:27:37 +020029endif
30
Daniel Schwierzeckc03df262014-10-26 14:16:23 +010031ifdef CONFIG_64BIT
32PLATFORM_CPPFLAGS += -mabi=64
33PLATFORM_LDFLAGS += -m$(64bit-emul)
34OBJCOPYFLAGS += -O $(64bit-bfd)
Daniel Schwierzeck80733672018-09-23 19:15:17 +020035CONFIG_STANDALONE_LOAD_ADDR ?= 0xffffffff80200000
Daniel Schwierzeckc390ba52012-08-21 23:27:37 +020036endif
37
Masahiro Yamada4869aee2014-07-30 14:08:23 +090038PLATFORM_CPPFLAGS += -D__MIPS__
Álvaro Fernández Rojasff1b62d2017-04-20 20:36:27 +020039PLATFORM_ELFENTRY = "__start"
40PLATFORM_ELFFLAGS += -B mips $(OBJCOPYFLAGS)
Shinya Kuribayashi4b6d2802007-10-21 21:30:42 +090041
42#
43# From Linux arch/mips/Makefile
44#
45# GCC uses -G 0 -mabicalls -fpic as default. We don't want PIC in the kernel
46# code since it only slows down the whole thing. At some point we might make
47# use of global pointer optimizations but their use of $28 conflicts with
48# the current pointer optimization.
49#
50# The DECStation requires an ECOFF kernel for remote booting, other MIPS
51# machines may also. Since BFD is incredibly buggy with respect to
52# crossformat linking we rely on the elf2ecoff tool for format conversion.
53#
54# cflags-y += -G 0 -mno-abicalls -fno-pic -pipe
55# cflags-y += -msoft-float
56# LDFLAGS_vmlinux += -G 0 -static -n -nostdlib
57# MODFLAGS += -mlong-calls
58#
Paul Burtond3a278d2017-06-19 11:53:47 -070059ifndef CONFIG_SPL_BUILD
Daniel Schwierzeck80132862018-11-01 02:02:21 +010060OBJCOPYFLAGS += -j .data.reloc -j .dtb.init.rodata
Paul Burtond3a278d2017-06-19 11:53:47 -070061LDFLAGS_FINAL += --emit-relocs
Daniel Schwierzeckeda26dd2015-12-19 20:20:47 +010062endif
63
Paul Burtond3a278d2017-06-19 11:53:47 -070064PLATFORM_CPPFLAGS += -G 0 -mno-abicalls -fno-pic
Shinya Kuribayashi4b6d2802007-10-21 21:30:42 +090065PLATFORM_CPPFLAGS += -msoft-float
Daniel Schwierzeckc03df262014-10-26 14:16:23 +010066PLATFORM_LDFLAGS += -G 0 -static -n -nostdlib
Daniel Schwierzeck089f2a12011-04-15 17:16:44 +020067PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
Paul Burtond3a278d2017-06-19 11:53:47 -070068LDFLAGS_FINAL += --gc-sections
Daniel Schwierzeck848a7cc2016-05-26 15:28:38 +020069OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list
Daniel Schwierzeck80733672018-09-23 19:15:17 +020070
71LDFLAGS_STANDALONE += --gc-sections