2019-12-11 17:58:29 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
|
|
|
#ifndef _ETHTOOL_COMMON_H
|
|
|
|
#define _ETHTOOL_COMMON_H
|
|
|
|
|
2019-12-27 22:56:23 +08:00
|
|
|
#include <linux/netdevice.h>
|
2019-12-11 17:58:29 +08:00
|
|
|
#include <linux/ethtool.h>
|
|
|
|
|
2020-03-13 04:07:48 +08:00
|
|
|
#define ETHTOOL_DEV_FEATURE_WORDS DIV_ROUND_UP(NETDEV_FEATURE_COUNT, 32)
|
|
|
|
|
2019-12-11 17:58:34 +08:00
|
|
|
/* compose link mode index from speed, type and duplex */
|
|
|
|
#define ETHTOOL_LINK_MODE(speed, type, duplex) \
|
|
|
|
ETHTOOL_LINK_MODE_ ## speed ## base ## type ## _ ## duplex ## _BIT
|
|
|
|
|
2020-03-28 07:01:53 +08:00
|
|
|
#define __SOF_TIMESTAMPING_CNT (const_ilog2(SOF_TIMESTAMPING_LAST) + 1)
|
|
|
|
|
2021-02-03 02:06:07 +08:00
|
|
|
struct link_mode_info {
|
|
|
|
int speed;
|
|
|
|
u8 lanes;
|
|
|
|
u8 duplex;
|
|
|
|
};
|
|
|
|
|
2024-08-09 04:53:45 +08:00
|
|
|
struct genl_info;
|
|
|
|
|
2019-12-11 17:58:29 +08:00
|
|
|
extern const char
|
|
|
|
netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN];
|
|
|
|
extern const char
|
|
|
|
rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN];
|
|
|
|
extern const char
|
|
|
|
tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN];
|
|
|
|
extern const char
|
|
|
|
phy_tunable_strings[__ETHTOOL_PHY_TUNABLE_COUNT][ETH_GSTRING_LEN];
|
2019-12-11 17:58:34 +08:00
|
|
|
extern const char link_mode_names[][ETH_GSTRING_LEN];
|
2021-02-03 02:06:07 +08:00
|
|
|
extern const struct link_mode_info link_mode_params[];
|
2020-01-27 06:11:04 +08:00
|
|
|
extern const char netif_msg_class_names[][ETH_GSTRING_LEN];
|
2020-01-27 06:11:13 +08:00
|
|
|
extern const char wol_mode_names[][ETH_GSTRING_LEN];
|
2020-03-28 07:01:53 +08:00
|
|
|
extern const char sof_timestamping_names[][ETH_GSTRING_LEN];
|
|
|
|
extern const char ts_tx_type_names[][ETH_GSTRING_LEN];
|
|
|
|
extern const char ts_rx_filter_names[][ETH_GSTRING_LEN];
|
2020-07-10 08:42:47 +08:00
|
|
|
extern const char udp_tunnel_type_names[][ETH_GSTRING_LEN];
|
2019-12-11 17:58:29 +08:00
|
|
|
|
2019-12-27 22:56:23 +08:00
|
|
|
int __ethtool_get_link(struct net_device *dev);
|
|
|
|
|
2019-12-27 22:55:48 +08:00
|
|
|
bool convert_legacy_settings_to_link_ksettings(
|
|
|
|
struct ethtool_link_ksettings *link_ksettings,
|
|
|
|
const struct ethtool_cmd *legacy_settings);
|
2024-08-09 04:53:45 +08:00
|
|
|
int ethtool_check_max_channel(struct net_device *dev,
|
|
|
|
struct ethtool_channels channels,
|
|
|
|
struct genl_info *info);
|
2024-07-09 21:53:38 +08:00
|
|
|
int __ethtool_get_ts_info(struct net_device *dev, struct kernel_ethtool_ts_info *info);
|
2019-12-27 22:55:48 +08:00
|
|
|
|
2020-07-06 12:27:56 +08:00
|
|
|
extern const struct ethtool_phy_ops *ethtool_phy_ops;
|
2022-10-03 14:52:00 +08:00
|
|
|
extern const struct ethtool_pse_ops *ethtool_pse_ops;
|
2020-07-06 12:27:56 +08:00
|
|
|
|
2021-04-09 16:06:38 +08:00
|
|
|
int ethtool_get_module_info_call(struct net_device *dev,
|
|
|
|
struct ethtool_modinfo *modinfo);
|
|
|
|
int ethtool_get_module_eeprom_call(struct net_device *dev,
|
|
|
|
struct ethtool_eeprom *ee, u8 *data);
|
|
|
|
|
2023-01-19 20:26:56 +08:00
|
|
|
bool __ethtool_dev_mm_supported(struct net_device *dev);
|
|
|
|
|
2019-12-11 17:58:29 +08:00
|
|
|
#endif /* _ETHTOOL_COMMON_H */
|