Michal Kubecek | d44e131 | 2019-12-11 10:58:29 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
| 2 | |
| 3 | #ifndef _ETHTOOL_COMMON_H |
| 4 | #define _ETHTOOL_COMMON_H |
| 5 | |
Michal Kubecek | 3d2b847 | 2019-12-27 15:56:23 +0100 | [diff] [blame] | 6 | #include <linux/netdevice.h> |
Michal Kubecek | d44e131 | 2019-12-11 10:58:29 +0100 | [diff] [blame] | 7 | #include <linux/ethtool.h> |
| 8 | |
Michal Kubecek | 0524399 | 2020-03-12 21:07:48 +0100 | [diff] [blame] | 9 | #define ETHTOOL_DEV_FEATURE_WORDS DIV_ROUND_UP(NETDEV_FEATURE_COUNT, 32) |
| 10 | |
Michal Kubecek | 428c122 | 2019-12-11 10:58:34 +0100 | [diff] [blame] | 11 | /* 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 Kubecek | f76510b | 2020-03-28 00:01:53 +0100 | [diff] [blame] | 15 | #define __SOF_TIMESTAMPING_CNT (const_ilog2(SOF_TIMESTAMPING_LAST) + 1) |
| 16 | |
Michal Kubecek | d44e131 | 2019-12-11 10:58:29 +0100 | [diff] [blame] | 17 | extern const char |
| 18 | netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN]; |
| 19 | extern const char |
| 20 | rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN]; |
| 21 | extern const char |
| 22 | tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN]; |
| 23 | extern const char |
| 24 | phy_tunable_strings[__ETHTOOL_PHY_TUNABLE_COUNT][ETH_GSTRING_LEN]; |
Michal Kubecek | 428c122 | 2019-12-11 10:58:34 +0100 | [diff] [blame] | 25 | extern const char link_mode_names[][ETH_GSTRING_LEN]; |
Michal Kubecek | 6a94b8c | 2020-01-26 23:11:04 +0100 | [diff] [blame] | 26 | extern const char netif_msg_class_names[][ETH_GSTRING_LEN]; |
Michal Kubecek | 51ea22b | 2020-01-26 23:11:13 +0100 | [diff] [blame] | 27 | extern const char wol_mode_names[][ETH_GSTRING_LEN]; |
Michal Kubecek | f76510b | 2020-03-28 00:01:53 +0100 | [diff] [blame] | 28 | extern const char sof_timestamping_names[][ETH_GSTRING_LEN]; |
| 29 | extern const char ts_tx_type_names[][ETH_GSTRING_LEN]; |
| 30 | extern const char ts_rx_filter_names[][ETH_GSTRING_LEN]; |
Jakub Kicinski | c7d759e | 2020-07-09 17:42:47 -0700 | [diff] [blame^] | 31 | extern const char udp_tunnel_type_names[][ETH_GSTRING_LEN]; |
Michal Kubecek | d44e131 | 2019-12-11 10:58:29 +0100 | [diff] [blame] | 32 | |
Michal Kubecek | 3d2b847 | 2019-12-27 15:56:23 +0100 | [diff] [blame] | 33 | int __ethtool_get_link(struct net_device *dev); |
| 34 | |
Michal Kubecek | 459e0b8 | 2019-12-27 15:55:48 +0100 | [diff] [blame] | 35 | bool convert_legacy_settings_to_link_ksettings( |
| 36 | struct ethtool_link_ksettings *link_ksettings, |
| 37 | const struct ethtool_cmd *legacy_settings); |
Michal Kubecek | e19c591 | 2020-03-12 21:08:43 +0100 | [diff] [blame] | 38 | int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max); |
Michal Kubecek | 5b071c5 | 2020-03-28 00:01:58 +0100 | [diff] [blame] | 39 | int __ethtool_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info); |
Michal Kubecek | 459e0b8 | 2019-12-27 15:55:48 +0100 | [diff] [blame] | 40 | |
Florian Fainelli | 4895d78 | 2020-07-05 21:27:56 -0700 | [diff] [blame] | 41 | extern const struct ethtool_phy_ops *ethtool_phy_ops; |
| 42 | |
Michal Kubecek | d44e131 | 2019-12-11 10:58:29 +0100 | [diff] [blame] | 43 | #endif /* _ETHTOOL_COMMON_H */ |