Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 2 | obj-$(CONFIG_RAID6_PQ) += raid6_pq.o |
| 3 | |
Yuanhan Liu | 4f8c55c | 2012-11-30 13:10:40 -0800 | [diff] [blame] | 4 | raid6_pq-y += algos.o recov.o tables.o int1.o int2.o int4.o \ |
| 5 | int8.o int16.o int32.o |
| 6 | |
Gayatri Kammela | 13c520b | 2016-08-12 18:03:20 -0700 | [diff] [blame] | 7 | raid6_pq-$(CONFIG_X86) += recov_ssse3.o recov_avx2.o mmx.o sse1.o sse2.o avx2.o avx512.o recov_avx512.o |
Matt Brown | 751ba79 | 2017-08-04 13:42:32 +1000 | [diff] [blame] | 8 | raid6_pq-$(CONFIG_ALTIVEC) += altivec1.o altivec2.o altivec4.o altivec8.o \ |
| 9 | vpermxor1.o vpermxor2.o vpermxor4.o vpermxor8.o |
Ard Biesheuvel | 6ec4e251 | 2017-07-13 18:16:01 +0100 | [diff] [blame] | 10 | raid6_pq-$(CONFIG_KERNEL_MODE_NEON) += neon.o neon1.o neon2.o neon4.o neon8.o recov_neon.o recov_neon_inner.o |
Martin Schwidefsky | f5b55fa | 2016-08-31 09:27:35 +0200 | [diff] [blame] | 11 | raid6_pq-$(CONFIG_S390) += s390vx8.o recov_s390xc.o |
Yuanhan Liu | 4f8c55c | 2012-11-30 13:10:40 -0800 | [diff] [blame] | 12 | |
Masahiro Yamada | 5f2fb52 | 2020-02-02 01:49:24 +0900 | [diff] [blame] | 13 | hostprogs += mktables |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 14 | |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 15 | ifeq ($(CONFIG_ALTIVEC),y) |
Anton Blanchard | 1fb3f5a | 2015-05-26 08:53:26 +1000 | [diff] [blame] | 16 | altivec_flags := -maltivec $(call cc-option,-mabi=altivec) |
Alexey Dobriyan | 04e85bb | 2021-08-02 23:43:15 +0300 | [diff] [blame] | 17 | # Enable <altivec.h> |
| 18 | altivec_flags += -isystem $(shell $(CC) -print-file-name=include) |
Joel Stanley | e213574 | 2018-11-02 11:14:55 +1030 | [diff] [blame] | 19 | |
| 20 | ifdef CONFIG_CC_IS_CLANG |
| 21 | # clang ppc port does not yet support -maltivec when -msoft-float is |
| 22 | # enabled. A future release of clang will resolve this |
| 23 | # https://bugs.llvm.org/show_bug.cgi?id=31177 |
| 24 | CFLAGS_REMOVE_altivec1.o += -msoft-float |
| 25 | CFLAGS_REMOVE_altivec2.o += -msoft-float |
| 26 | CFLAGS_REMOVE_altivec4.o += -msoft-float |
| 27 | CFLAGS_REMOVE_altivec8.o += -msoft-float |
Joel Stanley | e213574 | 2018-11-02 11:14:55 +1030 | [diff] [blame] | 28 | CFLAGS_REMOVE_vpermxor1.o += -msoft-float |
| 29 | CFLAGS_REMOVE_vpermxor2.o += -msoft-float |
| 30 | CFLAGS_REMOVE_vpermxor4.o += -msoft-float |
| 31 | CFLAGS_REMOVE_vpermxor8.o += -msoft-float |
| 32 | endif |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 33 | endif |
| 34 | |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 35 | # The GCC option -ffreestanding is required in order to compile code containing |
| 36 | # ARM/NEON intrinsics in a non C99-compliant environment (such as the kernel) |
| 37 | ifeq ($(CONFIG_KERNEL_MODE_NEON),y) |
| 38 | NEON_FLAGS := -ffreestanding |
Alexey Dobriyan | 04e85bb | 2021-08-02 23:43:15 +0300 | [diff] [blame] | 39 | # Enable <arm_neon.h> |
| 40 | NEON_FLAGS += -isystem $(shell $(CC) -print-file-name=include) |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 41 | ifeq ($(ARCH),arm) |
Nathan Chancellor | de9c0d4 | 2019-02-02 03:34:36 +0100 | [diff] [blame] | 42 | NEON_FLAGS += -march=armv7-a -mfloat-abi=softfp -mfpu=neon |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 43 | endif |
Ard Biesheuvel | 6ec4e251 | 2017-07-13 18:16:01 +0100 | [diff] [blame] | 44 | CFLAGS_recov_neon_inner.o += $(NEON_FLAGS) |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 45 | ifeq ($(ARCH),arm64) |
Ard Biesheuvel | 6ec4e251 | 2017-07-13 18:16:01 +0100 | [diff] [blame] | 46 | CFLAGS_REMOVE_recov_neon_inner.o += -mgeneral-regs-only |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 47 | CFLAGS_REMOVE_neon1.o += -mgeneral-regs-only |
| 48 | CFLAGS_REMOVE_neon2.o += -mgeneral-regs-only |
| 49 | CFLAGS_REMOVE_neon4.o += -mgeneral-regs-only |
| 50 | CFLAGS_REMOVE_neon8.o += -mgeneral-regs-only |
| 51 | endif |
| 52 | endif |
| 53 | |
Masahiro Yamada | 72ad210 | 2019-06-17 02:48:05 +0900 | [diff] [blame] | 54 | quiet_cmd_unroll = UNROLL $@ |
John Millikin | 0c36d88 | 2020-12-23 15:23:25 +0900 | [diff] [blame] | 55 | cmd_unroll = $(AWK) -v N=$* -f $(srctree)/$(src)/unroll.awk < $< > $@ |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 56 | |
Masahiro Yamada | 72ad210 | 2019-06-17 02:48:05 +0900 | [diff] [blame] | 57 | targets += int1.c int2.c int4.c int8.c int16.c int32.c |
| 58 | $(obj)/int%.c: $(src)/int.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 59 | $(call if_changed,unroll) |
| 60 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 61 | CFLAGS_altivec1.o += $(altivec_flags) |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 62 | CFLAGS_altivec2.o += $(altivec_flags) |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 63 | CFLAGS_altivec4.o += $(altivec_flags) |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 64 | CFLAGS_altivec8.o += $(altivec_flags) |
Masahiro Yamada | 72ad210 | 2019-06-17 02:48:05 +0900 | [diff] [blame] | 65 | targets += altivec1.c altivec2.c altivec4.c altivec8.c |
| 66 | $(obj)/altivec%.c: $(src)/altivec.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 67 | $(call if_changed,unroll) |
| 68 | |
Matt Brown | 751ba79 | 2017-08-04 13:42:32 +1000 | [diff] [blame] | 69 | CFLAGS_vpermxor1.o += $(altivec_flags) |
Matt Brown | 751ba79 | 2017-08-04 13:42:32 +1000 | [diff] [blame] | 70 | CFLAGS_vpermxor2.o += $(altivec_flags) |
Matt Brown | 751ba79 | 2017-08-04 13:42:32 +1000 | [diff] [blame] | 71 | CFLAGS_vpermxor4.o += $(altivec_flags) |
Matt Brown | 751ba79 | 2017-08-04 13:42:32 +1000 | [diff] [blame] | 72 | CFLAGS_vpermxor8.o += $(altivec_flags) |
Masahiro Yamada | e2a280d | 2019-07-31 01:40:42 +0900 | [diff] [blame] | 73 | targets += vpermxor1.c vpermxor2.c vpermxor4.c vpermxor8.c |
Masahiro Yamada | 72ad210 | 2019-06-17 02:48:05 +0900 | [diff] [blame] | 74 | $(obj)/vpermxor%.c: $(src)/vpermxor.uc $(src)/unroll.awk FORCE |
Matt Brown | 751ba79 | 2017-08-04 13:42:32 +1000 | [diff] [blame] | 75 | $(call if_changed,unroll) |
| 76 | |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 77 | CFLAGS_neon1.o += $(NEON_FLAGS) |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 78 | CFLAGS_neon2.o += $(NEON_FLAGS) |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 79 | CFLAGS_neon4.o += $(NEON_FLAGS) |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 80 | CFLAGS_neon8.o += $(NEON_FLAGS) |
Masahiro Yamada | 72ad210 | 2019-06-17 02:48:05 +0900 | [diff] [blame] | 81 | targets += neon1.c neon2.c neon4.c neon8.c |
| 82 | $(obj)/neon%.c: $(src)/neon.uc $(src)/unroll.awk FORCE |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 83 | $(call if_changed,unroll) |
| 84 | |
Martin Schwidefsky | 474fd6e | 2016-08-23 13:30:24 +0200 | [diff] [blame] | 85 | targets += s390vx8.c |
Masahiro Yamada | 72ad210 | 2019-06-17 02:48:05 +0900 | [diff] [blame] | 86 | $(obj)/s390vx%.c: $(src)/s390vx.uc $(src)/unroll.awk FORCE |
Martin Schwidefsky | 474fd6e | 2016-08-23 13:30:24 +0200 | [diff] [blame] | 87 | $(call if_changed,unroll) |
| 88 | |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 89 | quiet_cmd_mktable = TABLE $@ |
Masahiro Yamada | 172caf1 | 2018-12-31 17:24:08 +0900 | [diff] [blame] | 90 | cmd_mktable = $(obj)/mktables > $@ |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 91 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 92 | targets += tables.c |
| 93 | $(obj)/tables.c: $(obj)/mktables FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 94 | $(call if_changed,mktable) |