xref: /linux/arch/microblaze/Makefile (revision 25985edcedea6396277003854657b5f3cb31a628)
14b2368ffSMichal Simekifeq ($(CONFIG_MMU),y)
24b2368ffSMichal SimekUTS_SYSNAME = -DUTS_SYSNAME=\"Linux\"
34b2368ffSMichal Simekelse
45f8ffb5fSMichal SimekUTS_SYSNAME = -DUTS_SYSNAME=\"uClinux\"
54b2368ffSMichal Simekendif
65f8ffb5fSMichal Simek
75f8ffb5fSMichal Simek# What CPU vesion are we building for, and crack it open
85f8ffb5fSMichal Simek# as major.minor.rev
9950b260eSSam RavnborgCPU_VER   := $(shell echo $(CONFIG_XILINX_MICROBLAZE0_HW_VER))
10950b260eSSam RavnborgCPU_MAJOR := $(shell echo $(CPU_VER) | cut -d '.' -f 1)
11950b260eSSam RavnborgCPU_MINOR := $(shell echo $(CPU_VER) | cut -d '.' -f 2)
12950b260eSSam RavnborgCPU_REV   := $(shell echo $(CPU_VER) | cut -d '.' -f 3)
135f8ffb5fSMichal Simek
145f8ffb5fSMichal Simekexport CPU_VER CPU_MAJOR CPU_MINOR CPU_REV
155f8ffb5fSMichal Simek
165f8ffb5fSMichal Simek# Use cpu-related CONFIG_ vars to set compile options.
17950b260eSSam Ravnborg# The various CONFIG_XILINX cpu features options are integers 0/1/2...
18950b260eSSam Ravnborg# rather than bools y/n
195f8ffb5fSMichal Simek
207f01af04SMichal Simek# Work out HW multipler support. This is tricky.
21*25985edcSLucas De Marchi# 1. Spartan2 has no HW multipliers.
225f8ffb5fSMichal Simek# 2. MicroBlaze v3.x always uses them, except in Spartan 2
235f8ffb5fSMichal Simek# 3. All other FPGa/CPU ver combos, we can trust the CONFIG_ settings
245f8ffb5fSMichal Simekifeq (,$(findstring spartan2,$(CONFIG_XILINX_MICROBLAZE0_FAMILY)))
255f8ffb5fSMichal Simek  ifeq ($(CPU_MAJOR),3)
265f8ffb5fSMichal Simek    CPUFLAGS-1 += -mno-xl-soft-mul
275f8ffb5fSMichal Simek  else
28732bee7aSUwe Kleine-König    # USE_HW_MUL can be 0, 1, or 2, defining a hierarchy of HW Mul support.
295f8ffb5fSMichal Simek    CPUFLAGS-$(subst 1,,$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL)) += -mxl-multiply-high
305f8ffb5fSMichal Simek    CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL) += -mno-xl-soft-mul
315f8ffb5fSMichal Simek  endif
325f8ffb5fSMichal Simekendif
335f8ffb5fSMichal SimekCPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_DIV) += -mno-xl-soft-div
345f8ffb5fSMichal SimekCPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_BARREL) += -mxl-barrel-shift
3504e3a553SMichal SimekCPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_PCMP_INSTR) += -mxl-pattern-compare
365f8ffb5fSMichal Simek
375f8ffb5fSMichal SimekCPUFLAGS-1 += $(call cc-option,-mcpu=v$(CPU_VER))
385f8ffb5fSMichal Simek
395f8ffb5fSMichal Simek# r31 holds current when in kernel mode
40e469b0ebSJohn WilliamsKBUILD_CFLAGS += -ffixed-r31 $(CPUFLAGS-1) $(CPUFLAGS-2)
415f8ffb5fSMichal Simek
42c3055d14SThomas ChouLDFLAGS		:=
43c3055d14SThomas ChouLDFLAGS_vmlinux	:=
445f8ffb5fSMichal Simek
455f8ffb5fSMichal Simekhead-y := arch/microblaze/kernel/head.o
46950b260eSSam Ravnborglibs-y += arch/microblaze/lib/
47950b260eSSam Ravnborgcore-y += arch/microblaze/kernel/
48950b260eSSam Ravnborgcore-y += arch/microblaze/mm/
49950b260eSSam Ravnborgcore-y += arch/microblaze/platform/
50a6475c13SMichal Simekcore-$(CONFIG_PCI) += arch/microblaze/pci/
515f8ffb5fSMichal Simek
523540ce82SJohn Williamsdrivers-$(CONFIG_OPROFILE) += arch/microblaze/oprofile/
533540ce82SJohn Williams
54950b260eSSam Ravnborgboot := arch/microblaze/boot
555f8ffb5fSMichal Simek
56f05131cdSMichal Simek# Are we making a simpleImage.<boardname> target? If so, crack out the boardname
57f05131cdSMichal SimekDTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS)))
58f05131cdSMichal Simek
59f05131cdSMichal Simekifneq ($(DTB),)
60f05131cdSMichal Simek	core-y	+= $(boot)/
61f05131cdSMichal Simekendif
62f05131cdSMichal Simek
635f8ffb5fSMichal Simek# defines filename extension depending memory management type
645f8ffb5fSMichal Simekifeq ($(CONFIG_MMU),)
65950b260eSSam RavnborgMMU := -nommu
665f8ffb5fSMichal Simekendif
67950b260eSSam Ravnborg
68f05131cdSMichal Simekexport MMU DTB
695f8ffb5fSMichal Simek
705f8ffb5fSMichal Simekall: linux.bin
715f8ffb5fSMichal Simek
72b843e4ecSThomas Backlund# With make 3.82 we cannot mix normal and wildcard targets
73b843e4ecSThomas BacklundBOOT_TARGETS1 = linux.bin linux.bin.gz
74b843e4ecSThomas BacklundBOOT_TARGETS2 = simpleImage.%
75f05131cdSMichal Simek
765f8ffb5fSMichal Simekarchclean:
775f8ffb5fSMichal Simek	$(Q)$(MAKE) $(clean)=$(boot)
785f8ffb5fSMichal Simek
79b843e4ecSThomas Backlund$(BOOT_TARGETS1): vmlinux
80b843e4ecSThomas Backlund	$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
81b843e4ecSThomas Backlund$(BOOT_TARGETS2): vmlinux
825f8ffb5fSMichal Simek	$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
835f8ffb5fSMichal Simek
845f8ffb5fSMichal Simekdefine archhelp
855f8ffb5fSMichal Simek  echo '* linux.bin    - Create raw binary'
865f8ffb5fSMichal Simek  echo '  linux.bin.gz - Create compressed raw binary'
87f05131cdSMichal Simek  echo '  simpleImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts linked in'
88699d17bcSArun Bhanu  echo '                   - stripped elf with fdt blob'
89f05131cdSMichal Simek  echo '  simpleImage.<dt>.unstrip - full ELF image with fdt blob'
90f05131cdSMichal Simek  echo '  *_defconfig      - Select default config from arch/microblaze/configs'
91f05131cdSMichal Simek  echo ''
92f05131cdSMichal Simek  echo '  Targets with <dt> embed a device tree blob inside the image'
93f05131cdSMichal Simek  echo '  These targets support board with firmware that does not'
94f05131cdSMichal Simek  echo '  support passing a device tree directly. Replace <dt> with the'
95f05131cdSMichal Simek  echo '  name of a dts file from the arch/microblaze/boot/dts/ directory'
96f05131cdSMichal Simek  echo '  (minus the .dts extension).'
975f8ffb5fSMichal Simekendef
988a8804f1SArun Bhanu
998a8804f1SArun BhanuMRPROPER_FILES += $(boot)/simpleImage.*
100