Message ID | 20250526020403.230-1-vulab@iscas.ac.cn |
---|---|
State | New |
Headers | show |
Series | crypto: tegra: Add crypto config in tegra_cmac_do_final() | expand |
diff --git a/drivers/crypto/tegra/tegra-se-aes.c b/drivers/crypto/tegra/tegra-se-aes.c index 9d130592cc0a..e01653985a31 100644 --- a/drivers/crypto/tegra/tegra-se-aes.c +++ b/drivers/crypto/tegra/tegra-se-aes.c @@ -1550,6 +1550,8 @@ static int tegra_cmac_do_final(struct ahash_request *req) rctx->datbuf.size = rctx->residue.size; rctx->total_len += rctx->residue.size; rctx->config = tegra234_aes_cfg(SE_ALG_CMAC, 0); + rctx->crypto_config = tegra234_aes_crypto_cfg(SE_ALG_CMAC, 0) | + SE_AES_KEY_INDEX(ctx->key_id); /* Prepare command and submit */ cmdlen = tegra_cmac_prep_cmd(ctx, rctx);
The function tegra_cmac_do_final() calls the function tegra234_aes_cfg(), but does not call tegra234_aes_crypto_cfg() to have a crypto configuration. A proper implementation can be found in tegra_ccm_do_ctr(). Add the tegra234_aes_crypto_cfg() for configuration. Fixes: 0880bb3b00c8 ("crypto: tegra - Add Tegra Security Engine driver") Signed-off-by: Wentao Liang <vulab@iscas.ac.cn> --- drivers/crypto/tegra/tegra-se-aes.c | 2 ++ 1 file changed, 2 insertions(+)