[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250916231420.1693955-1-kuba@kernel.org>
Date: Tue, 16 Sep 2025 16:14:11 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org,
edumazet@...gle.com,
pabeni@...hat.com,
andrew+netdev@...n.ch,
horms@...nel.org,
alexanderduyck@...com,
lee@...ger.us,
Jakub Kicinski <kuba@...nel.org>
Subject: [PATCH net-next v3 0/9] eth: fbnic: add devlink health support for FW crashes and OTP mem corruptions
Add support for FW crash detection and a corresponding devlink health
reporter. Add a reporter for checking OTP memory health.
The output is not particularly exciting:
# devlink health show
pci/0000:01:00.0:
reporter fw
state healthy error 0 recover 0 auto_dump true
reporter otp
state healthy error 0 recover 0 auto_dump true
# devlink health diagnose pci/0000:01:00.0 reporter fw
FW uptime: 0
# devlink health dump show pci/0000:01:00.0 reporter fw
FW coredump:
5a 45 01 00 04 00 06 00 00 00 00 00 4d 01 00 d0
.. lots of hex follows ..
# devlink health dump show pci/0000:01:00.0 reporter otp
OTP:
Status: 0 Data: 0 ECC: 0
v3:
- [patch 2] add parsing policies
- [patch 7] use extack
- [patch 8] split time in diagnose callback into sec and msec
- [patch 8] don't report when netdevice is down
v2: https://lore.kernel.org/20250915155312.1083292-1-kuba@kernel.org
- [patch 2] fix attr ID
- [patch 2] comment and commit msg adjustments
v1: https://lore.kernel.org/20250912201428.566190-1-kuba@kernel.org
Jakub Kicinski (9):
eth: fbnic: make fbnic_fw_log_write() parameter const
eth: fbnic: use fw uptime to detect fw crashes
eth: fbnic: factor out clearing the action TCAM
eth: fbnic: reprogram TCAMs after FW crash
eth: fbnic: support allocating FW completions with extra space
eth: fbnic: support FW communication for core dump
eth: fbnic: add FW health reporter
eth: fbnic: report FW uptime in health diagnose
eth: fbnic: add OTP health reporter
.../device_drivers/ethernet/meta/fbnic.rst | 19 ++
drivers/net/ethernet/meta/fbnic/fbnic.h | 13 +
drivers/net/ethernet/meta/fbnic/fbnic_csr.h | 18 ++
drivers/net/ethernet/meta/fbnic/fbnic_fw.h | 47 ++++
.../net/ethernet/meta/fbnic/fbnic_fw_log.h | 2 +-
.../net/ethernet/meta/fbnic/fbnic_devlink.c | 249 ++++++++++++++++++
drivers/net/ethernet/meta/fbnic/fbnic_fw.c | 241 ++++++++++++++++-
.../net/ethernet/meta/fbnic/fbnic_fw_log.c | 2 +-
drivers/net/ethernet/meta/fbnic/fbnic_pci.c | 39 ++-
drivers/net/ethernet/meta/fbnic/fbnic_rpc.c | 57 ++--
10 files changed, 659 insertions(+), 28 deletions(-)
--
2.51.0
Powered by blists - more mailing lists