This patch adds support for DOCSIS AES-256 when using AESNI-MB
Signed-off-by: Mairtin o Loingsigh <[email protected]>
Acked-by: Pablo de Lara <[email protected]>
---
v2: Added IPSec MB version check
v3: Added doc update
v4: Added missing patch
---
doc/guides/rel_notes/release_20_05.rst | 5 +++++
drivers/crypto/aesni_mb/rte_aesni_mb_pmd_ops.c | 6 ++++++
2 files changed, 11 insertions(+)
diff --git a/doc/guides/rel_notes/release_20_05.rst
b/doc/guides/rel_notes/release_20_05.rst
index 6b1a7c58c..72d2f6c27 100644
--- a/doc/guides/rel_notes/release_20_05.rst
+++ b/doc/guides/rel_notes/release_20_05.rst
@@ -81,6 +81,11 @@ New Features
by making use of the event device capabilities. The event mode currently
supports
only inline IPsec protocol offload.
+* **Updated the AESNI MB PMD.**
+
+ Updated the AESNI PMD with additional DOCSIS algorithm
+
+ * Added support for AES-256 DOCSIS
Removed Items
-------------
diff --git a/drivers/crypto/aesni_mb/rte_aesni_mb_pmd_ops.c
b/drivers/crypto/aesni_mb/rte_aesni_mb_pmd_ops.c
index 845661174..0d555ec29 100644
--- a/drivers/crypto/aesni_mb/rte_aesni_mb_pmd_ops.c
+++ b/drivers/crypto/aesni_mb/rte_aesni_mb_pmd_ops.c
@@ -319,8 +319,14 @@ static const struct rte_cryptodev_capabilities
aesni_mb_pmd_capabilities[] = {
},
.iv_size = {
.min = 16,
+#if IMB_VERSION_NUM >= IMB_VERSION(0, 53, 3)
+ .max = 32,
+ .increment = 16
+#else
.max = 16,
.increment = 0
+#endif
+
}
}, }
}, }
--
2.12.3