Makefile 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. UTS_SYSNAME = -DUTS_SYSNAME=\"uClinux\"
  2. # What CPU vesion are we building for, and crack it open
  3. # as major.minor.rev
  4. CPU_VER=$(subst ",,$(CONFIG_XILINX_MICROBLAZE0_HW_VER) )
  5. CPU_MAJOR=$(shell echo $(CPU_VER) | cut -d '.' -f 1)
  6. CPU_MINOR=$(shell echo $(CPU_VER) | cut -d '.' -f 2)
  7. CPU_REV=$(shell echo $(CPU_VER) | cut -d '.' -f 3)
  8. export CPU_VER CPU_MAJOR CPU_MINOR CPU_REV
  9. # Use cpu-related CONFIG_ vars to set compile options.
  10. # Work out HW multipler support. This is icky.
  11. # 1. Spartan2 has no HW multiplers.
  12. # 2. MicroBlaze v3.x always uses them, except in Spartan 2
  13. # 3. All other FPGa/CPU ver combos, we can trust the CONFIG_ settings
  14. ifeq (,$(findstring spartan2,$(CONFIG_XILINX_MICROBLAZE0_FAMILY)))
  15. ifeq ($(CPU_MAJOR),3)
  16. CPUFLAGS-1 += -mno-xl-soft-mul
  17. else
  18. # USE_HW_MUL can be 0, 1, or 2, defining a heirarchy of HW Mul support.
  19. CPUFLAGS-$(subst 1,,$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL)) += -mxl-multiply-high
  20. CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL) += -mno-xl-soft-mul
  21. endif
  22. endif
  23. CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_DIV) += -mno-xl-soft-div
  24. CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_BARREL) += -mxl-barrel-shift
  25. CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_PCMP_INSTR) += -mxl-pattern-compare
  26. CPUFLAGS-1 += $(call cc-option,-mcpu=v$(CPU_VER))
  27. # The various CONFIG_XILINX cpu features options are integers 0/1/2...
  28. # rather than bools y/n
  29. # r31 holds current when in kernel mode
  30. CFLAGS_KERNEL += -ffixed-r31 $(CPUFLAGS-1) $(CPUFLAGS-2)
  31. LDFLAGS_BLOB := --format binary --oformat elf32-microblaze
  32. LIBGCC := $(shell $(CC) $(CFLAGS_KERNEL) -print-libgcc-file-name)
  33. head-y := arch/microblaze/kernel/head.o
  34. libs-y += arch/microblaze/lib/ $(LIBGCC)
  35. core-y += arch/microblaze/kernel/ arch/microblaze/mm/ \
  36. arch/microblaze/platform/
  37. boot := arch/$(ARCH)/boot
  38. # defines filename extension depending memory management type
  39. ifeq ($(CONFIG_MMU),)
  40. MMUEXT := -nommu
  41. endif
  42. export MMUEXT
  43. all: linux.bin
  44. archclean:
  45. $(Q)$(MAKE) $(clean)=$(boot)
  46. linux.bin linux.bin.gz: vmlinux
  47. $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
  48. define archhelp
  49. echo '* linux.bin - Create raw binary'
  50. echo ' linux.bin.gz - Create compressed raw binary'
  51. endef