From: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
To: dev@dpdk.org
Cc: Felix Marti <felix@chelsio.com>,
Kumar Sanghvi <kumaras@chelsio.com>,
Nirranjan Kirubaharan <nirranjan@chelsio.com>
Subject: [dpdk-dev] [PATCH v3 0/9] Chelsio Terminator 5 (T5) 10G/40G Poll Mode Driver
Date: Thu, 18 Jun 2015 17:47:02 +0530 [thread overview]
Message-ID: <cover.1434628361.git.rahul.lakkireddy@chelsio.com> (raw)
In-Reply-To: <cover.1433164517.git.rahul.lakkireddy@chelsio.com>
This series of patches add the CXGBE Poll Mode Driver support for Chelsio
Terminator 5 series of 10G/40G adapters. The CXGBE PMD is split into multiple
patches. The first patch adds the hardware specific api for all supported
Chelsio T5 adapters and the patches from 2 to 8 add the actual DPDK CXGBE PMD.
Also, the CXGBE PMD is enabled for compilation and linking by patch 2.
MAINTAINERS file is also updated by patch 2 to claim responsibility for the
CXGBE PMD.
More information on the CXGBE PMD can be found in the documentation added by
patch 9.
v3:
- Merge patches 10 and 11 with patch 2.
- Add rte_pmd_cxgbe_version.map and add EXPORT_MAP and LIBABIVER to cxgbe
Makefile.
- Use RTE_DIM macro for calculating ARRAY_SIZE.
v2:
- Move the driver to drivers/net directory and update all config files and
commit logs. Also update MAINTAINERS.
- Break the second patch into more patches; incrementally, adding features to
the cxgbe poll mode driver.
- Replace bitwise operations in finding last (most significant) bit set with
gcc's __builtin_clz.
- Fix the return value returned by link update eth_dev operation.
- Few bug fixes and code cleanup.
Rahul Lakkireddy (9):
cxgbe: add hardware specific api for all supported Chelsio T5 series
adapters.
cxgbe: add cxgbe poll mode driver.
cxgbe: add device configuration and RX support for cxgbe PMD.
cxgbe: add TX support for cxgbe PMD.
cxgbe: add device related operations for cxgbe PMD.
cxgbe: add port statistics for cxgbe PMD.
cxgbe: add link related functions for cxgbe PMD.
cxgbe: add flow control functions for cxgbe PMD.
doc: add cxgbe PMD documentation under doc/guides/nics/cxgbe.rst
MAINTAINERS | 5 +
config/common_linuxapp | 10 +
doc/guides/nics/cxgbe.rst | 209 +++
doc/guides/nics/index.rst | 1 +
doc/guides/prog_guide/source_org.rst | 1 +
drivers/net/Makefile | 1 +
drivers/net/cxgbe/Makefile | 78 +
drivers/net/cxgbe/base/adapter.h | 565 ++++++
drivers/net/cxgbe/base/common.h | 401 ++++
drivers/net/cxgbe/base/t4_chip_type.h | 79 +
drivers/net/cxgbe/base/t4_hw.c | 2686 +++++++++++++++++++++++++++
drivers/net/cxgbe/base/t4_hw.h | 149 ++
drivers/net/cxgbe/base/t4_msg.h | 345 ++++
drivers/net/cxgbe/base/t4_pci_id_tbl.h | 148 ++
drivers/net/cxgbe/base/t4_regs.h | 779 ++++++++
drivers/net/cxgbe/base/t4_regs_values.h | 168 ++
drivers/net/cxgbe/base/t4fw_interface.h | 1730 +++++++++++++++++
drivers/net/cxgbe/cxgbe.h | 60 +
drivers/net/cxgbe/cxgbe_compat.h | 266 +++
drivers/net/cxgbe/cxgbe_ethdev.c | 802 ++++++++
drivers/net/cxgbe/cxgbe_main.c | 1207 ++++++++++++
drivers/net/cxgbe/rte_pmd_cxgbe_version.map | 4 +
drivers/net/cxgbe/sge.c | 2253 ++++++++++++++++++++++
mk/rte.app.mk | 1 +
24 files changed, 11948 insertions(+)
create mode 100644 doc/guides/nics/cxgbe.rst
create mode 100644 drivers/net/cxgbe/Makefile
create mode 100644 drivers/net/cxgbe/base/adapter.h
create mode 100644 drivers/net/cxgbe/base/common.h
create mode 100644 drivers/net/cxgbe/base/t4_chip_type.h
create mode 100644 drivers/net/cxgbe/base/t4_hw.c
create mode 100644 drivers/net/cxgbe/base/t4_hw.h
create mode 100644 drivers/net/cxgbe/base/t4_msg.h
create mode 100644 drivers/net/cxgbe/base/t4_pci_id_tbl.h
create mode 100644 drivers/net/cxgbe/base/t4_regs.h
create mode 100644 drivers/net/cxgbe/base/t4_regs_values.h
create mode 100644 drivers/net/cxgbe/base/t4fw_interface.h
create mode 100644 drivers/net/cxgbe/cxgbe.h
create mode 100644 drivers/net/cxgbe/cxgbe_compat.h
create mode 100644 drivers/net/cxgbe/cxgbe_ethdev.c
create mode 100644 drivers/net/cxgbe/cxgbe_main.c
create mode 100644 drivers/net/cxgbe/rte_pmd_cxgbe_version.map
create mode 100644 drivers/net/cxgbe/sge.c
--
2.4.1
next prev parent reply other threads:[~2015-06-18 12:18 UTC|newest]
Thread overview: 61+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-22 13:24 [dpdk-dev] [PATCH 0/5] " Rahul Lakkireddy
2015-05-22 13:24 ` [dpdk-dev] [PATCH 1/5] cxgbe: add hardware specific api for all supported Chelsio T5 series adapters Rahul Lakkireddy
2015-05-22 13:24 ` [dpdk-dev] [PATCH 2/5] cxgbe: add cxgbe poll mode driver Rahul Lakkireddy
2015-05-22 16:42 ` Stephen Hemminger
2015-05-23 5:57 ` Rahul Lakkireddy
2015-05-26 17:02 ` Rahul Lakkireddy
2015-05-26 17:24 ` Stephen Hemminger
2015-05-26 18:13 ` Rahul Lakkireddy
2015-05-22 16:43 ` Stephen Hemminger
2015-05-23 5:56 ` Rahul Lakkireddy
2015-05-22 16:46 ` Stephen Hemminger
2015-05-23 5:53 ` Rahul Lakkireddy
2015-05-27 5:49 ` Thomas Monjalon
2015-05-27 11:26 ` Rahul Lakkireddy
2015-05-22 13:24 ` [dpdk-dev] [PATCH 3/5] doc: add cxgbe PMD documentation under doc/guides/nics/cxgbe.rst Rahul Lakkireddy
2015-05-27 5:38 ` Thomas Monjalon
2015-05-27 11:24 ` Rahul Lakkireddy
2015-05-22 13:24 ` [dpdk-dev] [PATCH 4/5] config: enable cxgbe PMD for compilation and linking Rahul Lakkireddy
2015-05-22 13:24 ` [dpdk-dev] [PATCH 5/5] maintainers: claim responsibility for cxgbe PMD Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 00/11] Chelsio Terminator 5 (T5) 10G/40G Poll Mode Driver Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 01/11] cxgbe: add hardware specific api for all supported Chelsio T5 series adapters Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 02/11] cxgbe: add cxgbe poll mode driver Rahul Lakkireddy
2015-06-17 12:30 ` Thomas Monjalon
2015-06-18 7:06 ` Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 03/11] cxgbe: add device configuration and RX support for cxgbe PMD Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 04/11] cxgbe: add TX " Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 05/11] cxgbe: add device related operations " Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 06/11] cxgbe: add port statistics " Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 07/11] cxgbe: add link related functions " Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 08/11] cxgbe: add flow control " Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 09/11] doc: add cxgbe PMD documentation under doc/guides/nics/cxgbe.rst Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 10/11] config: enable cxgbe PMD for compilation and linking Rahul Lakkireddy
2015-06-01 17:30 ` [dpdk-dev] [PATCH v2 11/11] maintainers: claim responsibility for cxgbe PMD Rahul Lakkireddy
2015-06-18 12:17 ` Rahul Lakkireddy [this message]
2015-06-18 12:17 ` [dpdk-dev] [PATCH v3 1/9] cxgbe: add hardware specific api for all supported Chelsio T5 series adapters Rahul Lakkireddy
2015-06-18 12:17 ` [dpdk-dev] [PATCH v3 2/9] cxgbe: add cxgbe poll mode driver Rahul Lakkireddy
2015-06-28 19:32 ` Thomas Monjalon
2015-06-29 23:23 ` Rahul Lakkireddy
2015-06-18 12:17 ` [dpdk-dev] [PATCH v3 3/9] cxgbe: add device configuration and RX support for cxgbe PMD Rahul Lakkireddy
2015-06-28 19:34 ` Thomas Monjalon
2015-06-29 23:18 ` Rahul Lakkireddy
2015-06-18 12:17 ` [dpdk-dev] [PATCH v3 4/9] cxgbe: add TX " Rahul Lakkireddy
2015-06-18 12:17 ` [dpdk-dev] [PATCH v3 5/9] cxgbe: add device related operations " Rahul Lakkireddy
2015-06-18 12:17 ` [dpdk-dev] [PATCH v3 6/9] cxgbe: add port statistics " Rahul Lakkireddy
2015-06-18 12:17 ` [dpdk-dev] [PATCH v3 7/9] cxgbe: add link related functions " Rahul Lakkireddy
2015-06-18 12:17 ` [dpdk-dev] [PATCH v3 8/9] cxgbe: add flow control " Rahul Lakkireddy
2015-06-18 12:17 ` [dpdk-dev] [PATCH v3 9/9] doc: add cxgbe PMD documentation under doc/guides/nics/cxgbe.rst Rahul Lakkireddy
2015-06-18 13:47 ` Mcnamara, John
2015-06-18 13:44 ` [dpdk-dev] [PATCH v3 0/9] Chelsio Terminator 5 (T5) 10G/40G Poll Mode Driver Mcnamara, John
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 " Rahul Lakkireddy
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 1/9] cxgbe: add hardware specific api for all supported Chelsio T5 series adapters Rahul Lakkireddy
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 2/9] cxgbe: add cxgbe poll mode driver Rahul Lakkireddy
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 3/9] cxgbe: add device configuration and RX support for cxgbe PMD Rahul Lakkireddy
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 4/9] cxgbe: add TX " Rahul Lakkireddy
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 5/9] cxgbe: add device related operations " Rahul Lakkireddy
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 6/9] cxgbe: add port statistics " Rahul Lakkireddy
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 7/9] cxgbe: add link related functions " Rahul Lakkireddy
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 8/9] cxgbe: add flow control " Rahul Lakkireddy
2015-06-29 23:28 ` [dpdk-dev] [PATCH v4 9/9] doc: add cxgbe PMD documentation under doc/guides/nics/cxgbe.rst Rahul Lakkireddy
2015-06-30 21:01 ` [dpdk-dev] [PATCH v4 0/9] Chelsio Terminator 5 (T5) 10G/40G Poll Mode Driver Thomas Monjalon
2015-07-01 6:35 ` Rahul Lakkireddy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1434628361.git.rahul.lakkireddy@chelsio.com \
--to=rahul.lakkireddy@chelsio.com \
--cc=dev@dpdk.org \
--cc=felix@chelsio.com \
--cc=kumaras@chelsio.com \
--cc=nirranjan@chelsio.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).