diff options
| author | David McCullough <david_mccullough@mcafee.com> | 2012-09-06 16:17:02 -0400 |
|---|---|---|
| committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-09-06 16:17:02 -0400 |
| commit | f0be44f4fb1faee42635ca5ea06dc9c3e820a35d (patch) | |
| tree | 866c6016f7153ddff778a5eda036934e7eb426ac | |
| parent | 956c203c5e370c7beb766400b5c1a32ec570ce96 (diff) | |
arm/crypto: Add optimized AES and SHA1 routines
Add assembler versions of AES and SHA1 for ARM platforms. This has provided
up to a 50% improvement in IPsec/TCP throughout for tunnels using AES128/SHA1.
Platform CPU SPeed Endian Before (bps) After (bps) Improvement
IXP425 533 MHz big 11217042 15566294 ~38%
KS8695 166 MHz little 3828549 5795373 ~51%
Signed-off-by: David McCullough <ucdevel@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
| -rw-r--r-- | arch/arm/Makefile | 1 | ||||
| -rw-r--r-- | arch/arm/crypto/Makefile | 9 | ||||
| -rw-r--r-- | arch/arm/crypto/aes-armv4.S | 1112 | ||||
| -rw-r--r-- | arch/arm/crypto/aes_glue.c | 108 | ||||
| -rw-r--r-- | arch/arm/crypto/sha1-armv4-large.S | 503 | ||||
| -rw-r--r-- | arch/arm/crypto/sha1_glue.c | 179 | ||||
| -rw-r--r-- | crypto/Kconfig | 33 |
7 files changed, 1945 insertions, 0 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 30eae87ead6d..46038d756bf6 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile | |||
| @@ -255,6 +255,7 @@ core-$(CONFIG_VFP) += arch/arm/vfp/ | |||
| 255 | # If we have a machine-specific directory, then include it in the build. | 255 | # If we have a machine-specific directory, then include it in the build. |
| 256 | core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/ | 256 | core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/ |
| 257 | core-y += arch/arm/net/ | 257 | core-y += arch/arm/net/ |
| 258 | core-y += arch/arm/crypto/ | ||
| 258 | core-y += $(machdirs) $(platdirs) | 259 | core-y += $(machdirs) $(platdirs) |
| 259 | 260 | ||
| 260 | drivers-$(CONFIG_OPROFILE) += arch/arm/oprofile/ | 261 | drivers-$(CONFIG_OPROFILE) += arch/arm/oprofile/ |
diff --git a/arch/arm/crypto/Makefile b/arch/arm/crypto/Makefile new file mode 100644 index 000000000000..a2c83851bc90 --- /dev/null +++ b/arch/arm/crypto/Makefile | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | # | ||
| 2 | # Arch-specific CryptoAPI modules. | ||
| 3 | # | ||
| 4 | |||
| 5 | obj-$(CONFIG_CRYPTO_AES_ARM) += aes-arm.o | ||
| 6 | obj-$(CONFIG_CRYPTO_SHA1_ARM) += sha1-arm.o | ||
| 7 | |||
| 8 | aes-arm-y := aes-armv4.o aes_glue.o | ||
| 9 | sha1-arm-y := sha1-armv4-large.o sha1_glue.o | ||
diff --git a/arch/arm/crypto/aes-armv4.S b/arch/arm/crypto/aes-armv4.S new file mode 100644 index 000000000000..e59b1d505d6c --- /dev/null +++ b/arch/arm/crypto/aes-armv4.S | |||
| @@ -0,0 +1,1112 @@ | |||
| 1 | #define __ARM_ARCH__ __LINUX_ARM_ARCH__ | ||
| 2 | @ ==================================================================== | ||
| 3 | @ Written by Andy Polyakov <appro@fy.chalmers.se> for the OpenSSL | ||
| 4 | @ project. The module is, however, dual licensed under OpenSSL and | ||
| 5 | @ CRYPTOGAMS licenses depending on where you obtain it. For further | ||
| 6 | @ details see http://www.openssl.org/~appro/cryptogams/. | ||
| 7 | @ ==================================================================== | ||
| 8 | |||
| 9 | @ AES for ARMv4 | ||
| 10 | |||
| 11 | @ January 2007. | ||
| 12 | @ | ||
| 13 | @ Code uses single 1K S-box and is >2 times faster than code generated | ||
| 14 | @ by gcc-3.4.1. This is thanks to unique feature of ARMv4 ISA, which | ||
| 15 | @ allows to merge logical or arithmetic operation with shift or rotate | ||
| 16 | @ in one instruction and emit combined result every cycle. The module | ||
| 17 | @ is endian-neutral. The performance is ~42 cycles/byte for 128-bit | ||
| 18 | @ key [on single-issue Xscale PXA250 core]. | ||
| 19 | |||
| 20 | @ May 2007. | ||
| 21 | @ | ||
| 22 | @ AES_set_[en|de]crypt_key is added. | ||
| 23 | |||
| 24 | @ July 2010. | ||
| 25 | @ | ||
| 26 | @ Rescheduling for dual-issue pipeline resulted in 12% improvement on | ||
| 27 | @ Cortex A8 core and ~25 cycles per byte processed with 128-bit key. | ||
| 28 | |||
| 29 | @ February 2011. | ||
| 30 | @ | ||
| 31 | @ Profiler-assisted and platform-specific optimization resulted in 16% | ||
| 32 | @ improvement on Cortex A8 core and ~21.5 cycles per byte. | ||
| 33 | |||
| 34 | @ A little glue here to select the correct code below for the ARM CPU | ||
| 35 | @ that is being targetted. | ||
| 36 | |||
| 37 | .text | ||
| 38 | .code 32 | ||
| 39 | |||
| 40 | .type AES_Te,%object | ||
| 41 | .align 5 | ||
| 42 | AES_Te: | ||
| 43 | .word 0xc66363a5, 0xf87c7c84, 0xee777799, 0xf67b7b8d | ||
| 44 | .word 0xfff2f20d, 0xd66b6bbd, 0xde6f6fb1, 0x91c5c554 | ||
| 45 | .word 0x60303050, 0x02010103, 0xce6767a9, 0x562b2b7d | ||
| 46 | .word 0xe7fefe19, 0xb5d7d762, 0x4dababe6, 0xec76769a | ||
| 47 | .word 0x8fcaca45, 0x1f82829d, 0x89c9c940, 0xfa7d7d87 | ||
| 48 | .word 0xeffafa15, 0xb25959eb, 0x8e4747c9, 0xfbf0f00b | ||
| 49 | .word 0x41adadec, 0xb3d4d467, 0x5fa2a2fd, 0x45afafea | ||
| 50 | .word 0x239c9cbf, 0x53a4a4f7, 0xe4727296, 0x9bc0c05b | ||
| 51 | .word 0x75b7b7c2, 0xe1fdfd1c, 0x3d9393ae, 0x4c26266a | ||
| 52 | .word 0x6c36365a, 0x7e3f3f41, 0xf5f7f702, 0x83cccc4f | ||
| 53 | .word 0x6834345c, 0x51a5a5f4, 0xd1e5e534, 0xf9f1f108 | ||
| 54 | .word 0xe2717193, 0xabd8d873, 0x62313153, 0x2a15153f | ||
| 55 | .word 0x0804040c, 0x95c7c752, 0x46232365, 0x9dc3c35e | ||
| 56 | .word 0x30181828, 0x379696a1, 0x0a05050f, 0x2f9a9ab5 | ||
| 57 | .word 0x0e070709, 0x24121236, 0x1b80809b, 0xdfe2e23d | ||
| 58 | .word 0xcdebeb26, 0x4e272769, 0x7fb2b2cd, 0xea75759f | ||
| 59 | .word 0x1209091b, 0x1d83839e, 0x582c2c74, 0x341a1a2e | ||
| 60 | .word 0x361b1b2d, 0xdc6e6eb2, 0xb45a5aee, 0x5ba0a0fb | ||
| 61 | .word 0xa45252f6, 0x763b3b4d, 0xb7d6d661, 0x7db3b3ce | ||
| 62 | .word 0x5229297b, 0xdde3e33e, 0x5e2f2f71, 0x13848497 | ||
| 63 | .word 0xa65353f5, 0xb9d1d168, 0x00000000, 0xc1eded2c | ||
| 64 | .word 0x40202060, 0xe3fcfc1f, 0x79b1b1c8, 0xb65b5bed | ||
| 65 | .word 0xd46a6abe, 0x8dcbcb46, 0x67bebed9, 0x7239394b | ||
| 66 | .word 0x944a4ade, 0x984c4cd4, 0xb05858e8, 0x85cfcf4a | ||
| 67 | .word 0xbbd0d06b, 0xc5efef2a, 0x4faaaae5, 0xedfbfb16 | ||
| 68 | .word 0x864343c5, 0x9a4d4dd7, 0x66333355, 0x11858594 | ||
| 69 | .word 0x8a4545cf, 0xe9f9f910, 0x04020206, 0xfe7f7f81 | ||
| 70 | .word 0xa05050f0, 0x783c3c44, 0x259f9fba, 0x4ba8a8e3 | ||
| 71 | .word 0xa25151f3, 0x5da3a3fe, 0x804040c0, 0x058f8f8a | ||
| 72 | .word 0x3f9292ad, 0x219d9dbc, 0x70383848, 0xf1f5f504 | ||
| 73 | .word 0x63bcbcdf, 0x77b6b6c1, 0xafdada75, 0x42212163 | ||
| 74 | .word 0x20101030, 0xe5ffff1a, 0xfdf3f30e, 0xbfd2d26d | ||
| 75 | .word 0x81cdcd4c, 0x180c0c14, 0x26131335, 0xc3ecec2f | ||
| 76 | .word 0xbe5f5fe1, 0x359797a2, 0x884444cc, 0x2e171739 | ||
| 77 | .word 0x93c4c457, 0x55a7a7f2, 0xfc7e7e82, 0x7a3d3d47 | ||
| 78 | .word 0xc86464ac, 0xba5d5de7, 0x3219192b, 0xe6737395 | ||
| 79 | .word 0xc06060a0, 0x19818198, 0x9e4f4fd1, 0xa3dcdc7f | ||
| 80 | .word 0x44222266, 0x542a2a7e, 0x3b9090ab, 0x0b888883 | ||
| 81 | .word 0x8c4646ca, 0xc7eeee29, 0x6bb8b8d3, 0x2814143c | ||
| 82 | .word 0xa7dede79, 0xbc5e5ee2, 0x160b0b1d, 0xaddbdb76 | ||
| 83 | .word 0xdbe0e03b, 0x64323256, 0x743a3a4e, 0x140a0a1e | ||
| 84 | .word 0x924949db, 0x0c06060a, 0x4824246c, 0xb85c5ce4 | ||
| 85 | .word 0x9fc2c25d, 0xbdd3d36e, 0x43acacef, 0xc46262a6 | ||
| 86 | .word 0x399191a8, 0x319595a4, 0xd3e4e437, 0xf279798b | ||
| 87 | .word 0xd5e7e732, 0x8bc8c843, 0x6e373759, 0xda6d6db7 | ||
| 88 | .word 0x018d8d8c, 0xb1d5d564, 0x9c4e4ed2, 0x49a9a9e0 | ||
| 89 | .word 0xd86c6cb4, 0xac5656fa, 0xf3f4f407, 0xcfeaea25 | ||
| 90 | .word 0xca6565af, 0xf47a7a8e, 0x47aeaee9, 0x10080818 | ||
| 91 | .word 0x6fbabad5, 0xf0787888, 0x4a25256f, 0x5c2e2e72 | ||
| 92 | .word 0x381c1c24, 0x57a6a6f1, 0x73b4b4c7, 0x97c6c651 | ||
| 93 | .word 0xcbe8e823, 0xa1dddd7c, 0xe874749c, 0x3e1f1f21 | ||
| 94 | .word 0x964b4bdd, 0x61bdbddc, 0x0d8b8b86, 0x0f8a8a85 | ||
| 95 | .word 0xe0707090, 0x7c3e3e42, 0x71b5b5c4, 0xcc6666aa | ||
| 96 | .word 0x904848d8, 0x06030305, 0xf7f6f601, 0x1c0e0e12 | ||
| 97 | .word 0xc26161a3, 0x6a35355f, 0xae5757f9, 0x69b9b9d0 | ||
| 98 | .word 0x17868691, 0x99c1c158, 0x3a1d1d27, 0x279e9eb9 | ||
| 99 | .word 0xd9e1e138, 0xebf8f813, 0x2b9898b3, 0x22111133 | ||
| 100 | .word 0xd26969bb, 0xa9d9d970, 0x078e8e89, 0x339494a7 | ||
| 101 | .word 0x2d9b9bb6, 0x3c1e1e22, 0x15878792, 0xc9e9e920 | ||
| 102 | .word 0x87cece49, 0xaa5555ff, 0x50282878, 0xa5dfdf7a | ||
| 103 | .word 0x038c8c8f, 0x59a1a1f8, 0x09898980, 0x1a0d0d17 | ||
| 104 | .word 0x65bfbfda, 0xd7e6e631, 0x844242c6, 0xd06868b8 | ||
| 105 | .word 0x824141c3, 0x299999b0, 0x5a2d2d77, 0x1e0f0f11 | ||
| 106 | .word 0x7bb0b0cb, 0xa85454fc, 0x6dbbbbd6, 0x2c16163a | ||
| 107 | @ Te4[256] | ||
| 108 | .byte 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5 | ||
| 109 | .byte 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76 | ||
| 110 | .byte 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0 | ||
| 111 | .byte 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0 | ||
| 112 | .byte 0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc | ||
| 113 | .byte 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15 | ||
| 114 | .byte 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a | ||
| 115 | .byte 0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75 | ||
| 116 | .byte 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0 | ||
| 117 | .byte 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84 | ||
| 118 | .byte 0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b | ||
| 119 | .byte 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf | ||
| 120 | .byte 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85 | ||
| 121 | .byte 0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8 | ||
| 122 | .byte 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5 | ||
| 123 | .byte 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2 | ||
| 124 | .byte 0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17 | ||
| 125 | .byte 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73 | ||
| 126 | .byte 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88 | ||
| 127 | .byte 0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb | ||
| 128 | .byte 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c | ||
| 129 | .byte 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79 | ||
| 130 | .byte 0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9 | ||
| 131 | .byte 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08 | ||
| 132 | .byte 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6 | ||
| 133 | .byte 0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a | ||
| 134 | .byte 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e | ||
| 135 | .byte 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e | ||
| 136 | .byte 0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94 | ||
| 137 | .byte 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf | ||
| 138 | .byte 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68 | ||
| 139 | .byte 0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16 | ||
| 140 | @ rcon[] | ||
| 141 | .word 0x01000000, 0x02000000, 0x04000000, 0x08000000 | ||
| 142 | .word 0x10000000, 0x20000000, 0x40000000, 0x80000000 | ||
| 143 | .word 0x1B000000, 0x36000000, 0, 0, 0, 0, 0, 0 | ||
| 144 | .size AES_Te,.-AES_Te | ||
| 145 | |||
| 146 | @ void AES_encrypt(const unsigned char *in, unsigned char *out, | ||
| 147 | @ const AES_KEY *key) { | ||
| 148 | .global AES_encrypt | ||
| 149 | .type AES_encrypt,%function | ||
| 150 | .align 5 | ||
| 151 | AES_encrypt: | ||
| 152 | sub r3,pc,#8 @ AES_encrypt | ||
| 153 | stmdb sp!,{r1,r4-r12,lr} | ||
| 154 | mov r12,r0 @ inp | ||
| 155 | mov r11,r2 | ||
| 156 | sub r10,r3,#AES_encrypt-AES_Te @ Te | ||
