xref: /linux/lib/crypto/Makefile (revision af413d71f09d4dde28277319926c1c3a6ec8b8d4)
1dc51f257SArd Biesheuvel# SPDX-License-Identifier: GPL-2.0
2dc51f257SArd Biesheuvel
324c91b62SEric Biggersaflags-thumb2-$(CONFIG_THUMB2_KERNEL)  := -U__thumb2__ -D__thumb2__=1
424c91b62SEric Biggers
524c91b62SEric Biggersquiet_cmd_perlasm = PERLASM $@
624c91b62SEric Biggers      cmd_perlasm = $(PERL) $(<) > $(@)
724c91b62SEric Biggers
860e3f1e9SEric Biggersquiet_cmd_perlasm_with_args = PERLASM $@
960e3f1e9SEric Biggers      cmd_perlasm_with_args = $(PERL) $(<) void $(@)
1060e3f1e9SEric Biggers
1173f315c1SEric Biggersppc64-perlasm-flavour-y := linux-ppc64
1273f315c1SEric Biggersppc64-perlasm-flavour-$(CONFIG_PPC64_ELF_ABI_V2) := linux-ppc64-elfv2
1373f315c1SEric Biggersppc64-perlasm-flavour-$(CONFIG_CPU_LITTLE_ENDIAN) := linux-ppc64le
1473f315c1SEric Biggers
154dcf6cadSEric Biggersobj-$(CONFIG_KUNIT)				+= tests/
164dcf6cadSEric Biggers
17aacb37f5SEric Biggersobj-$(CONFIG_CRYPTO_HASH_INFO)			+= hash_info.o
18aacb37f5SEric Biggers
197033b937SEric Biggersobj-$(CONFIG_CRYPTO_LIB_UTILS)			+= libcryptoutils.o
206e78ad0bSEric Biggerslibcryptoutils-y				:= memneq.o utils.o
217033b937SEric Biggers
22a22fd0e3SEric Biggers################################################################################
23a22fd0e3SEric Biggers
24e59c1c98SArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_AES) += libaes.o
25e59c1c98SArd Biesheuvellibaes-y := aes.o
26a22fd0e3SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_AES_ARCH),y)
27a22fd0e3SEric BiggersCFLAGS_aes.o += -I$(src)/$(SRCARCH)
28fa229775SEric Biggers
29fa229775SEric Biggerslibaes-$(CONFIG_ARM) += arm/aes-cipher-core.o
30c2db2288SEric Biggerslibaes-$(CONFIG_ARM64) += arm64/aes-cipher-core.o \
31c2db2288SEric Biggers			  arm64/aes-ce-core.o \
324b908403SEric Biggers			  arm64/aes-ce.o \
334b908403SEric Biggers			  arm64/aes-neon.o
342b1ef7aeSEric Biggers
350892c91bSEric Biggersifeq ($(CONFIG_PPC),y)
360892c91bSEric Biggersifeq ($(CONFIG_SPE),y)
370892c91bSEric Biggerslibaes-y += powerpc/aes-spe-core.o \
380892c91bSEric Biggers	    powerpc/aes-spe-keys.o \
390892c91bSEric Biggers	    powerpc/aes-spe-modes.o \
400892c91bSEric Biggers	    powerpc/aes-tab-4k.o
417cf2082eSEric Biggerselse
427cf2082eSEric Biggerslibaes-y += powerpc/aesp8-ppc.o
437cf2082eSEric Biggersquiet_cmd_perlasm_aes = PERLASM $@
4473f315c1SEric Biggers      cmd_perlasm_aes = $(PERL) $< $(ppc64-perlasm-flavour-y) $@
457cf2082eSEric Biggers# Use if_changed instead of cmd, in case the flavour changed.
467cf2082eSEric Biggers$(obj)/powerpc/aesp8-ppc.S: $(src)/powerpc/aesp8-ppc.pl FORCE
477cf2082eSEric Biggers	$(call if_changed,perlasm_aes)
487cf2082eSEric Biggerstargets += powerpc/aesp8-ppc.S
497cf2082eSEric BiggersOBJECT_FILES_NON_STANDARD_powerpc/aesp8-ppc.o := y
507cf2082eSEric Biggersendif # !CONFIG_SPE
510892c91bSEric Biggersendif # CONFIG_PPC
520892c91bSEric Biggers
53a4e573dbSEric Biggerslibaes-$(CONFIG_RISCV) += riscv/aes-riscv64-zvkned.o
54293c7cd5SEric Biggerslibaes-$(CONFIG_SPARC) += sparc/aes_asm.o
5524eb22d8SEric Biggerslibaes-$(CONFIG_X86) += x86/aes-aesni.o
56a22fd0e3SEric Biggersendif # CONFIG_CRYPTO_LIB_AES_ARCH
57a22fd0e3SEric Biggers
58a22fd0e3SEric Biggers################################################################################
59e59c1c98SArd Biesheuvel
60f1354404SArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_AESCFB)			+= libaescfb.o
61f1354404SArd Biesheuvellibaescfb-y					:= aescfb.o
62f1354404SArd Biesheuvel
63520af5daSArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_AESGCM)			+= libaesgcm.o
64520af5daSArd Biesheuvellibaesgcm-y					:= aesgcm.o
65520af5daSArd Biesheuvel
66dc51f257SArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_ARC4)			+= libarc4.o
67dc51f257SArd Biesheuvellibarc4-y					:= arc4.o
6804007b0eSArd Biesheuvel
6961c581a4SArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_GF128MUL)		+= gf128mul.o
7061c581a4SArd Biesheuvel
7139ee3970SEric Biggers################################################################################
7239ee3970SEric Biggers
7323a16c95SEric Biggersobj-$(CONFIG_CRYPTO_LIB_BLAKE2B) += libblake2b.o
7423a16c95SEric Biggerslibblake2b-y := blake2b.o
7523a16c95SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_BLAKE2B_ARCH),y)
7623a16c95SEric BiggersCFLAGS_blake2b.o += -I$(src)/$(SRCARCH)
77ba6617bdSEric Biggerslibblake2b-$(CONFIG_ARM) += arm/blake2b-neon-core.o
7823a16c95SEric Biggersendif # CONFIG_CRYPTO_LIB_BLAKE2B_ARCH
7923a16c95SEric Biggers
8023a16c95SEric Biggers################################################################################
8123a16c95SEric Biggers
826048fdccSJason A. Donenfeld# blake2s is used by the /dev/random driver which is always builtin
8339ee3970SEric Biggersobj-y += blake2s.o
8439ee3970SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_BLAKE2S_ARCH),y)
8539ee3970SEric BiggersCFLAGS_blake2s.o += -I$(src)/$(SRCARCH)
8639ee3970SEric Biggersobj-$(CONFIG_ARM) += arm/blake2s-core.o
8739ee3970SEric Biggersobj-$(CONFIG_X86) += x86/blake2s-core.o
8839ee3970SEric Biggersendif
8966d7fb94SJason A. Donenfeld
9013cecc52SEric Biggers################################################################################
9113cecc52SEric Biggers
9213cecc52SEric Biggers# chacha20_block() is used by the /dev/random driver which is always builtin
9313cecc52SEric Biggersobj-y += chacha-block-generic.o
9413cecc52SEric Biggers
9513cecc52SEric Biggersobj-$(CONFIG_CRYPTO_LIB_CHACHA) += libchacha.o
9613cecc52SEric Biggerslibchacha-y := chacha.o
9713cecc52SEric Biggers
9813cecc52SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_CHACHA_ARCH),y)
9913cecc52SEric BiggersCFLAGS_chacha.o += -I$(src)/$(SRCARCH)
10013cecc52SEric Biggers
10113cecc52SEric Biggersifeq ($(CONFIG_ARM),y)
10213cecc52SEric Biggerslibchacha-y += arm/chacha-scalar-core.o
10313cecc52SEric Biggerslibchacha-$(CONFIG_KERNEL_MODE_NEON) += arm/chacha-neon-core.o
10413cecc52SEric Biggersendif
10513cecc52SEric Biggers
10613cecc52SEric Biggerslibchacha-$(CONFIG_ARM64) += arm64/chacha-neon-core.o
10713cecc52SEric Biggers
10813cecc52SEric Biggersifeq ($(CONFIG_MIPS),y)
10913cecc52SEric Biggerslibchacha-y += mips/chacha-core.o
11013cecc52SEric BiggersAFLAGS_mips/chacha-core.o += -O2 # needed to fill branch delay slots
11113cecc52SEric Biggersendif
11213cecc52SEric Biggers
11313cecc52SEric Biggerslibchacha-$(CONFIG_PPC) += powerpc/chacha-p10le-8x.o
11413cecc52SEric Biggerslibchacha-$(CONFIG_RISCV) += riscv/chacha-riscv64-zvkb.o
11513cecc52SEric Biggerslibchacha-$(CONFIG_S390) += s390/chacha-s390.o
11613cecc52SEric Biggerslibchacha-$(CONFIG_X86) += x86/chacha-ssse3-x86_64.o \
11713cecc52SEric Biggers			   x86/chacha-avx2-x86_64.o \
11813cecc52SEric Biggers			   x86/chacha-avx512vl-x86_64.o
11913cecc52SEric Biggersendif # CONFIG_CRYPTO_LIB_CHACHA_ARCH
12013cecc52SEric Biggers
12113cecc52SEric Biggers################################################################################
12213cecc52SEric Biggers
123ed20078bSArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_CHACHA20POLY1305)	+= libchacha20poly1305.o
124ed20078bSArd Biesheuvellibchacha20poly1305-y				+= chacha20poly1305.o
12540b99697SEric Biggerslibchacha20poly1305-$(CONFIG_CRYPTO_SELFTESTS)	+= chacha20poly1305-selftest.o
126ed20078bSArd Biesheuvel
12768546e56SEric Biggers################################################################################
12868546e56SEric Biggers
12968546e56SEric Biggersobj-$(CONFIG_CRYPTO_LIB_CURVE25519) += libcurve25519.o
13068546e56SEric Biggerslibcurve25519-y := curve25519.o
13168546e56SEric Biggers
13268546e56SEric Biggers# Disable GCOV in odd or sensitive code
13368546e56SEric BiggersGCOV_PROFILE_curve25519.o := n
13468546e56SEric Biggers
13568546e56SEric Biggersifeq ($(CONFIG_ARCH_SUPPORTS_INT128),y)
13668546e56SEric Biggerslibcurve25519-$(CONFIG_CRYPTO_LIB_CURVE25519_GENERIC) += curve25519-hacl64.o
13768546e56SEric Biggerselse
13868546e56SEric Biggerslibcurve25519-$(CONFIG_CRYPTO_LIB_CURVE25519_GENERIC) += curve25519-fiat32.o
13968546e56SEric Biggersendif
1402f13daeeSNathan Chancellor# clang versions prior to 18 may blow out the stack with KASAN
1412b81082aSNathan Chancellorifeq ($(CONFIG_CC_IS_CLANG)_$(call clang-min-version, 180000),y_)
1422f13daeeSNathan ChancellorKASAN_SANITIZE_curve25519-hacl64.o := n
1432f13daeeSNathan Chancellorendif
144a8bdf2c4SHerbert Xu
14568546e56SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_CURVE25519_ARCH),y)
14668546e56SEric BiggersCFLAGS_curve25519.o += -I$(src)/$(SRCARCH)
14768546e56SEric Biggerslibcurve25519-$(CONFIG_ARM) += arm/curve25519-core.o
14868546e56SEric Biggerslibcurve25519-$(CONFIG_PPC) += powerpc/curve25519-ppc64le_asm.o
14968546e56SEric Biggersendif
15068546e56SEric Biggers
15168546e56SEric Biggers################################################################################
1520ed42a6fSJason A. Donenfeld
15304007b0eSArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_DES)			+= libdes.o
15404007b0eSArd Biesheuvellibdes-y					:= des.o
15501d3aee8SHans de Goede
156e1644613SEric Biggers################################################################################
157e1644613SEric Biggers
15861f66c52SEric Biggersobj-$(CONFIG_CRYPTO_LIB_GF128HASH) += libgf128hash.o
15961f66c52SEric Biggerslibgf128hash-y := gf128hash.o
16061f66c52SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_GF128HASH_ARCH),y)
16161f66c52SEric BiggersCFLAGS_gf128hash.o += -I$(src)/$(SRCARCH)
16271e59795SEric Biggerslibgf128hash-$(CONFIG_ARM) += arm/ghash-neon-core.o
163a336c01fSEric Biggerslibgf128hash-$(CONFIG_ARM64) += arm64/ghash-neon-core.o \
164a336c01fSEric Biggers				arm64/polyval-ce-core.o
16573f315c1SEric Biggers
16673f315c1SEric Biggersifeq ($(CONFIG_PPC),y)
16773f315c1SEric Biggerslibgf128hash-y += powerpc/ghashp8-ppc.o
16873f315c1SEric Biggersquiet_cmd_perlasm_ghash = PERLASM $@
16973f315c1SEric Biggers      cmd_perlasm_ghash = $(PERL) $< $(ppc64-perlasm-flavour-y) $@
17073f315c1SEric Biggers$(obj)/powerpc/ghashp8-ppc.S: $(src)/powerpc/ghashp8-ppc.pl FORCE
17173f315c1SEric Biggers	$(call if_changed,perlasm_ghash)
17273f315c1SEric Biggerstargets += powerpc/ghashp8-ppc.S
17373f315c1SEric BiggersOBJECT_FILES_NON_STANDARD_powerpc/ghashp8-ppc.o := y
17461f66c52SEric Biggersendif
17561f66c52SEric Biggers
176*af413d71SEric Biggerslibgf128hash-$(CONFIG_RISCV) += riscv/ghash-riscv64-zvkg.o
17773f315c1SEric Biggerslibgf128hash-$(CONFIG_X86) += x86/polyval-pclmul-avx.o
17873f315c1SEric Biggersendif # CONFIG_CRYPTO_LIB_GF128HASH_ARCH
17973f315c1SEric Biggers
18073f315c1SEric Biggers# clean-files must be defined unconditionally
18173f315c1SEric Biggersclean-files += powerpc/ghashp8-ppc.S
18273f315c1SEric Biggers
18361f66c52SEric Biggers################################################################################
18461f66c52SEric Biggers
185e1644613SEric Biggersobj-$(CONFIG_CRYPTO_LIB_MD5) += libmd5.o
186e1644613SEric Biggerslibmd5-y := md5.o
187e1644613SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_MD5_ARCH),y)
188e1644613SEric BiggersCFLAGS_md5.o += -I$(src)/$(SRCARCH)
18909371e13SEric Biggerslibmd5-$(CONFIG_PPC) += powerpc/md5-asm.o
190a1848f6eSEric Biggerslibmd5-$(CONFIG_SPARC) += sparc/md5_asm.o
191e1644613SEric Biggersendif # CONFIG_CRYPTO_LIB_MD5_ARCH
192e1644613SEric Biggers
193e1644613SEric Biggers################################################################################
194e1644613SEric Biggers
19564edcceaSEric Biggersobj-$(CONFIG_CRYPTO_LIB_MLDSA) += libmldsa.o
19664edcceaSEric Biggerslibmldsa-y := mldsa.o
19764edcceaSEric Biggers
19864edcceaSEric Biggers################################################################################
19964edcceaSEric Biggers
20014e15c71SEric Biggersobj-$(CONFIG_CRYPTO_LIB_NH) += libnh.o
20114e15c71SEric Biggerslibnh-y := nh.o
20214e15c71SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_NH_ARCH),y)
20314e15c71SEric BiggersCFLAGS_nh.o += -I$(src)/$(SRCARCH)
20429e39a11SEric Biggerslibnh-$(CONFIG_ARM) += arm/nh-neon-core.o
205b4a8528dSEric Biggerslibnh-$(CONFIG_ARM64) += arm64/nh-neon-core.o
206a229d832SEric Biggerslibnh-$(CONFIG_X86) += x86/nh-sse2.o x86/nh-avx2.o
20714e15c71SEric Biggersendif
20814e15c71SEric Biggers
20914e15c71SEric Biggers################################################################################
21014e15c71SEric Biggers
2119b9d4ef0SHerbert Xuobj-$(CONFIG_CRYPTO_LIB_POLY1305) += libpoly1305.o
212b646b782SEric Biggerslibpoly1305-y := poly1305.o
213b646b782SEric Biggersifeq ($(CONFIG_ARCH_SUPPORTS_INT128),y)
214b646b782SEric Biggerslibpoly1305-$(CONFIG_CRYPTO_LIB_POLY1305_GENERIC) += poly1305-donna64.o
215b646b782SEric Biggerselse
216b646b782SEric Biggerslibpoly1305-$(CONFIG_CRYPTO_LIB_POLY1305_GENERIC) += poly1305-donna32.o
217b646b782SEric Biggersendif
21848ea8c6eSArd Biesheuvel
219b646b782SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_POLY1305_ARCH),y)
220b646b782SEric BiggersCFLAGS_poly1305.o += -I$(src)/$(SRCARCH)
221b646b782SEric Biggers
222b646b782SEric Biggersifeq ($(CONFIG_ARM),y)
223b646b782SEric Biggerslibpoly1305-y += arm/poly1305-core.o
224b646b782SEric Biggers$(obj)/arm/poly1305-core.S: $(src)/arm/poly1305-armv4.pl
225b646b782SEric Biggers	$(call cmd,perlasm)
226b646b782SEric Biggers# massage the perlasm code a bit so we only get the NEON routine if we need it
227b646b782SEric Biggerspoly1305-aflags-$(CONFIG_CPU_V7) := -U__LINUX_ARM_ARCH__ -D__LINUX_ARM_ARCH__=5
228b646b782SEric Biggerspoly1305-aflags-$(CONFIG_KERNEL_MODE_NEON) := -U__LINUX_ARM_ARCH__ -D__LINUX_ARM_ARCH__=7
229b646b782SEric BiggersAFLAGS_arm/poly1305-core.o += $(poly1305-aflags-y) $(aflags-thumb2-y)
230b646b782SEric Biggersendif
231b646b782SEric Biggers
232b646b782SEric Biggersifeq ($(CONFIG_ARM64),y)
233b646b782SEric Biggerslibpoly1305-y += arm64/poly1305-core.o
234b646b782SEric Biggers$(obj)/arm64/poly1305-core.S: $(src)/arm64/poly1305-armv8.pl
235b646b782SEric Biggers	$(call cmd,perlasm_with_args)
236b646b782SEric Biggersendif
237b646b782SEric Biggers
238b646b782SEric Biggersifeq ($(CONFIG_MIPS),y)
239b646b782SEric Biggerslibpoly1305-y += mips/poly1305-core.o
240b646b782SEric Biggerspoly1305-perlasm-flavour-$(CONFIG_32BIT) := o32
241b646b782SEric Biggerspoly1305-perlasm-flavour-$(CONFIG_64BIT) := 64
242b646b782SEric Biggersquiet_cmd_perlasm_poly1305 = PERLASM $@
243b646b782SEric Biggers      cmd_perlasm_poly1305 = $(PERL) $< $(poly1305-perlasm-flavour-y) $@
244b646b782SEric Biggers# Use if_changed instead of cmd, in case the flavour changed.
245b646b782SEric Biggers$(obj)/mips/poly1305-core.S: $(src)/mips/poly1305-mips.pl FORCE
246b646b782SEric Biggers	$(call if_changed,perlasm_poly1305)
247b646b782SEric Biggerstargets += mips/poly1305-core.S
248b646b782SEric Biggersendif
249b646b782SEric Biggers
250b646b782SEric Biggerslibpoly1305-$(CONFIG_PPC) += powerpc/poly1305-p10le_64.o
251b646b782SEric Biggers
252bef9c755SZhihang Shaoifeq ($(CONFIG_RISCV),y)
253bef9c755SZhihang Shaolibpoly1305-y += riscv/poly1305-core.o
254bef9c755SZhihang Shaopoly1305-perlasm-flavour-$(CONFIG_32BIT) := 32
255bef9c755SZhihang Shaopoly1305-perlasm-flavour-$(CONFIG_64BIT) := 64
256bef9c755SZhihang Shaoquiet_cmd_perlasm_poly1305 = PERLASM $@
257bef9c755SZhihang Shao      cmd_perlasm_poly1305 = $(PERL) $< $(poly1305-perlasm-flavour-y) $@
258bef9c755SZhihang Shao# Use if_changed instead of cmd, in case the flavour changed.
259bef9c755SZhihang Shao$(obj)/riscv/poly1305-core.S: $(src)/riscv/poly1305-riscv.pl FORCE
260bef9c755SZhihang Shao	$(call if_changed,perlasm_poly1305)
261bef9c755SZhihang Shaotargets += riscv/poly1305-core.S
262bef9c755SZhihang ShaoAFLAGS_riscv/poly1305-core.o += -Dpoly1305_init=poly1305_block_init
263bef9c755SZhihang Shaoendif
264bef9c755SZhihang Shao
265b646b782SEric Biggersifeq ($(CONFIG_X86),y)
266b646b782SEric Biggerslibpoly1305-y += x86/poly1305-x86_64-cryptogams.o
267b646b782SEric Biggers$(obj)/x86/poly1305-x86_64-cryptogams.S: $(src)/x86/poly1305-x86_64-cryptogams.pl
268b646b782SEric Biggers	$(call cmd,perlasm)
269b646b782SEric Biggersendif
270b646b782SEric Biggers
271b646b782SEric Biggersendif # CONFIG_CRYPTO_LIB_POLY1305_ARCH
272b646b782SEric Biggers
273b646b782SEric Biggers# clean-files must be defined unconditionally
274b646b782SEric Biggersclean-files += arm/poly1305-core.S \
275b646b782SEric Biggers	       arm64/poly1305-core.S \
276b646b782SEric Biggers	       mips/poly1305-core.S \
277bef9c755SZhihang Shao	       riscv/poly1305-core.S \
278b646b782SEric Biggers	       x86/poly1305-x86_64-cryptogams.S
2799b9d4ef0SHerbert Xu
28090860aefSEric Biggers################################################################################
28190860aefSEric Biggers
282ec8f7f48SEric Biggersobj-$(CONFIG_CRYPTO_LIB_SHA1) += libsha1.o
283ec8f7f48SEric Biggerslibsha1-y := sha1.o
28490860aefSEric Biggersifeq ($(CONFIG_CRYPTO_LIB_SHA1_ARCH),y)
28590860aefSEric BiggersCFLAGS_sha1.o += -I$(src)/$(SRCARCH)
28670cb6ca5SEric Biggersifeq ($(CONFIG_ARM),y)
28770cb6ca5SEric Biggerslibsha1-y += arm/sha1-armv4-large.o
28870cb6ca5SEric Biggerslibsha1-$(CONFIG_KERNEL_MODE_NEON) += arm/sha1-armv7-neon.o \
28970cb6ca5SEric Biggers				      arm/sha1-ce-core.o
29070cb6ca5SEric Biggersendif
29100d549bbSEric Biggerslibsha1-$(CONFIG_ARM64) += arm64/sha1-ce-core.o
2926b9ae8cfSEric Biggersifeq ($(CONFIG_PPC),y)
2936b9ae8cfSEric Biggerslibsha1-y += powerpc/sha1-powerpc-asm.o
2946b9ae8cfSEric Biggerslibsha1-$(CONFIG_SPE) += powerpc/sha1-spe-asm.o
2956b9ae8cfSEric Biggersendif
296c7510599SEric Biggerslibsha1-$(CONFIG_SPARC) += sparc/sha1_asm.o
297f3d6cb3dSEric Biggerslibsha1-$(CONFIG_X86) += x86/sha1-ssse3-and-avx.o \
298f3d6cb3dSEric Biggers			 x86/sha1-avx2-asm.o \
299f3d6cb3dSEric Biggers			 x86/sha1-ni-asm.o
30090860aefSEric Biggersendif # CONFIG_CRYPTO_LIB_SHA1_ARCH
301463f7408SEric Biggers
302e96cb950SEric Biggers################################################################################
303e96cb950SEric Biggers
30401d3aee8SHans de Goedeobj-$(CONFIG_CRYPTO_LIB_SHA256) += libsha256.o
30501d3aee8SHans de Goedelibsha256-y := sha256.o
306e96cb950SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_SHA256_ARCH),y)
307e96cb950SEric BiggersCFLAGS_sha256.o += -I$(src)/$(SRCARCH)
30866d7fb94SJason A. Donenfeld
309e96cb950SEric Biggersifeq ($(CONFIG_ARM),y)
310e96cb950SEric Biggerslibsha256-y += arm/sha256-ce.o arm/sha256-core.o
311e96cb950SEric Biggers$(obj)/arm/sha256-core.S: $(src)/arm/sha256-armv4.pl
312e96cb950SEric Biggers	$(call cmd,perlasm)
313e96cb950SEric BiggersAFLAGS_arm/sha256-core.o += $(aflags-thumb2-y)
314e96cb950SEric Biggersendif
315e96cb950SEric Biggers
316e96cb950SEric Biggersifeq ($(CONFIG_ARM64),y)
317c2db2288SEric Biggerslibsha256-y += arm64/sha256-ce.o arm64/sha256-core.o
318e96cb950SEric Biggers$(obj)/arm64/sha256-core.S: $(src)/arm64/sha2-armv8.pl
319e96cb950SEric Biggers	$(call cmd,perlasm_with_args)
320e96cb950SEric Biggersendif
321e96cb950SEric Biggers
322e96cb950SEric Biggerslibsha256-$(CONFIG_PPC) += powerpc/sha256-spe-asm.o
323e96cb950SEric Biggerslibsha256-$(CONFIG_RISCV) += riscv/sha256-riscv64-zvknha_or_zvknhb-zvkb.o
324e96cb950SEric Biggerslibsha256-$(CONFIG_SPARC) += sparc/sha256_asm.o
325e96cb950SEric Biggerslibsha256-$(CONFIG_X86) += x86/sha256-ssse3-asm.o \
326e96cb950SEric Biggers			   x86/sha256-avx-asm.o \
327e96cb950SEric Biggers			   x86/sha256-avx2-asm.o \
328e96cb950SEric Biggers			   x86/sha256-ni-asm.o
329e96cb950SEric Biggersendif # CONFIG_CRYPTO_LIB_SHA256_ARCH
330e96cb950SEric Biggers
331e96cb950SEric Biggers################################################################################
332950e5c84SEric Biggers
333b693c703SEric Biggersobj-$(CONFIG_CRYPTO_LIB_SHA512) += libsha512.o
334b693c703SEric Biggerslibsha512-y := sha512.o
335b693c703SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_SHA512_ARCH),y)
336b693c703SEric BiggersCFLAGS_sha512.o += -I$(src)/$(SRCARCH)
33724c91b62SEric Biggers
33824c91b62SEric Biggersifeq ($(CONFIG_ARM),y)
33924c91b62SEric Biggerslibsha512-y += arm/sha512-core.o
34024c91b62SEric Biggers$(obj)/arm/sha512-core.S: $(src)/arm/sha512-armv4.pl
34124c91b62SEric Biggers	$(call cmd,perlasm)
34224c91b62SEric BiggersAFLAGS_arm/sha512-core.o += $(aflags-thumb2-y)
34324c91b62SEric Biggersendif
34424c91b62SEric Biggers
34560e3f1e9SEric Biggersifeq ($(CONFIG_ARM64),y)
346c2db2288SEric Biggerslibsha512-y += arm64/sha512-ce-core.o arm64/sha512-core.o
34761f86c70SEric Biggers$(obj)/arm64/sha512-core.S: $(src)/arm64/sha2-armv8.pl
34860e3f1e9SEric Biggers	$(call cmd,perlasm_with_args)
34960e3f1e9SEric Biggersendif
350b59059a2SEric Biggers
351b59059a2SEric Biggerslibsha512-$(CONFIG_RISCV) += riscv/sha512-riscv64-zvknhb-zvkb.o
35202b35babSEric Biggerslibsha512-$(CONFIG_SPARC) += sparc/sha512_asm.o
353484c1811SEric Biggerslibsha512-$(CONFIG_X86) += x86/sha512-ssse3-asm.o \
354484c1811SEric Biggers			   x86/sha512-avx-asm.o \
355484c1811SEric Biggers			   x86/sha512-avx2-asm.o
356b693c703SEric Biggersendif # CONFIG_CRYPTO_LIB_SHA512_ARCH
357b693c703SEric Biggers
358e96cb950SEric Biggers################################################################################
359e96cb950SEric Biggers
36005934472SDavid Howellsobj-$(CONFIG_CRYPTO_LIB_SHA3) += libsha3.o
36105934472SDavid Howellslibsha3-y := sha3.o
36205934472SDavid Howells
3631e29a750SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_SHA3_ARCH),y)
3641e29a750SEric BiggersCFLAGS_sha3.o += -I$(src)/$(SRCARCH)
3651e29a750SEric Biggerslibsha3-$(CONFIG_ARM64) += arm64/sha3-ce-core.o
3661e29a750SEric Biggersendif # CONFIG_CRYPTO_LIB_SHA3_ARCH
3671e29a750SEric Biggers
36805934472SDavid Howells################################################################################
36905934472SDavid Howells
3702a598d0bSHerbert Xuobj-$(CONFIG_MPILIB) += mpi/
3714964a1d9SEric Biggers
372ac90aad0SEric Biggersobj-$(CONFIG_CRYPTO_SELFTESTS_FULL)		+= simd.o
373f4065b2fSHerbert Xu
374f4065b2fSHerbert Xuobj-$(CONFIG_CRYPTO_LIB_SM3)			+= libsm3.o
375f4065b2fSHerbert Xulibsm3-y					:= sm3.o
3764a32e5dcSEric Biggers
377fd7e5de4STal Zussman# clean-files must be defined unconditionally
378fd7e5de4STal Zussmanclean-files += arm/sha256-core.S arm/sha512-core.S
379fd7e5de4STal Zussmanclean-files += arm64/sha256-core.S arm64/sha512-core.S
380