From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8AE03A04BC; Fri, 9 Oct 2020 07:57:36 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7BAC21BF3A; Fri, 9 Oct 2020 07:57:34 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 7379A1BF3A for ; Fri, 9 Oct 2020 07:57:32 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 0995oZ00024072; Thu, 8 Oct 2020 22:57:30 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=Oikne9G3Pj5y1Vpvw5n7zGzxpihgKBk2FyINoViaQ+o=; b=fUdi4cF3P6ZUrMwDA3QQnMLA+s3bM33ThQRs2jeI+Zn5GElbMCgpiBNPbAg8ISi5RCOY /XIbg/EF2yYTsMyU7+hdP703Vzzdzvs4bW0eN9ImjfrDeB8/GSVV7/Op5ntnl4Sag3Yh f8aiKqWwxBqOrFYU9JU9dzToXIdRBtKDVXmCcbm98turjPj8k2VtUT+UH0sEd5Q3Lway s9r3HLkbPapyQu6aKWSXE+XFxx47mfLfVRD846mTg2LRrbRcirPkewl4ArGFqectNpgl UgCZCqGjmAj2Y+FPUm2wuIgUn9OCYvpqsSzNDfLPZo4xQoyUIC9dOQnY8VisLn3yx4bb 4A== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 3429hh1gkj-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 08 Oct 2020 22:57:30 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Thu, 8 Oct 2020 22:57:28 -0700 Received: from hyd1669.caveonetworks.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; Thu, 8 Oct 2020 22:57:27 -0700 From: Nagadheeraj Rottela To: CC: , , Nagadheeraj Rottela Date: Fri, 9 Oct 2020 11:27:23 +0530 Message-ID: <20201009055725.47329-1-rnagadheeraj@marvell.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.235, 18.0.687 definitions=2020-10-09_02:2020-10-09, 2020-10-09 signatures=0 Subject: [dpdk-dev] [PATCH v3 0/2] Add AES-GCM and cipher only offload support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patchset adds support for AES-GCM and cipher only offload. --- v3: * Fixed compilation error while compiling individual patches. v2: * Rebased patches to latest master and resolved merge conflict. * Updated release notes. Nagadheeraj Rottela (2): crypto/nitrox: support AES-GCM crypto/nitrox: support cipher only crypto operations doc/guides/cryptodevs/features/nitrox.ini | 3 + doc/guides/cryptodevs/nitrox.rst | 6 +- doc/guides/rel_notes/release_20_11.rst | 5 + drivers/crypto/nitrox/nitrox_sym.c | 85 ++++- .../crypto/nitrox/nitrox_sym_capabilities.c | 30 ++ drivers/crypto/nitrox/nitrox_sym_ctx.h | 5 +- drivers/crypto/nitrox/nitrox_sym_reqmgr.c | 357 ++++++++++++++---- 7 files changed, 409 insertions(+), 82 deletions(-) -- 2.20.1