From patchwork Tue Sep 19 01:21:30 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Chautru, Nicolas" X-Patchwork-Id: 131581 X-Patchwork-Delegate: maxime.coquelin@redhat.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 5491F425F2; Tue, 19 Sep 2023 03:25:01 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 22E8B402D3; Tue, 19 Sep 2023 03:24:56 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 7DAA84003C for ; Tue, 19 Sep 2023 03:24:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1695086694; x=1726622694; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Tk2KBnJ2hq3HmRl2EieT4+i/Q5riKJIUg04bsN99C20=; b=ENbrRRWFjdixZjaMAnkzD23184+Dt985562uuaN1L9upVH/rFVoQv+53 8okX6qCCR0mrAAu7FQv1jHkc6h+av3YmMEr2PF04/gFK1xTY7oZe+PBGB 3ad4HNN0dbYClT/yNEf1/bQ4WDAw+Xawu5yc1MIB3p33TEuqH/VniVVb3 MHinvGwvtVqPjUyfsUSITkaEt+5+Hrhn6uR4HL9uXCVt0UI0B3EbLQWvx Q9p9fN18CcJBUAlHmyfbRwmMK0IULQiJ7lDeSgdq0DSExG0//2RHeGyYv MouYaF5oCWj9/fjHdUahTe4x8HrJbtNi8uvjlYt9CHNIF/1T7XJhbeQAN A==; X-IronPort-AV: E=McAfee;i="6600,9927,10837"; a="360078089" X-IronPort-AV: E=Sophos;i="6.02,158,1688454000"; d="scan'208";a="360078089" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Sep 2023 18:24:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10837"; a="746039442" X-IronPort-AV: E=Sophos;i="6.02,158,1688454000"; d="scan'208";a="746039442" Received: from spr-npg-bds1-eec2.sn.intel.com (HELO spr-npg-bds1-eec2..) ([10.233.181.123]) by orsmga002.jf.intel.com with ESMTP; 18 Sep 2023 18:24:52 -0700 From: Nicolas Chautru To: dev@dpdk.org, maxime.coquelin@redhat.com Cc: hemant.agrawal@nxp.com, david.marchand@redhat.com, hernan.vargas@intel.com, Nicolas Chautru Subject: [PATCH v1 1/7] bbdev: add FFT version member in driver info Date: Tue, 19 Sep 2023 01:21:30 +0000 Message-Id: <20230919012136.2818396-2-nicolas.chautru@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230919012136.2818396-1-nicolas.chautru@intel.com> References: <20230919012136.2818396-1-nicolas.chautru@intel.com> MIME-Version: 1.0 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 can be used to distinguish different version of the flexible pointwise windowing applied to the FFT and expose this to the application. Signed-off-by: Nicolas Chautru --- lib/bbdev/rte_bbdev.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.h index a5bcc09f10..d6e54ee9a4 100644 --- a/lib/bbdev/rte_bbdev.h +++ b/lib/bbdev/rte_bbdev.h @@ -349,6 +349,8 @@ struct rte_bbdev_driver_info { const struct rte_bbdev_op_cap *capabilities; /** Device cpu_flag requirements */ const enum rte_cpu_flag_t *cpu_flag_reqs; + /** Versioning number for the FFT operation type. */ + uint16_t fft_version; }; /** Macro used at end of bbdev PMD list */