From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1B4ADC433B4 for ; Tue, 4 May 2021 15:40:41 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 5BAE3611AD for ; Tue, 4 May 2021 15:40:40 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5BAE3611AD Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 30DAA4014D; Tue, 4 May 2021 17:40:39 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 4226F40147 for ; Tue, 4 May 2021 17:40:37 +0200 (CEST) IronPort-SDR: mucIO5CCr/4XmEB7f31Dp801dkWyxI/ev2RkyhB5dLZmtTDYEta3uf0KeC2EMAMQULalJw1bek A9SYylp//ulg== X-IronPort-AV: E=McAfee;i="6200,9189,9974"; a="185143203" X-IronPort-AV: E=Sophos;i="5.82,272,1613462400"; d="scan'208";a="185143203" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 May 2021 08:40:36 -0700 IronPort-SDR: xOgkakHYbf7HwrTrmh6gEig7u67Cu+h6a+droR/q8npCkSXglED8+s5vMb2MW9QhyRPFtnDImM 29dvpiwsu3bg== X-IronPort-AV: E=Sophos;i="5.82,272,1613462400"; d="scan'208";a="433328957" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.243.109]) ([10.213.243.109]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 May 2021 08:40:34 -0700 To: Apeksha Gupta Cc: dev@dpdk.org, hemant.agrawal@nxp.com, sachin.saxena@nxp.com References: <20210430043424.19752-1-apeksha.gupta@nxp.com> From: Ferruh Yigit X-User: ferruhy Message-ID: <70b748d4-aa71-6c31-e1e1-b0c8d4afd28c@intel.com> Date: Tue, 4 May 2021 16:40:31 +0100 MIME-Version: 1.0 In-Reply-To: <20210430043424.19752-1-apeksha.gupta@nxp.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 0/4] drivers/net: add NXP ENETFEC 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 4/30/2021 5:34 AM, Apeksha Gupta wrote: > This patch series introduce the enetfec ethernet driver, > ENET fec (Fast Ethernet Controller) is a network poll mode driver for > the inbuilt NIC found in the NXP imx8mmevk Soc. > > An overview of the enetfec driver with probe and remove are in patch 1. > Patch 2 design UIO so that user space directly communicate with a > hardware device. UIO interface mmap the Register & BD memory in DPDK > which is allocated in kernel and this gives access to non-cacheble > memory for BD. > > Patch 3 adds the RX/TX queue configuration setup operations. > Patch 4 adds enqueue and dequeue support. Also adds some basic features > like promiscuous enable, basic stats. > > > Apeksha Gupta (4): > drivers/net/enetfec: Introduce NXP ENETFEC driver > drivers/net/enetfec: UIO support added > drivers/net/enetfec: queue configuration > drivers/net/enetfec: add enqueue and dequeue support > Hi Apeksha, Hemant, It is a little late for v21.05, lets consider this driver for next release. Meanwhile reviews can continue on it.