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 BB730A0547; Thu, 28 Oct 2021 16:35:18 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8A19941140; Thu, 28 Oct 2021 16:35:18 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 838884111A for ; Thu, 28 Oct 2021 16:35:17 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635431717; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=x1YSFIS5JZJy3WaJ7boSQ1wgaddo6lWienaK5b0Tagk=; b=TSvQAy7rDkmTHm/ooxGxGAFghQZHzxHLoO6OeL+ThIJZJwVoIcM7xaPTvAqZ4m/wjHqFq9 Bim/2GVbmCyF0Ij30tcf6wIoGtULqgWXcLKKUyVXYY4U9BG6u0XiaMdq2zVAXYXsFixpIX 1JHUtb6cOVqg+ltMx3hUJp36iFyCdYc= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-291-O8YCMlTJOtOCYtoPfc_5Vw-1; Thu, 28 Oct 2021 10:35:15 -0400 X-MC-Unique: O8YCMlTJOtOCYtoPfc_5Vw-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id BB92C802B61; Thu, 28 Oct 2021 14:35:13 +0000 (UTC) Received: from [10.39.208.32] (unknown [10.39.208.32]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8665619724; Thu, 28 Oct 2021 14:35:12 +0000 (UTC) Message-ID: <8bf6891d-ce07-4e0a-9199-e0160c2e1f37@redhat.com> Date: Thu, 28 Oct 2021 16:35:10 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.2.0 To: Vijay Srivastava , dev@dpdk.org Cc: chenbo.xia@intel.com, andrew.rybchenko@oktetlabs.ru, Vijay Srivastava References: <20210706164418.32615-1-vsrivast@xilinx.com> <20211028075452.11804-1-vsrivast@xilinx.com> From: Maxime Coquelin In-Reply-To: <20211028075452.11804-1-vsrivast@xilinx.com> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 00/10] vdpa/sfc: introduce Xilinx vDPA driver 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 10/28/21 09:54, Vijay Srivastava wrote: > This patch series introduces vDPA driver for Xilinx devices. > The Xilinx vDPA (vhost data path acceleration) provides > support for the Xilinx SN1022 SmartNICs. > > Vijay Kumar Srivastava (10): > vdpa/sfc: introduce Xilinx vDPA driver > vdpa/sfc: add support for device initialization > vdpa/sfc: add support to get device and protocol features > vdpa/sfc: get device supported max queue count > vdpa/sfc: add support to get VFIO device fd > vdpa/sfc: add support for dev conf and dev close ops > vdpa/sfc: add support to get queue notify area info > vdpa/sfc: add support for MAC filter config > vdpa/sfc: add support to set vring state > vdpa/sfc: set a multicast filter during vDPA init > > MAINTAINERS | 6 + > doc/guides/rel_notes/release_21_11.rst | 5 + > doc/guides/vdpadevs/features/sfc.ini | 19 + > doc/guides/vdpadevs/sfc.rst | 107 ++++ > drivers/common/sfc_efx/efsys.h | 2 +- > drivers/common/sfc_efx/version.map | 10 + > drivers/vdpa/meson.build | 1 + > drivers/vdpa/sfc/meson.build | 37 ++ > drivers/vdpa/sfc/sfc_vdpa.c | 367 +++++++++++++ > drivers/vdpa/sfc/sfc_vdpa.h | 163 ++++++ > drivers/vdpa/sfc/sfc_vdpa_debug.h | 21 + > drivers/vdpa/sfc/sfc_vdpa_filter.c | 159 ++++++ > drivers/vdpa/sfc/sfc_vdpa_hw.c | 419 +++++++++++++++ > drivers/vdpa/sfc/sfc_vdpa_log.h | 59 ++ > drivers/vdpa/sfc/sfc_vdpa_mcdi.c | 74 +++ > drivers/vdpa/sfc/sfc_vdpa_ops.c | 947 +++++++++++++++++++++++++++++++++ > drivers/vdpa/sfc/sfc_vdpa_ops.h | 69 +++ > drivers/vdpa/sfc/version.map | 3 + > 18 files changed, 2467 insertions(+), 1 deletion(-) > create mode 100644 doc/guides/vdpadevs/features/sfc.ini > create mode 100644 doc/guides/vdpadevs/sfc.rst > create mode 100644 drivers/vdpa/sfc/meson.build > create mode 100644 drivers/vdpa/sfc/sfc_vdpa.c > create mode 100644 drivers/vdpa/sfc/sfc_vdpa.h > create mode 100644 drivers/vdpa/sfc/sfc_vdpa_debug.h > create mode 100644 drivers/vdpa/sfc/sfc_vdpa_filter.c > create mode 100644 drivers/vdpa/sfc/sfc_vdpa_hw.c > create mode 100644 drivers/vdpa/sfc/sfc_vdpa_log.h > create mode 100644 drivers/vdpa/sfc/sfc_vdpa_mcdi.c > create mode 100644 drivers/vdpa/sfc/sfc_vdpa_ops.c > create mode 100644 drivers/vdpa/sfc/sfc_vdpa_ops.h > create mode 100644 drivers/vdpa/sfc/version.map > Please also note that doc build is failing: http://mails.dpdk.org/archives/test-report/2021-October/235652.html " Warning, treated as error: /home/runner/work/dpdk/dpdk/doc/guides/vdpadevs/sfc.rst:document isn't included in any toctree " Maxime