netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: sunil.kovvuri@gmail.com
To: netdev@vger.kernel.org
Cc: davem@davemloft.net, Sunil Goutham <sgoutham@marvell.com>
Subject: [PATCH v2 00/15] octeontx2-af: SSO, TIM HW blocks and other config support
Date: Tue, 19 Nov 2019 16:47:24 +0530	[thread overview]
Message-ID: <1574162259-28181-1-git-send-email-sunil.kovvuri@gmail.com> (raw)

From: Sunil Goutham <sgoutham@marvell.com>

SSO HW block provides packet (or work) queueing, scheduling and
synchronization. Also supports priorities and ordering. TIM or the
timer HW block enables software to schedule SSO work for a future time.

This patch series adds support for SSO and TIM HW blocks, enables them
to be configured and used by RVU PF/VF devices or drivers.

Also added support for
- Backpressure configuration.
- Pause frames or flow control enabling/disabling.
- Added a shared data structure between firmware and RVU admin function
  (AF) which will be used to get static information like interface MAC
  addresses, link modes, speeds, autoneg support etc.
- FEC (Forward error correction) config support for CGX.
- Retrieve FEC stats, PHY EEPROM etc from firmware
- Retrieving CGX LMAC info and to toggle it.
- Added debug prints for each of error interrupts raised by NIX,
  NPA and SSO blocks. These will help in identifying configuration
  and underlying HW functionality issues.

Changes from v1:
   * Made changes to TIM HW block support patch to use
      generic API to get HW ticks.
   * Removed inline keyword
     - Suggested by David Miller.
   * Fixed sparse warnings
     - Reported by Kbuild test robot.

Andrew Pinski (1):
  octeontx2-af: Add TIM unit support.

Christina Jacob (1):
  octeontx2-af: Support to get CGX link info like current speed, fec etc

Geetha sowjanya (2):
  octeontx2-af: Interface backpressure configuration support
  octeontx2-af: Ingress and egress pause frame configuration

Jerin Jacob (2):
  octeontx2-af: add debug msgs for NPA block errors
  octeontx2-af: add debug msgs for NIX block errors

Kiran Kumar K (1):
  octeontx2-af: NPC Tx parsed data key extraction profile

Linu Cherian (1):
  octeontx2-af: Add support for importing firmware data

Pavan Nikhilesh (3):
  octeontx2-af: Config support for per HWGRP thresholds
  octeontx2-af: add debug msgs for SSO block errors
  octeontx2-af: add debugfs support for sso

Radha Mohan Chintakuntla (1):
  octeontx2-af: Add SSO unit support to the AF driver

Subbaraya Sundeep (1):
  octeontx2-af: verify ingress channel in MCAM entry

Sunil Goutham (2):
  octeontx2-af: Cleanup CGX config permission checks
  octeontx2-af: Set discovery ID for RVUM block

 drivers/net/ethernet/marvell/octeontx2/af/Makefile |    3 +-
 drivers/net/ethernet/marvell/octeontx2/af/cgx.c    |  434 +++++++-
 drivers/net/ethernet/marvell/octeontx2/af/cgx.h    |   26 +-
 .../net/ethernet/marvell/octeontx2/af/cgx_fw_if.h  |   78 +-
 drivers/net/ethernet/marvell/octeontx2/af/mbox.h   |  322 +++++-
 drivers/net/ethernet/marvell/octeontx2/af/rvu.c    |  197 +++-
 drivers/net/ethernet/marvell/octeontx2/af/rvu.h    |   72 ++
 .../net/ethernet/marvell/octeontx2/af/rvu_cgx.c    |  178 ++-
 .../ethernet/marvell/octeontx2/af/rvu_debugfs.c    |  699 ++++++++++++
 .../net/ethernet/marvell/octeontx2/af/rvu_nix.c    |  388 ++++++-
 .../net/ethernet/marvell/octeontx2/af/rvu_npa.c    |  243 ++++-
 .../net/ethernet/marvell/octeontx2/af/rvu_npc.c    |  282 ++++-
 .../net/ethernet/marvell/octeontx2/af/rvu_reg.h    |  192 +++-
 .../net/ethernet/marvell/octeontx2/af/rvu_sso.c    | 1146 ++++++++++++++++++++
 .../net/ethernet/marvell/octeontx2/af/rvu_struct.h |   44 +
 .../net/ethernet/marvell/octeontx2/af/rvu_tim.c    |  322 ++++++
 16 files changed, 4489 insertions(+), 137 deletions(-)
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/af/rvu_sso.c
 create mode 100644 drivers/net/ethernet/marvell/octeontx2/af/rvu_tim.c

-- 
2.7.4


             reply	other threads:[~2019-11-19 11:17 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-19 11:17 sunil.kovvuri [this message]
2019-11-19 11:17 ` [PATCH v2 01/15] octeontx2-af: Interface backpressure configuration support sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 02/15] octeontx2-af: Add support for importing firmware data sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 03/15] octeontx2-af: Cleanup CGX config permission checks sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 04/15] octeontx2-af: Ingress and egress pause frame configuration sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 05/15] octeontx2-af: Set discovery ID for RVUM block sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 06/15] octeontx2-af: add debug msgs for NPA block errors sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 07/15] octeontx2-af: add debug msgs for NIX " sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 08/15] octeontx2-af: Add SSO unit support to the AF driver sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 09/15] octeontx2-af: Config support for per HWGRP thresholds sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 10/15] octeontx2-af: add debug msgs for SSO block errors sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 11/15] octeontx2-af: add debugfs support for sso sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 12/15] octeontx2-af: Add TIM unit support sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 13/15] octeontx2-af: verify ingress channel in MCAM entry sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 14/15] octeontx2-af: NPC Tx parsed data key extraction profile sunil.kovvuri
2019-11-19 11:17 ` [PATCH v2 15/15] octeontx2-af: Support to get CGX link info like current speed, fec etc sunil.kovvuri
2019-11-19 21:46 ` [PATCH v2 00/15] octeontx2-af: SSO, TIM HW blocks and other config support Jakub Kicinski
2019-11-19 22:02   ` David Miller
2019-11-20 17:26     ` Sunil Kovvuri

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=1574162259-28181-1-git-send-email-sunil.kovvuri@gmail.com \
    --to=sunil.kovvuri@gmail.com \
    --cc=davem@davemloft.net \
    --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;
as well as URLs for NNTP newsgroup(s).