David S. Miller | 4ff28d4 | 2012-08-19 15:41:53 -0700 | [diff] [blame] | 1 | # |
| 2 | # Arch-specific CryptoAPI modules. |
| 3 | # |
| 4 | |
| 5 | obj-$(CONFIG_CRYPTO_SHA1_SPARC64) += sha1-sparc64.o |
David S. Miller | 86c93b2 | 2012-08-19 17:11:37 -0700 | [diff] [blame] | 6 | obj-$(CONFIG_CRYPTO_SHA256_SPARC64) += sha256-sparc64.o |
David S. Miller | 775e0c6 | 2012-08-19 17:37:56 -0700 | [diff] [blame] | 7 | obj-$(CONFIG_CRYPTO_SHA512_SPARC64) += sha512-sparc64.o |
David S. Miller | fa4dfed | 2012-08-19 21:51:26 -0700 | [diff] [blame] | 8 | obj-$(CONFIG_CRYPTO_MD5_SPARC64) += md5-sparc64.o |
David S. Miller | 4ff28d4 | 2012-08-19 15:41:53 -0700 | [diff] [blame] | 9 | |
David S. Miller | 9bf4852 | 2012-08-21 03:58:13 -0700 | [diff] [blame] | 10 | obj-$(CONFIG_CRYPTO_AES_SPARC64) += aes-sparc64.o |
David S. Miller | c5aac2d | 2012-08-25 22:37:23 -0700 | [diff] [blame] | 11 | obj-$(CONFIG_CRYPTO_DES_SPARC64) += des-sparc64.o |
David S. Miller | 81658ad | 2012-08-28 12:05:54 -0700 | [diff] [blame] | 12 | obj-$(CONFIG_CRYPTO_DES_SPARC64) += camellia-sparc64.o |
David S. Miller | 9bf4852 | 2012-08-21 03:58:13 -0700 | [diff] [blame] | 13 | |
David S. Miller | 442a7c4 | 2012-08-22 20:47:36 -0700 | [diff] [blame] | 14 | obj-$(CONFIG_CRYPTO_CRC32C_SPARC64) += crc32c-sparc64.o |
| 15 | |
David S. Miller | 226f7ce | 2012-11-09 20:53:32 -0800 | [diff] [blame] | 16 | sha1-sparc64-y := sha1_asm.o sha1_glue.o |
| 17 | sha256-sparc64-y := sha256_asm.o sha256_glue.o |
| 18 | sha512-sparc64-y := sha512_asm.o sha512_glue.o |
| 19 | md5-sparc64-y := md5_asm.o md5_glue.o |
David S. Miller | 9bf4852 | 2012-08-21 03:58:13 -0700 | [diff] [blame] | 20 | |
David S. Miller | 226f7ce | 2012-11-09 20:53:32 -0800 | [diff] [blame] | 21 | aes-sparc64-y := aes_asm.o aes_glue.o |
| 22 | des-sparc64-y := des_asm.o des_glue.o |
| 23 | camellia-sparc64-y := camellia_asm.o camellia_glue.o |
David S. Miller | 442a7c4 | 2012-08-22 20:47:36 -0700 | [diff] [blame] | 24 | |
David S. Miller | 226f7ce | 2012-11-09 20:53:32 -0800 | [diff] [blame] | 25 | crc32c-sparc64-y := crc32c_asm.o crc32c_glue.o |