blob: 7bc4bda6d9c63494c1d4afee543488d6b3e2bb9a [file] [log] [blame]
Ard Biesheuvel2c988332014-03-06 16:23:33 +08001#
2# linux/arch/arm64/crypto/Makefile
3#
4# Copyright (C) 2014 Linaro Ltd <ard.biesheuvel@linaro.org>
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License version 2 as
8# published by the Free Software Foundation.
9#
10
11obj-$(CONFIG_CRYPTO_SHA1_ARM64_CE) += sha1-ce.o
12sha1-ce-y := sha1-ce-glue.o sha1-ce-core.o
Ard Biesheuvel6ba6c742014-03-20 15:35:40 +010013
14obj-$(CONFIG_CRYPTO_SHA2_ARM64_CE) += sha2-ce.o
15sha2-ce-y := sha2-ce-glue.o sha2-ce-core.o
Ard Biesheuvelfdd23892014-03-26 20:53:05 +010016
Ard Biesheuvelbb6c8c42018-01-09 18:23:02 +000017obj-$(CONFIG_CRYPTO_SHA512_ARM64_CE) += sha512-ce.o
18sha512-ce-y := sha512-ce-glue.o sha512-ce-core.o
19
Ard Biesheuvel15d59102018-01-19 12:04:38 +000020obj-$(CONFIG_CRYPTO_SHA3_ARM64) += sha3-ce.o
21sha3-ce-y := sha3-ce-glue.o sha3-ce-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
Ard Biesheuvele99ce922018-04-25 14:20:46 +020026obj-$(CONFIG_CRYPTO_SM4_ARM64_CE) += sm4-ce.o
27sm4-ce-y := sm4-ce-glue.o sm4-ce-core.o
28
Ard Biesheuvelfdd23892014-03-26 20:53:05 +010029obj-$(CONFIG_CRYPTO_GHASH_ARM64_CE) += ghash-ce.o
30ghash-ce-y := ghash-ce-glue.o ghash-ce-core.o
Ard Biesheuvel317f2f72014-02-05 18:13:38 +010031
Ard Biesheuvel6ef57372016-12-05 18:42:25 +000032obj-$(CONFIG_CRYPTO_CRCT10DIF_ARM64_CE) += crct10dif-ce.o
33crct10dif-ce-y := crct10dif-ce-core.o crct10dif-ce-glue.o
34
Ard Biesheuvel8fefde92016-12-05 18:42:27 +000035obj-$(CONFIG_CRYPTO_CRC32_ARM64_CE) += crc32-ce.o
36crc32-ce-y:= crc32-ce-core.o crc32-ce-glue.o
37
Ard Biesheuvel317f2f72014-02-05 18:13:38 +010038obj-$(CONFIG_CRYPTO_AES_ARM64_CE) += aes-ce-cipher.o
Ard Biesheuvel019cd462017-11-21 13:40:17 +000039aes-ce-cipher-y := aes-ce-core.o aes-ce-glue.o
Ard Biesheuvela3fd8212014-02-10 11:26:29 +010040
41obj-$(CONFIG_CRYPTO_AES_ARM64_CE_CCM) += aes-ce-ccm.o
42aes-ce-ccm-y := aes-ce-ccm-glue.o aes-ce-ccm-core.o
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010043
44obj-$(CONFIG_CRYPTO_AES_ARM64_CE_BLK) += aes-ce-blk.o
45aes-ce-blk-y := aes-glue-ce.o aes-ce.o
46
47obj-$(CONFIG_CRYPTO_AES_ARM64_NEON_BLK) += aes-neon-blk.o
48aes-neon-blk-y := aes-glue-neon.o aes-neon.o
49
Ard Biesheuvel7918ece2016-11-20 11:42:01 +000050obj-$(CONFIG_CRYPTO_SHA256_ARM64) += sha256-arm64.o
51sha256-arm64-y := sha256-glue.o sha256-core.o
52
53obj-$(CONFIG_CRYPTO_SHA512_ARM64) += sha512-arm64.o
54sha512-arm64-y := sha512-glue.o sha512-core.o
55
Ard Biesheuvelb7171ce2017-01-11 16:41:49 +000056obj-$(CONFIG_CRYPTO_CHACHA20_NEON) += chacha20-neon.o
57chacha20-neon-y := chacha20-neon-core.o chacha20-neon-glue.o
58
Ard Biesheuvelbed593c2017-01-11 16:41:52 +000059obj-$(CONFIG_CRYPTO_AES_ARM64) += aes-arm64.o
60aes-arm64-y := aes-cipher-core.o aes-cipher-glue.o
61
Ard Biesheuvel1abee992017-01-11 16:41:55 +000062obj-$(CONFIG_CRYPTO_AES_ARM64_BS) += aes-neon-bs.o
63aes-neon-bs-y := aes-neonbs-core.o aes-neonbs-glue.o
64
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010065CFLAGS_aes-glue-ce.o := -DUSE_V8_CRYPTO_EXTENSIONS
66
67$(obj)/aes-glue-%.o: $(src)/aes-glue.c FORCE
Andreas Schwab7c2105f2014-07-24 17:03:26 +010068 $(call if_changed_rule,cc_o_c)
Ard Biesheuvel7918ece2016-11-20 11:42:01 +000069
Leonard Crestez6aaf49b2018-03-13 22:17:23 +020070ifdef REGENERATE_ARM64_CRYPTO
Ard Biesheuvel7918ece2016-11-20 11:42:01 +000071quiet_cmd_perlasm = PERLASM $@
72 cmd_perlasm = $(PERL) $(<) void $(@)
73
74$(src)/sha256-core.S_shipped: $(src)/sha512-armv8.pl
75 $(call cmd,perlasm)
76
77$(src)/sha512-core.S_shipped: $(src)/sha512-armv8.pl
78 $(call cmd,perlasm)
Leonard Crestez6aaf49b2018-03-13 22:17:23 +020079endif
Ard Biesheuvel7918ece2016-11-20 11:42:01 +000080
Masahiro Yamada54a702f2018-03-23 22:04:39 +090081targets += sha256-core.S sha512-core.S