blob: fbe64dce66e0af7d385bbe6496d8cb41b0e02678 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001# SPDX-License-Identifier: GPL-2.0-only
Ard Biesheuvel2c988332014-03-06 16:23:33 +08002#
3# linux/arch/arm64/crypto/Makefile
4#
5# Copyright (C) 2014 Linaro Ltd <ard.biesheuvel@linaro.org>
6#
Ard Biesheuvel2c988332014-03-06 16:23:33 +08007
8obj-$(CONFIG_CRYPTO_SHA1_ARM64_CE) += sha1-ce.o
9sha1-ce-y := sha1-ce-glue.o sha1-ce-core.o
Ard Biesheuvel6ba6c742014-03-20 15:35:40 +010010
11obj-$(CONFIG_CRYPTO_SHA2_ARM64_CE) += sha2-ce.o
12sha2-ce-y := sha2-ce-glue.o sha2-ce-core.o
Ard Biesheuvelfdd23892014-03-26 20:53:05 +010013
Ard Biesheuvelbb6c8c42018-01-09 18:23:02 +000014obj-$(CONFIG_CRYPTO_SHA512_ARM64_CE) += sha512-ce.o
15sha512-ce-y := sha512-ce-glue.o sha512-ce-core.o
16
Ard Biesheuvel15d59102018-01-19 12:04:38 +000017obj-$(CONFIG_CRYPTO_SHA3_ARM64) += sha3-ce.o
18sha3-ce-y := sha3-ce-glue.o sha3-ce-core.o
19
Tianjia Zhanga41b2122022-10-27 14:54:54 +080020obj-$(CONFIG_CRYPTO_SM3_NEON) += sm3-neon.o
21sm3-neon-y := sm3-neon-glue.o sm3-neon-core.o
22
Ard Biesheuvel140aa502018-01-19 12:04:39 +000023obj-$(CONFIG_CRYPTO_SM3_ARM64_CE) += sm3-ce.o
24sm3-ce-y := sm3-ce-glue.o sm3-ce-core.o
25
Tianjia Zhang02436762022-03-15 17:44:52 +080026obj-$(CONFIG_CRYPTO_SM4_ARM64_CE) += sm4-ce-cipher.o
27sm4-ce-cipher-y := sm4-ce-cipher-glue.o sm4-ce-cipher-core.o
Ard Biesheuvele99ce922018-04-25 14:20:46 +020028
Tianjia Zhang5b33e0e2022-03-15 17:44:54 +080029obj-$(CONFIG_CRYPTO_SM4_ARM64_CE_BLK) += sm4-ce.o
30sm4-ce-y := sm4-ce-glue.o sm4-ce-core.o
31
Tianjia Zhang67fa3a72022-10-27 14:55:04 +080032obj-$(CONFIG_CRYPTO_SM4_ARM64_CE_CCM) += sm4-ce-ccm.o
33sm4-ce-ccm-y := sm4-ce-ccm-glue.o sm4-ce-ccm-core.o
34
Tianjia Zhangae1b83c2022-10-27 14:55:05 +080035obj-$(CONFIG_CRYPTO_SM4_ARM64_CE_GCM) += sm4-ce-gcm.o
36sm4-ce-gcm-y := sm4-ce-gcm-glue.o sm4-ce-gcm-core.o
37
Tianjia Zhang4f1aef92022-03-15 17:44:53 +080038obj-$(CONFIG_CRYPTO_SM4_ARM64_NEON_BLK) += sm4-neon.o
39sm4-neon-y := sm4-neon-glue.o sm4-neon-core.o
40
Ard Biesheuvelfdd23892014-03-26 20:53:05 +010041obj-$(CONFIG_CRYPTO_GHASH_ARM64_CE) += ghash-ce.o
42ghash-ce-y := ghash-ce-glue.o ghash-ce-core.o
Ard Biesheuvel317f2f72014-02-05 18:13:38 +010043
Nathan Huckleberry9d2c0b42022-05-20 18:15:00 +000044obj-$(CONFIG_CRYPTO_POLYVAL_ARM64_CE) += polyval-ce.o
45polyval-ce-y := polyval-ce-glue.o polyval-ce-core.o
46
Ard Biesheuvel6ef57372016-12-05 18:42:25 +000047obj-$(CONFIG_CRYPTO_CRCT10DIF_ARM64_CE) += crct10dif-ce.o
48crct10dif-ce-y := crct10dif-ce-core.o crct10dif-ce-glue.o
49
Ard Biesheuvel317f2f72014-02-05 18:13:38 +010050obj-$(CONFIG_CRYPTO_AES_ARM64_CE) += aes-ce-cipher.o
Ard Biesheuvel019cd462017-11-21 13:40:17 +000051aes-ce-cipher-y := aes-ce-core.o aes-ce-glue.o
Ard Biesheuvela3fd8212014-02-10 11:26:29 +010052
53obj-$(CONFIG_CRYPTO_AES_ARM64_CE_CCM) += aes-ce-ccm.o
54aes-ce-ccm-y := aes-ce-ccm-glue.o aes-ce-ccm-core.o
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010055
56obj-$(CONFIG_CRYPTO_AES_ARM64_CE_BLK) += aes-ce-blk.o
57aes-ce-blk-y := aes-glue-ce.o aes-ce.o
58
59obj-$(CONFIG_CRYPTO_AES_ARM64_NEON_BLK) += aes-neon-blk.o
60aes-neon-blk-y := aes-glue-neon.o aes-neon.o
61
Ard Biesheuvel7918ece2016-11-20 11:42:01 +000062obj-$(CONFIG_CRYPTO_SHA256_ARM64) += sha256-arm64.o
63sha256-arm64-y := sha256-glue.o sha256-core.o
64
65obj-$(CONFIG_CRYPTO_SHA512_ARM64) += sha512-arm64.o
66sha512-arm64-y := sha512-glue.o sha512-core.o
67
Eric Biggers95a34b72018-12-03 19:52:51 -080068obj-$(CONFIG_CRYPTO_CHACHA20_NEON) += chacha-neon.o
69chacha-neon-y := chacha-neon-core.o chacha-neon-glue.o
Ard Biesheuvelb7171ce2017-01-11 16:41:49 +000070
Ard Biesheuvelf569ca12019-11-08 13:22:24 +010071obj-$(CONFIG_CRYPTO_POLY1305_NEON) += poly1305-neon.o
72poly1305-neon-y := poly1305-core.o poly1305-glue.o
73AFLAGS_poly1305-core.o += -Dpoly1305_init=poly1305_init_arm64
74
Eric Biggersa00fa0c2018-12-03 19:52:49 -080075obj-$(CONFIG_CRYPTO_NHPOLY1305_NEON) += nhpoly1305-neon.o
76nhpoly1305-neon-y := nh-neon-core.o nhpoly1305-neon-glue.o
77
Ard Biesheuvelbed593c2017-01-11 16:41:52 +000078obj-$(CONFIG_CRYPTO_AES_ARM64) += aes-arm64.o
79aes-arm64-y := aes-cipher-core.o aes-cipher-glue.o
80
Ard Biesheuvel1abee992017-01-11 16:41:55 +000081obj-$(CONFIG_CRYPTO_AES_ARM64_BS) += aes-neon-bs.o
82aes-neon-bs-y := aes-neonbs-core.o aes-neonbs-glue.o
83
Ard Biesheuvel7918ece2016-11-20 11:42:01 +000084quiet_cmd_perlasm = PERLASM $@
85 cmd_perlasm = $(PERL) $(<) void $(@)
86
Masahiro Yamada20632572021-04-26 02:57:34 +090087$(obj)/%-core.S: $(src)/%-armv8.pl
Ard Biesheuvelf569ca12019-11-08 13:22:24 +010088 $(call cmd,perlasm)
89
Masahiro Yamada12dd4612021-04-26 02:57:33 +090090$(obj)/sha256-core.S: $(src)/sha512-armv8.pl
Ard Biesheuvel7918ece2016-11-20 11:42:01 +000091 $(call cmd,perlasm)
92
Ard Biesheuvelf569ca12019-11-08 13:22:24 +010093clean-files += poly1305-core.S sha256-core.S sha512-core.S