aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crc/crc64-neon.c
blob: 4753fb94a4beb8a621fbb686e55eb138d5c5b992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Accelerated CRC64 (NVMe) using ARM NEON C intrinsics
 */

#include <linux/types.h>
#include <asm/neon-intrinsics.h>

#include "crc64-neon.h"

u64 crc64_nvme_neon(u64 crc, const u8 *p, size_t len);

/* x^191 mod G, x^127 mod G */
static const u64 fold_consts_val[2] = { 0xeadc41fd2ba3d420ULL,
					0x21e9761e252621acULL };
/* floor(x^127 / G), (G - x^64) / x */
static const u64 bconsts_val[2] = { 0x27ecfa329aef9f77ULL,
				    0x34d926535897936aULL };

u64 crc64_nvme_neon(u64 crc, const u8 *p, size_t len)
{
	uint64x2_t fold_consts = vld1q_u64(fold_consts_val);
	uint64x2_t v0 = { crc, 0 };
	uint64x2_t zero = { };

	for (;;) {
		v0 ^= vreinterpretq_u64_u8(vld1q_u8(p));

		p += 16;
		len -= 16;
		if (len < 16)
			break;

		v0 = pmull64(fold_consts, v0) ^ pmull64_high(fold_consts, v0);
	}

	/* Multiply the 128-bit value by x^64 and reduce it back to 128 bits. */
	v0 = vextq_u64(v0, zero, 1) ^ pmull64_hi_lo(fold_consts, v0);

	/* Final Barrett reduction */
	uint64x2_t bconsts = vld1q_u64(bconsts_val);
	uint64x2_t final = pmull64(bconsts, v0);

	v0 ^= vextq_u64(zero, final, 1) ^ pmull64_hi_lo(bconsts, final);

	return vgetq_lane_u64(v0, 1);
}