netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/11] bnxt_en updates for net-next.
@ 2016-07-01 22:46 Michael Chan
  2016-07-01 22:46 ` [PATCH net-next 01/11] bnxt_en: VF/NPAR should return -EOPNOTSUPP for unsupported ethtool ops Michael Chan
                   ` (11 more replies)
  0 siblings, 12 replies; 16+ messages in thread
From: Michael Chan @ 2016-07-01 22:46 UTC (permalink / raw)
  To: davem; +Cc: netdev

Mostly small miscellaneous changes.

Please review for net-next.  Thanks.

Michael Chan (7):
  bnxt_en: VF/NPAR should return -EOPNOTSUPP for unsupported ethtool
    ops.
  bnxt_en: Update firmware spec. to 1.3.0.
  bnxt_en: Do function reset on the 1st PF open only.
  bnxt_en: Enable MRU enables bit when configuring VNIC MRU.
  bnxt_en: Allow promiscuous mode for VF if default VLAN is enabled.
  bnxt_en: Assign netdev->dev_port with port ID.
  bnxt_en: Allow statistics DMA to be configurable using ethtool -C.

Rob Swindell (3):
  bnxt_en: Add support for updating flash more securely
  bnxt_en: Request firmware reset after successful firwmare update
  bnxt_en: Add support for firmware updates for additional processors.

Vasundhara Volam (1):
  bnxt_en: Increase maximum supported MTU to 9500.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c          | 47 +++++++++---
 drivers/net/ethernet/broadcom/bnxt/bnxt.h          | 17 +++--
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c  | 54 ++++++++++++--
 drivers/net/ethernet/broadcom/bnxt/bnxt_fw_hdr.h   |  1 +
 drivers/net/ethernet/broadcom/bnxt/bnxt_hsi.h      | 87 +++++++++++++++-------
 drivers/net/ethernet/broadcom/bnxt/bnxt_nvm_defs.h |  1 +
 6 files changed, 158 insertions(+), 49 deletions(-)

-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH net-next 00/11] bnxt_en: Updates for net-next
@ 2025-09-15  3:04 Michael Chan
  0 siblings, 0 replies; 16+ messages in thread
From: Michael Chan @ 2025-09-15  3:04 UTC (permalink / raw)
  To: davem
  Cc: netdev, edumazet, kuba, pabeni, andrew+netdev, pavan.chebbi,
	andrew.gospodarek

This series includes some code clean-ups and optimizations.  New features
include 2 new backing store memory types to collect FW logs for core
dumps, dynamic SRIOV resource allocations for RoCE, and ethtool tunable
for PFC watchdog.

Anantha Prabhu (1):
  bnxt_en: Support for RoCE resources dynamically shared within VFs.

Kalesh AP (4):
  bnxt_en: Drop redundant if block in bnxt_dl_flash_update()
  bnxt_en: Remove unnecessary VF check in bnxt_hwrm_nvm_req()
  bnxt_en: Optimize bnxt_sriov_disable()
  bnxt_en: Use VLAN_ETH_HLEN when possible

Kashyap Desai (1):
  bnxt_en: Add err_qpc backing store handling

Michael Chan (4):
  bnxt_en: Improve bnxt_hwrm_func_backing_store_cfg_v2()
  bnxt_en: Improve bnxt_backing_store_cfg_v2()
  bnxt_en: Implement ethtool .get_tunable() for
    ETHTOOL_PFC_PREVENTION_TOUT
  bnxt_en: Implement ethtool .set_tunable() for
    ETHTOOL_PFC_PREVENTION_TOUT

Shruti Parab (1):
  bnxt_en: Add fw log trace support for 5731X/5741X chips

 drivers/net/ethernet/broadcom/bnxt/bnxt.c     | 65 ++++++++++++++-----
 drivers/net/ethernet/broadcom/bnxt/bnxt.h     |  9 ++-
 .../ethernet/broadcom/bnxt/bnxt_coredump.c    |  4 +-
 .../ethernet/broadcom/bnxt/bnxt_coredump.h    |  2 +
 .../net/ethernet/broadcom/bnxt/bnxt_devlink.c | 13 ----
 .../net/ethernet/broadcom/bnxt/bnxt_ethtool.c | 45 ++++++++++++-
 .../net/ethernet/broadcom/bnxt/bnxt_sriov.c   | 21 +++++-
 .../net/ethernet/broadcom/bnxt/bnxt_sriov.h   |  2 +-
 include/linux/bnxt/hsi.h                      | 61 +++++++++++++++++
 9 files changed, 184 insertions(+), 38 deletions(-)

