1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Glue code for the SHA256 Secure Hash Algorithm assembly implementation
4 * using NEON instructions.
6 * Copyright © 2015 Google Inc.
8 * This file is based on sha512_neon_glue.c:
12 #include <crypto/internal/hash.h>
13 #include <crypto/internal/simd.h>
14 #include <linux/types.h>
15 #include <linux/string.h>
16 #include <crypto/sha.h>
17 #include <crypto/sha256_base.h>
18 #include <asm/byteorder.h>
22 #include "sha256_glue.h"
24 asmlinkage void sha256_block_data_order_neon(u32 *digest, const void *data,
25 unsigned int num_blks);
27 static int crypto_sha256_neon_update(struct shash_desc *desc, const u8 *data,
30 struct sha256_state *sctx = shash_desc_ctx(desc);
32 if (!crypto_simd_usable() ||
33 (sctx->count % SHA256_BLOCK_SIZE) + len < SHA256_BLOCK_SIZE)
34 return crypto_sha256_arm_update(desc, data, len);
37 sha256_base_do_update(desc, data, len,
38 (sha256_block_fn *)sha256_block_data_order_neon);
44 static int crypto_sha256_neon_finup(struct shash_desc *desc, const u8 *data,
45 unsigned int len, u8 *out)
47 if (!crypto_simd_usable())
48 return crypto_sha256_arm_finup(desc, data, len, out);
52 sha256_base_do_update(desc, data, len,
53 (sha256_block_fn *)sha256_block_data_order_neon);
54 sha256_base_do_finalize(desc,
55 (sha256_block_fn *)sha256_block_data_order_neon);
58 return sha256_base_finish(desc, out);
61 static int crypto_sha256_neon_final(struct shash_desc *desc, u8 *out)
63 return crypto_sha256_neon_finup(desc, NULL, 0, out);
66 struct shash_alg sha256_neon_algs[] = { {
67 .digestsize = SHA256_DIGEST_SIZE,
68 .init = sha256_base_init,
69 .update = crypto_sha256_neon_update,
70 .final = crypto_sha256_neon_final,
71 .finup = crypto_sha256_neon_finup,
72 .descsize = sizeof(struct sha256_state),
75 .cra_driver_name = "sha256-neon",
77 .cra_blocksize = SHA256_BLOCK_SIZE,
78 .cra_module = THIS_MODULE,
81 .digestsize = SHA224_DIGEST_SIZE,
82 .init = sha224_base_init,
83 .update = crypto_sha256_neon_update,
84 .final = crypto_sha256_neon_final,
85 .finup = crypto_sha256_neon_finup,
86 .descsize = sizeof(struct sha256_state),
89 .cra_driver_name = "sha224-neon",
91 .cra_blocksize = SHA224_BLOCK_SIZE,
92 .cra_module = THIS_MODULE,