netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 net-next 00/13] net: atlantic: various features
@ 2020-07-20 18:32 Mark Starovoytov
  2020-07-20 18:32 ` [PATCH v3 net-next 01/13] net: atlantic: move FRAC_PER_NS to aq_hw.h Mark Starovoytov
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Mark Starovoytov @ 2020-07-20 18:32 UTC (permalink / raw)
  To: David S. Miller, Jakub Kicinski; +Cc: Igor Russkikh, netdev, Mark Starovoytov

This patchset adds more features for Atlantic NICs:
 * media detect;
 * additional per-queue stats;
 * PTP stats;
 * ipv6 support for TCP LSO and UDP GSO;
 * 64-bit operations;
 * A0 ntuple filters;
 * MAC temperature (hwmon).

This work is a joint effort of Marvell developers.

v3:
 * reworked patches related to stats:
   . fixed u64_stats_update_* usage;
   . use simple assignment in _get_stats / _fill_stats_data;
   . made _get_sw_stats / _fill_stats_data return count as return value;
   . split rx and tx per-queue stats;

v2: https://patchwork.ozlabs.org/cover/1329652/
 * removed media detect feature (will be reworked and submitted later);
 * removed irq counter from stats;
 * use u64_stats_update_* to protect 64-bit stats;
 * use io-64-nonatomic-lo-hi.h for readq/writeq fallbacks;

v1: https://patchwork.ozlabs.org/cover/1327894/

Dmitry Bogdanov (2):
  net: atlantic: additional per-queue stats
  net: atlantic: A0 ntuple filters

Igor Russkikh (1):
  net: atlantic: enable ipv6 support for TCP LSO and UDP GSO

Mark Starovoytov (7):
  net: atlantic: move FRAC_PER_NS to aq_hw.h
  net: atlantic: use simple assignment in _get_stats and _get_sw_stats
  net: atlantic: make _get_sw_stats return count as return value
  net: atlantic: split rx and tx per-queue stats
  net: atlantic: use u64_stats_update_* to protect access to 64-bit
    stats
  net: atlantic: use U32_MAX in aq_hw_utils.c
  net: atlantic: add hwmon getter for MAC temperature

Nikita Danilov (1):
  net: atlantic: use intermediate variable to improve readability a bit

Pavel Belous (2):
  net: atlantic: PTP statistics
  net: atlantic: add support for 64-bit reads/writes

 .../ethernet/aquantia/atlantic/aq_drvinfo.c   |  62 +++++---
 .../ethernet/aquantia/atlantic/aq_drvinfo.h   |  10 +-
 .../ethernet/aquantia/atlantic/aq_ethtool.c   |  68 +++++++--
 .../net/ethernet/aquantia/atlantic/aq_hw.h    |   7 +
 .../ethernet/aquantia/atlantic/aq_hw_utils.c  |  34 +++--
 .../ethernet/aquantia/atlantic/aq_hw_utils.h  |   8 +-
 .../net/ethernet/aquantia/atlantic/aq_nic.c   |   6 +-
 .../net/ethernet/aquantia/atlantic/aq_ptp.c   |  68 ++++++---
 .../net/ethernet/aquantia/atlantic/aq_ptp.h   |  27 +++-
 .../net/ethernet/aquantia/atlantic/aq_ring.c  |  74 +++++++++-
 .../net/ethernet/aquantia/atlantic/aq_ring.h  |  22 ++-
 .../net/ethernet/aquantia/atlantic/aq_vec.c   |  74 +++-------
 .../net/ethernet/aquantia/atlantic/aq_vec.h   |  11 +-
 .../aquantia/atlantic/hw_atl/hw_atl_a0.c      | 136 +++++++++++++-----
 .../aquantia/atlantic/hw_atl/hw_atl_b0.c      |  66 +++++++--
 .../aquantia/atlantic/hw_atl/hw_atl_llh.c     |  44 ++++++
 .../aquantia/atlantic/hw_atl/hw_atl_llh.h     |  18 +++
 .../atlantic/hw_atl/hw_atl_llh_internal.h     |  30 ++++
 .../aquantia/atlantic/hw_atl/hw_atl_utils.c   |   1 +
 .../atlantic/hw_atl/hw_atl_utils_fw2x.c       |   3 +-
 .../aquantia/atlantic/hw_atl2/hw_atl2.c       |   1 +
 .../atlantic/hw_atl2/hw_atl2_utils_fw.c       |  21 +++
 22 files changed, 608 insertions(+), 183 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-07-21  1:07 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-20 18:32 [PATCH v3 net-next 00/13] net: atlantic: various features Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 01/13] net: atlantic: move FRAC_PER_NS to aq_hw.h Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 02/13] net: atlantic: use simple assignment in _get_stats and _get_sw_stats Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 03/13] net: atlantic: make _get_sw_stats return count as return value Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 04/13] net: atlantic: split rx and tx per-queue stats Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 05/13] net: atlantic: use u64_stats_update_* to protect access to 64-bit stats Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 06/13] net: atlantic: additional per-queue stats Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 07/13] net: atlantic: PTP statistics Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 08/13] net: atlantic: enable ipv6 support for TCP LSO and UDP GSO Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 09/13] net: atlantic: add support for 64-bit reads/writes Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 10/13] net: atlantic: use U32_MAX in aq_hw_utils.c Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 11/13] net: atlantic: use intermediate variable to improve readability a bit Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 12/13] net: atlantic: A0 ntuple filters Mark Starovoytov
2020-07-20 18:32 ` [PATCH v3 net-next 13/13] net: atlantic: add hwmon getter for MAC temperature Mark Starovoytov
2020-07-20 23:58 ` [PATCH v3 net-next 00/13] net: atlantic: various features Jakub Kicinski
2020-07-21  1:07 ` David Miller

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).