Michal Simek | 4b2368f | 2009-05-26 16:30:32 +0200 | [diff] [blame] | 1 | ifeq ($(CONFIG_MMU),y) |
| 2 | UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\" |
| 3 | else |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 4 | UTS_SYSNAME = -DUTS_SYSNAME=\"uClinux\" |
Michal Simek | 4b2368f | 2009-05-26 16:30:32 +0200 | [diff] [blame] | 5 | endif |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 6 | |
| 7 | # What CPU vesion are we building for, and crack it open |
| 8 | # as major.minor.rev |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 9 | CPU_VER := $(shell echo $(CONFIG_XILINX_MICROBLAZE0_HW_VER)) |
| 10 | CPU_MAJOR := $(shell echo $(CPU_VER) | cut -d '.' -f 1) |
| 11 | CPU_MINOR := $(shell echo $(CPU_VER) | cut -d '.' -f 2) |
| 12 | CPU_REV := $(shell echo $(CPU_VER) | cut -d '.' -f 3) |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 13 | |
| 14 | export CPU_VER CPU_MAJOR CPU_MINOR CPU_REV |
| 15 | |
| 16 | # Use cpu-related CONFIG_ vars to set compile options. |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 17 | # The various CONFIG_XILINX cpu features options are integers 0/1/2... |
| 18 | # rather than bools y/n |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 19 | |
| 20 | # Work out HW multipler support. This is icky. |
| 21 | # 1. Spartan2 has no HW multiplers. |
| 22 | # 2. MicroBlaze v3.x always uses them, except in Spartan 2 |
| 23 | # 3. All other FPGa/CPU ver combos, we can trust the CONFIG_ settings |
| 24 | ifeq (,$(findstring spartan2,$(CONFIG_XILINX_MICROBLAZE0_FAMILY))) |
| 25 | ifeq ($(CPU_MAJOR),3) |
| 26 | CPUFLAGS-1 += -mno-xl-soft-mul |
| 27 | else |
| 28 | # USE_HW_MUL can be 0, 1, or 2, defining a heirarchy of HW Mul support. |
| 29 | CPUFLAGS-$(subst 1,,$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL)) += -mxl-multiply-high |
| 30 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL) += -mno-xl-soft-mul |
| 31 | endif |
| 32 | endif |
| 33 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_DIV) += -mno-xl-soft-div |
| 34 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_BARREL) += -mxl-barrel-shift |
Michal Simek | 04e3a55 | 2009-04-20 09:56:24 +0200 | [diff] [blame] | 35 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_PCMP_INSTR) += -mxl-pattern-compare |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 36 | |
| 37 | CPUFLAGS-1 += $(call cc-option,-mcpu=v$(CPU_VER)) |
| 38 | |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 39 | # r31 holds current when in kernel mode |
John Williams | e469b0e | 2009-09-17 21:21:23 +1000 | [diff] [blame^] | 40 | KBUILD_CFLAGS += -ffixed-r31 $(CPUFLAGS-1) $(CPUFLAGS-2) |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 41 | |
Thomas Chou | c3055d1 | 2009-05-19 22:48:10 +0800 | [diff] [blame] | 42 | LDFLAGS := |
| 43 | LDFLAGS_vmlinux := |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 44 | |
John Williams | e469b0e | 2009-09-17 21:21:23 +1000 | [diff] [blame^] | 45 | LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) |
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/ |
| 49 | libs-y += $(LIBGCC) |
| 50 | core-y += arch/microblaze/kernel/ |
| 51 | core-y += arch/microblaze/mm/ |
| 52 | core-y += arch/microblaze/platform/ |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 53 | |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 54 | boot := arch/microblaze/boot |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 55 | |
| 56 | # defines filename extension depending memory management type |
| 57 | ifeq ($(CONFIG_MMU),) |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 58 | MMU := -nommu |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 59 | endif |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 60 | |
| 61 | export MMU |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 62 | |
| 63 | all: linux.bin |
| 64 | |
| 65 | archclean: |
| 66 | $(Q)$(MAKE) $(clean)=$(boot) |
| 67 | |
| 68 | linux.bin linux.bin.gz: vmlinux |
| 69 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 70 | |
| 71 | define archhelp |
| 72 | echo '* linux.bin - Create raw binary' |
| 73 | echo ' linux.bin.gz - Create compressed raw binary' |
| 74 | endef |