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 1DD09454AB; Thu, 20 Jun 2024 16:58:59 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0C9CF42E7A; Thu, 20 Jun 2024 16:58:59 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 7FBAE402B1 for ; Thu, 20 Jun 2024 16:58:53 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 45KASrGv027629 for ; Thu, 20 Jun 2024 07:58:52 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:message-id :mime-version:subject:to; s=pfpt0220; bh=O18AaMz3iceaenx537PyY/G SEVacRrGMiNIFWUOKLtA=; b=IVHJNNMNOfw486JthQocPG1g9JKxBmYLiDeW4qR hODA2eGHobFb+gIueYg0+jGPOqgRx5iavYtu104c0/Y4yUNmn5RO6VD+c8pgNmvl 0n3IBLD2fq3Nb66Xo8RGYYB0oOJOcX9GWvqdxhMry05pof8UxjNrTo5LGdvo4wlg pWmARd8eBAOkXfsHQiyTB/6erlymyd2RQ89UdohSOxBRDxduK0SXfRhIIE+m1hOE dFXV/uwS6ge2tRZuny5v0Ed+i3dTs0uhEjeJrUoaoHrYWwI4+BB00QAc/dJAcqfo fbZmX+s7vRViRrmrSgLUhUfEecBKr2t745lqzHUxBFXOTng== Received: from dc5-exch05.marvell.com ([199.233.59.128]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3yvjq0h31j-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Thu, 20 Jun 2024 07:58:52 -0700 (PDT) Received: from DC5-EXCH05.marvell.com (10.69.176.209) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Thu, 20 Jun 2024 07:58:51 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Thu, 20 Jun 2024 07:58:51 -0700 Received: from localhost.localdomain (unknown [10.28.36.177]) by maili.marvell.com (Postfix) with ESMTP id 6CEFA3F7043; Thu, 20 Jun 2024 07:58:49 -0700 (PDT) From: Aakash Sasidharan To: CC: , , , , , Subject: [PATCH 00/12] fixes and improvements to CNXK crypto PMD Date: Thu, 20 Jun 2024 20:28:36 +0530 Message-ID: <20240620145848.3461844-1-asasidharan@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: f0aDdyJF0q4uo8993Aly8KcFmwfmbouU X-Proofpoint-GUID: f0aDdyJF0q4uo8993Aly8KcFmwfmbouU X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1039,Hydra:6.0.680,FMLib:17.12.28.16 definitions=2024-06-20_07,2024-06-20_04,2024-05-17_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 improvements to CNXK crypto PMD and fixes aes-gcm zero length input failure. Aakash Sasidharan (1): crypto/cnxk: fix aes-gcm zero len input cases Anoob Joseph (11): common/cnxk: add comments to denote skipped entries crypto/cnxk: update version map file with PMD APIs common/cnxk: make inline dev PF func get as idev API crypto/cnxk: add flow control in Rx inject path crypto/cnxk: use SSO PF func of inline device in inst crypto/cnxk: use NEON for Rx inject inst preparation crypto/cnxk: remove init of CPT result field in packet crypto/cnxk: add dual submission in Rx inject crypto/cnxk: update sess pointer for next iteration crypto/cnxk: make pack IV variable as const crypto/cnxk: enable dual submission to CPT drivers/common/cnxk/roc_ae.c | 6 +- drivers/common/cnxk/roc_ae_fpm_tables.c | 6 +- drivers/common/cnxk/roc_cpt.c | 17 +- drivers/common/cnxk/roc_cpt.h | 51 +++-- drivers/common/cnxk/roc_idev.c | 6 + drivers/common/cnxk/roc_idev.h | 2 + drivers/common/cnxk/roc_nix_inl.h | 1 - drivers/common/cnxk/roc_nix_inl_dev.c | 6 - drivers/common/cnxk/version.map | 2 +- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 231 +++++++++------------- drivers/crypto/cnxk/cn10k_cryptodev_ops.h | 60 +++++- drivers/crypto/cnxk/cnxk_cryptodev.h | 2 +- drivers/crypto/cnxk/cnxk_cryptodev_ops.c | 40 ++-- drivers/crypto/cnxk/cnxk_cryptodev_ops.h | 2 + drivers/crypto/cnxk/cnxk_se.h | 55 +++--- drivers/crypto/cnxk/rte_pmd_cnxk_crypto.h | 2 + drivers/crypto/cnxk/version.map | 8 + drivers/event/cnxk/cnxk_eventdev_adptr.c | 4 +- drivers/net/cnxk/cn10k_ethdev_sec.c | 2 +- drivers/net/cnxk/cnxk_ethdev_telemetry.c | 3 +- 20 files changed, 272 insertions(+), 234 deletions(-) -- 2.25.1