-- 
2.51.0


^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH net-next 00/11] bnxt_en: Updates for net-next.
@ 2016-06-13  6:25 Michael Chan
  2016-06-14 23:26 ` David Miller
  0 siblings, 1 reply; 16+ messages in thread
From: Michael Chan @ 2016-06-13  6:25 UTC (permalink / raw)
  To: davem; +Cc: netdev

-Add default VLAN support for VFs.
-Add NPAR (NIC partioning) support.
-Add support for new device 5731x and 5741x. GRO logic is different.
-Support new ETHTOOL_{G|S}LINKSETTINGS.

Please review.  Thanks.

Michael Chan (10):
  bnxt_en: Add function for VF driver to query default VLAN.
  bnxt_en: Add new function bnxt_reset().
  bnxt_en: Handle VF_CFG_CHANGE event from firmware.
  bnxt_en: Add PCI device ID for 57404 NPAR devices.
  bnxt_en: Define the supported chip numbers.
  bnxt_en: Refactor bnxt_gro_skb().
  bnxt_en: Add GRO logic for BCM5731X chips.
  bnxt_en: Add BCM5731X and BCM5741X device IDs.
  bnxt_en: Don't allow autoneg on cards that don't support it.
  bnxt_en: Support new ETHTOOL_{G|S}LINKSETTINGS API.

Satish Baddipadige (1):
  bnxt_en: Enable NPAR (NIC Partitioning) Support.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c         | 283 +++++++++++++++++++---
 drivers/net/ethernet/broadcom/bnxt/bnxt.h         |  62 ++++-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c | 199 +++++++++------
 drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c   |   3 +
 4 files changed, 435 insertions(+), 112 deletions(-)

-- 
1.8.3.1

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

end of thread, other threads:[~2025-09-15  3:05 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-01 22:46 [PATCH net-next 00/11] bnxt_en updates for net-next Michael Chan
2016-07-01 22:46 ` [PATCH net-next 01/11] bnxt_en: VF/NPAR should return -EOPNOTSUPP for unsupported ethtool ops Michael Chan
2016-07-01 22:46 ` [PATCH net-next 02/11] bnxt_en: Update firmware spec. to 1.3.0 Michael Chan
2016-07-01 22:46 ` [PATCH net-next 03/11] bnxt_en: Do function reset on the 1st PF open only Michael Chan
2016-07-01 22:46 ` [PATCH net-next 04/11] bnxt_en: Add support for updating flash more securely Michael Chan
2016-07-01 22:46 ` [PATCH net-next 05/11] bnxt_en: Request firmware reset after successful firwmare update Michael Chan
2016-07-01 22:46 ` [PATCH net-next 06/11] bnxt_en: Add support for firmware updates for additional processors Michael Chan
2016-07-01 22:46 ` [PATCH net-next 07/11] bnxt_en: Enable MRU enables bit when configuring VNIC MRU Michael Chan
2016-07-01 22:46 ` [PATCH net-next 08/11] bnxt_en: Increase maximum supported MTU to 9500 Michael Chan
2016-07-01 22:46 ` [PATCH net-next 09/11] bnxt_en: Allow promiscuous mode for VF if default VLAN is enabled Michael Chan
2016-07-01 22:46 ` [PATCH net-next 10/11] bnxt_en: Assign netdev->dev_port with port ID Michael Chan
2016-07-01 22:46 ` [PATCH net-next 11/11] bnxt_en: Allow statistics DMA to be configurable using ethtool -C Michael Chan
2016-07-02 18:55 ` [PATCH net-next 00/11] bnxt_en updates for net-next David Miller
  -- strict thread matches above, loose matches on Subject: below --
2025-09-15  3:04 [PATCH net-next 00/11] bnxt_en: Updates " Michael Chan
2016-06-13  6:25 Michael Chan
2016-06-14 23:26 ` 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).