net/enetfec: introduce driver
authorApeksha Gupta <apeksha.gupta@nxp.com>
Mon, 15 Nov 2021 07:19:36 +0000 (12:49 +0530)
committerFerruh Yigit <ferruh.yigit@intel.com>
Mon, 15 Nov 2021 15:26:15 +0000 (16:26 +0100)
ENETFEC (Fast Ethernet Controller) is a network poll mode driver
for NXP SoC i.MX 8M Mini.

This patch adds skeleton for enetfec driver with probe function.

Signed-off-by: Sachin Saxena <sachin.saxena@nxp.com>
Signed-off-by: Apeksha Gupta <apeksha.gupta@nxp.com>
Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
MAINTAINERS
doc/guides/nics/enetfec.rst [new file with mode: 0644]
doc/guides/nics/features/enetfec.ini [new file with mode: 0644]
doc/guides/nics/index.rst
doc/guides/rel_notes/release_21_11.rst
drivers/net/enetfec/enet_ethdev.c [new file with mode: 0644]
drivers/net/enetfec/enet_ethdev.h [new file with mode: 0644]
drivers/net/enetfec/enet_pmd_logs.h [new file with mode: 0644]
drivers/net/enetfec/meson.build [new file with mode: 0644]
drivers/net/enetfec/version.map [new file with mode: 0644]
drivers/net/meson.build

index adee619..d6d7a51 100644 (file)
@@ -889,6 +889,13 @@ F: drivers/net/enetc/
 F: doc/guides/nics/enetc.rst
 F: doc/guides/nics/features/enetc.ini
 
+NXP enetfec - EXPERIMENTAL
+M: Apeksha Gupta <apeksha.gupta@nxp.com>
+M: Sachin Saxena <sachin.saxena@nxp.com>
+F: drivers/net/enetfec/
+F: doc/guides/nics/enetfec.rst
+F: doc/guides/nics/features/enetfec.ini
+
 NXP pfe
 M: Gagandeep Singh <g.singh@nxp.com>
 F: doc/guides/nics/pfe.rst
