From nobody Fri Sep 20 01:33:38 2024 Received: from pidgin.makrotopia.org (pidgin.makrotopia.org [185.142.180.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E885816C6BA; Thu, 4 Jul 2024 10:15:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.142.180.65 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720088123; cv=none; b=SlKIbCmjA5tZt62KAlvbdzgb+Xcz1BNCn+VdKIYJzHcFR2joo7g0xEswPO0RKvD++lcqcJ8IA3QmcWCwng09xiNN26rIY6DrhvZMMU33YNEb1a3brktmNwZH3KmGtMG2iwpr4lmII1dKvgB/pNSJHSZc6mNX1W/1n+yDD1eZq+w= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720088123; c=relaxed/simple; bh=kjWTEwfX1u2qciGRNuXhRv9xvHCzoaWzL1RSqv/rt68=; h=Date:From:To:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=J52M3ujSXYHX3MrW5w9kaE7uftzwSjBtM0RrrP4CkgxGvfE9uPrk2BD0UHBVStztjXE1Z3KYhhucedgC9vnlOBZjk3eANpoV+omFe+gL79T2kcEfgkaAHgVanMoTMy1eamacBAWih4Vn/ypcbM7VIbRGsr09E2hkKycJPp4AEZk= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=makrotopia.org; spf=pass smtp.mailfrom=makrotopia.org; arc=none smtp.client-ip=185.142.180.65 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=makrotopia.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=makrotopia.org Received: from local by pidgin.makrotopia.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.97.1) (envelope-from ) id 1sPJUW-00000000816-0b7U; Thu, 04 Jul 2024 10:15:04 +0000 Date: Thu, 4 Jul 2024 11:14:55 +0100 From: Daniel Golle To: John Crispin , Felix Fietkau , Sean Wang , Mark Lee , Lorenzo Bianconi , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Matthias Brugger , AngeloGioacchino Del Regno , Russell King , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org Subject: [PATCH net-next] net: ethernet: mtk_eth_soc: implement .{get,set}_pauseparam ethtool ops Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Implement operations to get and set flow-control link parameters. Both is done by simply calling phylink_ethtool_{get,set}_pauseparam(). Fix whitespace in mtk_ethtool_ops while at it. Signed-off-by: Daniel Golle Reviewed-by: Michal Kubiak Reviewed-by: Russell King (Oracle) Tested-by: Rui Salvaterra --- drivers/net/ethernet/mediatek/mtk_eth_soc.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/drivers/net/ethernet/mediatek/mtk_eth_soc.c b/drivers/net/ethe= rnet/mediatek/mtk_eth_soc.c index 13d78d9b3197..fbf5f566fdc5 100644 --- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c +++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c @@ -4464,6 +4464,20 @@ static int mtk_set_rxnfc(struct net_device *dev, str= uct ethtool_rxnfc *cmd) return ret; } =20 +static void mtk_get_pauseparam(struct net_device *dev, struct ethtool_paus= eparam *pause) +{ + struct mtk_mac *mac =3D netdev_priv(dev); + + phylink_ethtool_get_pauseparam(mac->phylink, pause); +} + +static int mtk_set_pauseparam(struct net_device *dev, struct ethtool_pause= param *pause) +{ + struct mtk_mac *mac =3D netdev_priv(dev); + + return phylink_ethtool_set_pauseparam(mac->phylink, pause); +} + static u16 mtk_select_queue(struct net_device *dev, struct sk_buff *skb, struct net_device *sb_dev) { @@ -4492,8 +4506,10 @@ static const struct ethtool_ops mtk_ethtool_ops =3D { .get_strings =3D mtk_get_strings, .get_sset_count =3D mtk_get_sset_count, .get_ethtool_stats =3D mtk_get_ethtool_stats, + .get_pauseparam =3D mtk_get_pauseparam, + .set_pauseparam =3D mtk_set_pauseparam, .get_rxnfc =3D mtk_get_rxnfc, - .set_rxnfc =3D mtk_set_rxnfc, + .set_rxnfc =3D mtk_set_rxnfc, }; =20 static const struct net_device_ops mtk_netdev_ops =3D { --=20 2.45.2