Geert Uytterhoeven | 8fad84c | 2013-11-12 20:22:44 +0100 | [diff] [blame] | 1 | KBUILD_DEFCONFIG := mmu_defconfig |
| 2 | |
Michal Simek | 4b2368f | 2009-05-26 16:30:32 +0200 | [diff] [blame] | 3 | ifeq ($(CONFIG_MMU),y) |
| 4 | UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\" |
| 5 | else |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 6 | UTS_SYSNAME = -DUTS_SYSNAME=\"uClinux\" |
Michal Simek | 4b2368f | 2009-05-26 16:30:32 +0200 | [diff] [blame] | 7 | endif |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 8 | |
| 9 | # What CPU vesion are we building for, and crack it open |
| 10 | # as major.minor.rev |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 11 | CPU_VER := $(shell echo $(CONFIG_XILINX_MICROBLAZE0_HW_VER)) |
| 12 | CPU_MAJOR := $(shell echo $(CPU_VER) | cut -d '.' -f 1) |
| 13 | CPU_MINOR := $(shell echo $(CPU_VER) | cut -d '.' -f 2) |
| 14 | CPU_REV := $(shell echo $(CPU_VER) | cut -d '.' -f 3) |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 15 | |
| 16 | export CPU_VER CPU_MAJOR CPU_MINOR CPU_REV |
| 17 | |
| 18 | # Use cpu-related CONFIG_ vars to set compile options. |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 19 | # The various CONFIG_XILINX cpu features options are integers 0/1/2... |
| 20 | # rather than bools y/n |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 21 | |
Michal Simek | 7f01af0 | 2011-01-03 11:35:28 +0100 | [diff] [blame] | 22 | # Work out HW multipler support. This is tricky. |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 23 | # 1. Spartan2 has no HW multipliers. |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 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 |
| 26 | ifeq (,$(findstring spartan2,$(CONFIG_XILINX_MICROBLAZE0_FAMILY))) |
| 27 | ifeq ($(CPU_MAJOR),3) |
| 28 | CPUFLAGS-1 += -mno-xl-soft-mul |
| 29 | else |
Uwe Kleine-König | 732bee7 | 2010-06-11 12:16:59 +0200 | [diff] [blame] | 30 | # USE_HW_MUL can be 0, 1, or 2, defining a hierarchy of HW Mul support. |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 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 |
| 34 | endif |
| 35 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_DIV) += -mno-xl-soft-div |
| 36 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_BARREL) += -mxl-barrel-shift |
Michal Simek | 04e3a55 | 2009-04-20 09:56:24 +0200 | [diff] [blame] | 37 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_PCMP_INSTR) += -mxl-pattern-compare |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 38 | |
| 39 | CPUFLAGS-1 += $(call cc-option,-mcpu=v$(CPU_VER)) |
| 40 | |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 41 | # r31 holds current when in kernel mode |
John Williams | e469b0e | 2009-09-17 21:21:23 +1000 | [diff] [blame] | 42 | KBUILD_CFLAGS += -ffixed-r31 $(CPUFLAGS-1) $(CPUFLAGS-2) |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 43 | |
Thomas Chou | c3055d1 | 2009-05-19 22:48:10 +0800 | [diff] [blame] | 44 | LDFLAGS := |
| 45 | LDFLAGS_vmlinux := |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 46 | |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 47 | head-y := arch/microblaze/kernel/head.o |
| 48 | libs-y += arch/microblaze/lib/ |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 49 | core-y += arch/microblaze/kernel/ |
| 50 | core-y += arch/microblaze/mm/ |
Michal Simek | a6475c1 | 2010-01-18 15:27:10 +0100 | [diff] [blame] | 51 | core-$(CONFIG_PCI) += arch/microblaze/pci/ |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 52 | |
John Williams | 3540ce8 | 2009-11-24 20:27:54 +1000 | [diff] [blame] | 53 | drivers-$(CONFIG_OPROFILE) += arch/microblaze/oprofile/ |
| 54 | |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 55 | boot := arch/microblaze/boot |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 56 | |
Michal Simek | f05131c | 2009-09-14 15:15:49 +0200 | [diff] [blame] | 57 | # Are we making a simpleImage.<boardname> target? If so, crack out the boardname |
| 58 | DTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS))) |
| 59 | |
| 60 | ifneq ($(DTB),) |
Stephen Warren | 300db34 | 2012-11-27 16:29:15 -0700 | [diff] [blame] | 61 | core-y += $(boot)/dts/ |
Michal Simek | f05131c | 2009-09-14 15:15:49 +0200 | [diff] [blame] | 62 | endif |
| 63 | |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 64 | # defines filename extension depending memory management type |
| 65 | ifeq ($(CONFIG_MMU),) |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 66 | MMU := -nommu |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 67 | endif |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 68 | |
Michal Simek | f05131c | 2009-09-14 15:15:49 +0200 | [diff] [blame] | 69 | export MMU DTB |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 70 | |
| 71 | all: linux.bin |
| 72 | |
| 73 | archclean: |
| 74 | $(Q)$(MAKE) $(clean)=$(boot) |
| 75 | |
Jason Wu | ec2eba5 | 2013-08-21 07:10:32 +0200 | [diff] [blame] | 76 | linux.bin linux.bin.gz linux.bin.ub: vmlinux |
Thomas Backlund | b843e4e | 2010-10-21 13:19:10 +0300 | [diff] [blame] | 77 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
Jason Wu | 5f5e323 | 2013-01-31 13:59:09 +1000 | [diff] [blame] | 78 | |
| 79 | simpleImage.%: vmlinux |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 80 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 81 | |
| 82 | define archhelp |
Michal Simek | f05131c | 2009-09-14 15:15:49 +0200 | [diff] [blame] | 83 | echo '* linux.bin - Create raw binary' |
| 84 | echo ' linux.bin.gz - Create compressed raw binary' |
Jason Wu | ec2eba5 | 2013-08-21 07:10:32 +0200 | [diff] [blame] | 85 | echo ' linux.bin.ub - Create U-Boot wrapped raw binary' |
Michal Simek | f05131c | 2009-09-14 15:15:49 +0200 | [diff] [blame] | 86 | echo ' simpleImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts linked in' |
Arun Bhanu | 699d17b | 2010-03-12 16:31:40 +0800 | [diff] [blame] | 87 | echo ' - stripped elf with fdt blob' |
Michal Simek | f05131c | 2009-09-14 15:15:49 +0200 | [diff] [blame] | 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).' |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 96 | endef |
Arun Bhanu | 8a8804f | 2010-03-17 16:06:03 +0800 | [diff] [blame] | 97 | |
| 98 | MRPROPER_FILES += $(boot)/simpleImage.* |