diff --git a/doc/guides/nics/enetfec.rst b/doc/guides/nics/enetfec.rst
new file mode 100644 (file)
index 0000000..088e122
--- /dev/null
@@ -0,0 +1,136 @@
+.. SPDX-License-Identifier: BSD-3-Clause
+   Copyright 2021 NXP
+
+ENETFEC Poll Mode Driver
+========================
+
+The ENETFEC NIC PMD (**librte_net_enetfec**) provides poll mode driver
+support for the inbuilt NIC found in the ** NXP i.MX 8M Mini** SoC.
+
+More information can be found at NXP Official Website
+<https://www.nxp.com/products/processors-and-microcontrollers/arm-processors/i-mx-applications-processors/i-mx-8-processors/i-mx-8m-mini-arm-cortex-a53-cortex-m4-audio-voice-video:i.MX8MMINI>
+
+This section provides an overview of the NXP ENETFEC
+and how it is integrated into the DPDK.
+Driver is taken as **experimental**
+as driver depends on a Linux kernel module 'enetfec-uio',
+which is not upstreamed yet.
+
+Contents summary
+
+- ENETFEC overview
+- ENETFEC features
+- Supported ENETFEC SoCs
+- Prerequisites
+- Driver compilation and testing
+- Limitations
+
+ENETFEC Overview
+----------------
+
+The i.MX 8M Mini Media Applications Processor is built
+to achieve both high performance and low power consumption.
+ENETFEC PMD is a hardware programmable packet forwarding engine
+to provide high performance Ethernet interface.
+It has only 1 GB Ethernet interface with RJ45 connector.
+
+The diagram below shows a system level overview of ENETFEC:
+
+  .. code-block:: console
+
+   =====================================================
+   Userspace
+        +-----------------------------------------+
+        |             ENETFEC Driver              |
+        |        +-------------------------+      |
+        |        | virtual ethernet device |      |
+        +-----------------------------------------+
+                          ^   |
+                          |   |
+                          |   |
+                     RXQ  |   |        TXQ
+                          |   |
+                          |   v
+   =====================================================
+   Kernel Space
+                       +---------+
+                       | fec-uio |
+   ====================+=========+======================
+   Hardware
+        +-----------------------------------------+
+        |           i.MX 8M MINI EVK              |
+        |               +-----+                   |
+        |               | MAC |                   |
+        +---------------+-----+-------------------+
+                        | PHY |
+                        +-----+
+
+ENETFEC Ethernet driver is traditional DPDK PMD driver running in userspace.
+'fec-uio' is the kernel driver.
+The MAC and PHY are the hardware blocks.
+ENETFEC PMD uses standard UIO interface to access kernel
+for PHY initialisation and for mapping the allocated memory
+of register & buffer descriptor with DPDK
+which gives access to non-cacheable memory for buffer descriptor.
+net_enetfec is logical Ethernet interface, created by ENETFEC driver.
+
+- ENETFEC driver registers the device in virtual device driver.
+- RTE framework scans and will invoke the probe function of ENETFEC driver.
+- The probe function will set the basic device registers and also setups BD rings.
+- On packet Rx the respective BD Ring status bit is set which is then used for
+  packet processing.
+- Then Tx is done first followed by Rx via logical interfaces.
+
+ENETFEC Features
+----------------
+
+- Linux
+- ARMv8
+
+Supported ENETFEC SoCs
+----------------------
+
+- i.MX 8M Mini
+
+Prerequisites
+-------------
+
+There are three main pre-requisites for executing ENETFEC PMD on a i.MX 8M Mini
+compatible board:
+
+1. **ARM 64 Tool Chain**
+
+   For example, the `*aarch64* Linaro Toolchain
+   <https://releases.linaro.org/components/toolchain/binaries/7.4-2019.02/aarch64-linux-gnu/gcc-linaro-7.4.1-2019.02-x86_64_aarch64-linux-gnu.tar.xz>`_.
+
+2. **Linux Kernel**
+
+   It can be obtained from `NXP's Github hosting
+   <https://source.codeaurora.org/external/qoriq/qoriq-components/linux>`_.
+
+.. note::
+
+   Branch is 'lf-5.10.y'
+
+3. **Rootfile system**
+
+   Any *aarch64* supporting filesystem can be used.
+   For example, Ubuntu 18.04 LTS (Bionic) or 20.04 LTS(Focal) userland
+   which can be obtained from `here
+   <http://cdimage.ubuntu.com/ubuntu-base/releases/18.04/release/ubuntu-base-18.04.1-base-arm64.tar.gz>`_.
+
+4. The Ethernet device will be registered as virtual device,
+   so ENETFEC has dependency on **rte_bus_vdev** library
+   and it is mandatory to use `--vdev` with value `net_enetfec`
+   to run DPDK application.
+
+Driver compilation and testing
+------------------------------
+
+Follow instructions available in the document :doc:`build_and_test`
+to launch **dpdk-testpmd**.
+
+Limitations
+-----------
+
+- Multi queue is not supported.
diff --git a/doc/guides/nics/features/enetfec.ini b/doc/guides/nics/features/enetfec.ini
new file mode 100644 (file)
index 0000000..bdfbdbd
--- /dev/null
@@ -0,0 +1,9 @@
+;
+; Supported features of the 'enetfec' network poll mode driver.
+;
+; Refer to default.ini for the full list of available PMD features.
+;
+[Features]
+Linux               = Y
+ARMv8               = Y
+Usage doc           = Y
index 784d5d3..777fdab 100644 (file)
@@ -26,6 +26,7 @@ Network Interface Controller Drivers
     e1000em
     ena
     enetc
+    enetfec
     enic
     fm10k
     hinic
index 7d60b55..09598c0 100644 (file)
@@ -225,6 +225,11 @@ New Features
   * Added NIC offloads for the PMD on Windows (TSO, VLAN strip, CRC keep).
   * Added socket direct mode bonding support.
 
+* **Added NXP ENETFEC PMD [EXPERIMENTAL].**
+
+  Added the new ENETFEC driver for the NXP IMX8MMEVK platform. See the
+  :doc:`../nics/enetfec` NIC driver guide for more details on this new driver.
+
 * **Updated Solarflare network PMD.**
 
   Updated the Solarflare ``sfc_efx`` driver with changes including:
