Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2003 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 4fc9569 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 5 | |
Daniel Schwierzeck | c03df26 | 2014-10-26 14:16:23 +0100 | [diff] [blame] | 6 | ifdef CONFIG_SYS_BIG_ENDIAN |
| 7 | 32bit-emul := elf32btsmip |
| 8 | 64bit-emul := elf64btsmip |
| 9 | 32bit-bfd := elf32-tradbigmips |
| 10 | 64bit-bfd := elf64-tradbigmips |
| 11 | PLATFORM_CPPFLAGS += -EB |
Tom Rini | 5d4ecf2 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 12 | KBUILD_LDFLAGS += -EB |
Masahiro Yamada | f0ac9e0 | 2014-02-28 14:33:30 +0900 | [diff] [blame] | 13 | endif |
Mike Frysinger | 8378ba4 | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 14 | |
Daniel Schwierzeck | c03df26 | 2014-10-26 14:16:23 +0100 | [diff] [blame] | 15 | ifdef CONFIG_SYS_LITTLE_ENDIAN |
| 16 | 32bit-emul := elf32ltsmip |
| 17 | 64bit-emul := elf64ltsmip |
| 18 | 32bit-bfd := elf32-tradlittlemips |
| 19 | 64bit-bfd := elf64-tradlittlemips |
| 20 | PLATFORM_CPPFLAGS += -EL |
Tom Rini | 5d4ecf2 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 21 | KBUILD_LDFLAGS += -EL |
Daniel Schwierzeck | c390ba5 | 2012-08-21 23:27:37 +0200 | [diff] [blame] | 22 | endif |
| 23 | |
Daniel Schwierzeck | c03df26 | 2014-10-26 14:16:23 +0100 | [diff] [blame] | 24 | ifdef CONFIG_32BIT |
| 25 | PLATFORM_CPPFLAGS += -mabi=32 |
Tom Rini | 5d4ecf2 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 26 | KBUILD_LDFLAGS += -m $(32bit-emul) |
Daniel Schwierzeck | c03df26 | 2014-10-26 14:16:23 +0100 | [diff] [blame] | 27 | OBJCOPYFLAGS += -O $(32bit-bfd) |
Daniel Schwierzeck | 8073367 | 2018-09-23 19:15:17 +0200 | [diff] [blame] | 28 | CONFIG_STANDALONE_LOAD_ADDR ?= 0x80200000 |
Daniel Schwierzeck | c390ba5 | 2012-08-21 23:27:37 +0200 | [diff] [blame] | 29 | endif |
| 30 | |
Daniel Schwierzeck | c03df26 | 2014-10-26 14:16:23 +0100 | [diff] [blame] | 31 | ifdef CONFIG_64BIT |
| 32 | PLATFORM_CPPFLAGS += -mabi=64 |
Tom Rini | 5d4ecf2 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 33 | KBUILD_LDFLAGS += -m$(64bit-emul) |
Daniel Schwierzeck | c03df26 | 2014-10-26 14:16:23 +0100 | [diff] [blame] | 34 | OBJCOPYFLAGS += -O $(64bit-bfd) |
Daniel Schwierzeck | 8073367 | 2018-09-23 19:15:17 +0200 | [diff] [blame] | 35 | CONFIG_STANDALONE_LOAD_ADDR ?= 0xffffffff80200000 |
Daniel Schwierzeck | c390ba5 | 2012-08-21 23:27:37 +0200 | [diff] [blame] | 36 | endif |
| 37 | |
Masahiro Yamada | 4869aee | 2014-07-30 14:08:23 +0900 | [diff] [blame] | 38 | PLATFORM_CPPFLAGS += -D__MIPS__ |
Álvaro Fernández Rojas | ff1b62d | 2017-04-20 20:36:27 +0200 | [diff] [blame] | 39 | PLATFORM_ELFFLAGS += -B mips $(OBJCOPYFLAGS) |
Shinya Kuribayashi | 4b6d280 | 2007-10-21 21:30:42 +0900 | [diff] [blame] | 40 | |
| 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 Burton | d3a278d | 2017-06-19 11:53:47 -0700 | [diff] [blame] | 58 | ifndef CONFIG_SPL_BUILD |
Daniel Schwierzeck | 8013286 | 2018-11-01 02:02:21 +0100 | [diff] [blame] | 59 | OBJCOPYFLAGS += -j .data.reloc -j .dtb.init.rodata |
Paul Burton | d3a278d | 2017-06-19 11:53:47 -0700 | [diff] [blame] | 60 | LDFLAGS_FINAL += --emit-relocs |
Daniel Schwierzeck | eda26dd | 2015-12-19 20:20:47 +0100 | [diff] [blame] | 61 | endif |
| 62 | |
Paul Burton | d3a278d | 2017-06-19 11:53:47 -0700 | [diff] [blame] | 63 | PLATFORM_CPPFLAGS += -G 0 -mno-abicalls -fno-pic |
Shinya Kuribayashi | 4b6d280 | 2007-10-21 21:30:42 +0900 | [diff] [blame] | 64 | PLATFORM_CPPFLAGS += -msoft-float |
Tom Rini | 5d4ecf2 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 65 | KBUILD_LDFLAGS += -G 0 -static -n -nostdlib |
Daniel Schwierzeck | 089f2a1 | 2011-04-15 17:16:44 +0200 | [diff] [blame] | 66 | PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections |
Paul Burton | d3a278d | 2017-06-19 11:53:47 -0700 | [diff] [blame] | 67 | LDFLAGS_FINAL += --gc-sections |
Andrew Scull | 5a9095c | 2022-05-30 10:00:04 +0000 | [diff] [blame^] | 68 | OBJCOPYFLAGS += -j .text -j .rodata -j .data -j __u_boot_list |
Daniel Schwierzeck | 8073367 | 2018-09-23 19:15:17 +0200 | [diff] [blame] | 69 | |
| 70 | LDFLAGS_STANDALONE += --gc-sections |