blob: efe7e44236b9bd0b5f34129b64db09fdd1b09af0 [file] [log] [blame]
Daniel Schwierzecke19db552014-11-21 23:51:33 +01001#
2# SPDX-License-Identifier: GPL-2.0+
3#
4
Daniel Schwierzeckeef88df2015-01-29 14:56:20 +01005head-y := arch/mips/cpu/start.o
Daniel Schwierzecke19db552014-11-21 23:51:33 +01006
Marek Vasutecc9d262016-05-25 02:17:42 +02007ifeq ($(CONFIG_SPL_BUILD),y)
8ifneq ($(CONFIG_SPL_START_S_PATH),)
9head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
10endif
11endif
12
Daniel Schwierzeckeef88df2015-01-29 14:56:20 +010013libs-y += arch/mips/cpu/
Daniel Schwierzecke19db552014-11-21 23:51:33 +010014libs-y += arch/mips/lib/
Daniel Schwierzeckd9a4a622015-01-29 14:47:01 +010015
Daniel Schwierzeck6479b692015-12-21 16:35:13 +010016machine-$(CONFIG_SOC_AU1X00) += au1x00
Wills Wang1d3d0f12016-03-16 16:59:52 +080017machine-$(CONFIG_ARCH_ATH79) += ath79
Purna Chandra Mandal32c1a6e2016-01-28 15:30:10 +053018machine-$(CONFIG_MACH_PIC32) += pic32
Daniel Schwierzeck6479b692015-12-21 16:35:13 +010019
20machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y))
21libs-y += $(machdirs)
22
23PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
Daniel Schwierzeck0315a282015-12-26 19:55:37 +010024
25# Optimize for MIPS architectures
26arch-$(CONFIG_CPU_MIPS32_R1) += -march=mips32 -Wa,-mips32
27arch-$(CONFIG_CPU_MIPS32_R2) += -march=mips32r2 -Wa,-mips32r2
Paul Burtonc52ebea2016-05-16 10:52:12 +010028arch-$(CONFIG_CPU_MIPS32_R6) += -march=mips32r6 -Wa,-mips32r6
Daniel Schwierzeck0315a282015-12-26 19:55:37 +010029arch-$(CONFIG_CPU_MIPS64_R1) += -march=mips64 -Wa,-mips64
30arch-$(CONFIG_CPU_MIPS64_R2) += -march=mips64r2 -Wa,-mips64r2
Paul Burtonc52ebea2016-05-16 10:52:12 +010031arch-$(CONFIG_CPU_MIPS64_R6) += -march=mips64r6 -Wa,-mips64r6
Daniel Schwierzeck0315a282015-12-26 19:55:37 +010032
33# Allow extra optimization for specific CPUs/SoCs
34tune-$(CONFIG_MIPS_TUNE_4KC) += -mtune=4kc
35tune-$(CONFIG_MIPS_TUNE_14KC) += -mtune=14kc
36tune-$(CONFIG_MIPS_TUNE_24KC) += -mtune=24kc
Daniel Schwierzeck5f9cc362016-05-27 15:39:39 +020037tune-$(CONFIG_MIPS_TUNE_34KC) += -mtune=34kc
Marek Vasut0a0a9582016-05-06 20:10:33 +020038tune-$(CONFIG_MIPS_TUNE_74KC) += -mtune=74kc
Daniel Schwierzeck0315a282015-12-26 19:55:37 +010039
Daniel Schwierzeck23ff8632016-01-12 21:48:25 +010040# Include default header files
41cflags-y += -I$(srctree)/arch/mips/include/asm/mach-generic
42
43PLATFORM_CPPFLAGS += $(arch-y) $(tune-y) $(cflags-y)