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 B198642B83; Tue, 23 May 2023 21:20:19 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8B2DE40E6E; Tue, 23 May 2023 21:20:19 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 7103F40689 for ; Tue, 23 May 2023 21:20:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1684869618; 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=zk93F0WftHnJ7pD9QmLzzhWyvGO018g1524bJRmPrsQ=; b=FznZfV7Keu93+3pHWiP+4++q7N34YGNPQAO2dld9WxfBE4vNsAVl3QnDJLhXJxGrRgl7YO emXeeGmKf9UNNnETK6esgTqV5Dg0pS9YHw314XyMZiT0YD5M6/m4EDxQyVCEtp5kx/+mrM FMZaXZ/yZP8XG483qWJ5Es31ALOMUGI= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-274-dS7lbJ7nNh-hMmbuLEjv3A-1; Tue, 23 May 2023 15:20:14 -0400 X-MC-Unique: dS7lbJ7nNh-hMmbuLEjv3A-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 3B45D3C0BE40; Tue, 23 May 2023 19:20:14 +0000 (UTC) Received: from [10.39.208.2] (unknown [10.39.208.2]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EF5FA40D1B60; Tue, 23 May 2023 19:20:12 +0000 (UTC) Message-ID: <8eca7f0a-35d0-7ba4-8baf-700da5bd852b@redhat.com> Date: Tue, 23 May 2023 21:20:11 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.10.0 Subject: Re: [PATCH v1 0/6] baseband/fpga_5gnr_fec: changes for 23.07 To: Hernan Vargas , dev@dpdk.org, gakhil@marvell.com, trix@redhat.com Cc: nicolas.chautru@intel.com, qi.z.zhang@intel.com References: <20230523184818.139353-1-hernan.vargas@intel.com> From: Maxime Coquelin In-Reply-To: <20230523184818.139353-1-hernan.vargas@intel.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.2 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 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 Hi Hernan, On 5/23/23 20:48, Hernan Vargas wrote: > Targeting 23.07 if possible. Add support for AGX100 (N6000) and corner case fixes. We can take the fixes in 23.07, but for the new devices support, it will have to wait for v23.11. Indeed, the submission deadline was one month ago (April 22nd). Regards, Maxime > Hernan Vargas (6): > baseband/fpga_5gnr_fec: fix possible div by zero > baseband/fpga_5gnr_fec: fix seg fault unconf queue > baseband/fpga_5gnr_fec: renaming for consistency > baseband/fpga_5gnr_fec: add Vista Creek variant > baseband/fpga_5gnr_fec: add AGX100 support > baseband/fpga_5gnr_fec: cosmetic comment changes > > doc/guides/bbdevs/fpga_5gnr_fec.rst | 72 +- > drivers/baseband/fpga_5gnr_fec/agx100_pmd.h | 273 ++ > .../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h | 349 +-- > .../fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 2261 ++++++++++++----- > .../fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h | 27 +- > drivers/baseband/fpga_5gnr_fec/vc_5gnr_pmd.h | 140 + > 6 files changed, 2157 insertions(+), 965 deletions(-) > create mode 100644 drivers/baseband/fpga_5gnr_fec/agx100_pmd.h > create mode 100644 drivers/baseband/fpga_5gnr_fec/vc_5gnr_pmd.h >