1 // SPDX-License-Identifier: GPL-2.0
3 * Crypto-API module for CRC-32 algorithms implemented with the
4 * z/Architecture Vector Extension Facility.
6 * Copyright IBM Corp. 2015
7 * Author(s): Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
9 #define KMSG_COMPONENT "crc32-vx"
10 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12 #include <linux/module.h>
13 #include <linux/cpufeature.h>
14 #include <linux/crc32.h>
15 #include <crypto/internal/hash.h>
16 #include <asm/fpu/api.h>
19 #define CRC32_BLOCK_SIZE 1
20 #define CRC32_DIGEST_SIZE 4
23 #define VX_ALIGNMENT 16L
24 #define VX_ALIGN_MASK (VX_ALIGNMENT - 1)
34 /* Prototypes for functions in assembly files */
35 u32
crc32_le_vgfm_16(u32 crc
, unsigned char const *buf
, size_t size
);
36 u32
crc32_be_vgfm_16(u32 crc
, unsigned char const *buf
, size_t size
);
37 u32
crc32c_le_vgfm_16(u32 crc
, unsigned char const *buf
, size_t size
);
40 * DEFINE_CRC32_VX() - Define a CRC-32 function using the vector extension
42 * Creates a function to perform a particular CRC-32 computation. Depending
43 * on the message buffer, the hardware-accelerated or software implementation
44 * is used. Note that the message buffer is aligned to improve fetch
45 * operations of VECTOR LOAD MULTIPLE instructions.
48 #define DEFINE_CRC32_VX(___fname, ___crc32_vx, ___crc32_sw) \
49 static u32 __pure ___fname(u32 crc, \
50 unsigned char const *data, size_t datalen) \
52 struct kernel_fpu vxstate; \
53 unsigned long prealign, aligned, remaining; \
55 if (datalen < VX_MIN_LEN + VX_ALIGN_MASK) \
56 return ___crc32_sw(crc, data, datalen); \
58 if ((unsigned long)data & VX_ALIGN_MASK) { \
59 prealign = VX_ALIGNMENT - \
60 ((unsigned long)data & VX_ALIGN_MASK); \
61 datalen -= prealign; \
62 crc = ___crc32_sw(crc, data, prealign); \
63 data = (void *)((unsigned long)data + prealign); \
66 aligned = datalen & ~VX_ALIGN_MASK; \
67 remaining = datalen & VX_ALIGN_MASK; \
69 kernel_fpu_begin(&vxstate, KERNEL_VXR_LOW); \
70 crc = ___crc32_vx(crc, data, aligned); \
71 kernel_fpu_end(&vxstate, KERNEL_VXR_LOW); \
74 crc = ___crc32_sw(crc, data + aligned, remaining); \
79 DEFINE_CRC32_VX(crc32_le_vx
, crc32_le_vgfm_16
, crc32_le
)
80 DEFINE_CRC32_VX(crc32_be_vx
, crc32_be_vgfm_16
, crc32_be
)
81 DEFINE_CRC32_VX(crc32c_le_vx
, crc32c_le_vgfm_16
, __crc32c_le
)
84 static int crc32_vx_cra_init_zero(struct crypto_tfm
*tfm
)
86 struct crc_ctx
*mctx
= crypto_tfm_ctx(tfm
);
92 static int crc32_vx_cra_init_invert(struct crypto_tfm
*tfm
)
94 struct crc_ctx
*mctx
= crypto_tfm_ctx(tfm
);
100 static int crc32_vx_init(struct shash_desc
*desc
)
102 struct crc_ctx
*mctx
= crypto_shash_ctx(desc
->tfm
);
103 struct crc_desc_ctx
*ctx
= shash_desc_ctx(desc
);
105 ctx
->crc
= mctx
->key
;
109 static int crc32_vx_setkey(struct crypto_shash
*tfm
, const u8
*newkey
,
110 unsigned int newkeylen
)
112 struct crc_ctx
*mctx
= crypto_shash_ctx(tfm
);
114 if (newkeylen
!= sizeof(mctx
->key
))
116 mctx
->key
= le32_to_cpu(*(__le32
*)newkey
);
120 static int crc32be_vx_setkey(struct crypto_shash
*tfm
, const u8
*newkey
,
121 unsigned int newkeylen
)
123 struct crc_ctx
*mctx
= crypto_shash_ctx(tfm
);
125 if (newkeylen
!= sizeof(mctx
->key
))
127 mctx
->key
= be32_to_cpu(*(__be32
*)newkey
);
131 static int crc32le_vx_final(struct shash_desc
*desc
, u8
*out
)
133 struct crc_desc_ctx
*ctx
= shash_desc_ctx(desc
);
135 *(__le32
*)out
= cpu_to_le32p(&ctx
->crc
);
139 static int crc32be_vx_final(struct shash_desc
*desc
, u8
*out
)
141 struct crc_desc_ctx
*ctx
= shash_desc_ctx(desc
);
143 *(__be32
*)out
= cpu_to_be32p(&ctx
->crc
);
147 static int crc32c_vx_final(struct shash_desc
*desc
, u8
*out
)
149 struct crc_desc_ctx
*ctx
= shash_desc_ctx(desc
);
152 * Perform a final XOR with 0xFFFFFFFF to be in sync
153 * with the generic crc32c shash implementation.
155 *(__le32
*)out
= ~cpu_to_le32p(&ctx
->crc
);
159 static int __crc32le_vx_finup(u32
*crc
, const u8
*data
, unsigned int len
,
162 *(__le32
*)out
= cpu_to_le32(crc32_le_vx(*crc
, data
, len
));
166 static int __crc32be_vx_finup(u32
*crc
, const u8
*data
, unsigned int len
,
169 *(__be32
*)out
= cpu_to_be32(crc32_be_vx(*crc
, data
, len
));
173 static int __crc32c_vx_finup(u32
*crc
, const u8
*data
, unsigned int len
,
177 * Perform a final XOR with 0xFFFFFFFF to be in sync
178 * with the generic crc32c shash implementation.
180 *(__le32
*)out
= ~cpu_to_le32(crc32c_le_vx(*crc
, data
, len
));
185 #define CRC32_VX_FINUP(alg, func) \
186 static int alg ## _vx_finup(struct shash_desc *desc, const u8 *data, \
187 unsigned int datalen, u8 *out) \
189 return __ ## alg ## _vx_finup(shash_desc_ctx(desc), \
190 data, datalen, out); \
193 CRC32_VX_FINUP(crc32le
, crc32_le_vx
)
194 CRC32_VX_FINUP(crc32be
, crc32_be_vx
)
195 CRC32_VX_FINUP(crc32c
, crc32c_le_vx
)
197 #define CRC32_VX_DIGEST(alg, func) \
198 static int alg ## _vx_digest(struct shash_desc *desc, const u8 *data, \
199 unsigned int len, u8 *out) \
201 return __ ## alg ## _vx_finup(crypto_shash_ctx(desc->tfm), \
205 CRC32_VX_DIGEST(crc32le
, crc32_le_vx
)
206 CRC32_VX_DIGEST(crc32be
, crc32_be_vx
)
207 CRC32_VX_DIGEST(crc32c
, crc32c_le_vx
)
209 #define CRC32_VX_UPDATE(alg, func) \
210 static int alg ## _vx_update(struct shash_desc *desc, const u8 *data, \
211 unsigned int datalen) \
213 struct crc_desc_ctx *ctx = shash_desc_ctx(desc); \
214 ctx->crc = func(ctx->crc, data, datalen); \
218 CRC32_VX_UPDATE(crc32le
, crc32_le_vx
)
219 CRC32_VX_UPDATE(crc32be
, crc32_be_vx
)
220 CRC32_VX_UPDATE(crc32c
, crc32c_le_vx
)
223 static struct shash_alg crc32_vx_algs
[] = {
226 .init
= crc32_vx_init
,
227 .setkey
= crc32_vx_setkey
,
228 .update
= crc32le_vx_update
,
229 .final
= crc32le_vx_final
,
230 .finup
= crc32le_vx_finup
,
231 .digest
= crc32le_vx_digest
,
232 .descsize
= sizeof(struct crc_desc_ctx
),
233 .digestsize
= CRC32_DIGEST_SIZE
,
236 .cra_driver_name
= "crc32-vx",
238 .cra_flags
= CRYPTO_ALG_OPTIONAL_KEY
,
239 .cra_blocksize
= CRC32_BLOCK_SIZE
,
240 .cra_ctxsize
= sizeof(struct crc_ctx
),
241 .cra_module
= THIS_MODULE
,
242 .cra_init
= crc32_vx_cra_init_zero
,
247 .init
= crc32_vx_init
,
248 .setkey
= crc32be_vx_setkey
,
249 .update
= crc32be_vx_update
,
250 .final
= crc32be_vx_final
,
251 .finup
= crc32be_vx_finup
,
252 .digest
= crc32be_vx_digest
,
253 .descsize
= sizeof(struct crc_desc_ctx
),
254 .digestsize
= CRC32_DIGEST_SIZE
,
256 .cra_name
= "crc32be",
257 .cra_driver_name
= "crc32be-vx",
259 .cra_flags
= CRYPTO_ALG_OPTIONAL_KEY
,
260 .cra_blocksize
= CRC32_BLOCK_SIZE
,
261 .cra_ctxsize
= sizeof(struct crc_ctx
),
262 .cra_module
= THIS_MODULE
,
263 .cra_init
= crc32_vx_cra_init_zero
,
268 .init
= crc32_vx_init
,
269 .setkey
= crc32_vx_setkey
,
270 .update
= crc32c_vx_update
,
271 .final
= crc32c_vx_final
,
272 .finup
= crc32c_vx_finup
,
273 .digest
= crc32c_vx_digest
,
274 .descsize
= sizeof(struct crc_desc_ctx
),
275 .digestsize
= CRC32_DIGEST_SIZE
,
277 .cra_name
= "crc32c",
278 .cra_driver_name
= "crc32c-vx",
280 .cra_flags
= CRYPTO_ALG_OPTIONAL_KEY
,
281 .cra_blocksize
= CRC32_BLOCK_SIZE
,
282 .cra_ctxsize
= sizeof(struct crc_ctx
),
283 .cra_module
= THIS_MODULE
,
284 .cra_init
= crc32_vx_cra_init_invert
,
290 static int __init
crc_vx_mod_init(void)
292 return crypto_register_shashes(crc32_vx_algs
,
293 ARRAY_SIZE(crc32_vx_algs
));
296 static void __exit
crc_vx_mod_exit(void)
298 crypto_unregister_shashes(crc32_vx_algs
, ARRAY_SIZE(crc32_vx_algs
));
301 module_cpu_feature_match(VXRS
, crc_vx_mod_init
);
302 module_exit(crc_vx_mod_exit
);
304 MODULE_AUTHOR("Hendrik Brueckner <brueckner@linux.vnet.ibm.com>");
305 MODULE_LICENSE("GPL");
307 MODULE_ALIAS_CRYPTO("crc32");
308 MODULE_ALIAS_CRYPTO("crc32-vx");
309 MODULE_ALIAS_CRYPTO("crc32c");
310 MODULE_ALIAS_CRYPTO("crc32c-vx");