From patchwork Mon Jun 20 12:26:51 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejasree Kondoj X-Patchwork-Id: 113115 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CCB54A0545; Mon, 20 Jun 2022 14:27:01 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7ACBC4069C; Mon, 20 Jun 2022 14:27:01 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 6937F40151 for ; Mon, 20 Jun 2022 14:27:00 +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 25K9YhIP028721 for ; Mon, 20 Jun 2022 05:26:59 -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=xmIWt4KnqJmeH0VQQr7OK2Le0HyDdPlyVJ6UUPCuHF4=; b=DFfDCYkdH7/ojka+o+BRzAYbUega13dHqgAgC8eGeMjsIm1YBII66tQldfFEQtJmO+07 aFXP5sHPutOGgo/IXiupEx3QvqVZymXA5PuzUf9p3EqKCOcL5emvoGmV6cuB78CJhls+ kW0hvJLHidTgnYI9X6iQ4hXtZqzCQQby8JKJ6En7xx1v6S3segWr3tCFINV/zk3ZxeUx 36c7pUIEJQuWdbhHgb4ynGZ0jelzmijtrELMZXKAjEe/KliubChrvhjr/EcjlZU6k10s o2m+gLaAdJNH/zAMuUvogcWmbzyu+RBDs6q2UwPj5KdoeS5SE3zrzTjBWFt05RgX10N3 5Q== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3gse7nepqh-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Mon, 20 Jun 2022 05:26:59 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Mon, 20 Jun 2022 05:26:57 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Mon, 20 Jun 2022 05:26:57 -0700 Received: from hyd1554.marvell.com (unknown [10.29.57.11]) by maili.marvell.com (Postfix) with ESMTP id E8D815B6957; Mon, 20 Jun 2022 05:26:55 -0700 (PDT) From: Tejasree Kondoj To: Akhil Goyal CC: Anoob Joseph , Ankur Dwivedi , Subject: [PATCH v2 0/3] support stream cipher chained operations Date: Mon, 20 Jun 2022 17:56:51 +0530 Message-ID: <20220620122654.1014994-1-ktejasree@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-GUID: RZej6pUjxGOiXMOqJzZ8n9gjFhyiyM5g X-Proofpoint-ORIG-GUID: RZej6pUjxGOiXMOqJzZ8n9gjFhyiyM5g 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-20_05,2022-06-17_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. v2: * Split autotest patch into separate series Tejasree Kondoj (3): crypto/cnxk: fix CMAC IV crypto/cnxk: support stream cipher chained operations crypto/cnxk: support scatter gather mode 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 +++++++++++++++++++++-- 4 files changed, 644 insertions(+), 114 deletions(-)