netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Igor Russkikh <igor.russkikh@aquantia.com>
To: "David S . Miller" <davem@davemloft.net>
Cc: netdev@vger.kernel.org, David Arcari <darcari@redhat.com>,
	Pavel Belous <pavel.belous@aquantia.com>,
	Igor Russkikh <igor.russkikh@aquantia.com>
Subject: [PATCH net-next 00/22] Aquantia atlantic driver major update 2018/01
Date: Fri, 12 Jan 2018 13:36:51 +0300	[thread overview]
Message-ID: <cover.1515682838.git.igor.russkikh@aquantia.com> (raw)

This patchset introduces a support for new Aquantia hardware:
AQC11x family with updated hardware (B1) and firmware (2.x and 3.x branches).

For that, a number of improvements in overall driver model were done:
 - Firmware specific ops tables
 - PCI module cleanup and simplification
 - Verified and tested hardware reset process

Beside this some styling fixes:
 - HW register set defines lined up with kernel style
 - HW access functions are prefixed now
 - More tracing and helpers macros

Igor Russkikh (22):
  net: aquantia: Eliminate AQ_DIMOF, replace with ARRAY_SIZE
  net: aquantia: Cleanup status flags accesses
  net: aquantia: Cleanup hardware access modules
  net: aquantia: Introduce new device ids definitions
  net: aquantia: Remove duplicate hardware descriptors declarations
  net: aquantia: Add const qualifiers for hardware ops tables
  net: aquantia: Simplify dependencies between pci modules
  net: aquantia: Add new aQuantia devices into pci table
  net: aquantia: Introduce new AQC devices and capabilities
  net: aquantia: Eliminate aq_nic structure abstraction
  net: aquantia: Fix register definitions to linux style
  net: aquantia: Prepend hw access functions declarations with prefix
  net: aquantia: Convert hw and caps structures to const static pointers
  net: aquantia: Cleanup pci functions module
  net: aquantia: Remove create/destroy from hw ops
  net: aquantia: Change confusing no_ff_addr to more meaningful name
  net: aquantia: Introduce firmware ops callbacks
  net: aquantia: Introduce support for new firmware on AQC cards
  net: aquantia: Introduce global AQC hardware reset sequence
  net: aquantia: Report correct mediatype via ethtool
  net: aquantia: Fix internal stats calculation on rx
  net: aquantia: bump driver version to match aquantia internal
    numbering

 drivers/net/ethernet/aquantia/atlantic/Makefile    |    1 +
 drivers/net/ethernet/aquantia/atlantic/aq_cfg.h    |    8 +-
 drivers/net/ethernet/aquantia/atlantic/aq_common.h |   39 +-
 drivers/net/ethernet/aquantia/atlantic/aq_hw.h     |   79 +-
 .../net/ethernet/aquantia/atlantic/aq_hw_utils.c   |   11 +-
 .../net/ethernet/aquantia/atlantic/aq_hw_utils.h   |    3 +
 drivers/net/ethernet/aquantia/atlantic/aq_main.c   |  110 +-
 drivers/net/ethernet/aquantia/atlantic/aq_main.h   |    2 +
 drivers/net/ethernet/aquantia/atlantic/aq_nic.c    |  290 ++--
 drivers/net/ethernet/aquantia/atlantic/aq_nic.h    |   62 +-
 .../ethernet/aquantia/atlantic/aq_nic_internal.h   |   45 -
 .../net/ethernet/aquantia/atlantic/aq_pci_func.c   |  411 +++---
 .../net/ethernet/aquantia/atlantic/aq_pci_func.h   |   26 +-
 drivers/net/ethernet/aquantia/atlantic/aq_ring.c   |    4 +-
 drivers/net/ethernet/aquantia/atlantic/aq_ring.h   |    2 +-
 drivers/net/ethernet/aquantia/atlantic/aq_utils.h  |    6 -
 drivers/net/ethernet/aquantia/atlantic/aq_vec.c    |    5 +-
 drivers/net/ethernet/aquantia/atlantic/aq_vec.h    |    4 +-
 .../ethernet/aquantia/atlantic/hw_atl/hw_atl_a0.c  |  472 +++---
 .../ethernet/aquantia/atlantic/hw_atl/hw_atl_a0.h  |   18 +-
 .../aquantia/atlantic/hw_atl/hw_atl_a0_internal.h  |   65 -
 .../ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c  |  506 +++----
 .../ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.h  |   28 +-
 .../aquantia/atlantic/hw_atl/hw_atl_b0_internal.h  |   64 -
 .../ethernet/aquantia/atlantic/hw_atl/hw_atl_llh.c | 1326 +++++++++--------
 .../ethernet/aquantia/atlantic/hw_atl/hw_atl_llh.h |  544 +++----
 .../aquantia/atlantic/hw_atl/hw_atl_llh_internal.h | 1521 ++++++++++----------
 .../aquantia/atlantic/hw_atl/hw_atl_utils.c        |  347 ++++-
 .../aquantia/atlantic/hw_atl/hw_atl_utils.h        |  133 +-
 .../aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c   |  184 +++
 drivers/net/ethernet/aquantia/atlantic/ver.h       |    6 +-
 31 files changed, 3310 insertions(+), 3012 deletions(-)
 delete mode 100644 drivers/net/ethernet/aquantia/atlantic/aq_nic_internal.h
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c

