Skip to content
Snippets Groups Projects
Commit 10c402ef authored by Winston Hudson (b45308)'s avatar Winston Hudson (b45308) Committed by Jason Liu
Browse files

MLK-9769-17 Add AES-ECB support for CAAM in i.MX6 family


Adds AES-ECB (Electronic Codebook) support to the CAAM crypto accelerator core in
the i.MX6 family of SoC devices.

Note that CAAM also goes by sec-4.0 or sec-5.0 in other product families (such as QorIQ).
Thus the property names are often tied to the sec-4.0+ nomenclature.

Signed-off-by: default avatarWinston Hudson (b45308) <winston.h.hudson@freescale.com>
Signed-off-by: default avatarDan Douglass <dan.douglass@freescale.com>
parent 10736b15
No related merge requests found
...@@ -1829,6 +1829,22 @@ static struct caam_alg_template driver_algs[] = { ...@@ -1829,6 +1829,22 @@ static struct caam_alg_template driver_algs[] = {
}, },
.class1_alg_type = OP_ALG_ALGSEL_AES | OP_ALG_AAI_CBC, .class1_alg_type = OP_ALG_ALGSEL_AES | OP_ALG_AAI_CBC,
}, },
{
.name = "ecb(aes)",
.driver_name = "ecb-aes-caam",
.blocksize = AES_BLOCK_SIZE,
.type = CRYPTO_ALG_TYPE_ABLKCIPHER,
.template_ablkcipher = {
.setkey = ablkcipher_setkey,
.encrypt = ablkcipher_encrypt,
.decrypt = ablkcipher_decrypt,
.geniv = "eseqiv",
.min_keysize = AES_MIN_KEY_SIZE,
.max_keysize = AES_MAX_KEY_SIZE,
.ivsize = AES_BLOCK_SIZE,
},
.class1_alg_type = OP_ALG_ALGSEL_AES | OP_ALG_AAI_ECB,
},
{ {
.name = "cbc(des3_ede)", .name = "cbc(des3_ede)",
.driver_name = "cbc-3des-caam", .driver_name = "cbc-3des-caam",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment