Netdev List
 help / color / mirror / Atom feed
* [PATCH net-next 00/13] bnxt_en: Updates for net-next.
@ 2018-12-16 23:46 Michael Chan
  2018-12-16 23:46 ` [PATCH net-next 01/13] bnxt_en: Store the maximum NQs available on the PF Michael Chan
                   ` (13 more replies)
  0 siblings, 14 replies; 17+ messages in thread
From: Michael Chan @ 2018-12-16 23:46 UTC (permalink / raw)
  To: davem; +Cc: netdev

Two main changes in this seris plus some miscellaneous changes.

1. Improvements and fixes for resource accounting which are required
for enabling SR-IOV and RDMA on the new 57500 chips.  Only SR-IOV
for 57500 chips is enabled in this series.

2. New statistics counters and improvements to keep the basic
counters and port counters during IFDOWN.

3. Msic. small changes for ETS, returning proper error codes
when flashing NVRAM, and a link speed related fix for ethtool
loopback selftest.

Michael Chan (8):
  bnxt_en: Store the maximum NQs available on the PF.
  bnxt_en: Add bnxt_get_avail_cp_rings_for_en() helper function.
  bnxt_en: Disable MSIX before re-reserving NQs/CMPL rings.
  bnxt_en: Add SR-IOV support for 57500 chips.
  bnxt_en: Add ethtool -S priority counters.
  bnxt_en: Don't set ETS on unused TCs.
  bnxt_en: Save ring statistics before reset.
  bnxt_en: Do not free port statistics buffer when device is down.

Vasundhara Volam (5):
  bnxt_en: get rid of num_stat_ctxs variable
  bnxt_en: Do not modify max_stat_ctxs after RDMA driver requests/frees
    stat_ctxs
  bnxt_en: Reserve 1 stat_ctx for RDMA driver.
  bnxt_en: Return linux standard errors in bnxt_ethtool.c
  bnxt_en: query force speeds before disabling autoneg mode.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c         | 251 ++++++++++++++++------
 drivers/net/ethernet/broadcom/bnxt/bnxt.h         |  12 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.c     |   5 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c | 201 +++++++++++++++--
 drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c   |  32 +--
 drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c     |  21 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.h     |   1 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c     |   1 -
 8 files changed, 407 insertions(+), 117 deletions(-)

-- 
2.5.1

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH net-next 00/13] bnxt_en: Updates for net-next.
@ 2018-08-05 20:51 Michael Chan
  2018-08-06  0:37 ` David Miller
  0 siblings, 1 reply; 17+ messages in thread
From: Michael Chan @ 2018-08-05 20:51 UTC (permalink / raw)
  To: davem; +Cc: netdev

This series includes the usual firmware spec update.  The driver has
added external phy loopback test and phy setup retry logic that is
needed during hotplug.  In the SRIOV space, the driver has added a
new VF resource allocation mode that requires the VF driver to
reserve resources during IFUP.  IF state changes are now propagated
to firmware so that firmware can release some resources during IFDOWN.

ethtool method to get firmware core dump and hwmon temperature reading
have been added.  DSCP to user priority support has been added to
the driver's DCBNL interface, and the CoS queue logic has been refined
to make sure that the special RDMA Congestion Notification hardware CoS
queue will not be used for networking traffic.

Michael Chan (11):
  bnxt_en: Update firmware interface version to 1.9.2.25.
  bnxt_en: Adjust timer based on ethtool stats-block-usecs settings.
  bnxt_en: Add external loopback test to ethtool selftest.
  bnxt_en: Add PHY retry logic.
  bnxt_en: Add new VF resource allocation strategy mode.
  bnxt_en: Update RSS setup and GRO-HW logic according to the latest
    spec.
  bnxt_en: Add BNXT_NEW_RM() macro.
  bnxt_en: Move firmware related flags to a new fw_cap field in struct
    bnxt.
  bnxt_en: Notify firmware about IF state changes.
  bnxt_en: Add DCBNL DSCP application protocol support.
  bnxt_en: Do not use the CNP CoS queue for networking traffic.

Vasundhara Volam (2):
  bnxt_en: Add support for ethtool get dump.
  bnxt_en: Add hwmon sysfs support to read temperature

 drivers/net/ethernet/broadcom/Kconfig              |    8 +
 drivers/net/ethernet/broadcom/bnxt/bnxt.c          |  216 +++-
 drivers/net/ethernet/broadcom/bnxt/bnxt.h          |   30 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_coredump.h |   66 ++
 drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.c      |   89 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.h      |   10 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_devlink.c  |    8 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c  |  378 +++++-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.h  |   37 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_hsi.h      | 1227 +++++++++++++++-----
 drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c    |   25 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c      |    4 +-
 12 files changed, 1716 insertions(+), 382 deletions(-)
 create mode 100644 drivers/net/ethernet/broadcom/bnxt/bnxt_coredump.h

-- 
2.5.1

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

end of thread, other threads:[~2018-12-18  7:12 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-16 23:46 [PATCH net-next 00/13] bnxt_en: Updates for net-next Michael Chan
2018-12-16 23:46 ` [PATCH net-next 01/13] bnxt_en: Store the maximum NQs available on the PF Michael Chan
2018-12-16 23:46 ` [PATCH net-next 02/13] bnxt_en: Add bnxt_get_avail_cp_rings_for_en() helper function Michael Chan
2018-12-16 23:46 ` [PATCH net-next 03/13] bnxt_en: get rid of num_stat_ctxs variable Michael Chan
2018-12-16 23:46 ` [PATCH net-next 04/13] bnxt_en: Do not modify max_stat_ctxs after RDMA driver requests/frees stat_ctxs Michael Chan
2018-12-16 23:46 ` [PATCH net-next 05/13] bnxt_en: Reserve 1 stat_ctx for RDMA driver Michael Chan
2018-12-16 23:46 ` [PATCH net-next 06/13] bnxt_en: Disable MSIX before re-reserving NQs/CMPL rings Michael Chan
2018-12-16 23:46 ` [PATCH net-next 07/13] bnxt_en: Add SR-IOV support for 57500 chips Michael Chan
2018-12-16 23:46 ` [PATCH net-next 08/13] bnxt_en: Add ethtool -S priority counters Michael Chan
2018-12-16 23:46 ` [PATCH net-next 09/13] bnxt_en: Don't set ETS on unused TCs Michael Chan
2018-12-16 23:46 ` [PATCH net-next 10/13] bnxt_en: Return linux standard errors in bnxt_ethtool.c Michael Chan
2018-12-16 23:46 ` [PATCH net-next 11/13] bnxt_en: Save ring statistics before reset Michael Chan
2018-12-16 23:46 ` [PATCH net-next 12/13] bnxt_en: Do not free port statistics buffer when device is down Michael Chan
2018-12-16 23:46 ` [PATCH net-next 13/13] bnxt_en: query force speeds before disabling autoneg mode Michael Chan
2018-12-18  7:12 ` [PATCH net-next 00/13] bnxt_en: Updates for net-next David Miller
  -- strict thread matches above, loose matches on Subject: below --
2018-08-05 20:51 Michael Chan
2018-08-06  0:37 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox