blob: 10ca69475611b5003ef763fce3ff74f9e9c26e2f [file] [log] [blame]
David Woodhousef5e70d02009-07-13 11:35:12 +01001obj-$(CONFIG_RAID6_PQ) += raid6_pq.o
2
Yuanhan Liu4f8c55c2012-11-30 13:10:40 -08003raid6_pq-y += algos.o recov.o tables.o int1.o int2.o int4.o \
4 int8.o int16.o int32.o
5
Gayatri Kammela13c520b2016-08-12 18:03:20 -07006raid6_pq-$(CONFIG_X86) += recov_ssse3.o recov_avx2.o mmx.o sse1.o sse2.o avx2.o avx512.o recov_avx512.o
Yuanhan Liu4f8c55c2012-11-30 13:10:40 -08007raid6_pq-$(CONFIG_ALTIVEC) += altivec1.o altivec2.o altivec4.o altivec8.o
Ard Biesheuvel7d119652013-05-16 17:20:32 +02008raid6_pq-$(CONFIG_KERNEL_MODE_NEON) += neon.o neon1.o neon2.o neon4.o neon8.o
Ken Steeleae77cbc2013-08-07 12:39:56 -04009raid6_pq-$(CONFIG_TILEGX) += tilegx8.o
Martin Schwidefskyf5b55fa2016-08-31 09:27:35 +020010raid6_pq-$(CONFIG_S390) += s390vx8.o recov_s390xc.o
Yuanhan Liu4f8c55c2012-11-30 13:10:40 -080011
David Woodhousef5e70d02009-07-13 11:35:12 +010012hostprogs-y += mktables
13
14quiet_cmd_unroll = UNROLL $@
David Woodhouse2144381d2010-08-09 10:36:44 +010015 cmd_unroll = $(AWK) -f$(srctree)/$(src)/unroll.awk -vN=$(UNROLL) \
David Woodhousef5e70d02009-07-13 11:35:12 +010016 < $< > $@ || ( rm -f $@ && exit 1 )
17
18ifeq ($(CONFIG_ALTIVEC),y)
Anton Blanchard1fb3f5a2015-05-26 08:53:26 +100019altivec_flags := -maltivec $(call cc-option,-mabi=altivec)
David Woodhousef5e70d02009-07-13 11:35:12 +010020endif
21
Ard Biesheuvel7d119652013-05-16 17:20:32 +020022# 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)
24ifeq ($(CONFIG_KERNEL_MODE_NEON),y)
25NEON_FLAGS := -ffreestanding
26ifeq ($(ARCH),arm)
Nathan Chancellor1de344c2019-02-02 03:34:36 +010027NEON_FLAGS += -march=armv7-a -mfloat-abi=softfp -mfpu=neon
Ard Biesheuvel7d119652013-05-16 17:20:32 +020028endif
29ifeq ($(ARCH),arm64)
30CFLAGS_REMOVE_neon1.o += -mgeneral-regs-only
31CFLAGS_REMOVE_neon2.o += -mgeneral-regs-only
32CFLAGS_REMOVE_neon4.o += -mgeneral-regs-only
33CFLAGS_REMOVE_neon8.o += -mgeneral-regs-only
34endif
35endif
36
David Woodhousecc4589e2010-08-11 00:19:05 +010037targets += int1.c
38$(obj)/int1.c: UNROLL := 1
39$(obj)/int1.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010040 $(call if_changed,unroll)
41
David Woodhousecc4589e2010-08-11 00:19:05 +010042targets += int2.c
43$(obj)/int2.c: UNROLL := 2
44$(obj)/int2.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010045 $(call if_changed,unroll)
46
David Woodhousecc4589e2010-08-11 00:19:05 +010047targets += int4.c
48$(obj)/int4.c: UNROLL := 4
49$(obj)/int4.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010050 $(call if_changed,unroll)
51
David Woodhousecc4589e2010-08-11 00:19:05 +010052targets += int8.c
53$(obj)/int8.c: UNROLL := 8
54$(obj)/int8.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010055 $(call if_changed,unroll)
56
David Woodhousecc4589e2010-08-11 00:19:05 +010057targets += int16.c
58$(obj)/int16.c: UNROLL := 16
59$(obj)/int16.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010060 $(call if_changed,unroll)
61
David Woodhousecc4589e2010-08-11 00:19:05 +010062targets += int32.c
63$(obj)/int32.c: UNROLL := 32
64$(obj)/int32.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010065 $(call if_changed,unroll)
66
David Woodhousecc4589e2010-08-11 00:19:05 +010067CFLAGS_altivec1.o += $(altivec_flags)
68targets += altivec1.c
69$(obj)/altivec1.c: UNROLL := 1
70$(obj)/altivec1.c: $(src)/altivec.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010071 $(call if_changed,unroll)
72
David Woodhousecc4589e2010-08-11 00:19:05 +010073CFLAGS_altivec2.o += $(altivec_flags)
74targets += altivec2.c
75$(obj)/altivec2.c: UNROLL := 2
76$(obj)/altivec2.c: $(src)/altivec.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010077 $(call if_changed,unroll)
78
David Woodhousecc4589e2010-08-11 00:19:05 +010079CFLAGS_altivec4.o += $(altivec_flags)
80targets += altivec4.c
81$(obj)/altivec4.c: UNROLL := 4
82$(obj)/altivec4.c: $(src)/altivec.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010083 $(call if_changed,unroll)
84
David Woodhousecc4589e2010-08-11 00:19:05 +010085CFLAGS_altivec8.o += $(altivec_flags)
86targets += altivec8.c
87$(obj)/altivec8.c: UNROLL := 8
88$(obj)/altivec8.c: $(src)/altivec.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010089 $(call if_changed,unroll)
90
Ard Biesheuvel7d119652013-05-16 17:20:32 +020091CFLAGS_neon1.o += $(NEON_FLAGS)
92targets += neon1.c
93$(obj)/neon1.c: UNROLL := 1
94$(obj)/neon1.c: $(src)/neon.uc $(src)/unroll.awk FORCE
95 $(call if_changed,unroll)
96
97CFLAGS_neon2.o += $(NEON_FLAGS)
98targets += neon2.c
99$(obj)/neon2.c: UNROLL := 2
100$(obj)/neon2.c: $(src)/neon.uc $(src)/unroll.awk FORCE
101 $(call if_changed,unroll)
102
103CFLAGS_neon4.o += $(NEON_FLAGS)
104targets += neon4.c
105$(obj)/neon4.c: UNROLL := 4
106$(obj)/neon4.c: $(src)/neon.uc $(src)/unroll.awk FORCE
107 $(call if_changed,unroll)
108
109CFLAGS_neon8.o += $(NEON_FLAGS)
110targets += neon8.c
111$(obj)/neon8.c: UNROLL := 8
112$(obj)/neon8.c: $(src)/neon.uc $(src)/unroll.awk FORCE
113 $(call if_changed,unroll)
114
Ken Steeleae77cbc2013-08-07 12:39:56 -0400115targets += tilegx8.c
116$(obj)/tilegx8.c: UNROLL := 8
117$(obj)/tilegx8.c: $(src)/tilegx.uc $(src)/unroll.awk FORCE
118 $(call if_changed,unroll)
119
Martin Schwidefsky474fd6e2016-08-23 13:30:24 +0200120targets += s390vx8.c
121$(obj)/s390vx8.c: UNROLL := 8
122$(obj)/s390vx8.c: $(src)/s390vx.uc $(src)/unroll.awk FORCE
123 $(call if_changed,unroll)
124
David Woodhousef5e70d02009-07-13 11:35:12 +0100125quiet_cmd_mktable = TABLE $@
126 cmd_mktable = $(obj)/mktables > $@ || ( rm -f $@ && exit 1 )
127
David Woodhousecc4589e2010-08-11 00:19:05 +0100128targets += tables.c
129$(obj)/tables.c: $(obj)/mktables FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +0100130 $(call if_changed,mktable)