1 // SPDX-License-Identifier: GPL-2.0
3 * crc32-mips.c - CRC32 and CRC32C using optional MIPSr6 instructions
5 * Module based on arm64/crypto/crc32-arm.c
7 * Copyright (C) 2014 Linaro Ltd <yazen.ghannam@linaro.org>
8 * Copyright (C) 2018 MIPS Tech, LLC
11 #include <linux/unaligned/access_ok.h>
12 #include <linux/cpufeature.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/string.h>
17 #include <asm/mipsregs.h>
19 #include <crypto/internal/hash.h>
30 #ifndef TOOLCHAIN_SUPPORTS_CRC
31 #define _ASM_MACRO_CRC32(OP, SZ, TYPE) \
32 _ASM_MACRO_3R(OP, rt, rs, rt2, \
33 ".ifnc \\rt, \\rt2\n\t" \
34 ".error \"invalid operands \\\"" #OP " \\rt,\\rs,\\rt2\\\"\"\n\t" \
36 _ASM_INSN_IF_MIPS(0x7c00000f | (__rt << 16) | (__rs << 21) | \
37 ((SZ) << 6) | ((TYPE) << 8)) \
38 _ASM_INSN32_IF_MM(0x00000030 | (__rs << 16) | (__rt << 21) | \
39 ((SZ) << 14) | ((TYPE) << 3)))
40 _ASM_MACRO_CRC32(crc32b
, 0, 0);
41 _ASM_MACRO_CRC32(crc32h
, 1, 0);
42 _ASM_MACRO_CRC32(crc32w
, 2, 0);
43 _ASM_MACRO_CRC32(crc32d
, 3, 0);
44 _ASM_MACRO_CRC32(crc32cb
, 0, 1);
45 _ASM_MACRO_CRC32(crc32ch
, 1, 1);
46 _ASM_MACRO_CRC32(crc32cw
, 2, 1);
47 _ASM_MACRO_CRC32(crc32cd
, 3, 1);
48 #define _ASM_SET_CRC ""
49 #else /* !TOOLCHAIN_SUPPORTS_CRC */
50 #define _ASM_SET_CRC ".set\tcrc\n\t"
53 #define _CRC32(crc, value, size, type) \
55 __asm__ __volatile__( \
58 #type #size " %0, %1, %0\n\t" \
64 #define CRC32(crc, value, size) \
65 _CRC32(crc, value, size, crc32)
67 #define CRC32C(crc, value, size) \
68 _CRC32(crc, value, size, crc32c)
70 static u32
crc32_mips_le_hw(u32 crc_
, const u8
*p
, unsigned int len
)
75 while (len
>= sizeof(u64
)) {
76 u64 value
= get_unaligned_le64(p
);
83 if (len
& sizeof(u32
)) {
84 #else /* !CONFIG_64BIT */
85 while (len
>= sizeof(u32
)) {
87 u32 value
= get_unaligned_le32(p
);
94 if (len
& sizeof(u16
)) {
95 u16 value
= get_unaligned_le16(p
);
101 if (len
& sizeof(u8
)) {
104 CRC32(crc
, value
, b
);
110 static u32
crc32c_mips_le_hw(u32 crc_
, const u8
*p
, unsigned int len
)
115 while (len
>= sizeof(u64
)) {
116 u64 value
= get_unaligned_le64(p
);
118 CRC32C(crc
, value
, d
);
123 if (len
& sizeof(u32
)) {
124 #else /* !CONFIG_64BIT */
125 while (len
>= sizeof(u32
)) {
127 u32 value
= get_unaligned_le32(p
);
129 CRC32C(crc
, value
, w
);
134 if (len
& sizeof(u16
)) {
135 u16 value
= get_unaligned_le16(p
);
137 CRC32C(crc
, value
, h
);
141 if (len
& sizeof(u8
)) {
144 CRC32C(crc
, value
, b
);
149 #define CHKSUM_BLOCK_SIZE 1
150 #define CHKSUM_DIGEST_SIZE 4
156 struct chksum_desc_ctx
{
160 static int chksum_init(struct shash_desc
*desc
)
162 struct chksum_ctx
*mctx
= crypto_shash_ctx(desc
->tfm
);
163 struct chksum_desc_ctx
*ctx
= shash_desc_ctx(desc
);
165 ctx
->crc
= mctx
->key
;
171 * Setting the seed allows arbitrary accumulators and flexible XOR policy
172 * If your algorithm starts with ~0, then XOR with ~0 before you set
175 static int chksum_setkey(struct crypto_shash
*tfm
, const u8
*key
,
178 struct chksum_ctx
*mctx
= crypto_shash_ctx(tfm
);
180 if (keylen
!= sizeof(mctx
->key
))
182 mctx
->key
= get_unaligned_le32(key
);
186 static int chksum_update(struct shash_desc
*desc
, const u8
*data
,
189 struct chksum_desc_ctx
*ctx
= shash_desc_ctx(desc
);
191 ctx
->crc
= crc32_mips_le_hw(ctx
->crc
, data
, length
);
195 static int chksumc_update(struct shash_desc
*desc
, const u8
*data
,
198 struct chksum_desc_ctx
*ctx
= shash_desc_ctx(desc
);
200 ctx
->crc
= crc32c_mips_le_hw(ctx
->crc
, data
, length
);
204 static int chksum_final(struct shash_desc
*desc
, u8
*out
)
206 struct chksum_desc_ctx
*ctx
= shash_desc_ctx(desc
);
208 put_unaligned_le32(ctx
->crc
, out
);
212 static int chksumc_final(struct shash_desc
*desc
, u8
*out
)
214 struct chksum_desc_ctx
*ctx
= shash_desc_ctx(desc
);
216 put_unaligned_le32(~ctx
->crc
, out
);
220 static int __chksum_finup(u32 crc
, const u8
*data
, unsigned int len
, u8
*out
)
222 put_unaligned_le32(crc32_mips_le_hw(crc
, data
, len
), out
);
226 static int __chksumc_finup(u32 crc
, const u8
*data
, unsigned int len
, u8
*out
)
228 put_unaligned_le32(~crc32c_mips_le_hw(crc
, data
, len
), out
);
232 static int chksum_finup(struct shash_desc
*desc
, const u8
*data
,
233 unsigned int len
, u8
*out
)
235 struct chksum_desc_ctx
*ctx
= shash_desc_ctx(desc
);
237 return __chksum_finup(ctx
->crc
, data
, len
, out
);
240 static int chksumc_finup(struct shash_desc
*desc
, const u8
*data
,
241 unsigned int len
, u8
*out
)
243 struct chksum_desc_ctx
*ctx
= shash_desc_ctx(desc
);
245 return __chksumc_finup(ctx
->crc
, data
, len
, out
);
248 static int chksum_digest(struct shash_desc
*desc
, const u8
*data
,
249 unsigned int length
, u8
*out
)
251 struct chksum_ctx
*mctx
= crypto_shash_ctx(desc
->tfm
);
253 return __chksum_finup(mctx
->key
, data
, length
, out
);
256 static int chksumc_digest(struct shash_desc
*desc
, const u8
*data
,
257 unsigned int length
, u8
*out
)
259 struct chksum_ctx
*mctx
= crypto_shash_ctx(desc
->tfm
);
261 return __chksumc_finup(mctx
->key
, data
, length
, out
);
264 static int chksum_cra_init(struct crypto_tfm
*tfm
)
266 struct chksum_ctx
*mctx
= crypto_tfm_ctx(tfm
);
272 static struct shash_alg crc32_alg
= {
273 .digestsize
= CHKSUM_DIGEST_SIZE
,
274 .setkey
= chksum_setkey
,
276 .update
= chksum_update
,
277 .final
= chksum_final
,
278 .finup
= chksum_finup
,
279 .digest
= chksum_digest
,
280 .descsize
= sizeof(struct chksum_desc_ctx
),
283 .cra_driver_name
= "crc32-mips-hw",
285 .cra_flags
= CRYPTO_ALG_OPTIONAL_KEY
,
286 .cra_blocksize
= CHKSUM_BLOCK_SIZE
,
288 .cra_ctxsize
= sizeof(struct chksum_ctx
),
289 .cra_module
= THIS_MODULE
,
290 .cra_init
= chksum_cra_init
,
294 static struct shash_alg crc32c_alg
= {
295 .digestsize
= CHKSUM_DIGEST_SIZE
,
296 .setkey
= chksum_setkey
,
298 .update
= chksumc_update
,
299 .final
= chksumc_final
,
300 .finup
= chksumc_finup
,
301 .digest
= chksumc_digest
,
302 .descsize
= sizeof(struct chksum_desc_ctx
),
304 .cra_name
= "crc32c",
305 .cra_driver_name
= "crc32c-mips-hw",
307 .cra_flags
= CRYPTO_ALG_OPTIONAL_KEY
,
308 .cra_blocksize
= CHKSUM_BLOCK_SIZE
,
310 .cra_ctxsize
= sizeof(struct chksum_ctx
),
311 .cra_module
= THIS_MODULE
,
312 .cra_init
= chksum_cra_init
,
316 static int __init
crc32_mod_init(void)
320 err
= crypto_register_shash(&crc32_alg
);
325 err
= crypto_register_shash(&crc32c_alg
);
328 crypto_unregister_shash(&crc32_alg
);
335 static void __exit
crc32_mod_exit(void)
337 crypto_unregister_shash(&crc32_alg
);
338 crypto_unregister_shash(&crc32c_alg
);
341 MODULE_AUTHOR("Marcin Nowakowski <marcin.nowakowski@mips.com");
342 MODULE_DESCRIPTION("CRC32 and CRC32C using optional MIPS instructions");
343 MODULE_LICENSE("GPL v2");
345 module_cpu_feature_match(MIPS_CRC32
, crc32_mod_init
);
346 module_exit(crc32_mod_exit
);