]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/mips/Makefile
Merge git://git.denx.de/u-boot-mmc
[people/ms/u-boot.git] / arch / mips / Makefile
CommitLineData
e19db555
DS
1#
2# SPDX-License-Identifier: GPL-2.0+
3#
4
eef88dfb 5head-y := arch/mips/cpu/start.o
e19db555 6
ecc9d260
MV
7ifeq ($(CONFIG_SPL_BUILD),y)
8ifneq ($(CONFIG_SPL_START_S_PATH),)
9head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
10endif
11endif
12
eef88dfb 13libs-y += arch/mips/cpu/
e19db555 14libs-y += arch/mips/lib/
d9a4a622 15
6479b691 16machine-$(CONFIG_SOC_AU1X00) += au1x00
1d3d0f1f 17machine-$(CONFIG_ARCH_ATH79) += ath79
ee422142 18machine-$(CONFIG_ARCH_BMIPS) += bmips
32c1a6ee 19machine-$(CONFIG_MACH_PIC32) += pic32
6479b691
DS
20
21machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y))
22libs-y += $(machdirs)
23
24PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
0315a289
DS
25
26# Optimize for MIPS architectures
27arch-$(CONFIG_CPU_MIPS32_R1) += -march=mips32 -Wa,-mips32
28arch-$(CONFIG_CPU_MIPS32_R2) += -march=mips32r2 -Wa,-mips32r2
c52ebea1 29arch-$(CONFIG_CPU_MIPS32_R6) += -march=mips32r6 -Wa,-mips32r6
0315a289
DS
30arch-$(CONFIG_CPU_MIPS64_R1) += -march=mips64 -Wa,-mips64
31arch-$(CONFIG_CPU_MIPS64_R2) += -march=mips64r2 -Wa,-mips64r2
c52ebea1 32arch-$(CONFIG_CPU_MIPS64_R6) += -march=mips64r6 -Wa,-mips64r6
0315a289
DS
33
34# Allow extra optimization for specific CPUs/SoCs
35tune-$(CONFIG_MIPS_TUNE_4KC) += -mtune=4kc
36tune-$(CONFIG_MIPS_TUNE_14KC) += -mtune=14kc
37tune-$(CONFIG_MIPS_TUNE_24KC) += -mtune=24kc
5f9cc363 38tune-$(CONFIG_MIPS_TUNE_34KC) += -mtune=34kc
0a0a958b 39tune-$(CONFIG_MIPS_TUNE_74KC) += -mtune=74kc
0315a289 40
23ff8633
DS
41# Include default header files
42cflags-y += -I$(srctree)/arch/mips/include/asm/mach-generic
43
44PLATFORM_CPPFLAGS += $(arch-y) $(tune-y) $(cflags-y)