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 4F65BA0554 for ; Thu, 9 Jun 2022 09:29:53 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F11E4281B; Thu, 9 Jun 2022 09:29:53 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 440E040220; Thu, 9 Jun 2022 09:29:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1654759790; x=1686295790; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=VkPLxBpqqQerX9+xpThw1tgVTWvkAtoBNnoWIfA+mb8=; b=C4Id/pX/doD66ftUsXO0yYxJeTpbmrgogdAZrSARvXLdEiJkVSEKM3c3 2vFLTR/9VvLYSiB1qP9Il9uquMbJwpJ8FVPSFvVKk4kBkdF/IZAQebECr 37U5eQA5MXJ5ZXm1scMHusyLj+CrOeMfo68D8aCTadZoX8W/h8rILI82u 1xG1hdWf05kRzSKoJdnV017wvcux8bScJRf5/FGX3b0kZL3eTEF7D+YQ0 cSkBk39uRPhELGcC5LfJioN56dGs8zdo83m0NPL2B+OPiXem6UMM52Z3O 09Zc7uC/2m0pyIpqb4DQlSXJ/IPbH1YcwnLVK0yjdhKTrSiqsHhl25kIA Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10372"; a="265967248" X-IronPort-AV: E=Sophos;i="5.91,287,1647327600"; d="scan'208";a="265967248" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Jun 2022 00:29:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,287,1647327600"; d="scan'208";a="649077821" Received: from unknown (HELO zj-fpga-amt.sh.intel.com) ([10.238.175.102]) by fmsmga004.fm.intel.com with ESMTP; 09 Jun 2022 00:29:47 -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 v7 1/5] raw/ifpga: introduce AFU driver framework Date: Thu, 9 Jun 2022 03:37:18 -0400 Message-Id: <1654760242-7832-2-git-send-email-wei.huang@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1654760242-7832-1-git-send-email-wei.huang@intel.com> References: <1654742650-7214-1-git-send-email-wei.huang@intel.com> <1654760242-7832-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 --- 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 --- drivers/raw/ifpga/afu_pmd_core.c | 453 +++++++++++++++++++++++++++++++++++++++ drivers/raw/ifpga/afu_pmd_core.h | 76 +++++++ drivers/raw/ifpga/meson.build | 2 +- 3 files changed, 530 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/drivers/raw/ifpga/afu_pmd_core.c b/drivers/raw/ifpga/afu_pmd_core.c new file mode 100644 index 0000000..a24b517 --- /dev/null +++ b/drivers/raw/ifpga/afu_pmd_core.c @@ -0,0 +1,453 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright 2022 Intel Corporation + * + * AFU is Acceleration Function Unit in FPGA, it is enumerated by ifpga pmd. + * 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. + * + */ + +#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