Makefile 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. obj-$(CONFIG_CRYPTO_SHA1_ARM64_CE) += sha1-ce.o
  11. sha1-ce-y := sha1-ce-glue.o sha1-ce-core.o
  12. obj-$(CONFIG_CRYPTO_SHA2_ARM64_CE) += sha2-ce.o
  13. sha2-ce-y := sha2-ce-glue.o sha2-ce-core.o
  14. obj-$(CONFIG_CRYPTO_SHA512_ARM64_CE) += sha512-ce.o
  15. sha512-ce-y := sha512-ce-glue.o sha512-ce-core.o
  16. obj-$(CONFIG_CRYPTO_SHA3_ARM64) += sha3-ce.o
  17. sha3-ce-y := sha3-ce-glue.o sha3-ce-core.o
  18. obj-$(CONFIG_CRYPTO_SM3_ARM64_CE) += sm3-ce.o
  19. sm3-ce-y := sm3-ce-glue.o sm3-ce-core.o
  20. obj-$(CONFIG_CRYPTO_SM4_ARM64_CE) += sm4-ce.o
  21. sm4-ce-y := sm4-ce-glue.o sm4-ce-core.o
  22. obj-$(CONFIG_CRYPTO_GHASH_ARM64_CE) += ghash-ce.o
  23. ghash-ce-y := ghash-ce-glue.o ghash-ce-core.o
  24. obj-$(CONFIG_CRYPTO_CRCT10DIF_ARM64_CE) += crct10dif-ce.o
  25. crct10dif-ce-y := crct10dif-ce-core.o crct10dif-ce-glue.o
  26. obj-$(CONFIG_CRYPTO_CRC32_ARM64_CE) += crc32-ce.o
  27. crc32-ce-y:= crc32-ce-core.o crc32-ce-glue.o
  28. obj-$(CONFIG_CRYPTO_AES_ARM64_CE) += aes-ce-cipher.o
  29. aes-ce-cipher-y := aes-ce-core.o aes-ce-glue.o
  30. obj-$(CONFIG_CRYPTO_AES_ARM64_CE_CCM) += aes-ce-ccm.o
  31. aes-ce-ccm-y := aes-ce-ccm-glue.o aes-ce-ccm-core.o
  32. obj-$(CONFIG_CRYPTO_AES_ARM64_CE_BLK) += aes-ce-blk.o
  33. aes-ce-blk-y := aes-glue-ce.o aes-ce.o
  34. obj-$(CONFIG_CRYPTO_AES_ARM64_NEON_BLK) += aes-neon-blk.o
  35. aes-neon-blk-y := aes-glue-neon.o aes-neon.o
  36. obj-$(CONFIG_CRYPTO_SHA256_ARM64) += sha256-arm64.o
  37. sha256-arm64-y := sha256-glue.o sha256-core.o
  38. obj-$(CONFIG_CRYPTO_SHA512_ARM64) += sha512-arm64.o
  39. sha512-arm64-y := sha512-glue.o sha512-core.o
  40. obj-$(CONFIG_CRYPTO_CHACHA20_NEON) += chacha20-neon.o
  41. chacha20-neon-y := chacha20-neon-core.o chacha20-neon-glue.o
  42. obj-$(CONFIG_CRYPTO_AES_ARM64) += aes-arm64.o
  43. aes-arm64-y := aes-cipher-core.o aes-cipher-glue.o
  44. obj-$(CONFIG_CRYPTO_AES_ARM64_BS) += aes-neon-bs.o
  45. aes-neon-bs-y := aes-neonbs-core.o aes-neonbs-glue.o
  46. CFLAGS_aes-glue-ce.o := -DUSE_V8_CRYPTO_EXTENSIONS
  47. $(obj)/aes-glue-%.o: $(src)/aes-glue.c FORCE
  48. $(call if_changed_rule,cc_o_c)
  49. ifdef REGENERATE_ARM64_CRYPTO
  50. quiet_cmd_perlasm = PERLASM $@
  51. cmd_perlasm = $(PERL) $(<) void $(@)
  52. $(src)/sha256-core.S_shipped: $(src)/sha512-armv8.pl
  53. $(call cmd,perlasm)
  54. $(src)/sha512-core.S_shipped: $(src)/sha512-armv8.pl
  55. $(call cmd,perlasm)
  56. endif
  57. targets += sha256-core.S sha512-core.S