Makefile 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # SPDX-License-Identifier: GPL-2.0+
  2. head-y := arch/mips/cpu/start.o
  3. ifeq ($(CONFIG_SPL_BUILD),y)
  4. ifneq ($(CONFIG_SPL_START_S_PATH),)
  5. head-y := $(CONFIG_SPL_START_S_PATH:"%"=%)/start.o
  6. endif
  7. endif
  8. libs-y += arch/mips/cpu/
  9. libs-y += arch/mips/lib/
  10. machine-$(CONFIG_SOC_AU1X00) += au1x00
  11. machine-$(CONFIG_ARCH_ATH79) += ath79
  12. machine-$(CONFIG_ARCH_BMIPS) += bmips
  13. machine-$(CONFIG_MACH_PIC32) += pic32
  14. machdirs := $(patsubst %,arch/mips/mach-%/,$(machine-y))
  15. libs-y += $(machdirs)
  16. PLATFORM_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
  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_MIPS32_R6) += -march=mips32r6 -Wa,-mips32r6
  21. arch-$(CONFIG_CPU_MIPS64_R1) += -march=mips64 -Wa,-mips64
  22. arch-$(CONFIG_CPU_MIPS64_R2) += -march=mips64r2 -Wa,-mips64r2
  23. arch-$(CONFIG_CPU_MIPS64_R6) += -march=mips64r6 -Wa,-mips64r6
  24. # Allow extra optimization for specific CPUs/SoCs
  25. tune-$(CONFIG_MIPS_TUNE_4KC) += -mtune=4kc
  26. tune-$(CONFIG_MIPS_TUNE_14KC) += -mtune=14kc
  27. tune-$(CONFIG_MIPS_TUNE_24KC) += -mtune=24kc
  28. tune-$(CONFIG_MIPS_TUNE_34KC) += -mtune=34kc
  29. tune-$(CONFIG_MIPS_TUNE_74KC) += -mtune=74kc
  30. # Include default header files
  31. cflags-y += -I$(srctree)/arch/mips/include/asm/mach-generic
  32. PLATFORM_CPPFLAGS += $(arch-y) $(tune-y) $(cflags-y)