From patchwork Mon Jul 2 09:39:10 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomasz Jozwiak X-Patchwork-Id: 42090 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 124812BF9; Mon, 2 Jul 2018 11:39:21 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 8AAD42BC8 for ; Mon, 2 Jul 2018 11:39:19 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Jul 2018 02:39:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,298,1526367600"; d="scan'208";a="63386059" Received: from tjozwiax-mobl.ger.corp.intel.com (HELO localhost.localdomain) ([10.103.104.48]) by fmsmga002.fm.intel.com with ESMTP; 02 Jul 2018 02:39:15 -0700 From: Tomasz Jozwiak To: Fiona.trahe@intel.com, pablo.de.lara.guarch@intel.com, dev@dpdk.org Date: Mon, 2 Jul 2018 11:39:10 +0200 Message-Id: <1530524353-28607-1-git-send-email-tomaszx.jozwiak@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1526971901-9281-1-git-send-email-tomaszx.jozwiak@intel.com> References: <1526971901-9281-1-git-send-email-tomaszx.jozwiak@intel.com> Subject: [dpdk-dev] [PATCH v4 0/3] crypto/qat: move files to drivers/common directory 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 depends on QAT dynamic logging patchset and should be targetig on 18.08. Patchset refactors the PMD in order that files are split into several places: common, crypto. New drivers/common/qat are added and files split between locations. Changes for v2: - removed drivers/common/qat/qat - updated meson.build files - added description into qat.rst - updated MAINTAINERS file Changes for v3: - removed libcrypto detection from Makefile - removed description about libcrypto detection from doc. - renamed CONFIG_LIBCRYPTO_QAT define into BUILD_QAT_SYM Changes for v4: - fixed libcrypto dependency in 're-organise build file content' patch Tomasz Jozwiak (3): crypto/qat: add weak functions crypto/qat: re-organise build file content crypto/qat: move common qat files to common dir MAINTAINERS | 1 + drivers/Makefile | 2 + drivers/common/meson.build | 2 +- drivers/common/qat/Makefile | 49 ++++++++++++++++++++++ drivers/common/qat/meson.build | 14 +++++++ .../qat/qat_adf/adf_transport_access_macros.h | 0 .../{crypto => common}/qat/qat_adf/icp_qat_fw.h | 0 .../{crypto => common}/qat/qat_adf/icp_qat_fw_la.h | 0 .../{crypto => common}/qat/qat_adf/icp_qat_hw.h | 0 drivers/{crypto => common}/qat/qat_common.c | 0 drivers/{crypto => common}/qat/qat_common.h | 0 drivers/{crypto => common}/qat/qat_device.c | 39 ++++++++++++++++- drivers/{crypto => common}/qat/qat_device.h | 20 +++++++++ drivers/{crypto => common}/qat/qat_logs.c | 0 drivers/{crypto => common}/qat/qat_logs.h | 0 drivers/{crypto => common}/qat/qat_qp.c | 0 drivers/{crypto => common}/qat/qat_qp.h | 0 drivers/crypto/Makefile | 1 - drivers/crypto/qat/Makefile | 40 ------------------ drivers/crypto/qat/README | 8 ++++ drivers/crypto/qat/meson.build | 32 ++++++++------ drivers/crypto/qat/qat_asym_pmd.c | 17 -------- drivers/crypto/qat/qat_asym_pmd.h | 15 ------- drivers/crypto/qat/qat_comp_pmd.c | 18 -------- drivers/crypto/qat/qat_comp_pmd.h | 29 ------------- drivers/crypto/qat/qat_sym.h | 8 ++++ drivers/crypto/qat/qat_sym_pmd.h | 6 ++- 27 files changed, 163 insertions(+), 138 deletions(-) create mode 100644 drivers/common/qat/Makefile create mode 100644 drivers/common/qat/meson.build rename drivers/{crypto => common}/qat/qat_adf/adf_transport_access_macros.h (100%) rename drivers/{crypto => common}/qat/qat_adf/icp_qat_fw.h (100%) rename drivers/{crypto => common}/qat/qat_adf/icp_qat_fw_la.h (100%) rename drivers/{crypto => common}/qat/qat_adf/icp_qat_hw.h (100%) rename drivers/{crypto => common}/qat/qat_common.c (100%) rename drivers/{crypto => common}/qat/qat_common.h (100%) rename drivers/{crypto => common}/qat/qat_device.c (88%) rename drivers/{crypto => common}/qat/qat_device.h (80%) rename drivers/{crypto => common}/qat/qat_logs.c (100%) rename drivers/{crypto => common}/qat/qat_logs.h (100%) rename drivers/{crypto => common}/qat/qat_qp.c (100%) rename drivers/{crypto => common}/qat/qat_qp.h (100%) delete mode 100644 drivers/crypto/qat/Makefile create mode 100644 drivers/crypto/qat/README delete mode 100644 drivers/crypto/qat/qat_asym_pmd.c delete mode 100644 drivers/crypto/qat/qat_asym_pmd.h delete mode 100644 drivers/crypto/qat/qat_comp_pmd.c delete mode 100644 drivers/crypto/qat/qat_comp_pmd.h