1 // SPDX-License-Identifier: GPL-2.0-only
3 * Using hardware provided CRC32 instruction to accelerate the CRC32 disposal.
4 * CRC32C polynomial:0x1EDC6F41(BE)/0x82F63B78(LE)
5 * CRC32 is a new instruction in Intel SSE4.2, the reference can be found at:
6 * http://www.intel.com/products/processor/manuals/
7 * Intel(R) 64 and IA-32 Architectures Software Developer's Manual
8 * Volume 2A: Instruction Set Reference, A-M
10 * Copyright (C) 2008 Intel Corporation
11 * Authors: Austin Zhang <austin_zhang@linux.intel.com>
12 * Kent Liu <kent.liu@intel.com>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/string.h>
17 #include <linux/kernel.h>
18 #include <crypto/internal/hash.h>
19 #include <crypto/internal/simd.h>
21 #include <asm/cpufeatures.h>
22 #include <asm/cpu_device_id.h>
25 #define CHKSUM_BLOCK_SIZE 1
26 #define CHKSUM_DIGEST_SIZE 4
28 #define SCALE_F sizeof(unsigned long)
31 #define CRC32_INST "crc32q %1, %q0"
33 #define CRC32_INST "crc32l %1, %0"
38 * use carryless multiply version of crc32c when buffer
39 * size is >= 512 to account
40 * for fpu state save/restore overhead.
42 #define CRC32C_PCL_BREAKEVEN 512
44 asmlinkage
unsigned int crc_pcl(const u8
*buffer
, int len
,
45 unsigned int crc_init
);
46 #endif /* CONFIG_X86_64 */
48 static u32
crc32c_intel_le_hw_byte(u32 crc
, unsigned char const *data
, size_t length
)
52 : "+r" (crc
) : "rm" (*data
));
59 static u32 __pure
crc32c_intel_le_hw(u32 crc
, unsigned char const *p
, size_t len
)
61 unsigned int iquotient
= len
/ SCALE_F
;
62 unsigned int iremainder
= len
% SCALE_F
;
63 unsigned long *ptmp
= (unsigned long *)p
;
67 : "+r" (crc
) : "rm" (*ptmp
));
72 crc
= crc32c_intel_le_hw_byte(crc
, (unsigned char *)ptmp
,
79 * Setting the seed allows arbitrary accumulators and flexible XOR policy
80 * If your algorithm starts with ~0, then XOR with ~0 before you set
83 static int crc32c_intel_setkey(struct crypto_shash
*hash
, const u8
*key
,
86 u32
*mctx
= crypto_shash_ctx(hash
);
88 if (keylen
!= sizeof(u32
))
90 *mctx
= le32_to_cpup((__le32
*)key
);
94 static int crc32c_intel_init(struct shash_desc
*desc
)
96 u32
*mctx
= crypto_shash_ctx(desc
->tfm
);
97 u32
*crcp
= shash_desc_ctx(desc
);
104 static int crc32c_intel_update(struct shash_desc
*desc
, const u8
*data
,
107 u32
*crcp
= shash_desc_ctx(desc
);
109 *crcp
= crc32c_intel_le_hw(*crcp
, data
, len
);
113 static int __crc32c_intel_finup(u32
*crcp
, const u8
*data
, unsigned int len
,
116 *(__le32
*)out
= ~cpu_to_le32(crc32c_intel_le_hw(*crcp
, data
, len
));
120 static int crc32c_intel_finup(struct shash_desc
*desc
, const u8
*data
,
121 unsigned int len
, u8
*out
)
123 return __crc32c_intel_finup(shash_desc_ctx(desc
), data
, len
, out
);
126 static int crc32c_intel_final(struct shash_desc
*desc
, u8
*out
)
128 u32
*crcp
= shash_desc_ctx(desc
);
130 *(__le32
*)out
= ~cpu_to_le32p(crcp
);
134 static int crc32c_intel_digest(struct shash_desc
*desc
, const u8
*data
,
135 unsigned int len
, u8
*out
)
137 return __crc32c_intel_finup(crypto_shash_ctx(desc
->tfm
), data
, len
,
141 static int crc32c_intel_cra_init(struct crypto_tfm
*tfm
)
143 u32
*key
= crypto_tfm_ctx(tfm
);
151 static int crc32c_pcl_intel_update(struct shash_desc
*desc
, const u8
*data
,
154 u32
*crcp
= shash_desc_ctx(desc
);
157 * use faster PCL version if datasize is large enough to
158 * overcome kernel fpu state save/restore overhead
160 if (len
>= CRC32C_PCL_BREAKEVEN
&& crypto_simd_usable()) {
162 *crcp
= crc_pcl(data
, len
, *crcp
);
165 *crcp
= crc32c_intel_le_hw(*crcp
, data
, len
);
169 static int __crc32c_pcl_intel_finup(u32
*crcp
, const u8
*data
, unsigned int len
,
172 if (len
>= CRC32C_PCL_BREAKEVEN
&& crypto_simd_usable()) {
174 *(__le32
*)out
= ~cpu_to_le32(crc_pcl(data
, len
, *crcp
));
178 ~cpu_to_le32(crc32c_intel_le_hw(*crcp
, data
, len
));
182 static int crc32c_pcl_intel_finup(struct shash_desc
*desc
, const u8
*data
,
183 unsigned int len
, u8
*out
)
185 return __crc32c_pcl_intel_finup(shash_desc_ctx(desc
), data
, len
, out
);
188 static int crc32c_pcl_intel_digest(struct shash_desc
*desc
, const u8
*data
,
189 unsigned int len
, u8
*out
)
191 return __crc32c_pcl_intel_finup(crypto_shash_ctx(desc
->tfm
), data
, len
,
194 #endif /* CONFIG_X86_64 */
196 static struct shash_alg alg
= {
197 .setkey
= crc32c_intel_setkey
,
198 .init
= crc32c_intel_init
,
199 .update
= crc32c_intel_update
,
200 .final
= crc32c_intel_final
,
201 .finup
= crc32c_intel_finup
,
202 .digest
= crc32c_intel_digest
,
203 .descsize
= sizeof(u32
),
204 .digestsize
= CHKSUM_DIGEST_SIZE
,
206 .cra_name
= "crc32c",
207 .cra_driver_name
= "crc32c-intel",
209 .cra_flags
= CRYPTO_ALG_OPTIONAL_KEY
,
210 .cra_blocksize
= CHKSUM_BLOCK_SIZE
,
211 .cra_ctxsize
= sizeof(u32
),
212 .cra_module
= THIS_MODULE
,
213 .cra_init
= crc32c_intel_cra_init
,
217 static const struct x86_cpu_id crc32c_cpu_id
[] = {
218 X86_MATCH_FEATURE(X86_FEATURE_XMM4_2
, NULL
),
221 MODULE_DEVICE_TABLE(x86cpu
, crc32c_cpu_id
);
223 static int __init
crc32c_intel_mod_init(void)
225 if (!x86_match_cpu(crc32c_cpu_id
))
228 if (boot_cpu_has(X86_FEATURE_PCLMULQDQ
)) {
229 alg
.update
= crc32c_pcl_intel_update
;
230 alg
.finup
= crc32c_pcl_intel_finup
;
231 alg
.digest
= crc32c_pcl_intel_digest
;
234 return crypto_register_shash(&alg
);
237 static void __exit
crc32c_intel_mod_fini(void)
239 crypto_unregister_shash(&alg
);
242 module_init(crc32c_intel_mod_init
);
243 module_exit(crc32c_intel_mod_fini
);
245 MODULE_AUTHOR("Austin Zhang <austin.zhang@intel.com>, Kent Liu <kent.liu@intel.com>");
246 MODULE_DESCRIPTION("CRC32c (Castagnoli) optimization using Intel Hardware.");
247 MODULE_LICENSE("GPL");
249 MODULE_ALIAS_CRYPTO("crc32c");
250 MODULE_ALIAS_CRYPTO("crc32c-intel");