blob: 2dc2b80aea5f55f042a301b938c5c09deb2e8c1f [file] [log] [blame]
Michal Kubecekd44e1312019-12-11 10:58:29 +01001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#ifndef _ETHTOOL_COMMON_H
4#define _ETHTOOL_COMMON_H
5
Michal Kubecek3d2b8472019-12-27 15:56:23 +01006#include <linux/netdevice.h>
Michal Kubecekd44e1312019-12-11 10:58:29 +01007#include <linux/ethtool.h>
8
Michal Kubecek05243992020-03-12 21:07:48 +01009#define ETHTOOL_DEV_FEATURE_WORDS DIV_ROUND_UP(NETDEV_FEATURE_COUNT, 32)
10
Michal Kubecek428c1222019-12-11 10:58:34 +010011/* compose link mode index from speed, type and duplex */
12#define ETHTOOL_LINK_MODE(speed, type, duplex) \
13 ETHTOOL_LINK_MODE_ ## speed ## base ## type ## _ ## duplex ## _BIT
14
Michal Kubecekf76510b2020-03-28 00:01:53 +010015#define __SOF_TIMESTAMPING_CNT (const_ilog2(SOF_TIMESTAMPING_LAST) + 1)
16
Danielle Ratsonc8907042021-02-02 20:06:07 +020017struct link_mode_info {
18 int speed;
19 u8 lanes;
20 u8 duplex;
21};
22
Michal Kubecekd44e1312019-12-11 10:58:29 +010023extern const char
24netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN];
25extern const char
26rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN];
27extern const char
28tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN];
29extern const char
30phy_tunable_strings[__ETHTOOL_PHY_TUNABLE_COUNT][ETH_GSTRING_LEN];
Michal Kubecek428c1222019-12-11 10:58:34 +010031extern const char link_mode_names[][ETH_GSTRING_LEN];
Danielle Ratsonc8907042021-02-02 20:06:07 +020032extern const struct link_mode_info link_mode_params[];
Michal Kubecek6a94b8c2020-01-26 23:11:04 +010033extern const char netif_msg_class_names[][ETH_GSTRING_LEN];
Michal Kubecek51ea22b2020-01-26 23:11:13 +010034extern const char wol_mode_names[][ETH_GSTRING_LEN];
Michal Kubecekf76510b2020-03-28 00:01:53 +010035extern const char sof_timestamping_names[][ETH_GSTRING_LEN];
36extern const char ts_tx_type_names[][ETH_GSTRING_LEN];
37extern const char ts_rx_filter_names[][ETH_GSTRING_LEN];
Jakub Kicinskic7d759e2020-07-09 17:42:47 -070038extern const char udp_tunnel_type_names[][ETH_GSTRING_LEN];
Michal Kubecekd44e1312019-12-11 10:58:29 +010039
Michal Kubecek3d2b8472019-12-27 15:56:23 +010040int __ethtool_get_link(struct net_device *dev);
41
Michal Kubecek459e0b82019-12-27 15:55:48 +010042bool convert_legacy_settings_to_link_ksettings(
43 struct ethtool_link_ksettings *link_ksettings,
44 const struct ethtool_cmd *legacy_settings);
Michal Kubeceke19c5912020-03-12 21:08:43 +010045int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max);
Michal Kubecek5b071c52020-03-28 00:01:58 +010046int __ethtool_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info);
Michal Kubecek459e0b82019-12-27 15:55:48 +010047
Florian Fainelli4895d782020-07-05 21:27:56 -070048extern const struct ethtool_phy_ops *ethtool_phy_ops;
49
Andrew Lunn95dfc7e2021-04-09 11:06:38 +030050int ethtool_get_module_info_call(struct net_device *dev,
51 struct ethtool_modinfo *modinfo);
52int ethtool_get_module_eeprom_call(struct net_device *dev,
53 struct ethtool_eeprom *ee, u8 *data);
54
Michal Kubecekd44e1312019-12-11 10:58:29 +010055#endif /* _ETHTOOL_COMMON_H */