blob: 655a49338201396559df33a13b9208271b105e01 [file] [log] [blame]
Daniel Schwierzeck17def7d2014-11-21 23:51:33 +01001#
2# SPDX-License-Identifier: GPL-2.0+
3#
4
Daniel Schwierzecked160502015-01-29 14:56:20 +01005head-y := arch/mips/cpu/start.o
Daniel Schwierzeck17def7d2014-11-21 23:51:33 +01006
Daniel Schwierzecked160502015-01-29 14:56:20 +01007libs-y += arch/mips/cpu/
Daniel Schwierzeck17def7d2014-11-21 23:51:33 +01008libs-y += arch/mips/lib/
Daniel Schwierzeck74fc3c02015-01-29 14:47:01 +01009
Daniel Schwierzecke6e124b2015-12-21 16:35:13 +010010machine-$(CONFIG_SOC_AU1X00) += au1x00
Wills Wang833a1a82016-03-16 16:59:52 +080011machine-$(CONFIG_ARCH_ATH79) += ath79
Purna Chandra Mandal825b3212016-01-28 15:30:10 +053012machine-$(CONFIG_MACH_PIC32) += pic32
Daniel Schwierzecke6e124b2015-12-21 16:35:13 +010013
14machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y))
15libs-y += $(machdirs)
16
17PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
Daniel Schwierzeckaadd3322015-12-26 19:55:37 +010018
19# Optimize for MIPS architectures
20arch-$(CONFIG_CPU_MIPS32_R1) += -march=mips32 -Wa,-mips32
21arch-$(CONFIG_CPU_MIPS32_R2) += -march=mips32r2 -Wa,-mips32r2
Paul Burton55e29dd2016-05-16 10:52:12 +010022arch-$(CONFIG_CPU_MIPS32_R6) += -march=mips32r6 -Wa,-mips32r6
Daniel Schwierzeckaadd3322015-12-26 19:55:37 +010023arch-$(CONFIG_CPU_MIPS64_R1) += -march=mips64 -Wa,-mips64
24arch-$(CONFIG_CPU_MIPS64_R2) += -march=mips64r2 -Wa,-mips64r2
Paul Burton55e29dd2016-05-16 10:52:12 +010025arch-$(CONFIG_CPU_MIPS64_R6) += -march=mips64r6 -Wa,-mips64r6
Daniel Schwierzeckaadd3322015-12-26 19:55:37 +010026
27# Allow extra optimization for specific CPUs/SoCs
28tune-$(CONFIG_MIPS_TUNE_4KC) += -mtune=4kc
29tune-$(CONFIG_MIPS_TUNE_14KC) += -mtune=14kc
30tune-$(CONFIG_MIPS_TUNE_24KC) += -mtune=24kc
Marek Vasuta9c6e8b2016-05-06 20:10:33 +020031tune-$(CONFIG_MIPS_TUNE_74KC) += -mtune=74kc
Daniel Schwierzeckaadd3322015-12-26 19:55:37 +010032
Daniel Schwierzeckb01d3e12016-01-12 21:48:25 +010033# Include default header files
34cflags-y += -I$(srctree)/arch/mips/include/asm/mach-generic
35
36PLATFORM_CPPFLAGS += $(arch-y) $(tune-y) $(cflags-y)