Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   3)  * sha512-ce-glue.c - SHA-384/SHA-512 using ARMv8 Crypto Extensions
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   4)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   5)  * Copyright (C) 2018 Linaro Ltd <ard.biesheuvel@linaro.org>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   6)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   7)  * This program is free software; you can redistribute it and/or modify
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   8)  * it under the terms of the GNU General Public License version 2 as
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   9)  * published by the Free Software Foundation.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  10)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  11) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  12) #include <asm/neon.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  13) #include <asm/simd.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  14) #include <asm/unaligned.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  15) #include <crypto/internal/hash.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  16) #include <crypto/internal/simd.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  17) #include <crypto/sha.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  18) #include <crypto/sha512_base.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  19) #include <linux/cpufeature.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  20) #include <linux/crypto.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  21) #include <linux/module.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  22) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  23) MODULE_DESCRIPTION("SHA-384/SHA-512 secure hash using ARMv8 Crypto Extensions");
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  24) MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>");
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  25) MODULE_LICENSE("GPL v2");
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  26) MODULE_ALIAS_CRYPTO("sha384");
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  27) MODULE_ALIAS_CRYPTO("sha512");
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  28) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  29) asmlinkage int sha512_ce_transform(struct sha512_state *sst, u8 const *src,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  30) 				   int blocks);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  31) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  32) asmlinkage void sha512_block_data_order(u64 *digest, u8 const *src, int blocks);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  33) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  34) static void __sha512_ce_transform(struct sha512_state *sst, u8 const *src,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  35) 				  int blocks)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  36) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  37) 	while (blocks) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  38) 		int rem;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  39) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  40) 		kernel_neon_begin();
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  41) 		rem = sha512_ce_transform(sst, src, blocks);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  42) 		kernel_neon_end();
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  43) 		src += (blocks - rem) * SHA512_BLOCK_SIZE;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  44) 		blocks = rem;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  45) 	}
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  46) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  47) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  48) static void __sha512_block_data_order(struct sha512_state *sst, u8 const *src,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  49) 				      int blocks)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  50) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  51) 	sha512_block_data_order(sst->state, src, blocks);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  52) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  53) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  54) static int sha512_ce_update(struct shash_desc *desc, const u8 *data,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  55) 			    unsigned int len)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  56) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  57) 	sha512_block_fn *fn = crypto_simd_usable() ? __sha512_ce_transform
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  58) 						   : __sha512_block_data_order;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  59) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  60) 	sha512_base_do_update(desc, data, len, fn);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  61) 	return 0;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  62) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  63) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  64) static int sha512_ce_finup(struct shash_desc *desc, const u8 *data,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  65) 			   unsigned int len, u8 *out)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  66) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  67) 	sha512_block_fn *fn = crypto_simd_usable() ? __sha512_ce_transform
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  68) 						   : __sha512_block_data_order;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  69) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  70) 	sha512_base_do_update(desc, data, len, fn);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  71) 	sha512_base_do_finalize(desc, fn);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  72) 	return sha512_base_finish(desc, out);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  73) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  74) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  75) static int sha512_ce_final(struct shash_desc *desc, u8 *out)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  76) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  77) 	sha512_block_fn *fn = crypto_simd_usable() ? __sha512_ce_transform
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  78) 						   : __sha512_block_data_order;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  79) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  80) 	sha512_base_do_finalize(desc, fn);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  81) 	return sha512_base_finish(desc, out);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  82) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  83) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  84) static struct shash_alg algs[] = { {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  85) 	.init			= sha384_base_init,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  86) 	.update			= sha512_ce_update,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  87) 	.final			= sha512_ce_final,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  88) 	.finup			= sha512_ce_finup,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  89) 	.descsize		= sizeof(struct sha512_state),
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  90) 	.digestsize		= SHA384_DIGEST_SIZE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  91) 	.base.cra_name		= "sha384",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  92) 	.base.cra_driver_name	= "sha384-ce",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  93) 	.base.cra_priority	= 200,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  94) 	.base.cra_blocksize	= SHA512_BLOCK_SIZE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  95) 	.base.cra_module	= THIS_MODULE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  96) }, {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  97) 	.init			= sha512_base_init,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  98) 	.update			= sha512_ce_update,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  99) 	.final			= sha512_ce_final,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 100) 	.finup			= sha512_ce_finup,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 101) 	.descsize		= sizeof(struct sha512_state),
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 102) 	.digestsize		= SHA512_DIGEST_SIZE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 103) 	.base.cra_name		= "sha512",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 104) 	.base.cra_driver_name	= "sha512-ce",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 105) 	.base.cra_priority	= 200,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 106) 	.base.cra_blocksize	= SHA512_BLOCK_SIZE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 107) 	.base.cra_module	= THIS_MODULE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 108) } };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 109) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 110) static int __init sha512_ce_mod_init(void)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 111) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 112) 	return crypto_register_shashes(algs, ARRAY_SIZE(algs));
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 113) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 114) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 115) static void __exit sha512_ce_mod_fini(void)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 116) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 117) 	crypto_unregister_shashes(algs, ARRAY_SIZE(algs));
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 118) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 119) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 120) module_cpu_feature_match(SHA512, sha512_ce_mod_init);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 121) module_exit(sha512_ce_mod_fini);