blob: 550e02a5aa32941571ddc5a4c558eef16cae32c8 [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
17obj-$(CONFIG_CRYPTO_GHASH_ARM64_CE) += ghash-ce.o
18ghash-ce-y := ghash-ce-glue.o ghash-ce-core.o
Ard Biesheuvel317f2f72014-02-05 18:13:38 +010019
Sami Tolvanenda3bc262018-03-02 13:20:40 -080020obj-$(CONFIG_CRYPTO_AES_ARM64_CE) += aes-ce-cipher.o
21aes-ce-cipher-y := aes-ce-cipher-glue.o aes-ce-cipher-core.o
Sami Tolvanen7c20af02017-08-10 09:42:10 -070022CFLAGS_aes-ce-cipher-core.o += -march=armv8-a+crypto -Wa,-march=armv8-a+crypto $(DISABLE_LTO)
Ard Biesheuvela3fd8212014-02-10 11:26:29 +010023
24obj-$(CONFIG_CRYPTO_AES_ARM64_CE_CCM) += aes-ce-ccm.o
25aes-ce-ccm-y := aes-ce-ccm-glue.o aes-ce-ccm-core.o
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010026
27obj-$(CONFIG_CRYPTO_AES_ARM64_CE_BLK) += aes-ce-blk.o
28aes-ce-blk-y := aes-glue-ce.o aes-ce.o
29
30obj-$(CONFIG_CRYPTO_AES_ARM64_NEON_BLK) += aes-neon-blk.o
31aes-neon-blk-y := aes-glue-neon.o aes-neon.o
32
Ard Biesheuvel0eee0fb2015-02-19 17:25:16 +000033AFLAGS_aes-ce.o := -DINTERLEAVE=4
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010034AFLAGS_aes-neon.o := -DINTERLEAVE=4
35
36CFLAGS_aes-glue-ce.o := -DUSE_V8_CRYPTO_EXTENSIONS
37
Yazen Ghannamf6f203f2014-11-19 11:19:37 -060038obj-$(CONFIG_CRYPTO_CRC32_ARM64) += crc32-arm64.o
39
40CFLAGS_crc32-arm64.o := -mcpu=generic+crc
41
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010042$(obj)/aes-glue-%.o: $(src)/aes-glue.c FORCE
Andreas Schwab7c2105f2014-07-24 17:03:26 +010043 $(call if_changed_rule,cc_o_c)