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 4C12CA0547 for ; Thu, 16 Jun 2022 04:52:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 36D8840141; Thu, 16 Jun 2022 04:52:51 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id E40A640141; Thu, 16 Jun 2022 04:52:48 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655347969; x=1686883969; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=VlBGIYKxeCeqgiSIQk010og6sPS7kACHSNap3bVD14k=; b=DyqUCDjwdqxIBM1ZfmEpwwqvTCsdtWohAsqKS9+/pTh6GZ9un9bI92MM MTVWMB8mfqIqdLjD21iQT0hWy71pqOoRHnc3ba/Q0uFkFcrGivErJ7RvN 30In5/xIktpSCif3mFfgm2Yd21HeqS3/Dc2qJH94T53FKPjVi/f14yiQB +6injxHTYieFqSlIVNz5lAeZ1hKwSribdZ50tUdE1YzPFTQYb5r8nny7i kYAZB4DjsVpYCj8wlJC2Pp8an6H03NETIvTj5HUBdVcbI+rrK4l2A/Yar /vCsIhgX0g/9AFEoQPc2JFx0wagRB/ZMkno/DvyqQvjP/lYUITNG/h0z0 Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="276725725" X-IronPort-AV: E=Sophos;i="5.91,302,1647327600"; d="scan'208";a="276725725" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2022 19:52:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,302,1647327600"; d="scan'208";a="674824683" Received: from unknown (HELO zj-fpga-amt.sh.intel.com) ([10.238.175.102]) by FMSMGA003.fm.intel.com with ESMTP; 15 Jun 2022 19:52:46 -0700 From: Wei Huang To: dev@dpdk.org, thomas@monjalon.net, nipun.gupta@nxp.com, hemant.agrawal@nxp.com Cc: stable@dpdk.org, rosen.xu@intel.com, tianfei.zhang@intel.com, qi.z.zhang@intel.com, Wei Huang Subject: [PATCH v8 1/5] raw/ifpga: introduce AFU driver framework Date: Wed, 15 Jun 2022 23:00:30 -0400 Message-Id: <1655348434-7096-2-git-send-email-wei.huang@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1655348434-7096-1-git-send-email-wei.huang@intel.com> References: <1654760242-7832-1-git-send-email-wei.huang@intel.com> <1655348434-7096-1-git-send-email-wei.huang@intel.com> X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org AFU (Acceleration Function Unit) is part of FPGA and enumerated by ifpga driver. This driver implements common AFU device interfaces and exposes them to application as standard raw device APIs. Normally application can operate specified AFU as below, 1. call rte_rawdev_pmd_get_named_dev() to find AFU device. 2. call rte_rawdev_configure() to initialize AFU device. 3. call rte_rawdev_selftest() to test AFU device. Signed-off-by: Wei Huang Acked-by: Tianfei Zhang Reviewed-by: Rosen Xu --- v2: fix typo --- v3: fix build error in FreeBSD13-64, UB2004-32 and UB2204-32 --- v4: fix coding style issue and build error in FreeBSD13-64 --- v5: split patch into several patches --- v6: move source files to ifpga and rename, use spinlock --- v7: move driver description into ifpga.rst --- doc/guides/rawdevs/ifpga.rst | 98 +++++++++ drivers/raw/ifpga/afu_pmd_core.c | 438 +++++++++++++++++++++++++++++++++++++++ drivers/raw/ifpga/afu_pmd_core.h | 76 +++++++ drivers/raw/ifpga/meson.build | 2 +- 4 files changed, 613 insertions(+), 1 deletion(-) create mode 100644 drivers/raw/ifpga/afu_pmd_core.c create mode 100644 drivers/raw/ifpga/afu_pmd_core.h diff --git a/doc/guides/rawdevs/ifpga.rst b/doc/guides/rawdevs/ifpga.rst index bf557b2..5fb8d37 100644 --- a/doc/guides/rawdevs/ifpga.rst +++ b/doc/guides/rawdevs/ifpga.rst @@ -102,6 +102,104 @@ The following device parameters are supported: identifies AFU Bit Stream file. +IFPGA AFU Driver +=================== + +AFU (Acceleration Function Unit) is a function or set of functions that perform +various acceleration task on FPGA platform. The image of AFU is called as GBS +(Green Bit Stream) which can be used by PR (Partial Reconfigure) tool to load +into the FPGA, different AFUs can be dynamically reloaded respectively. + +AFU has two main communication paths between the host: + +- FPGA to host transactions + + The FPGA accesses host memory using a 512 bits data path. This data path has + separate channels for read and write traffic allowing for simultaneous read + and write to occur. The read and write channels support bursts of 1, 2, and + 4 cache lines. + +- Host to FPGA (MMIO) transactions + + The host can access a 256 KB address space within the FPGA. This address space + contains Device Feature Header (DFHs) and the control and status registers of + the AFU hardware. + +AFU must implement the following registers: + +- AFU DFH - a 64-bit header at MMIO address offset 0x0 + +- AFU ID - a 128-bit UUID at MMIO address offset 0x2 + +The AFU is enumerated and recorded by IFPGA Rawdev Driver. Then AFU devices are +created with the help of IFPGA Bus Driver, AFU driver probe these AFU devices +and expose them as standard raw devices for application to access. + +Implementation details +---------------------- + +IFPGA Rawdev Driver identifies AFU in FPGA, AFU location (PF/VF address) and +UUID are taken by ifpga_rawdev_cfg vdev driver which hot plug AFU into IFPGA +Bus. + +IFPGA Bus takes AFU device scan and AFU driver probe. All AFU device driver +bind to AFU device by its dedicated UUID. To avoid unnecessary code duplication +and ensure maximum performance, AFU driver implements the common part of raw +device driver. Several specific AFU drivers are provided for reference. The +design is summarized by the following block diagram:: + + +---------------------------------------------------------------+ + | Application(s) | + +----------------------------.----------------------------------+ + | + +----------------------------'----------------------------------+ + | DPDK Framework (Rawdev APIs) | + +-----------------+------------------------------------+--------+ + | | + +-----------------'----------------+ | + | IFPGA AFU Driver | +--------'--------+ + | | | | + |+---------------+ +--------------+| | | + || AFU Dev1 PMD | | AFU Dev2 PMD || | | + |+-------+-------+ +-------+------+| | | + +--------|-----------------|-------+ | | + | | | | + +--------'------+ +-------'-------+ | IFPGA | + | AFU Dev1 | | AFU Dev2 | | Rawdev Driver | + +-------.-------+ +-------.-------+ | | + | | Rawdev | | + +-------'------------------'-------+ Ops | | + | IFPGA Bus |--------->| | + +-----------------.----------------+ +--------.--------+ + | | + Hot-plugin -->| | + | | + +-----------------'------------------+ +--------'--------+ + | ifpga_rawdev_cfg vdev driver | | Intel FpgaDev | + +------------------------------------+ +-----------------+ + +How to test AFU function +------------------------ + +Suppose AFU is found in FPGA at PCI address 31:00.0, then you can create +and test a AFU device by following steps in application. + +1. rte_vdev_init("ifpga_rawdev_cfg0", "ifpga=31:00.0,port=0") + +2. rawdev = rte_rawdev_pmd_get_named_dev("afu_0|31:00.0") + +3. rte_rawdev_configure(rawdev->dev_id, &cfg, sizeof(cfg)) + +4. rte_rawdev_selftest(rawdev->dev_id) + +5. rte_vdev_uninit("ifpga_rawdev_cfg0") + +AFU device name format used in rte_rawdev_pmd_get_named_dev is +"afu_[port]|[BDF]". Please refer to OPAE documentation for the meaning of +port. Each AFU device has specific configuration data, they are defined +in rte_pmd_afu.h. + + Open FPGA Stack ===================== diff --git a/drivers/raw/ifpga/afu_pmd_core.c b/drivers/raw/ifpga/afu_pmd_core.c new file mode 100644 index 0000000..ddf7a34 --- /dev/null +++ b/drivers/raw/ifpga/afu_pmd_core.c @@ -0,0 +1,438 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright 2022 Intel Corporation + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include "afu_pmd_core.h" + +static struct rte_afu_uuid afu_pmd_uuid_map[AFU_RAWDEV_MAX_DRVS+1]; +TAILQ_HEAD(afu_drv_list, afu_rawdev_drv); +static struct afu_drv_list afu_pmd_list = TAILQ_HEAD_INITIALIZER(afu_pmd_list); + +static inline int afu_rawdev_trylock(struct afu_rawdev *dev) +{ + if (!dev || !dev->sd) + return 0; + + return rte_spinlock_trylock(&dev->sd->lock); +} + +static inline void afu_rawdev_unlock(struct afu_rawdev *dev) +{ + if (!dev || !dev->sd) + return; + + rte_spinlock_unlock(&dev->sd->lock); +} + +static int afu_rawdev_configure(const struct rte_rawdev *rawdev, + rte_rawdev_obj_t config, size_t config_size) +{ + struct afu_rawdev *dev = NULL; + int ret = 0; + + IFPGA_RAWDEV_PMD_FUNC_TRACE(); + + dev = afu_rawdev_get_priv(rawdev); + if (!dev) + return -ENODEV; + + if (dev->ops && dev->ops->config) + ret = (*dev->ops->config)(dev, config, config_size); + + return ret; +} + +static int afu_rawdev_start(struct rte_rawdev *rawdev) +{ + struct afu_rawdev *dev = NULL; + int ret = 0; + + IFPGA_RAWDEV_PMD_FUNC_TRACE(); + + dev = afu_rawdev_get_priv(rawdev); + if (!dev) + return -ENODEV; + + ret = afu_rawdev_trylock(dev); + if (!ret) { + IFPGA_RAWDEV_PMD_WARN("AFU is busy, please start it later"); + return ret; + } + + if (dev->ops && dev->ops->start) + ret = (*dev->ops->start)(dev); + + afu_rawdev_unlock(dev); + + return ret; +} + +static void afu_rawdev_stop(struct rte_rawdev *rawdev) +{ + struct afu_rawdev *dev = NULL; + int ret = 0; + + IFPGA_RAWDEV_PMD_FUNC_TRACE(); + + dev = afu_rawdev_get_priv(rawdev); + if (!dev) + return; + + ret = afu_rawdev_trylock(dev); + if (!ret) { + IFPGA_RAWDEV_PMD_WARN("AFU is busy, please stop it later"); + return; + } + + if (dev->ops && dev->ops->stop) + ret = (*dev->ops->stop)(dev); + + afu_rawdev_unlock(dev); +} + +static int afu_rawdev_close(struct rte_rawdev *rawdev) +{ + struct afu_rawdev *dev = NULL; + int ret = 0; + + IFPGA_RAWDEV_PMD_FUNC_TRACE(); + + dev = afu_rawdev_get_priv(rawdev); + if (!dev) + return -ENODEV; + + if (dev->ops && dev->ops->close) + ret = (*dev->ops->close)(dev); + + return ret; +} + +static int afu_rawdev_reset(struct rte_rawdev *rawdev) +{ + struct afu_rawdev *dev = NULL; + int ret = 0; + + IFPGA_RAWDEV_PMD_FUNC_TRACE(); + + dev = afu_rawdev_get_priv(rawdev); + if (!dev) + return -ENODEV; + + ret = afu_rawdev_trylock(dev); + if (!ret) { + IFPGA_RAWDEV_PMD_WARN("AFU is busy, please reset it later"); + return ret; + } + + if (dev->ops && dev->ops->reset) + ret = (*dev->ops->reset)(dev); + + afu_rawdev_unlock(dev); + + return ret; +} + +static int afu_rawdev_selftest(uint16_t dev_id) +{ + struct afu_rawdev *dev = NULL; + int ret = 0; + + IFPGA_RAWDEV_PMD_FUNC_TRACE(); + + if (!rte_rawdev_pmd_is_valid_dev(dev_id)) + return -ENODEV; + + dev = afu_rawdev_get_priv(&rte_rawdevs[dev_id]); + if (!dev) + return -ENOENT; + + ret = afu_rawdev_trylock(dev); + if (!ret) { + IFPGA_RAWDEV_PMD_WARN("AFU is busy, please test it later"); + return ret; + } + + if (dev->ops && dev->ops->test) + ret = (*dev->ops->test)(dev); + + afu_rawdev_unlock(dev); + + return ret; +} + +static int afu_rawdev_dump(struct rte_rawdev *rawdev, FILE *f) +{ + struct afu_rawdev *dev = NULL; + int ret = 0; + + IFPGA_RAWDEV_PMD_FUNC_TRACE(); + + dev = afu_rawdev_get_priv(rawdev); + if (!dev) + return -ENODEV; + + if (dev->ops && dev->ops->dump) + ret = (*dev->ops->dump)(dev, f); + + return ret; +} + +static const struct rte_rawdev_ops afu_rawdev_ops = { + .dev_info_get = NULL, + .dev_configure = afu_rawdev_configure, + .dev_start = afu_rawdev_start, + .dev_stop = afu_rawdev_stop, + .dev_close = afu_rawdev_close, + .dev_reset = afu_rawdev_reset, + + .queue_def_conf = NULL, + .queue_setup = NULL, + .queue_release = NULL, + .queue_count = NULL, + + .attr_get = NULL, + .attr_set = NULL, + + .enqueue_bufs = NULL, + .dequeue_bufs = NULL, + + .dump = afu_rawdev_dump, + + .xstats_get = NULL, + .xstats_get_names = NULL, + .xstats_get_by_name = NULL, + .xstats_reset = NULL, + + .firmware_status_get = NULL, + .firmware_version_get = NULL, + .firmware_load = NULL, + .firmware_unload = NULL, + + .dev_selftest = afu_rawdev_selftest, +}; + +static int afu_shared_data_alloc(const char *name, + struct afu_shared_data **data, int socket_id) +{ + const struct rte_memzone *mz; + char mz_name[RTE_MEMZONE_NAMESIZE]; + struct afu_shared_data *sd = NULL; + int init_mz = 0; + + if (!name || !data) + return -EINVAL; + + /* name format is afu_?|??:??.? which is unique */ + snprintf(mz_name, sizeof(mz_name), "%s", name); + + mz = rte_memzone_lookup(mz_name); + if (!mz) { + mz = rte_memzone_reserve(mz_name, sizeof(struct afu_shared_data), + socket_id, 0); + init_mz = 1; + } + + if (!mz) { + IFPGA_RAWDEV_PMD_ERR("Allocate memory zone %s failed!", + mz_name); + return -ENOMEM; + } + + sd = (struct afu_shared_data *)mz->addr; + + if (init_mz) /* initialize memory zone on the first time */ + rte_spinlock_init(&sd->lock); + + *data = sd; + + return 0; +} + +static int afu_rawdev_name_get(struct rte_afu_device *afu_dev, char *name, + size_t size) +{ + int n = 0; + + if (!afu_dev || !name || !size) + return -EINVAL; + + n = snprintf(name, size, "afu_%s", afu_dev->device.name); + if (n >= (int)size) { + IFPGA_RAWDEV_PMD_ERR("Name of AFU device is too long!"); + return -ENAMETOOLONG; + } + + return 0; +} + +static struct afu_ops *afu_ops_get(struct rte_afu_uuid *afu_id) +{ + struct afu_rawdev_drv *drv = NULL; + + if (!afu_id) + return NULL; + + TAILQ_FOREACH(drv, &afu_pmd_list, next) { + if ((drv->uuid.uuid_low == afu_id->uuid_low) && + (drv->uuid.uuid_high == afu_id->uuid_high)) + break; + } + + return drv ? drv->ops : NULL; +} + +static int afu_rawdev_create(struct rte_afu_device *afu_dev, int socket_id) +{ + struct rte_rawdev *rawdev = NULL; + struct afu_rawdev *dev = NULL; + char name[RTE_RAWDEV_NAME_MAX_LEN] = {0}; + int ret = 0; + + if (!afu_dev) + return -EINVAL; + + ret = afu_rawdev_name_get(afu_dev, name, sizeof(name)); + if (ret) + return ret; + + IFPGA_RAWDEV_PMD_INFO("Create raw device %s on NUMA node %d", + name, socket_id); + + /* Allocate device structure */ + rawdev = rte_rawdev_pmd_allocate(name, sizeof(struct afu_rawdev), + socket_id); + if (!rawdev) { + IFPGA_RAWDEV_PMD_ERR("Unable to allocate raw device"); + return -ENOMEM; + } + + rawdev->dev_ops = &afu_rawdev_ops; + rawdev->device = &afu_dev->device; + rawdev->driver_name = afu_dev->driver->driver.name; + + dev = afu_rawdev_get_priv(rawdev); + if (!dev) + goto cleanup; + + dev->rawdev = rawdev; + dev->port = afu_dev->id.port; + dev->addr = afu_dev->mem_resource[0].addr; + dev->ops = afu_ops_get(&afu_dev->id.uuid); + if (dev->ops == NULL) { + IFPGA_RAWDEV_PMD_ERR("Unsupported AFU device"); + goto cleanup; + } + + if (dev->ops->init) { + ret = (*dev->ops->init)(dev); + if (ret) { + IFPGA_RAWDEV_PMD_ERR("Failed to init %s", name); + goto cleanup; + } + } + + ret = afu_shared_data_alloc(name, &dev->sd, socket_id); + if (ret) + goto cleanup; + + return ret; + +cleanup: + rte_rawdev_pmd_release(rawdev); + return ret; +} + +static int afu_rawdev_destroy(struct rte_afu_device *afu_dev) +{ + struct rte_rawdev *rawdev = NULL; + char name[RTE_RAWDEV_NAME_MAX_LEN] = {0}; + int ret = 0; + + if (!afu_dev) + return -EINVAL; + + ret = afu_rawdev_name_get(afu_dev, name, sizeof(name)); + if (ret) + return ret; + + IFPGA_RAWDEV_PMD_INFO("Destroy raw device %s", name); + + rawdev = rte_rawdev_pmd_get_named_dev(name); + if (!rawdev) { + IFPGA_RAWDEV_PMD_ERR("Raw device %s not found", name); + return -EINVAL; + } + + /* rte_rawdev_close is called by pmd_release */ + ret = rte_rawdev_pmd_release(rawdev); + if (ret) + IFPGA_RAWDEV_PMD_DEBUG("Device cleanup failed"); + + return 0; +} + +static int afu_rawdev_probe(struct rte_afu_device *afu_dev) +{ + IFPGA_RAWDEV_PMD_FUNC_TRACE(); + return afu_rawdev_create(afu_dev, rte_socket_id()); +} + +static int afu_rawdev_remove(struct rte_afu_device *afu_dev) +{ + IFPGA_RAWDEV_PMD_FUNC_TRACE(); + return afu_rawdev_destroy(afu_dev); +} + +static struct rte_afu_driver afu_pmd = { + .id_table = afu_pmd_uuid_map, + .probe = afu_rawdev_probe, + .remove = afu_rawdev_remove +}; + +RTE_PMD_REGISTER_AFU(afu_rawdev_driver, afu_pmd); + +static void update_uuid_map(void) +{ + int i = 0; + struct rte_afu_uuid *afu_id = afu_pmd_uuid_map; + struct afu_rawdev_drv *drv; + + TAILQ_FOREACH(drv, &afu_pmd_list, next) { + if (i++ < AFU_RAWDEV_MAX_DRVS) { + afu_id->uuid_low = drv->uuid.uuid_low; + afu_id->uuid_high = drv->uuid.uuid_high; + afu_id++; + } + } + if (i <= AFU_RAWDEV_MAX_DRVS) { + afu_id->uuid_low = 0; + afu_id->uuid_high = 0; + } +} + +void afu_pmd_register(struct afu_rawdev_drv *driver) +{ + TAILQ_INSERT_TAIL(&afu_pmd_list, driver, next); + update_uuid_map(); +} + +void afu_pmd_unregister(struct afu_rawdev_drv *driver) +{ + TAILQ_REMOVE(&afu_pmd_list, driver, next); + update_uuid_map(); +} diff --git a/drivers/raw/ifpga/afu_pmd_core.h b/drivers/raw/ifpga/afu_pmd_core.h new file mode 100644 index 0000000..4fad2c7 --- /dev/null +++ b/drivers/raw/ifpga/afu_pmd_core.h @@ -0,0 +1,76 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright 2022 Intel Corporation + */ + +#ifndef __AFU_PMD_CORE_H__ +#define __AFU_PMD_CORE_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#include +#include +#include + +#include "ifpga_rawdev.h" + +#define AFU_RAWDEV_MAX_DRVS 32 + +struct afu_rawdev; + +struct afu_ops { + int (*init)(struct afu_rawdev *dev); + int (*config)(struct afu_rawdev *dev, void *config, + size_t config_size); + int (*start)(struct afu_rawdev *dev); + int (*stop)(struct afu_rawdev *dev); + int (*test)(struct afu_rawdev *dev); + int (*close)(struct afu_rawdev *dev); + int (*reset)(struct afu_rawdev *dev); + int (*dump)(struct afu_rawdev *dev, FILE *f); +}; + +struct afu_shared_data { + rte_spinlock_t lock; /* lock for multi-process access */ +}; + +struct afu_rawdev_drv { + TAILQ_ENTRY(afu_rawdev_drv) next; + struct rte_afu_uuid uuid; + struct afu_ops *ops; +}; + +struct afu_rawdev { + struct rte_rawdev *rawdev; /* point to parent raw device */ + struct afu_shared_data *sd; /* shared data for multi-process */ + struct afu_ops *ops; /* device operation functions */ + int port; /* index of port the AFU attached */ + void *addr; /* base address of AFU registers */ + void *priv; /* private driver data */ +}; + +static inline struct afu_rawdev * +afu_rawdev_get_priv(const struct rte_rawdev *rawdev) +{ + return rawdev ? (struct afu_rawdev *)rawdev->dev_private : NULL; +} + +void afu_pmd_register(struct afu_rawdev_drv *driver); +void afu_pmd_unregister(struct afu_rawdev_drv *driver); + +#define AFU_PMD_REGISTER(drv)\ +RTE_INIT(afupmdinitfunc_ ##drv)\ +{\ + afu_pmd_register(&drv);\ +} + +#ifdef __cplusplus +} +#endif + +#endif /* __AFU_PMD_CORE_H__ */ diff --git a/drivers/raw/ifpga/meson.build b/drivers/raw/ifpga/meson.build index aeccc17..d9a6f29 100644 --- a/drivers/raw/ifpga/meson.build +++ b/drivers/raw/ifpga/meson.build @@ -13,7 +13,7 @@ objs = [base_objs] deps += ['ethdev', 'rawdev', 'pci', 'bus_pci', 'kvargs', 'bus_vdev', 'bus_ifpga', 'net', 'net_i40e', 'net_ipn3ke'] -sources = files('ifpga_rawdev.c', 'rte_pmd_ifpga.c') +sources = files('ifpga_rawdev.c', 'rte_pmd_ifpga.c', 'afu_pmd_core.c') includes += include_directories('base') includes += include_directories('../../net/ipn3ke') -- 1.8.3.1