All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 net-next 00/17] net: atlantic: A2 support
@ 2020-04-30  8:04 Igor Russkikh
  2020-04-30  8:04 ` [PATCH v2 net-next 01/17] net: atlantic: update company name in the driver description Igor Russkikh
                   ` (17 more replies)
  0 siblings, 18 replies; 23+ messages in thread
From: Igor Russkikh @ 2020-04-30  8:04 UTC (permalink / raw)
  To: netdev; +Cc: David S . Miller, Mark Starovoytov, Igor Russkikh

This patchset adds support for the new generation of Atlantic NICs.

Chip generations are mostly compatible register-wise, but there are still
some differences. Therefore we've made some of first generation (A1) code
non-static to re-use it where possible.

Some pieces are A2 specific, in which case we redefine/extend such APIs.

v2:
 * removed #pragma pack (2 structures require the packed attribute);
 * use defines instead of magic numbers where possible;

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

Dmitry Bogdanov (5):
  net: atlantic: A2 driver-firmware interface
  net: atlantic: minimal A2 HW bindings required for fw_ops
  net: atlantic: minimal A2 fw_ops
  net: atlantic: HW bindings for basic A2 init/deinit hw_ops
  net: atlantic: common functions needed for basic A2 init/deinit hw_ops

Igor Russkikh (8):
  net: atlantic: update company name in the driver description
  net: atlantic: add A2 device IDs
  net: atlantic: add defines for 10M and EEE 100M link mode
  net: atlantic: A2 hw_ops skeleton
  net: atlantic: HW bindings for A2 RFP
  net: atlantic: add A2 RPF hw_ops
  net: atlantic: basic A2 init/deinit hw_ops
  net: atlantic: A2 ingress / egress hw configuration

Mark Starovoytov (3):
  net: atlantic: add hw_soft_reset, hw_prepare to hw_ops
  net: atlantic: make hw_get_regs optional
  net: atlantic: move IS_CHIP_FEATURE to aq_hw.h

Nikita Danilov (1):
  net: atlantic: simplify hw_get_fw_version() usage

 .../net/ethernet/aquantia/atlantic/Makefile   |   4 +
 .../net/ethernet/aquantia/atlantic/aq_cfg.h   |   4 +-
 .../ethernet/aquantia/atlantic/aq_common.h    |  33 +-
 .../ethernet/aquantia/atlantic/aq_ethtool.c   |   3 +
 .../net/ethernet/aquantia/atlantic/aq_hw.h    |  22 +-
 .../net/ethernet/aquantia/atlantic/aq_nic.c   |  43 +-
 .../ethernet/aquantia/atlantic/aq_pci_func.c  |  39 +-
 .../aquantia/atlantic/hw_atl/hw_atl_a0.c      |   4 +-
 .../aquantia/atlantic/hw_atl/hw_atl_b0.c      |  86 +--
 .../aquantia/atlantic/hw_atl/hw_atl_b0.h      |  37 +
 .../aquantia/atlantic/hw_atl/hw_atl_llh.c     |  18 +-
 .../aquantia/atlantic/hw_atl/hw_atl_llh.h     |  10 +-
 .../aquantia/atlantic/hw_atl/hw_atl_utils.c   |  51 +-
 .../aquantia/atlantic/hw_atl/hw_atl_utils.h   |  17 +-
 .../aquantia/atlantic/hw_atl2/hw_atl2.c       | 684 ++++++++++++++++++
 .../aquantia/atlantic/hw_atl2/hw_atl2.h       |  14 +
 .../atlantic/hw_atl2/hw_atl2_internal.h       | 137 ++++
 .../aquantia/atlantic/hw_atl2/hw_atl2_llh.c   | 208 ++++++
 .../aquantia/atlantic/hw_atl2/hw_atl2_llh.h   |  91 +++
 .../atlantic/hw_atl2/hw_atl2_llh_internal.h   | 328 +++++++++
 .../aquantia/atlantic/hw_atl2/hw_atl2_utils.c | 139 ++++
 .../aquantia/atlantic/hw_atl2/hw_atl2_utils.h | 606 ++++++++++++++++
 .../atlantic/hw_atl2/hw_atl2_utils_fw.c       | 341 +++++++++
 23 files changed, 2798 insertions(+), 121 deletions(-)
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.h
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_internal.h
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_llh.c
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_llh.h
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_llh_internal.h
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils.c
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils.h
 create mode 100644 drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils_fw.c

-- 
2.20.1


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

end of thread, other threads:[~2020-05-04  6:29 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-30  8:04 [PATCH v2 net-next 00/17] net: atlantic: A2 support Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 01/17] net: atlantic: update company name in the driver description Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 02/17] net: atlantic: add A2 device IDs Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 03/17] net: atlantic: add defines for 10M and EEE 100M link mode Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 04/17] net: atlantic: add hw_soft_reset, hw_prepare to hw_ops Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 05/17] net: atlantic: simplify hw_get_fw_version() usage Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 06/17] net: atlantic: make hw_get_regs optional Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 07/17] net: atlantic: move IS_CHIP_FEATURE to aq_hw.h Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 08/17] net: atlantic: A2 driver-firmware interface Igor Russkikh
2020-04-30 22:19   ` Jakub Kicinski
2020-04-30  8:04 ` [PATCH v2 net-next 09/17] net: atlantic: minimal A2 HW bindings required for fw_ops Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 10/17] net: atlantic: minimal A2 fw_ops Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 11/17] net: atlantic: A2 hw_ops skeleton Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 12/17] net: atlantic: HW bindings for A2 RFP Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 13/17] net: atlantic: add A2 RPF hw_ops Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 14/17] net: atlantic: HW bindings for basic A2 init/deinit hw_ops Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 15/17] net: atlantic: common functions needed " Igor Russkikh
2020-04-30 21:30   ` Jakub Kicinski
2020-05-01 20:39     ` [EXT] " Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 16/17] net: atlantic: " Igor Russkikh
2020-04-30  8:04 ` [PATCH v2 net-next 17/17] net: atlantic: A2 ingress / egress hw configuration Igor Russkikh
2020-05-01 22:38 ` [PATCH v2 net-next 00/17] net: atlantic: A2 support David Miller
2020-05-04  6:29   ` [EXT] " Igor Russkikh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.