diff --git a/drivers/net/enetfec/enet_ethdev.c b/drivers/net/enetfec/enet_ethdev.c
new file mode 100644 (file)
index 0000000..2cd503b
--- /dev/null
@@ -0,0 +1,73 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright 2020-2021 NXP
+ */
+
+#include <ethdev_vdev.h>
+#include <ethdev_driver.h>
+#include "enet_pmd_logs.h"
+#include "enet_ethdev.h"
+
+#define ENETFEC_NAME_PMD                net_enetfec
+
+static int
+enetfec_eth_init(struct rte_eth_dev *dev)
+{
+       rte_eth_dev_probing_finish(dev);
+       return 0;
+}
+
+static int
+pmd_enetfec_probe(struct rte_vdev_device *vdev)
+{
+       struct rte_eth_dev *dev = NULL;
+       struct enetfec_private *fep;
+       const char *name;
+       int rc;
+
+       name = rte_vdev_device_name(vdev);
+       ENETFEC_PMD_LOG(INFO, "Initializing pmd_fec for %s", name);
+
+       dev = rte_eth_vdev_allocate(vdev, sizeof(*fep));
+       if (dev == NULL)
+               return -ENOMEM;
+
+       /* setup board info structure */
+       fep = dev->data->dev_private;
+       fep->dev = dev;
+       rc = enetfec_eth_init(dev);
+       if (rc)
+               goto failed_init;
+
+       return 0;
+
+failed_init:
+       ENETFEC_PMD_ERR("Failed to init");
+       return rc;
+}
+
+static int
+pmd_enetfec_remove(struct rte_vdev_device *vdev)
+{
+       struct rte_eth_dev *eth_dev = NULL;
+       int ret;
+
+       /* find the ethdev entry */
+       eth_dev = rte_eth_dev_allocated(rte_vdev_device_name(vdev));
+       if (eth_dev == NULL)
+               return -ENODEV;
+
+       ret = rte_eth_dev_release_port(eth_dev);
+       if (ret != 0)
+               return -EINVAL;
+
+       ENETFEC_PMD_INFO("Release enetfec sw device");
+       return 0;
+}
+
+static struct rte_vdev_driver pmd_enetfec_drv = {
+       .probe = pmd_enetfec_probe,
+       .remove = pmd_enetfec_remove,
+};
+
+RTE_PMD_REGISTER_VDEV(ENETFEC_NAME_PMD, pmd_enetfec_drv);
+RTE_LOG_REGISTER_DEFAULT(enetfec_logtype_pmd, NOTICE);
diff --git a/drivers/net/enetfec/enet_ethdev.h b/drivers/net/enetfec/enet_ethdev.h
new file mode 100644 (file)
index 0000000..7e941da
--- /dev/null
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright 2020-2021 NXP
+ */
+
+#ifndef __ENETFEC_ETHDEV_H__
+#define __ENETFEC_ETHDEV_H__
+
+/*
+ * ENETFEC can support 1 rx and tx queue..
+ */
+
+#define ENETFEC_MAX_Q          1
+
+struct enetfec_private {
+       struct rte_eth_dev      *dev;
+};
+
+#endif /*__ENETFEC_ETHDEV_H__*/
diff --git a/drivers/net/enetfec/enet_pmd_logs.h b/drivers/net/enetfec/enet_pmd_logs.h
new file mode 100644 (file)
index 0000000..72d1cb6
--- /dev/null
@@ -0,0 +1,33 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright 2020-2021 NXP
+ */
+
+#ifndef _ENETFEC_LOGS_H_
+#define _ENETFEC_LOGS_H_
+
+#include <rte_log.h>
+
+extern int enetfec_logtype_pmd;
+
+/* PMD related logs */
+#define ENETFEC_PMD_LOG(level, fmt, args...) \
+       rte_log(RTE_LOG_ ## level, enetfec_logtype_pmd, "\nfec_net: %s()" \
+               fmt "\n", __func__, ##args)
+
+#define PMD_INIT_FUNC_TRACE() ENET_PMD_LOG(DEBUG, " >>")
+
+#define ENETFEC_PMD_DEBUG(fmt, args...) \
+       ENETFEC_PMD_LOG(DEBUG, fmt, ## args)
+#define ENETFEC_PMD_ERR(fmt, args...) \
+       ENETFEC_PMD_LOG(ERR, fmt, ## args)
+#define ENETFEC_PMD_INFO(fmt, args...) \
+       ENETFEC_PMD_LOG(INFO, fmt, ## args)
+
+#define ENETFEC_PMD_WARN(fmt, args...) \
+       ENETFEC_PMD_LOG(WARNING, fmt, ## args)
+
+/* DP Logs, toggled out at compile time if level lower than current level */
+#define ENETFEC_DP_LOG(level, fmt, args...) \
+       RTE_LOG_DP(level, PMD, fmt, ## args)
+
+#endif /* _ENETFEC_LOGS_H_ */
diff --git a/drivers/net/enetfec/meson.build b/drivers/net/enetfec/meson.build
new file mode 100644 (file)
index 0000000..cb5c402
--- /dev/null
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright 2021 NXP
+
+if not is_linux
+    build = false
+    reason = 'only supported on linux'
+endif
+
+sources = files(
+        'enet_ethdev.c',
+)
diff --git a/drivers/net/enetfec/version.map b/drivers/net/enetfec/version.map
new file mode 100644 (file)
index 0000000..c2e0723
--- /dev/null
@@ -0,0 +1,3 @@
+DPDK_22 {
+       local: *;
+};
index bcf488f..04be346 100644 (file)
@@ -19,6 +19,7 @@ drivers = [
         'e1000',
         'ena',
         'enetc',
+        'enetfec',
         'enic',
         'failsafe',
         'fm10k',