linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: sunil.kovvuri@gmail.com (Sunil Kovvuri)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 00/15] net: thunderx: Add support for 81xx and 83xx
Date: Thu, 14 Jul 2016 19:18:34 +0530	[thread overview]
Message-ID: <CA+sq2Ces18dG663VigPHP864PhuhdTNhPjq-FsMyrjc-rrfrmw@mail.gmail.com> (raw)
In-Reply-To: <1468389579-482-1-git-send-email-sunil.kovvuri@gmail.com>

Hi David,

I have found that I missed some piece of code in a patch
and also discovered a corner case issue while further testing.
Please ignore this patch set, will submit another version soon.

Thanks,
Sunil.


On Wed, Jul 13, 2016 at 11:29 AM,  <sunil.kovvuri@gmail.com> wrote:
> From: Sunil Goutham <sgoutham@cavium.com>
>
> This patch series adds support for VNIC on 81xx and 83xx SOCs.
> 81xx/83xx is different from 88xx in terms of capabilities and different
> types of interfaces supported (eg: QSGMII, RGMII) and have DLMs instead
> of QLMs which allows single BGX to have interfaces of different LMAC types.
>
> Also included some patches which are common for all 88xx/81xx/83xx
> SOCs like using netdev's name while registering irqs, reset receive
> queue stats and some cleanup changes.
>
> Changes from v1:
> Fixed warning reported by kbuild test robot in patch
> "Enable mailbox interrupts on 81xx/83xx"
>
> Jerin Jacob (1):
>   net: thunderx: Reset RXQ HW stats when interface is brought down
>
> Radoslaw Biernacki (1):
>   net: thunderx: Improvement for MBX interface debug messages
>
> Sunil Goutham (13):
>   net: thunderx: Moved HW capability info from macros to structure
>   net: thunderx: Add VNIC's PCI devid on future chips
>   net: thunderx: Add support for 81xx and 83xx chips
>   net: thunderx: Set queue count based on number of CPUs
>   net: thunderx: Enable CQE_RX desc's extension fields
>   net: thunderx: Enable mailbox interrupts on 81xx/83xx
>   net: thunderx: Support for different LMAC types within BGX
>   net: thunderx: Add 81xx support to BGX driver
>   net: thunderx: Add QSGMII interface type support
>   net: thunderx: Add RGMII interface type support
>   net: thunderx: Use netdev's name for naming VF's interrupts
>   net: thunderx: Use skb_add_rx_frag() for split buffer Rx pkts
>   net: thunderx: Don't set mac address for secondary Qset VFs
>
>  drivers/net/ethernet/cavium/Kconfig                |  10 +
>  drivers/net/ethernet/cavium/thunder/Makefile       |   1 +
>  drivers/net/ethernet/cavium/thunder/nic.h          |  85 +++--
>  drivers/net/ethernet/cavium/thunder/nic_main.c     | 362 ++++++++++++++----
>  drivers/net/ethernet/cavium/thunder/nic_reg.h      |   2 +
>  drivers/net/ethernet/cavium/thunder/nicvf_main.c   |  51 ++-
>  drivers/net/ethernet/cavium/thunder/nicvf_queues.c |  59 +--
>  drivers/net/ethernet/cavium/thunder/nicvf_queues.h |   5 +-
>  drivers/net/ethernet/cavium/thunder/thunder_bgx.c  | 410 ++++++++++++++-------
>  drivers/net/ethernet/cavium/thunder/thunder_bgx.h  |  28 +-
>  drivers/net/ethernet/cavium/thunder/thunder_xcv.c  | 237 ++++++++++++
>  11 files changed, 949 insertions(+), 301 deletions(-)
>  create mode 100644 drivers/net/ethernet/cavium/thunder/thunder_xcv.c
>
> --
> 2.7.4
>

      parent reply	other threads:[~2016-07-14 13:48 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-13  5:59 [PATCH v2 00/15] net: thunderx: Add support for 81xx and 83xx sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 01/15] net: thunderx: Moved HW capability info from macros to structure sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 02/15] net: thunderx: Add VNIC's PCI devid on future chips sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 03/15] net: thunderx: Add support for 81xx and 83xx chips sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 04/15] net: thunderx: Set queue count based on number of CPUs sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 05/15] net: thunderx: Enable CQE_RX desc's extension fields sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 06/15] net: thunderx: Enable mailbox interrupts on 81xx/83xx sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 07/15] net: thunderx: Support for different LMAC types within BGX sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 08/15] net: thunderx: Add 81xx support to BGX driver sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 09/15] net: thunderx: Add QSGMII interface type support sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 10/15] net: thunderx: Add RGMII " sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 11/15] net: thunderx: Use netdev's name for naming VF's interrupts sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 12/15] net: thunderx: Use skb_add_rx_frag() for split buffer Rx pkts sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 13/15] net: thunderx: Improvement for MBX interface debug messages sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 14/15] net: thunderx: Reset RXQ HW stats when interface is brought down sunil.kovvuri at gmail.com
2016-07-13  5:59 ` [PATCH v2 15/15] net: thunderx: Don't set mac address for secondary Qset VFs sunil.kovvuri at gmail.com
2016-07-14 13:48 ` Sunil Kovvuri [this message]

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=CA+sq2Ces18dG663VigPHP864PhuhdTNhPjq-FsMyrjc-rrfrmw@mail.gmail.com \
    --to=sunil.kovvuri@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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).