blob: 04f362780580a3859b4671a77bf125e212f583f0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
wdenk6069ff22003-02-28 00:49:47 +00002#
3# (C) Copyright 2003
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk6069ff22003-02-28 00:49:47 +00005
Daniel Schwierzeck837cad12014-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
Tom Rini587e4a42020-03-27 11:46:27 -040012KBUILD_LDFLAGS += -EB
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020013endif
14
15ifdef CONFIG_SYS_LITTLE_ENDIAN
Daniel Schwierzeck837cad12014-10-26 14:16:23 +01001632bit-emul := elf32ltsmip
1764bit-emul := elf64ltsmip
1832bit-bfd := elf32-tradlittlemips
1964bit-bfd := elf64-tradlittlemips
20PLATFORM_CPPFLAGS += -EL
Tom Rini587e4a42020-03-27 11:46:27 -040021KBUILD_LDFLAGS += -EL
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020022endif
23
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010024ifdef CONFIG_32BIT
25PLATFORM_CPPFLAGS += -mabi=32
Tom Rini587e4a42020-03-27 11:46:27 -040026KBUILD_LDFLAGS += -m $(32bit-emul)
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010027OBJCOPYFLAGS += -O $(32bit-bfd)
Daniel Schwierzeck1bef0c52018-09-23 19:15:17 +020028CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020029endif
30
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010031ifdef CONFIG_64BIT
32PLATFORM_CPPFLAGS += -mabi=64
Tom Rini587e4a42020-03-27 11:46:27 -040033KBUILD_LDFLAGS += -m$(64bit-emul)
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010034OBJCOPYFLAGS += -O $(64bit-bfd)
Daniel Schwierzeck1bef0c52018-09-23 19:15:17 +020035CONFIG_STANDALONE_LOAD_ADDR ?= 0xffffffff80200000
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010036endif
37
Masahiro Yamada90f984e2014-07-30 14:08:23 +090038PLATFORM_CPPFLAGS += -D__MIPS__
Álvaro Fernández Rojas47cf4652017-04-20 20:36:27 +020039PLATFORM_ELFFLAGS += -B mips $(OBJCOPYFLAGS)
Shinya Kuribayashi00101dd2007-10-21 21:30:42 +090040
41#
42# From Linux arch/mips/Makefile
43#
44# GCC uses -G 0 -mabicalls -fpic as default. We don't want PIC in the kernel
45# code since it only slows down the whole thing. At some point we might make
46# use of global pointer optimizations but their use of $28 conflicts with
47# the current pointer optimization.
48#
49# The DECStation requires an ECOFF kernel for remote booting, other MIPS
50# machines may also. Since BFD is incredibly buggy with respect to
51# crossformat linking we rely on the elf2ecoff tool for format conversion.
52#
53# cflags-y += -G 0 -mno-abicalls -fno-pic -pipe
54# cflags-y += -msoft-float
55# LDFLAGS_vmlinux += -G 0 -static -n -nostdlib
56# MODFLAGS += -mlong-calls
57#
Paul Burton703ec9d2017-06-19 11:53:47 -070058ifndef CONFIG_SPL_BUILD
Daniel Schwierzeck96301462018-11-01 02:02:21 +010059OBJCOPYFLAGS += -j .data.reloc -j .dtb.init.rodata
Paul Burton703ec9d2017-06-19 11:53:47 -070060LDFLAGS_FINAL += --emit-relocs
Daniel Schwierzecke92d9122015-12-19 20:20:47 +010061endif
62
Paul Burton703ec9d2017-06-19 11:53:47 -070063PLATFORM_CPPFLAGS += -G 0 -mno-abicalls -fno-pic
Shinya Kuribayashi00101dd2007-10-21 21:30:42 +090064PLATFORM_CPPFLAGS += -msoft-float
Tom Rini587e4a42020-03-27 11:46:27 -040065KBUILD_LDFLAGS += -G 0 -static -n -nostdlib
Daniel Schwierzeck660da092011-04-15 17:16:44 +020066PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
Paul Burton703ec9d2017-06-19 11:53:47 -070067LDFLAGS_FINAL += --gc-sections
Andrew Scull99e2fbc2022-05-30 10:00:04 +000068OBJCOPYFLAGS += -j .text -j .rodata -j .data -j __u_boot_list
Daniel Schwierzeck1bef0c52018-09-23 19:15:17 +020069
70LDFLAGS_STANDALONE += --gc-sections