Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Geert Uytterhoeven | 8fad84c | 2013-11-12 20:22:44 +0100 | [diff] [blame] | 2 | KBUILD_DEFCONFIG := mmu_defconfig |
| 3 | |
Michal Simek | 4b2368f | 2009-05-26 16:30:32 +0200 | [diff] [blame] | 4 | UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\" |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 5 | |
Colin Ian King | 14a8324 | 2021-06-01 11:37:07 +0100 | [diff] [blame] | 6 | # What CPU version are we building for, and crack it open |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 7 | # as major.minor.rev |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 8 | CPU_VER := $(shell echo $(CONFIG_XILINX_MICROBLAZE0_HW_VER)) |
| 9 | CPU_MAJOR := $(shell echo $(CPU_VER) | cut -d '.' -f 1) |
| 10 | CPU_MINOR := $(shell echo $(CPU_VER) | cut -d '.' -f 2) |
| 11 | CPU_REV := $(shell echo $(CPU_VER) | cut -d '.' -f 3) |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 12 | |
| 13 | export CPU_VER CPU_MAJOR CPU_MINOR CPU_REV |
| 14 | |
| 15 | # Use cpu-related CONFIG_ vars to set compile options. |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 16 | # The various CONFIG_XILINX cpu features options are integers 0/1/2... |
| 17 | # rather than bools y/n |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 18 | |
Michal Simek | 7f01af0 | 2011-01-03 11:35:28 +0100 | [diff] [blame] | 19 | # Work out HW multipler support. This is tricky. |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 20 | # 1. Spartan2 has no HW multipliers. |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 21 | # 2. MicroBlaze v3.x always uses them, except in Spartan 2 |
| 22 | # 3. All other FPGa/CPU ver combos, we can trust the CONFIG_ settings |
| 23 | ifeq (,$(findstring spartan2,$(CONFIG_XILINX_MICROBLAZE0_FAMILY))) |
| 24 | ifeq ($(CPU_MAJOR),3) |
| 25 | CPUFLAGS-1 += -mno-xl-soft-mul |
| 26 | else |
Uwe Kleine-König | 732bee7 | 2010-06-11 12:16:59 +0200 | [diff] [blame] | 27 | # 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] | 28 | CPUFLAGS-$(subst 1,,$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL)) += -mxl-multiply-high |
| 29 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL) += -mno-xl-soft-mul |
| 30 | endif |
| 31 | endif |
| 32 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_DIV) += -mno-xl-soft-div |
| 33 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_BARREL) += -mxl-barrel-shift |
Michal Simek | 04e3a55 | 2009-04-20 09:56:24 +0200 | [diff] [blame] | 34 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_PCMP_INSTR) += -mxl-pattern-compare |
Arnd Bergmann | 71e7673 | 2018-01-02 12:47:19 +0100 | [diff] [blame] | 35 | |
| 36 | ifdef CONFIG_CPU_BIG_ENDIAN |
| 37 | KBUILD_CFLAGS += -mbig-endian |
| 38 | KBUILD_AFLAGS += -mbig-endian |
Masahiro Yamada | d503ac5 | 2018-08-24 08:20:39 +0900 | [diff] [blame] | 39 | KBUILD_LDFLAGS += -EB |
Arnd Bergmann | 71e7673 | 2018-01-02 12:47:19 +0100 | [diff] [blame] | 40 | else |
| 41 | KBUILD_CFLAGS += -mlittle-endian |
| 42 | KBUILD_AFLAGS += -mlittle-endian |
Masahiro Yamada | d503ac5 | 2018-08-24 08:20:39 +0900 | [diff] [blame] | 43 | KBUILD_LDFLAGS += -EL |
Arnd Bergmann | 71e7673 | 2018-01-02 12:47:19 +0100 | [diff] [blame] | 44 | endif |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 45 | |
| 46 | CPUFLAGS-1 += $(call cc-option,-mcpu=v$(CPU_VER)) |
| 47 | |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 48 | # r31 holds current when in kernel mode |
Arnd Bergmann | 71e7673 | 2018-01-02 12:47:19 +0100 | [diff] [blame] | 49 | KBUILD_CFLAGS += -ffixed-r31 $(CPUFLAGS-y) $(CPUFLAGS-1) $(CPUFLAGS-2) |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 50 | |
Sam Ravnborg | 950b260 | 2009-07-24 09:04:49 +0200 | [diff] [blame] | 51 | head-y := arch/microblaze/kernel/head.o |
| 52 | libs-y += arch/microblaze/lib/ |
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 | |
Michal Simek | f05131c | 2009-09-14 15:15:49 +0200 | [diff] [blame] | 56 | # Are we making a simpleImage.<boardname> target? If so, crack out the boardname |
| 57 | DTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS))) |
| 58 | |
Michal Simek | 05cdf45 | 2020-11-26 14:32:25 +0100 | [diff] [blame] | 59 | export DTB |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 60 | |
| 61 | all: linux.bin |
| 62 | |
Firoz Khan | 1e17ab5 | 2018-11-13 11:34:34 +0530 | [diff] [blame] | 63 | archheaders: |
| 64 | $(Q)$(MAKE) $(build)=arch/microblaze/kernel/syscalls all |
| 65 | |
Masahiro Yamada | 3dda563 | 2018-12-07 20:33:55 +0900 | [diff] [blame] | 66 | PHONY += linux.bin linux.bin.gz linux.bin.ub |
Masahiro Yamada | 52e79c4 | 2018-12-07 20:33:56 +0900 | [diff] [blame] | 67 | linux.bin.ub linux.bin.gz: linux.bin |
| 68 | linux.bin: vmlinux |
| 69 | linux.bin linux.bin.gz linux.bin.ub: |
Thomas Backlund | b843e4e | 2010-10-21 13:19:10 +0300 | [diff] [blame] | 70 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
Masahiro Yamada | 2e14f94 | 2018-12-07 20:33:53 +0900 | [diff] [blame] | 71 | @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')' |
Jason Wu | 5f5e323 | 2013-01-31 13:59:09 +1000 | [diff] [blame] | 72 | |
Masahiro Yamada | 3dda563 | 2018-12-07 20:33:55 +0900 | [diff] [blame] | 73 | PHONY += simpleImage.$(DTB) |
| 74 | simpleImage.$(DTB): vmlinux |
Masahiro Yamada | 4722a3e6 | 2018-12-07 20:33:54 +0900 | [diff] [blame] | 75 | $(Q)$(MAKE) $(build)=$(boot) $(addprefix $(boot)/$@., ub unstrip strip) |
Masahiro Yamada | 2e14f94 | 2018-12-07 20:33:53 +0900 | [diff] [blame] | 76 | @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')' |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 77 | |
| 78 | define archhelp |
Michal Simek | f05131c | 2009-09-14 15:15:49 +0200 | [diff] [blame] | 79 | echo '* linux.bin - Create raw binary' |
| 80 | echo ' linux.bin.gz - Create compressed raw binary' |
Jason Wu | ec2eba5 | 2013-08-21 07:10:32 +0200 | [diff] [blame] | 81 | echo ' linux.bin.ub - Create U-Boot wrapped raw binary' |
Masahiro Yamada | bafcc61 | 2018-12-07 20:33:52 +0900 | [diff] [blame] | 82 | echo ' simpleImage.<dt> - Create the following images with <dt>.dtb linked in' |
| 83 | echo ' simpleImage.<dt> : raw image' |
| 84 | echo ' simpleImage.<dt>.ub : raw image with U-Boot header' |
| 85 | echo ' simpleImage.<dt>.unstrip: ELF (identical to vmlinux)' |
| 86 | echo ' simpleImage.<dt>.strip : stripped ELF' |
Michal Simek | f05131c | 2009-09-14 15:15:49 +0200 | [diff] [blame] | 87 | echo ' Targets with <dt> embed a device tree blob inside the image' |
| 88 | echo ' These targets support board with firmware that does not' |
| 89 | echo ' support passing a device tree directly. Replace <dt> with the' |
| 90 | echo ' name of a dts file from the arch/microblaze/boot/dts/ directory' |
| 91 | echo ' (minus the .dts extension).' |
Michal Simek | 5f8ffb5 | 2009-03-27 14:25:51 +0100 | [diff] [blame] | 92 | endef |
Arun Bhanu | 8a8804f | 2010-03-17 16:06:03 +0800 | [diff] [blame] | 93 | |
| 94 | MRPROPER_FILES += $(boot)/simpleImage.* |