Daniel Schwierzeck | e19db55 | 2014-11-21 23:51:33 +0100 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: GPL-2.0+ |
| 3 | # |
| 4 | |
Daniel Schwierzeck | eef88df | 2015-01-29 14:56:20 +0100 | [diff] [blame] | 5 | head-y := arch/mips/cpu/start.o |
Daniel Schwierzeck | e19db55 | 2014-11-21 23:51:33 +0100 | [diff] [blame] | 6 | |
Daniel Schwierzeck | eef88df | 2015-01-29 14:56:20 +0100 | [diff] [blame] | 7 | libs-y += arch/mips/cpu/ |
Daniel Schwierzeck | e19db55 | 2014-11-21 23:51:33 +0100 | [diff] [blame] | 8 | libs-y += arch/mips/lib/ |
Daniel Schwierzeck | d9a4a62 | 2015-01-29 14:47:01 +0100 | [diff] [blame] | 9 | |
Daniel Schwierzeck | 6479b69 | 2015-12-21 16:35:13 +0100 | [diff] [blame] | 10 | machine-$(CONFIG_SOC_AU1X00) += au1x00 |
| 11 | |
| 12 | machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y)) |
| 13 | libs-y += $(machdirs) |
| 14 | |
| 15 | PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs)) |
Daniel Schwierzeck | 0315a28 | 2015-12-26 19:55:37 +0100 | [diff] [blame] | 16 | |
| 17 | # Optimize for MIPS architectures |
| 18 | arch-$(CONFIG_CPU_MIPS32_R1) += -march=mips32 -Wa,-mips32 |
| 19 | arch-$(CONFIG_CPU_MIPS32_R2) += -march=mips32r2 -Wa,-mips32r2 |
| 20 | arch-$(CONFIG_CPU_MIPS64_R1) += -march=mips64 -Wa,-mips64 |
| 21 | arch-$(CONFIG_CPU_MIPS64_R2) += -march=mips64r2 -Wa,-mips64r2 |
| 22 | |
| 23 | # Allow extra optimization for specific CPUs/SoCs |
| 24 | tune-$(CONFIG_MIPS_TUNE_4KC) += -mtune=4kc |
| 25 | tune-$(CONFIG_MIPS_TUNE_14KC) += -mtune=14kc |
| 26 | tune-$(CONFIG_MIPS_TUNE_24KC) += -mtune=24kc |
| 27 | |
Daniel Schwierzeck | 23ff863 | 2016-01-12 21:48:25 +0100 | [diff] [blame] | 28 | # Include default header files |
| 29 | cflags-y += -I$(srctree)/arch/mips/include/asm/mach-generic |
| 30 | |
| 31 | PLATFORM_CPPFLAGS += $(arch-y) $(tune-y) $(cflags-y) |