From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1D359C4740A for ; Mon, 9 Sep 2019 15:27:03 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 6E53220863 for ; Mon, 9 Sep 2019 15:27:02 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=marvell.com header.i=@marvell.com header.b="CqkFqKM2" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6E53220863 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=marvell.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9BE2C1EB9B; Mon, 9 Sep 2019 17:27:01 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 105AD1E928 for ; Mon, 9 Sep 2019 17:26:59 +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 x89F9WcJ014514; Mon, 9 Sep 2019 08: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=pfpt0818; bh=rsasTT9+1wjNxHPethWsb8TLvKvXxGS6JvIaRH1xHXY=; b=CqkFqKM2N8WQT9zYUuNnPz8sQIMeUL4SGxiL1LSdeLR5hEnmm5BP4fjr8eaMNpcIXNgC MmYF/Sz0c/LlxIpliVt8KI+tdQ04NwppOpHGDV33tiYxtkAAdsNZhnfhCxqUCSddqB7H bcgzSINmNQd3MdMDPBeI2yIbI+E3p66Z3F+VHsW0oO+aemn5V0H1zT41yDpAlnzh97lG iG7HF+R6U/LV4Gj7s6r6ZjiAz3UMxLXJ9vK5wbK//VjGPcTqcBbwCFLluu0UJvPUM8Ps qEn2G2eIiYlXAUCVisuWl171+u5QpDPgx38nw/WikTpPsZFur8nGETQfDJGiEMBxOIpL 3Q== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0b-0016f401.pphosted.com with ESMTP id 2uvc2jfene-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 09 Sep 2019 08:26:59 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Mon, 9 Sep 2019 08:26:57 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Mon, 9 Sep 2019 08:26:57 -0700 Received: from ajoseph83.caveonetworks.com.com (unknown [10.29.45.56]) by maili.marvell.com (Postfix) with ESMTP id 7A3333F703F; Mon, 9 Sep 2019 08:26:53 -0700 (PDT) From: Anoob Joseph To: Akhil Goyal , Pablo de Lara , Thomas Monjalon CC: Anoob Joseph , Jerin Jacob , Narayana Prasad , Fiona Trahe , Kanaka Durga Kotamarthy , Shally Verma , Sunila Sahu , Date: Mon, 9 Sep 2019 20:56:33 +0530 Message-ID: <1568042799-25982-1-git-send-email-anoobj@marvell.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.70,1.0.8 definitions=2019-09-09_06:2019-09-09,2019-09-09 signatures=0 Subject: [dpdk-dev] [PATCH 0/6] add asymmetric support in crypto_octeontx2 PMD 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 series adds asymmetric crypto support in 'crypto_octeontx2' PMD. Features supported: RSA & modular exponentiation This series has dependency on the follwing, 1. http://patches.dpdk.org/project/dpdk/list/?series=6176 2. http://patches.dpdk.org/project/dpdk/list/?series=6337 Anoob Joseph (1): doc: add documentation for OCTEON TX2 crypto asym support Kanaka Durga Kotamarthy (3): crypto/octeontx2: add RSA and modexp asym capabilities crypto/octeontx2: allocate memory for asymmetric operation crypto/octeontx2: add asymmetric session operations Sunila Sahu (2): crypto/octeontx2: add asymmetric in enqueue/dequeue ops app/test: register octeontx2 PMD to asym testsuite app/test/test_cryptodev_asym.c | 18 ++ doc/guides/cryptodevs/features/octeontx2.ini | 9 + doc/guides/cryptodevs/octeontx2.rst | 13 + drivers/crypto/octeontx2/otx2_cryptodev.c | 4 +- .../crypto/octeontx2/otx2_cryptodev_capabilities.c | 39 ++- drivers/crypto/octeontx2/otx2_cryptodev_ops.c | 280 ++++++++++++++++++++- drivers/crypto/octeontx2/otx2_cryptodev_ops.h | 1 + 7 files changed, 349 insertions(+), 15 deletions(-) -- 2.7.4