From patchwork Tue Aug 9 10:53:50 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anoob Joseph X-Patchwork-Id: 114756 X-Patchwork-Delegate: gakhil@marvell.com 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 87B70A00C2; Tue, 9 Aug 2022 12:55:24 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 29A6B42BED; Tue, 9 Aug 2022 12:54:35 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 3810942BED for ; Tue, 9 Aug 2022 12:54:33 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 2791G2gD015667 for ; Tue, 9 Aug 2022 03:54:32 -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=EVuUaMfzF+ZHnSP7AIhAnVRtbpc4kDu6vISTqzQjIgc=; b=W6W9MHv39pWimFVOXsOuGl7vqzx8Aq1T5zNWsbzIsFLw8BRioOtGIaddQ96Ak3YBWneo fxkZFV6vpS8OqFzd0C43yQ7uIzkbZe9lM9QkbBrjOzX9vr02D8goOEUE7jtJVW5TmWZI l1U9DCnbamNOfgL5ulqAJ9mfwmKepbgpIxUTTEBKH+A+VMftfVXnUHyEjxIxEEE3AWin 5qnSFPKyB6jEK3KTEZs9L/zd/bMg7L6jeHiXCmP4DO2UmRN6U9WNRvRNcp0m2Z2dROwp rR7xJexzEE5cWSETheg/LRARiRtmySAJt/6CDtGq7cCs/bi53gbX1XDU7zCv5dqbPTlH WQ== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3huds2sq8b-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Tue, 09 Aug 2022 03:54:32 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Tue, 9 Aug 2022 03:54:30 -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; Tue, 9 Aug 2022 03:54:30 -0700 Received: from BG-LT92004.corp.innovium.com (unknown [10.193.69.70]) by maili.marvell.com (Postfix) with ESMTP id B3DB13F704C; Tue, 9 Aug 2022 03:54:28 -0700 (PDT) From: Anoob Joseph To: Akhil Goyal , Jerin Jacob CC: Archana Muniganti , Tejasree Kondoj , Subject: [PATCH v2 12/18] crypto/cnxk: remove auth iv from kasumi cipher Date: Tue, 9 Aug 2022 16:23:50 +0530 Message-ID: <20220809105356.561-13-anoobj@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220809105356.561-1-anoobj@marvell.com> References: <20220808080606.220-1-anoobj@marvell.com> <20220809105356.561-1-anoobj@marvell.com> MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: 54Z80otpQvwjlbjqMOj9ZyjTij9JOVn7 X-Proofpoint-GUID: 54Z80otpQvwjlbjqMOj9ZyjTij9JOVn7 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-08-09_03,2022-08-09_02,2022-06-22_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 Auth IV is not applicable for kasumi cipher operation. Remove the same. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cnxk_se.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/drivers/crypto/cnxk/cnxk_se.h b/drivers/crypto/cnxk/cnxk_se.h index a75e98362d..d8126567f9 100644 --- a/drivers/crypto/cnxk/cnxk_se.h +++ b/drivers/crypto/cnxk/cnxk_se.h @@ -2411,14 +2411,9 @@ fill_fc_params(struct rte_crypto_op *cop, struct cnxk_se_sess *sess, } } - /* Kasumi would need auth IV */ - if (is_kasumi && sess->zsk_flag) { - fc_params.auth_iv_len = sess->auth_iv_length; - if (sess->auth_iv_length) - fc_params.auth_iv_buf = - rte_crypto_op_ctod_offset(cop, uint8_t *, sess->auth_iv_offset); + /* Kasumi would need SG mode */ + if (is_kasumi) inplace = 0; - } m_src = sym_op->m_src; m_dst = sym_op->m_dst;