]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/microblaze/Makefile
Merge branch 'x86-cache-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-zesty-kernel.git] / arch / microblaze / Makefile
CommitLineData
8fad84c1
GU
1KBUILD_DEFCONFIG := mmu_defconfig
2
4b2368ff
MS
3ifeq ($(CONFIG_MMU),y)
4UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\"
5else
5f8ffb5f 6UTS_SYSNAME = -DUTS_SYSNAME=\"uClinux\"
4b2368ff 7endif
5f8ffb5f
MS
8
9# What CPU vesion are we building for, and crack it open
10# as major.minor.rev
950b260e
SR
11CPU_VER := $(shell echo $(CONFIG_XILINX_MICROBLAZE0_HW_VER))
12CPU_MAJOR := $(shell echo $(CPU_VER) | cut -d '.' -f 1)
13CPU_MINOR := $(shell echo $(CPU_VER) | cut -d '.' -f 2)
14CPU_REV := $(shell echo $(CPU_VER) | cut -d '.' -f 3)
5f8ffb5f
MS
15
16export CPU_VER CPU_MAJOR CPU_MINOR CPU_REV
17
18# Use cpu-related CONFIG_ vars to set compile options.
950b260e
SR
19# The various CONFIG_XILINX cpu features options are integers 0/1/2...
20# rather than bools y/n
5f8ffb5f 21
7f01af04 22# Work out HW multipler support. This is tricky.
25985edc 23# 1. Spartan2 has no HW multipliers.
5f8ffb5f
MS
24# 2. MicroBlaze v3.x always uses them, except in Spartan 2
25# 3. All other FPGa/CPU ver combos, we can trust the CONFIG_ settings
26ifeq (,$(findstring spartan2,$(CONFIG_XILINX_MICROBLAZE0_FAMILY)))
27 ifeq ($(CPU_MAJOR),3)
28 CPUFLAGS-1 += -mno-xl-soft-mul
29 else
732bee7a 30 # USE_HW_MUL can be 0, 1, or 2, defining a hierarchy of HW Mul support.
5f8ffb5f
MS
31 CPUFLAGS-$(subst 1,,$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL)) += -mxl-multiply-high
32 CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL) += -mno-xl-soft-mul
33 endif
34endif
35CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_DIV) += -mno-xl-soft-div
36CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_BARREL) += -mxl-barrel-shift
04e3a553 37CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_PCMP_INSTR) += -mxl-pattern-compare
5f8ffb5f
MS
38
39CPUFLAGS-1 += $(call cc-option,-mcpu=v$(CPU_VER))
40
5f8ffb5f 41# r31 holds current when in kernel mode
e469b0eb 42KBUILD_CFLAGS += -ffixed-r31 $(CPUFLAGS-1) $(CPUFLAGS-2)
5f8ffb5f 43
c3055d14
TC
44LDFLAGS :=
45LDFLAGS_vmlinux :=
5f8ffb5f 46
950b260e
SR
47head-y := arch/microblaze/kernel/head.o
48libs-y += arch/microblaze/lib/
950b260e
SR
49core-y += arch/microblaze/kernel/
50core-y += arch/microblaze/mm/
a6475c13 51core-$(CONFIG_PCI) += arch/microblaze/pci/
5f8ffb5f 52
3540ce82
JW
53drivers-$(CONFIG_OPROFILE) += arch/microblaze/oprofile/
54
950b260e 55boot := arch/microblaze/boot
5f8ffb5f 56
f05131cd
MS
57# Are we making a simpleImage.<boardname> target? If so, crack out the boardname
58DTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS)))
59
60ifneq ($(DTB),)
300db34a 61 core-y += $(boot)/dts/
f05131cd
MS
62endif
63
5f8ffb5f
MS
64# defines filename extension depending memory management type
65ifeq ($(CONFIG_MMU),)
950b260e 66MMU := -nommu
5f8ffb5f 67endif
950b260e 68
f05131cd 69export MMU DTB
5f8ffb5f
MS
70
71all: linux.bin
72
73archclean:
74 $(Q)$(MAKE) $(clean)=$(boot)
75
ec2eba55 76linux.bin linux.bin.gz linux.bin.ub: vmlinux
b843e4ec 77 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
5f5e3236
JW
78
79simpleImage.%: vmlinux
5f8ffb5f
MS
80 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
81
82define archhelp
f05131cd
MS
83 echo '* linux.bin - Create raw binary'
84 echo ' linux.bin.gz - Create compressed raw binary'
ec2eba55 85 echo ' linux.bin.ub - Create U-Boot wrapped raw binary'
f05131cd 86 echo ' simpleImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts linked in'
699d17bc 87 echo ' - stripped elf with fdt blob'
f05131cd
MS
88 echo ' simpleImage.<dt>.unstrip - full ELF image with fdt blob'
89 echo ' *_defconfig - Select default config from arch/microblaze/configs'
90 echo ''
91 echo ' Targets with <dt> embed a device tree blob inside the image'
92 echo ' These targets support board with firmware that does not'
93 echo ' support passing a device tree directly. Replace <dt> with the'
94 echo ' name of a dts file from the arch/microblaze/boot/dts/ directory'
95 echo ' (minus the .dts extension).'
5f8ffb5f 96endef
8a8804f1
AB
97
98MRPROPER_FILES += $(boot)/simpleImage.*