blob: 3b10a48fa0401ff87902525095c9e1d189bfe7dd [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
6raid6_pq-$(CONFIG_X86) += recov_ssse3.o recov_avx2.o mmx.o sse1.o sse2.o avx2.o
7raid6_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
Yuanhan Liu4f8c55c2012-11-30 13:10:40 -080010
David Woodhousef5e70d02009-07-13 11:35:12 +010011hostprogs-y += mktables
12
13quiet_cmd_unroll = UNROLL $@
David Woodhouse2144381d2010-08-09 10:36:44 +010014 cmd_unroll = $(AWK) -f$(srctree)/$(src)/unroll.awk -vN=$(UNROLL) \
David Woodhousef5e70d02009-07-13 11:35:12 +010015 < $< > $@ || ( rm -f $@ && exit 1 )
16
17ifeq ($(CONFIG_ALTIVEC),y)
Anton Blanchard1fb3f5a2015-05-26 08:53:26 +100018altivec_flags := -maltivec $(call cc-option,-mabi=altivec)
David Woodhousef5e70d02009-07-13 11:35:12 +010019endif
20
Ard Biesheuvel7d119652013-05-16 17:20:32 +020021# The GCC option -ffreestanding is required in order to compile code containing
22# ARM/NEON intrinsics in a non C99-compliant environment (such as the kernel)
23ifeq ($(CONFIG_KERNEL_MODE_NEON),y)
24NEON_FLAGS := -ffreestanding
25ifeq ($(ARCH),arm)
26NEON_FLAGS += -mfloat-abi=softfp -mfpu=neon
27endif
28ifeq ($(ARCH),arm64)
29CFLAGS_REMOVE_neon1.o += -mgeneral-regs-only
30CFLAGS_REMOVE_neon2.o += -mgeneral-regs-only
31CFLAGS_REMOVE_neon4.o += -mgeneral-regs-only
32CFLAGS_REMOVE_neon8.o += -mgeneral-regs-only
33endif
34endif
35
David Woodhousecc4589e2010-08-11 00:19:05 +010036targets += int1.c
37$(obj)/int1.c: UNROLL := 1
38$(obj)/int1.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010039 $(call if_changed,unroll)
40
David Woodhousecc4589e2010-08-11 00:19:05 +010041targets += int2.c
42$(obj)/int2.c: UNROLL := 2
43$(obj)/int2.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010044 $(call if_changed,unroll)
45
David Woodhousecc4589e2010-08-11 00:19:05 +010046targets += int4.c
47$(obj)/int4.c: UNROLL := 4
48$(obj)/int4.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010049 $(call if_changed,unroll)
50
David Woodhousecc4589e2010-08-11 00:19:05 +010051targets += int8.c
52$(obj)/int8.c: UNROLL := 8
53$(obj)/int8.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010054 $(call if_changed,unroll)
55
David Woodhousecc4589e2010-08-11 00:19:05 +010056targets += int16.c
57$(obj)/int16.c: UNROLL := 16
58$(obj)/int16.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010059 $(call if_changed,unroll)
60
David Woodhousecc4589e2010-08-11 00:19:05 +010061targets += int32.c
62$(obj)/int32.c: UNROLL := 32
63$(obj)/int32.c: $(src)/int.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010064 $(call if_changed,unroll)
65
David Woodhousecc4589e2010-08-11 00:19:05 +010066CFLAGS_altivec1.o += $(altivec_flags)
67targets += altivec1.c
68$(obj)/altivec1.c: UNROLL := 1
69$(obj)/altivec1.c: $(src)/altivec.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010070 $(call if_changed,unroll)
71
David Woodhousecc4589e2010-08-11 00:19:05 +010072CFLAGS_altivec2.o += $(altivec_flags)
73targets += altivec2.c
74$(obj)/altivec2.c: UNROLL := 2
75$(obj)/altivec2.c: $(src)/altivec.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010076 $(call if_changed,unroll)
77
David Woodhousecc4589e2010-08-11 00:19:05 +010078CFLAGS_altivec4.o += $(altivec_flags)
79targets += altivec4.c
80$(obj)/altivec4.c: UNROLL := 4
81$(obj)/altivec4.c: $(src)/altivec.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010082 $(call if_changed,unroll)
83
David Woodhousecc4589e2010-08-11 00:19:05 +010084CFLAGS_altivec8.o += $(altivec_flags)
85targets += altivec8.c
86$(obj)/altivec8.c: UNROLL := 8
87$(obj)/altivec8.c: $(src)/altivec.uc $(src)/unroll.awk FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +010088 $(call if_changed,unroll)
89
Ard Biesheuvel7d119652013-05-16 17:20:32 +020090CFLAGS_neon1.o += $(NEON_FLAGS)
91targets += neon1.c
92$(obj)/neon1.c: UNROLL := 1
93$(obj)/neon1.c: $(src)/neon.uc $(src)/unroll.awk FORCE
94 $(call if_changed,unroll)
95
96CFLAGS_neon2.o += $(NEON_FLAGS)
97targets += neon2.c
98$(obj)/neon2.c: UNROLL := 2
99$(obj)/neon2.c: $(src)/neon.uc $(src)/unroll.awk FORCE
100 $(call if_changed,unroll)
101
102CFLAGS_neon4.o += $(NEON_FLAGS)
103targets += neon4.c
104$(obj)/neon4.c: UNROLL := 4
105$(obj)/neon4.c: $(src)/neon.uc $(src)/unroll.awk FORCE
106 $(call if_changed,unroll)
107
108CFLAGS_neon8.o += $(NEON_FLAGS)
109targets += neon8.c
110$(obj)/neon8.c: UNROLL := 8
111$(obj)/neon8.c: $(src)/neon.uc $(src)/unroll.awk FORCE
112 $(call if_changed,unroll)
113
Ken Steeleae77cbc2013-08-07 12:39:56 -0400114targets += tilegx8.c
115$(obj)/tilegx8.c: UNROLL := 8
116$(obj)/tilegx8.c: $(src)/tilegx.uc $(src)/unroll.awk FORCE
117 $(call if_changed,unroll)
118
David Woodhousef5e70d02009-07-13 11:35:12 +0100119quiet_cmd_mktable = TABLE $@
120 cmd_mktable = $(obj)/mktables > $@ || ( rm -f $@ && exit 1 )
121
David Woodhousecc4589e2010-08-11 00:19:05 +0100122targets += tables.c
123$(obj)/tables.c: $(obj)/mktables FORCE
David Woodhousef5e70d02009-07-13 11:35:12 +0100124 $(call if_changed,mktable)