diff options
author | David S. Miller <davem@davemloft.net> | 2012-08-29 05:55:19 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-08-29 05:55:19 +0200 |
commit | 45dfe237a865368929534ec75fe5f26c151c88d9 (patch) | |
tree | fc79f99fad778fbec978932f9bf7d08e9410102d /arch/sparc/crypto/md5_asm.S | |
parent | sparc64: Add CAMELLIA driver making use of the new camellia opcodes. (diff) | |
download | linux-45dfe237a865368929534ec75fe5f26c151c88d9.tar.xz linux-45dfe237a865368929534ec75fe5f26c151c88d9.zip |
sparc64: Use fsrc2 instead of fsrc1 in sparc64 hash crypto drivers.
On SPARC-T4 fsrc2 has 1 cycle of latency, whereas fsrc1 has 11 cycles.
True story.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/crypto/md5_asm.S')
-rw-r--r-- | arch/sparc/crypto/md5_asm.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/crypto/md5_asm.S b/arch/sparc/crypto/md5_asm.S index 220b73baa551..ff90903180eb 100644 --- a/arch/sparc/crypto/md5_asm.S +++ b/arch/sparc/crypto/md5_asm.S @@ -62,7 +62,7 @@ ENTRY(md5_sparc64_transform) .word 0x81b02800 subcc %o2, 1, %o2 - fsrc1 %f26, %f10 + fsrc2 %f26, %f10 bne,pt %xcc, 1b add %o1, 0x40, %o1 |