David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 1 | obj-$(CONFIG_RAID6_PQ) += raid6_pq.o |
| 2 | |
Yuanhan Liu | 4f8c55c | 2012-11-30 13:10:40 -0800 | [diff] [blame] | 3 | raid6_pq-y += algos.o recov.o tables.o int1.o int2.o int4.o \ |
| 4 | int8.o int16.o int32.o |
| 5 | |
Gayatri Kammela | 13c520b | 2016-08-12 18:03:20 -0700 | [diff] [blame] | 6 | raid6_pq-$(CONFIG_X86) += recov_ssse3.o recov_avx2.o mmx.o sse1.o sse2.o avx2.o avx512.o recov_avx512.o |
Yuanhan Liu | 4f8c55c | 2012-11-30 13:10:40 -0800 | [diff] [blame] | 7 | raid6_pq-$(CONFIG_ALTIVEC) += altivec1.o altivec2.o altivec4.o altivec8.o |
Ard Biesheuvel | 6ec4e251 | 2017-07-13 18:16:01 +0100 | [diff] [blame] | 8 | raid6_pq-$(CONFIG_KERNEL_MODE_NEON) += neon.o neon1.o neon2.o neon4.o neon8.o recov_neon.o recov_neon_inner.o |
Ken Steele | ae77cbc | 2013-08-07 12:39:56 -0400 | [diff] [blame] | 9 | raid6_pq-$(CONFIG_TILEGX) += tilegx8.o |
Martin Schwidefsky | f5b55fa | 2016-08-31 09:27:35 +0200 | [diff] [blame] | 10 | raid6_pq-$(CONFIG_S390) += s390vx8.o recov_s390xc.o |
Yuanhan Liu | 4f8c55c | 2012-11-30 13:10:40 -0800 | [diff] [blame] | 11 | |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 12 | hostprogs-y += mktables |
| 13 | |
| 14 | quiet_cmd_unroll = UNROLL $@ |
David Woodhouse | 2144381 | 2010-08-09 10:36:44 +0100 | [diff] [blame] | 15 | cmd_unroll = $(AWK) -f$(srctree)/$(src)/unroll.awk -vN=$(UNROLL) \ |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 16 | < $< > $@ || ( rm -f $@ && exit 1 ) |
| 17 | |
| 18 | ifeq ($(CONFIG_ALTIVEC),y) |
Anton Blanchard | 1fb3f5a | 2015-05-26 08:53:26 +1000 | [diff] [blame] | 19 | altivec_flags := -maltivec $(call cc-option,-mabi=altivec) |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 20 | endif |
| 21 | |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 22 | # The GCC option -ffreestanding is required in order to compile code containing |
| 23 | # ARM/NEON intrinsics in a non C99-compliant environment (such as the kernel) |
| 24 | ifeq ($(CONFIG_KERNEL_MODE_NEON),y) |
| 25 | NEON_FLAGS := -ffreestanding |
| 26 | ifeq ($(ARCH),arm) |
| 27 | NEON_FLAGS += -mfloat-abi=softfp -mfpu=neon |
| 28 | endif |
Ard Biesheuvel | 6ec4e251 | 2017-07-13 18:16:01 +0100 | [diff] [blame] | 29 | CFLAGS_recov_neon_inner.o += $(NEON_FLAGS) |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 30 | ifeq ($(ARCH),arm64) |
Ard Biesheuvel | 6ec4e251 | 2017-07-13 18:16:01 +0100 | [diff] [blame] | 31 | CFLAGS_REMOVE_recov_neon_inner.o += -mgeneral-regs-only |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 32 | CFLAGS_REMOVE_neon1.o += -mgeneral-regs-only |
| 33 | CFLAGS_REMOVE_neon2.o += -mgeneral-regs-only |
| 34 | CFLAGS_REMOVE_neon4.o += -mgeneral-regs-only |
| 35 | CFLAGS_REMOVE_neon8.o += -mgeneral-regs-only |
| 36 | endif |
| 37 | endif |
| 38 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 39 | targets += int1.c |
| 40 | $(obj)/int1.c: UNROLL := 1 |
| 41 | $(obj)/int1.c: $(src)/int.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 42 | $(call if_changed,unroll) |
| 43 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 44 | targets += int2.c |
| 45 | $(obj)/int2.c: UNROLL := 2 |
| 46 | $(obj)/int2.c: $(src)/int.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 47 | $(call if_changed,unroll) |
| 48 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 49 | targets += int4.c |
| 50 | $(obj)/int4.c: UNROLL := 4 |
| 51 | $(obj)/int4.c: $(src)/int.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 52 | $(call if_changed,unroll) |
| 53 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 54 | targets += int8.c |
| 55 | $(obj)/int8.c: UNROLL := 8 |
| 56 | $(obj)/int8.c: $(src)/int.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 57 | $(call if_changed,unroll) |
| 58 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 59 | targets += int16.c |
| 60 | $(obj)/int16.c: UNROLL := 16 |
| 61 | $(obj)/int16.c: $(src)/int.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 62 | $(call if_changed,unroll) |
| 63 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 64 | targets += int32.c |
| 65 | $(obj)/int32.c: UNROLL := 32 |
| 66 | $(obj)/int32.c: $(src)/int.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 67 | $(call if_changed,unroll) |
| 68 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 69 | CFLAGS_altivec1.o += $(altivec_flags) |
| 70 | targets += altivec1.c |
| 71 | $(obj)/altivec1.c: UNROLL := 1 |
| 72 | $(obj)/altivec1.c: $(src)/altivec.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 73 | $(call if_changed,unroll) |
| 74 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 75 | CFLAGS_altivec2.o += $(altivec_flags) |
| 76 | targets += altivec2.c |
| 77 | $(obj)/altivec2.c: UNROLL := 2 |
| 78 | $(obj)/altivec2.c: $(src)/altivec.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 79 | $(call if_changed,unroll) |
| 80 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 81 | CFLAGS_altivec4.o += $(altivec_flags) |
| 82 | targets += altivec4.c |
| 83 | $(obj)/altivec4.c: UNROLL := 4 |
| 84 | $(obj)/altivec4.c: $(src)/altivec.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 85 | $(call if_changed,unroll) |
| 86 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 87 | CFLAGS_altivec8.o += $(altivec_flags) |
| 88 | targets += altivec8.c |
| 89 | $(obj)/altivec8.c: UNROLL := 8 |
| 90 | $(obj)/altivec8.c: $(src)/altivec.uc $(src)/unroll.awk FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 91 | $(call if_changed,unroll) |
| 92 | |
Ard Biesheuvel | 7d11965 | 2013-05-16 17:20:32 +0200 | [diff] [blame] | 93 | CFLAGS_neon1.o += $(NEON_FLAGS) |
| 94 | targets += neon1.c |
| 95 | $(obj)/neon1.c: UNROLL := 1 |
| 96 | $(obj)/neon1.c: $(src)/neon.uc $(src)/unroll.awk FORCE |
| 97 | $(call if_changed,unroll) |
| 98 | |
| 99 | CFLAGS_neon2.o += $(NEON_FLAGS) |
| 100 | targets += neon2.c |
| 101 | $(obj)/neon2.c: UNROLL := 2 |
| 102 | $(obj)/neon2.c: $(src)/neon.uc $(src)/unroll.awk FORCE |
| 103 | $(call if_changed,unroll) |
| 104 | |
| 105 | CFLAGS_neon4.o += $(NEON_FLAGS) |
| 106 | targets += neon4.c |
| 107 | $(obj)/neon4.c: UNROLL := 4 |
| 108 | $(obj)/neon4.c: $(src)/neon.uc $(src)/unroll.awk FORCE |
| 109 | $(call if_changed,unroll) |
| 110 | |
| 111 | CFLAGS_neon8.o += $(NEON_FLAGS) |
| 112 | targets += neon8.c |
| 113 | $(obj)/neon8.c: UNROLL := 8 |
| 114 | $(obj)/neon8.c: $(src)/neon.uc $(src)/unroll.awk FORCE |
| 115 | $(call if_changed,unroll) |
| 116 | |
Ken Steele | ae77cbc | 2013-08-07 12:39:56 -0400 | [diff] [blame] | 117 | targets += tilegx8.c |
| 118 | $(obj)/tilegx8.c: UNROLL := 8 |
| 119 | $(obj)/tilegx8.c: $(src)/tilegx.uc $(src)/unroll.awk FORCE |
| 120 | $(call if_changed,unroll) |
| 121 | |
Martin Schwidefsky | 474fd6e | 2016-08-23 13:30:24 +0200 | [diff] [blame] | 122 | targets += s390vx8.c |
| 123 | $(obj)/s390vx8.c: UNROLL := 8 |
| 124 | $(obj)/s390vx8.c: $(src)/s390vx.uc $(src)/unroll.awk FORCE |
| 125 | $(call if_changed,unroll) |
| 126 | |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 127 | quiet_cmd_mktable = TABLE $@ |
| 128 | cmd_mktable = $(obj)/mktables > $@ || ( rm -f $@ && exit 1 ) |
| 129 | |
David Woodhouse | cc4589e | 2010-08-11 00:19:05 +0100 | [diff] [blame] | 130 | targets += tables.c |
| 131 | $(obj)/tables.c: $(obj)/mktables FORCE |
David Woodhouse | f5e70d0 | 2009-07-13 11:35:12 +0100 | [diff] [blame] | 132 | $(call if_changed,mktable) |