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 18F6CA00C2; Thu, 6 Oct 2022 01:22:19 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B363940697; Thu, 6 Oct 2022 01:22:18 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 9152040697 for ; Thu, 6 Oct 2022 01:22:17 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1004) id 9BE8C20C3334; Wed, 5 Oct 2022 16:22:16 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 9BE8C20C3334 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxonhyperv.com; s=default; t=1665012136; bh=6BgTcuDQK+Y02RC8IYVTJSvWmkWqAZeJvbq88Ym21GQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:Reply-To:From; b=EfWjkLPveCStUc39fIZlIb5Q9nE1BxRrO8vkr/Yz/iOzuDxe8YtvWGi9QQq9ly+vd Y6XA3BYTYW2MBg8/QPV7l1NZDZCB+Ul8AhDC8NyPHD8ngQ2a3HRFV5viAEsC9jMffk XK5Ceqcss6sKOiP3ITd65nVuUCMB2jK8YPnUYiM0= From: longli@linuxonhyperv.com To: Ferruh Yigit Cc: dev@dpdk.org, Ajay Sharma , Stephen Hemminger , Long Li Subject: [Patch v10 00/18] Introduce Microsoft Azure Network Adatper (MANA) PMD Date: Wed, 5 Oct 2022 16:21:50 -0700 Message-Id: <1665012128-20520-1-git-send-email-longli@linuxonhyperv.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1663987546-15982-1-git-send-email-longli@linuxonhyperv.com> References: <1663987546-15982-1-git-send-email-longli@linuxonhyperv.com> 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: , Reply-To: longli@microsoft.com Errors-To: dev-bounces@dpdk.org From: Long Li MANA is a network interface card to be used in the Azure cloud environment. MANA provides safe access to user memory through memory registration. It has IOMMU built into the hardware. MANA uses IB verbs and RDMA layer to configure hardware resources. It requires the corresponding RDMA kernel-mode and user-mode drivers. The MANA RDMA kernel-mode driver is being reviewed at: https://patchwork.kernel.org/project/netdevbpf/list/?series=678843&state=* The MANA RDMA user-mode driver is being reviewed at: https://github.com/linux-rdma/rdma-core/pull/1177 Long Li (18): net/mana: add basic driver with build environment and doc net/mana: device configuration and stop net/mana: report supported ptypes net/mana: support link update net/mana: support device removal interrupts net/mana: report device info net/mana: configure RSS net/mana: configure Rx queues net/mana: configure Tx queues net/mana: implement memory registration net/mana: implement the hardware layer operations net/mana: start/stop Tx queues net/mana: start/stop Rx queues net/mana: receive packets net/mana: send packets net/mana: start/stop device net/mana: report queue stats net/mana: support Rx interrupts MAINTAINERS | 6 + doc/guides/nics/features/mana.ini | 19 + doc/guides/nics/index.rst | 1 + doc/guides/nics/mana.rst | 73 ++ drivers/net/mana/gdma.c | 303 ++++++ drivers/net/mana/mana.c | 1502 +++++++++++++++++++++++++++++ drivers/net/mana/mana.h | 542 +++++++++++ drivers/net/mana/meson.build | 48 + drivers/net/mana/mp.c | 336 +++++++ drivers/net/mana/mr.c | 348 +++++++ drivers/net/mana/rx.c | 531 ++++++++++ drivers/net/mana/tx.c | 416 ++++++++ drivers/net/mana/version.map | 3 + drivers/net/meson.build | 1 + 14 files changed, 4129 insertions(+) create mode 100644 doc/guides/nics/features/mana.ini create mode 100644 doc/guides/nics/mana.rst create mode 100644 drivers/net/mana/gdma.c create mode 100644 drivers/net/mana/mana.c create mode 100644 drivers/net/mana/mana.h create mode 100644 drivers/net/mana/meson.build create mode 100644 drivers/net/mana/mp.c create mode 100644 drivers/net/mana/mr.c create mode 100644 drivers/net/mana/rx.c create mode 100644 drivers/net/mana/tx.c create mode 100644 drivers/net/mana/version.map -- 2.17.1