Why I did it Add platform support for Debian 12 (Bookworm) on Mellanox Platform How I did it Update hw-management to v7.0030.2008 Deprecate the sfp_count == module_count approach in favour of asic init completion Ref: Mellanox/hw-mgmt@bf4f593 Add xxd package to base image which is required by hw-management scripts Add the non-upstream flag into linux kernel cache options Update the thermalctl logic based on new sysfs attributes Fix the integrate-mlnx-hw-mgmt script to not populate the arm64 Kconfig How to verify it Build kernel and run platform tests Signed-off-by: Vivek Reddy <vkarri@nvidia.com> Co-authored-by: Junchao-Mellanox <junchao@nvidia.com> Co-authored-by: Junchao-Mellanox <57339448+Junchao-Mellanox@users.noreply.github.com>
40 lines
1.7 KiB
Diff
40 lines
1.7 KiB
Diff
From 58d63cc90771fb493f5cf735a05eb95331041be3 Mon Sep 17 00:00:00 2001
|
|
From: David Thompson <davthompson@nvidia.com>
|
|
Date: Thu, 12 Jan 2023 15:26:08 -0500
|
|
Subject: [PATCH backport 6.1.42 74/85] mlxbf_gige: add "set_link_ksettings"
|
|
ethtool callback
|
|
|
|
BugLink: https://bugs.launchpad.net/bugs/2012649
|
|
|
|
This patch extends the "ethtool_ops" data structure to
|
|
include the "set_link_ksettings" callback. This change
|
|
enables configuration of the various interface speeds
|
|
that the BlueField-3 supports (10Mbps, 100Mbps, and 1Gbps).
|
|
|
|
Signed-off-by: David Thompson <davthompson@nvidia.com>
|
|
Signed-off-by: Asmaa Mnebhi <asmaa@nvidia.com>
|
|
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
(cherry picked from commit cedd97737a1f302b3d0493d7054a35e0c5997b99)
|
|
Signed-off-by: David Thompson <davthompson@nvidia.com>
|
|
Acked-by: Tim Gardner <tim.gardner@canonical.com>
|
|
Acked-by: Bartlomiej Zolnierkiewicz <bartlomiej.zolnierkiewicz@canonical.com>
|
|
Signed-off-by: Bartlomiej Zolnierkiewicz <bartlomiej.zolnierkiewicz@canonical.com>
|
|
---
|
|
drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_ethtool.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_ethtool.c b/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_ethtool.c
|
|
index 4becb39b5664..8c5c81981ce7 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_ethtool.c
|
|
+++ b/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_ethtool.c
|
|
@@ -175,4 +175,5 @@ const struct ethtool_ops mlxbf_gige_ethtool_ops = {
|
|
.nway_reset = phy_ethtool_nway_reset,
|
|
.get_pauseparam = mlxbf_gige_get_pauseparam,
|
|
.get_link_ksettings = phy_ethtool_get_link_ksettings,
|
|
+ .set_link_ksettings = phy_ethtool_set_link_ksettings,
|
|
};
|
|
--
|
|
2.20.1
|
|
|