From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2E670A0093; Fri, 17 Jun 2022 09:36:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1C13140DDD; Fri, 17 Jun 2022 09:36:12 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 9448140698 for ; Fri, 17 Jun 2022 09:36:10 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 25H3kLLK021621; Fri, 17 Jun 2022 00:36:09 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=EZD3T6OdAodhQawi9hkiwDGKl953Ps6YhZi3+idchO0=; b=A2y/gDtysH1nx/7Hlu0yeVM8T+rcLI+H3JMrX9nRERB5+QbVpB85TmDijTAS89wQZgIH 5E5W3x0G8uTz3sg7rZL/YbJdt8eB6/q84+z2Sqykj5+v0JzsgLTl6Yun+CDq13+2+LOt ytHxbDm0Sc6G1Fk5uV8xfLVJPSutgd730l4JazSGm1FXrYj3AhAvNFQJxrrF9TfnUxJ4 jMnOdjYmOlAiL/uSOAdK259vZym8yP+dxrb8HUmheTdUMpAxOAEEwIoRwf5y4O/c2i6+ 0gWn865L8gfDecdAMeqmE71lBMuLwhxaIxB71mYMDZWBdUS6THQ9qVInvO8tBIogDb1u OQ== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3grj05rrqn-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 17 Jun 2022 00:36:09 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Fri, 17 Jun 2022 00:36:07 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Fri, 17 Jun 2022 00:36:07 -0700 Received: from hyd1554.marvell.com (unknown [10.29.57.11]) by maili.marvell.com (Postfix) with ESMTP id 1AA193F7051; Fri, 17 Jun 2022 00:36:05 -0700 (PDT) From: Tejasree Kondoj To: Akhil Goyal , Fan Zhang CC: Anoob Joseph , Ankur Dwivedi , Subject: [PATCH 0/4] support stream cipher chained operations Date: Fri, 17 Jun 2022 13:06:00 +0530 Message-ID: <20220617073604.889403-1-ktejasree@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: enMspbzLThAWl9uAhdjtu6X-fc-p5Lz7 X-Proofpoint-ORIG-GUID: enMspbzLThAWl9uAhdjtu6X-fc-p5Lz7 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.64.514 definitions=2022-06-17_06,2022-06-16_01,2022-02-23_01 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This series adds support for zuc, snow3g and aes-ctr-cmac chained operations in cn9k PMD and autotest application. Tejasree Kondoj (4): crypto/cnxk: fix CMAC IV crypto/cnxk: support stream cipher chained operations crypto/cnxk: support scatter gather mode app/test: add additional stream cipher tests app/test/test_cryptodev.c | 432 ++++++++++++++++++ app/test/test_cryptodev_mixed_test_vectors.h | 194 ++++++++ app/test/test_cryptodev_snow3g_test_vectors.h | 137 ++++++ app/test/test_cryptodev_zuc_test_vectors.h | 77 ++++ drivers/common/cnxk/roc_se.c | 271 ++++++++--- drivers/common/cnxk/roc_se.h | 74 ++- drivers/crypto/cnxk/cnxk_cryptodev_ops.c | 69 ++- drivers/crypto/cnxk/cnxk_se.h | 344 ++++++++++++-- 8 files changed, 1484 insertions(+), 114 deletions(-) -- 2.25.1