]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/sparc/crypto/crc32c_asm.S
Merge branch 'usb-midi-fix-3.7' of git://git.alsa-project.org/alsa-kprivate into...
[mirror_ubuntu-artful-kernel.git] / arch / sparc / crypto / crc32c_asm.S
CommitLineData
442a7c40
DM
1#include <linux/linkage.h>
2#include <asm/visasm.h>
3#include <asm/asi.h>
4
7cff82f5 5#include "opcodes.h"
442a7c40
DM
6
7ENTRY(crc32c_sparc64)
8 /* %o0=crc32p, %o1=data_ptr, %o2=len */
9 VISEntryHalf
10 lda [%o0] ASI_PL, %f1
111: ldd [%o1], %f2
12 CRC32C(0,2,0)
13 subcc %o2, 8, %o2
14 bne,pt %icc, 1b
15 add %o1, 0x8, %o1
16 sta %f1, [%o0] ASI_PL
17 VISExitHalf
182: retl
19 nop
20ENDPROC(crc32c_sparc64)