-- 
2.7.4

             reply	other threads:[~2018-01-12 10:52 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-12 10:36 Igor Russkikh [this message]
2018-01-12 10:36 ` [PATCH net-next 01/22] net: aquantia: Eliminate AQ_DIMOF, replace with ARRAY_SIZE Igor Russkikh
2018-01-12 10:36 ` [PATCH net-next 02/22] net: aquantia: Cleanup status flags accesses Igor Russkikh
2018-01-12 10:36 ` [PATCH net-next 03/22] net: aquantia: Cleanup hardware access modules Igor Russkikh
2018-01-12 10:36 ` [PATCH net-next 04/22] net: aquantia: Introduce new device ids definitions Igor Russkikh
2018-01-12 10:36 ` [PATCH net-next 05/22] net: aquantia: Remove duplicate hardware descriptors declarations Igor Russkikh
2018-01-12 10:36 ` [PATCH net-next 06/22] net: aquantia: Add const qualifiers for hardware ops tables Igor Russkikh
2018-01-12 10:36 ` [PATCH net-next 07/22] net: aquantia: Simplify dependencies between pci modules Igor Russkikh
2018-01-12 10:36 ` [PATCH net-next 08/22] net: aquantia: Add new aQuantia devices into pci table Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 09/22] net: aquantia: Introduce new AQC devices and capabilities Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 10/22] net: aquantia: Eliminate aq_nic structure abstraction Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 11/22] net: aquantia: Fix register definitions to linux style Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 12/22] net: aquantia: Prepend hw access functions declarations with prefix Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 13/22] net: aquantia: Convert hw and caps structures to const static pointers Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 14/22] net: aquantia: Cleanup pci functions module Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 15/22] net: aquantia: Remove create/destroy from hw ops Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 16/22] net: aquantia: Change confusing no_ff_addr to more meaningful name Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 17/22] net: aquantia: Introduce firmware ops callbacks Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 18/22] net: aquantia: Introduce support for new firmware on AQC cards Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 19/22] net: aquantia: Introduce global AQC hardware reset sequence Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 20/22] net: aquantia: Report correct mediatype via ethtool Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 21/22] net: aquantia: Fix internal stats calculation on rx Igor Russkikh
2018-01-12 10:37 ` [PATCH net-next 22/22] net: aquantia: bump driver version to match aquantia internal numbering Igor Russkikh
2018-01-12 15:10 ` [PATCH net-next 00/22] Aquantia atlantic driver major update 2018/01 David Miller
2018-01-12 17:02   ` Igor Russkikh
2018-01-12 17:18     ` 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=cover.1515682838.git.igor.russkikh@aquantia.com \
    --to=igor.russkikh@aquantia.com \
    --cc=darcari@redhat.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    --cc=pavel.belous@aquantia.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).