From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 71BEAA09E4; Thu, 28 Jan 2021 14:24:53 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E85AC4067A; Thu, 28 Jan 2021 14:24:52 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 5D62140395; Thu, 28 Jan 2021 14:24:50 +0100 (CET) IronPort-SDR: x4MLHd1Zvlef6wqGdo/VZfhTcGGAjPxF107NTynOoyEw3msEsyQDEHJ4KgKwZ5WsAKM3ECqrt0 yWaZGA1TVTtg== X-IronPort-AV: E=McAfee;i="6000,8403,9877"; a="244316600" X-IronPort-AV: E=Sophos;i="5.79,382,1602572400"; d="scan'208";a="244316600" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Jan 2021 05:24:49 -0800 IronPort-SDR: I1cVwZfm8rpyBJ8d4XWfMy9uD5AKx3PPKJbiAvS1KpyUp3D7gqGd0gI5NgsJJkALIJD33zzsB+ Qc6iZh7tdy+A== X-IronPort-AV: E=Sophos;i="5.79,382,1602572400"; d="scan'208";a="388813760" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.197.127]) ([10.213.197.127]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Jan 2021 05:24:47 -0800 To: Wei Huang , dev@dpdk.org, rosen.xu@intel.com, qi.z.zhang@intel.com Cc: stable@dpdk.org, tianfei.zhang@intel.com, Ray Kinsella , Hemant Agrawal References: <1611643528-18311-1-git-send-email-wei.huang@intel.com> <1611643528-18311-2-git-send-email-wei.huang@intel.com> From: Ferruh Yigit Message-ID: <9d4e0dba-4630-15fe-0552-574a960ed598@intel.com> Date: Thu, 28 Jan 2021 13:24:43 +0000 MIME-Version: 1.0 In-Reply-To: <1611643528-18311-2-git-send-email-wei.huang@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v12 1/4] raw/ifpga: add fpga rsu function 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 Sender: "dev" On 1/26/2021 6:45 AM, Wei Huang wrote: > RSU (Remote System Update) depends on secure manager which may be > different on various implementations, so a new secure manager device > is implemented for adapting such difference. > There are three major functions added: > 1. ifpga_rawdev_update_flash() updates flash with specific image file. > 2. ifpga_rawdev_stop_flash_update() aborts flash update process. > 3. ifpga_rawdev_reload() reloads FPGA from updated flash. > > Signed-off-by: Wei Huang > Acked-by: Tianfei Zhang > Acked-by: Rosen Xu > --- > v2: fix coding style issue in ifpga_fme_rsu.c and ifpga_sec_mgr.c > --- > v3: fix compilation issues in ifpga_fme_rsu.c > --- > v4: fix compilation issues in opae_intel_max10.c > --- <...> > @@ -43,7 +43,7 @@ enum ifpga_rawdev_device_state { > static inline struct opae_adapter * > ifpga_rawdev_get_priv(const struct rte_rawdev *rawdev) > { > - return rawdev->dev_private; > + return (struct opae_adapter *)rawdev->dev_private; > } > > #define IFPGA_RAWDEV_MSIX_IRQ_NUM 7 > @@ -76,4 +76,9 @@ int > ifpga_unregister_msix_irq(enum ifpga_irq_type type, > int vec_start, rte_intr_callback_fn handler, void *arg); > > +int ifpga_rawdev_update_flash(struct rte_rawdev *dev, const char *image, > + uint64_t *status); > +int ifpga_rawdev_stop_flash_update(struct rte_rawdev *dev, int force); > +int ifpga_rawdev_reload(struct rte_rawdev *dev, int type, int page); > + > #endif /* _IFPGA_RAWDEV_H_ */ > Hi Wei, Rosen, This patch introduces three new PMD specific APIs, adding new API has some requirements. 1) There must be a header file for user application to include, that has the definitions of the APIs. This header file should be installed in meson via "headers = ..." syntax. Indeed for rawdev a header always should be installed, because of the rawdev design, the user application should know about the some driver structures, to share those structures PMD should provide a header. This header seems missing. You can start for providing the missing header, even before this patch. Header file should be named as 'rte_pmd_.....', and since it is a public header now it should be fully documented via doxygen comments. This header file should be added to 'doc/api/doxy-api-index.md' for API documentathion. 2) All APIs should start with 'rte_pmd_' prefix. 3) All APIs should be in the .map file 4) Since these are new APIs, they should be marked as experimental. This is done both documenting this in the doxygen comments and marking the function decleration via '__rte_experimental' tag 5) Please don't use "struct rte_rawdev *dev" as a argument in the APIs, since that structure is rawdev internal structures, applications (that will call your API) should not know or access to this struct. Instead you can you 'dev_id' (ethdev 'port_id' equivalent) in the API, as done in the rawdev APIs. Driver can easily get the rawdevice from 'dev_id'. cc'ed Ray & Hemant in case I missed something related to rawdev and API/ABIs. And for the ifpga implementation, it is hard for me to review it, I trust Rosen for it.