Netdev List
 help / color / mirror / Atom feed
From: sunil.kovvuri@gmail.com
To: netdev@vger.kernel.org, davem@davemloft.net
Cc: arnd@arndb.de, linux-soc@vger.kernel.org,
	Sunil Goutham <sgoutham@marvell.com>
Subject: [PATCH 00/16] octeontx2-af: NPA and NIX blocks initialization
Date: Tue, 16 Oct 2018 16:57:04 +0530	[thread overview]
Message-ID: <1539689240-11526-1-git-send-email-sunil.kovvuri@gmail.com> (raw)

From: Sunil Goutham <sgoutham@marvell.com>

This patchset is a continuation to earlier submitted patch series
to add a new driver for Marvell's OcteonTX2 SOC's 
Resource virtualization unit (RVU) admin function driver.

octeontx2-af: Add RVU Admin Function driver
https://www.spinics.net/lists/netdev/msg528272.html

This patch series adds logic for the following.
- Modified register polling loop to use time_before(jiffies, timeout),
  as suggested by Arnd Bergmann.
- Support to forward interface link status notifications sent by
  firmware to registered PFs mapped to a CGX::LMAC.
- Support to set CGX LMAC in loopback mode, retrieve stats,
  configure DMAC filters at CGX level etc.
- Network pool allocator (NPA) functional block initialization,
  admin queue support, NPALF aura/pool contexts memory allocation, init
  and deinit.
- Network interface controller (NIX) functional block basic init,
  admin queue support, NIXLF RQ/CQ/SQ HW contexts memory allocation,
  init and deinit.

Christina Jacob (1):
  octeontx2-af: Support to retrieve CGX LMAC stats

Geetha sowjanya (3):
  octeontx2-af: Enable or disable CGX internal loopback
  octeontx2-af: Support for disabling NPA Aura/Pool contexts
  octeontx2-af: Support for disabling NIX RQ/SQ/CQ contexts

Linu Cherian (1):
  octeontx2-af: Forward CGX link notifications to PFs

Sunil Goutham (10):
  octeontx2-af: Improve register polling loop
  octeontx2-af: CGX Rx/Tx enable/disable mbox handlers
  octeontx2-af: NPA block admin queue init
  octeontx2-af: NPA block LF initialization
  octeontx2-af: NPA AQ instruction enqueue support
  octeontx2-af: NIX block admin queue init
  octeontx2-af: NIX block LF initialization
  octeontx2-af: NIX LSO config for TSOv4/v6 offload
  octeontx2-af: Alloc bitmaps for NIX Tx scheduler queues
  octeontx2-af: NIX AQ instruction enqueue support

Vidhya Raman (1):
  octeontx2-af: Support for MAC address filters in CGX

 drivers/net/ethernet/marvell/octeontx2/af/Makefile |   2 +-
 drivers/net/ethernet/marvell/octeontx2/af/cgx.c    | 244 +++++-
 drivers/net/ethernet/marvell/octeontx2/af/cgx.h    |  47 +-
 drivers/net/ethernet/marvell/octeontx2/af/common.h | 161 ++++
 drivers/net/ethernet/marvell/octeontx2/af/mbox.h   | 206 +++++
 drivers/net/ethernet/marvell/octeontx2/af/rvu.c    | 152 +++-
 drivers/net/ethernet/marvell/octeontx2/af/rvu.h    | 117 ++-
 .../net/ethernet/marvell/octeontx2/af/rvu_cgx.c    | 320 +++++++-
 .../net/ethernet/marvell/octeontx2/af/rvu_nix.c    | 892 +++++++++++++++++++++
 .../net/ethernet/marvell/octeontx2/af/rvu_npa.c    | 475 +++++++++++
 .../net/ethernet/marvell/octeontx2/af/rvu_struct.h | 808 +++++++++++++++++++
 11 files changed, 3407 insertions(+), 17 deletions(-)
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/af/common.h
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/af/rvu_npa.c

-- 
2.7.4

             reply	other threads:[~2018-10-16 19:17 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-16 11:27 sunil.kovvuri [this message]
2018-10-16 11:27 ` [PATCH 01/16] octeontx2-af: Improve register polling loop sunil.kovvuri
2018-10-16 11:27 ` [PATCH 02/16] octeontx2-af: CGX Rx/Tx enable/disable mbox handlers sunil.kovvuri
2018-10-16 11:27 ` [PATCH 03/16] octeontx2-af: Support to retrieve CGX LMAC stats sunil.kovvuri
2018-10-16 11:27 ` [PATCH 04/16] octeontx2-af: Support for MAC address filters in CGX sunil.kovvuri
2018-10-16 11:27 ` [PATCH 05/16] octeontx2-af: Forward CGX link notifications to PFs sunil.kovvuri
2018-10-16 11:27 ` [PATCH 06/16] octeontx2-af: Enable or disable CGX internal loopback sunil.kovvuri
2018-10-16 11:27 ` [PATCH 07/16] octeontx2-af: NPA block admin queue init sunil.kovvuri
2018-10-16 11:27 ` [PATCH 08/16] octeontx2-af: NPA block LF initialization sunil.kovvuri
2018-10-16 11:27 ` [PATCH 09/16] octeontx2-af: NPA AQ instruction enqueue support sunil.kovvuri
2018-10-16 11:27 ` [PATCH 10/16] octeontx2-af: Support for disabling NPA Aura/Pool contexts sunil.kovvuri
2018-10-16 11:27 ` [PATCH 11/16] octeontx2-af: NIX block admin queue init sunil.kovvuri
2018-10-16 11:27 ` [PATCH 12/16] octeontx2-af: NIX block LF initialization sunil.kovvuri
2018-10-16 11:27 ` [PATCH 13/16] octeontx2-af: NIX LSO config for TSOv4/v6 offload sunil.kovvuri
2018-10-16 11:27 ` [PATCH 14/16] octeontx2-af: Alloc bitmaps for NIX Tx scheduler queues sunil.kovvuri
2018-10-16 11:27 ` [PATCH 15/16] octeontx2-af: NIX AQ instruction enqueue support sunil.kovvuri
2018-10-16 11:27 ` [PATCH 16/16] octeontx2-af: Support for disabling NIX RQ/SQ/CQ contexts sunil.kovvuri
2018-10-18  4:34 ` [PATCH 00/16] octeontx2-af: NPA and NIX blocks initialization David Miller

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=1539689240-11526-1-git-send-email-sunil.kovvuri@gmail.com \
    --to=sunil.kovvuri@gmail.com \
    --cc=arnd@arndb.de \
    --cc=davem@davemloft.net \
    --cc=linux-soc@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=sgoutham@marvell.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