]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm64/crypto/Makefile
UBUNTU: Ubuntu-4.13.0-45.50
[mirror_ubuntu-artful-kernel.git] / arch / arm64 / crypto / Makefile
CommitLineData
2c98833a
AB
1#
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
6ba6c74d
AB
13
14obj-$(CONFIG_CRYPTO_SHA2_ARM64_CE) += sha2-ce.o
15sha2-ce-y := sha2-ce-glue.o sha2-ce-core.o
fdd23894
AB
16
17obj-$(CONFIG_CRYPTO_GHASH_ARM64_CE) += ghash-ce.o
18ghash-ce-y := ghash-ce-glue.o ghash-ce-core.o
317f2f75 19
6ef5737f
AB
20obj-$(CONFIG_CRYPTO_CRCT10DIF_ARM64_CE) += crct10dif-ce.o
21crct10dif-ce-y := crct10dif-ce-core.o crct10dif-ce-glue.o
22
8fefde90
AB
23obj-$(CONFIG_CRYPTO_CRC32_ARM64_CE) += crc32-ce.o
24crc32-ce-y:= crc32-ce-core.o crc32-ce-glue.o
25
317f2f75
AB
26obj-$(CONFIG_CRYPTO_AES_ARM64_CE) += aes-ce-cipher.o
27CFLAGS_aes-ce-cipher.o += -march=armv8-a+crypto
a3fd8210
AB
28
29obj-$(CONFIG_CRYPTO_AES_ARM64_CE_CCM) += aes-ce-ccm.o
30aes-ce-ccm-y := aes-ce-ccm-glue.o aes-ce-ccm-core.o
49788fe2
AB
31
32obj-$(CONFIG_CRYPTO_AES_ARM64_CE_BLK) += aes-ce-blk.o
33aes-ce-blk-y := aes-glue-ce.o aes-ce.o
34
35obj-$(CONFIG_CRYPTO_AES_ARM64_NEON_BLK) += aes-neon-blk.o
36aes-neon-blk-y := aes-glue-neon.o aes-neon.o
37
7918ecef
AB
38obj-$(CONFIG_CRYPTO_SHA256_ARM64) += sha256-arm64.o
39sha256-arm64-y := sha256-glue.o sha256-core.o
40
41obj-$(CONFIG_CRYPTO_SHA512_ARM64) += sha512-arm64.o
42sha512-arm64-y := sha512-glue.o sha512-core.o
43
b7171ce9
AB
44obj-$(CONFIG_CRYPTO_CHACHA20_NEON) += chacha20-neon.o
45chacha20-neon-y := chacha20-neon-core.o chacha20-neon-glue.o
46
bed593c0
AB
47obj-$(CONFIG_CRYPTO_AES_ARM64) += aes-arm64.o
48aes-arm64-y := aes-cipher-core.o aes-cipher-glue.o
49
1abee99e
AB
50obj-$(CONFIG_CRYPTO_AES_ARM64_BS) += aes-neon-bs.o
51aes-neon-bs-y := aes-neonbs-core.o aes-neonbs-glue.o
52
0eee0fbd 53AFLAGS_aes-ce.o := -DINTERLEAVE=4
49788fe2
AB
54AFLAGS_aes-neon.o := -DINTERLEAVE=4
55
56CFLAGS_aes-glue-ce.o := -DUSE_V8_CRYPTO_EXTENSIONS
57
58$(obj)/aes-glue-%.o: $(src)/aes-glue.c FORCE
7c2105fb 59 $(call if_changed_rule,cc_o_c)
7918ecef
AB
60
61quiet_cmd_perlasm = PERLASM $@
62 cmd_perlasm = $(PERL) $(<) void $(@)
63
64$(src)/sha256-core.S_shipped: $(src)/sha512-armv8.pl
65 $(call cmd,perlasm)
66
67$(src)/sha512-core.S_shipped: $(src)/sha512-armv8.pl
68 $(call cmd,perlasm)
69
70.PRECIOUS: $(obj)/sha256-core.S $(obj)/sha512-core.S