blob: 90cd5906c6af06834915cc594a09f6d698080400 [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
11
12machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y))
13libs-y += $(machdirs)
14
15PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
Daniel Schwierzeckaadd3322015-12-26 19:55:37 +010016
17# Optimize for MIPS architectures
18arch-$(CONFIG_CPU_MIPS32_R1) += -march=mips32 -Wa,-mips32
19arch-$(CONFIG_CPU_MIPS32_R2) += -march=mips32r2 -Wa,-mips32r2
20arch-$(CONFIG_CPU_MIPS64_R1) += -march=mips64 -Wa,-mips64
21arch-$(CONFIG_CPU_MIPS64_R2) += -march=mips64r2 -Wa,-mips64r2
22
23# Allow extra optimization for specific CPUs/SoCs
24tune-$(CONFIG_MIPS_TUNE_4KC) += -mtune=4kc
25tune-$(CONFIG_MIPS_TUNE_14KC) += -mtune=14kc
26tune-$(CONFIG_MIPS_TUNE_24KC) += -mtune=24kc
27
28PLATFORM_CPPFLAGS += $(arch-y) $(tune-y)