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