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 38363A0613 for ; Fri, 27 Sep 2019 17:49:50 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D831C1BEFE; Fri, 27 Sep 2019 17:49:48 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 911362C27 for ; Fri, 27 Sep 2019 17:49:46 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Sep 2019 08:49:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,556,1559545200"; d="scan'208";a="273854495" Received: from adamdybx-mobl.ger.corp.intel.com (HELO localhost.localdomain) ([10.104.14.185]) by orsmga001.jf.intel.com with ESMTP; 27 Sep 2019 08:49:43 -0700 From: Adam Dybkowski To: dev@dpdk.org, fiona.trahe@intel.com, arkadiuszx.kusztal@intel.com, akhil.goyal@nxp.com Cc: Adam Dybkowski Date: Fri, 27 Sep 2019 17:47:36 +0200 Message-Id: <20190927154739.26404-1-adamx.dybkowski@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190906144751.3420-1-adamx.dybkowski@intel.com> References: <20190906144751.3420-1-adamx.dybkowski@intel.com> Subject: [dpdk-dev] [PATCH v2 0/3] QAT: handle Single Pass GCM 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 patch improves the performance of AES GCM by using the Single Pass Crypto Request when running on GEN3 QAT. --- v2: * Fix the session preparation function and request building code. * Update release notes. Adam Dybkowski (3): test/crypto: add more AES GCM tests for QAT PMD common/qat: add new QAT GEN3 definitions crypto/qat: handle Single Pass Crypto Requests on GEN3 QAT app/test/test_cryptodev.c | 253 ++++++++++++++++++++- doc/guides/rel_notes/release_19_11.rst | 7 + drivers/common/qat/qat_adf/icp_qat_fw_la.h | 19 +- drivers/common/qat/qat_adf/icp_qat_hw.h | 19 ++ drivers/crypto/qat/qat_sym.c | 13 +- drivers/crypto/qat/qat_sym_session.c | 86 ++++++- drivers/crypto/qat/qat_sym_session.h | 9 +- 7 files changed, 389 insertions(+), 17 deletions(-) -- 2.17.1