From patchwork Fri May 12 12:56:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejasree Kondoj X-Patchwork-Id: 126832 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 782E542AE5; Fri, 12 May 2023 14:56:29 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0912442D1A; Fri, 12 May 2023 14:56:29 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id A9DCE40041 for ; Fri, 12 May 2023 14:56:27 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 34CBHYDE018150 for ; Fri, 12 May 2023 05:56:27 -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=TQsFmS6C1XFNNa4ROLYrQgXl9OBMmvQqPtwfEzPpjG8=; b=JoGTA99bISooI/IhRSbYWi2sRrfZdOwhjQKFNmnQqj/dQne7Bom9J7oao3yvHhG5CKzP Llu2SxxhDjFQI7tqon46TEhUCkupFSLW6yobL4CCox5slir9El1nAdJF3T7dMz5Atk9p IDNCrNf0+9a9GjCxCVOOK+V8z4eGACPkOxaEIxXDpcTKAgcfIoXuFqCczSamfWlngqps 94d61CmbP4Gb4Qde+OP9G3ngERSXRELPCQVlNEaF0m8CDNOlyUlrYO/d+zLYTg3KyJQq AKkk+bhoitIT2qOdJYpomhHyH3gVUhHQ1L9hf3nJa05D1mlYEDgL2tu2RLx1Mf4hR98e XQ== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3qgwy3cffn-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Fri, 12 May 2023 05:56:26 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Fri, 12 May 2023 05:56:25 -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.48 via Frontend Transport; Fri, 12 May 2023 05:56:25 -0700 Received: from hyd1554.marvell.com (unknown [10.29.57.11]) by maili.marvell.com (Postfix) with ESMTP id 590473F704C; Fri, 12 May 2023 05:56:22 -0700 (PDT) From: Tejasree Kondoj To: Akhil Goyal CC: Anoob Joseph , Jerin Jacob , Aakash Sasidharan , Gowrishankar Muthukrishnan , Vidya Sagar Velumuri , Subject: [PATCH 0/2] AES CCM support in CNXK crypto PMD Date: Fri, 12 May 2023 18:26:19 +0530 Message-ID: <20230512125621.1131396-1-ktejasree@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-GUID: FyXRuC3b_t2PVXfcSMJeaiRzkv4yV7Y5 X-Proofpoint-ORIG-GUID: FyXRuC3b_t2PVXfcSMJeaiRzkv4yV7Y5 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.254,Aquarius:18.0.942,Hydra:6.0.573,FMLib:17.11.170.22 definitions=2023-05-12_08,2023-05-05_01,2023-02-09_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 AES CCM support to CNXK crypto PMD and fixes capabilities in lookaside IPsec mode. Tejasree Kondoj (2): crypto/cnxk: add AES CCM support crypto/cnxk: fix IPsec CCM capabilities doc/guides/cryptodevs/cnxk.rst | 1 + doc/guides/cryptodevs/features/cn10k.ini | 3 ++ doc/guides/cryptodevs/features/cn9k.ini | 3 ++ drivers/common/cnxk/roc_se.c | 4 +- drivers/common/cnxk/roc_se.h | 1 + .../crypto/cnxk/cnxk_cryptodev_capabilities.c | 34 ++++++++++++- drivers/crypto/cnxk/cnxk_cryptodev_ops.c | 2 +- drivers/crypto/cnxk/cnxk_se.h | 49 ++++++++++++++----- 8 files changed, 80 insertions(+), 17 deletions(-)