Merge tag 'devicetree-fixes-for-6.2-3' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-block.git] / include / linux / ethtool_netlink.h
CommitLineData
2b4a8990
MK
1/* SPDX-License-Identifier: GPL-2.0-only */
2
3#ifndef _LINUX_ETHTOOL_NETLINK_H_
4#define _LINUX_ETHTOOL_NETLINK_H_
5
6#include <uapi/linux/ethtool_netlink.h>
7#include <linux/ethtool.h>
6b08d6c1
MK
8#include <linux/netdevice.h>
9
f625aa9b
MK
10#define __ETHTOOL_LINK_MODE_MASK_NWORDS \
11 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
12
1aabe578
JK
13#define ETHTOOL_PAUSE_STAT_CNT (__ETHTOOL_A_PAUSE_STAT_CNT - \
14 ETHTOOL_A_PAUSE_STAT_TX_FRAMES)
15
6b08d6c1
MK
16enum ethtool_multicast_groups {
17 ETHNL_MCGRP_MONITOR,
18};
2b4a8990 19
1dd3f212
AL
20struct phy_device;
21
22#if IS_ENABLED(CONFIG_ETHTOOL_NETLINK)
1a644de2 23int ethnl_cable_test_alloc(struct phy_device *phydev, u8 cmd);
1dd3f212
AL
24void ethnl_cable_test_free(struct phy_device *phydev);
25void ethnl_cable_test_finished(struct phy_device *phydev);
1e2dc145
AL
26int ethnl_cable_test_result(struct phy_device *phydev, u8 pair, u8 result);
27int ethnl_cable_test_fault_length(struct phy_device *phydev, u8 pair, u32 cm);
6b4a0fc1
AL
28int ethnl_cable_test_amplitude(struct phy_device *phydev, u8 pair, s16 mV);
29int ethnl_cable_test_pulse(struct phy_device *phydev, u16 mV);
30int ethnl_cable_test_step(struct phy_device *phydev, u32 first, u32 last,
31 u32 step);
9179f5fe
VO
32void ethtool_aggregate_mac_stats(struct net_device *dev,
33 struct ethtool_eth_mac_stats *mac_stats);
34void ethtool_aggregate_phy_stats(struct net_device *dev,
35 struct ethtool_eth_phy_stats *phy_stats);
36void ethtool_aggregate_ctrl_stats(struct net_device *dev,
37 struct ethtool_eth_ctrl_stats *ctrl_stats);
38void ethtool_aggregate_pause_stats(struct net_device *dev,
39 struct ethtool_pause_stats *pause_stats);
40void ethtool_aggregate_rmon_stats(struct net_device *dev,
41 struct ethtool_rmon_stats *rmon_stats);
42
1dd3f212 43#else
1a644de2 44static inline int ethnl_cable_test_alloc(struct phy_device *phydev, u8 cmd)
1dd3f212 45{
1e2dc145 46 return -EOPNOTSUPP;
1dd3f212
AL
47}
48
49static inline void ethnl_cable_test_free(struct phy_device *phydev)
50{
51}
52
53static inline void ethnl_cable_test_finished(struct phy_device *phydev)
54{
55}
1e2dc145
AL
56static inline int ethnl_cable_test_result(struct phy_device *phydev, u8 pair,
57 u8 result)
58{
59 return -EOPNOTSUPP;
60}
61
62static inline int ethnl_cable_test_fault_length(struct phy_device *phydev,
63 u8 pair, u32 cm)
64{
65 return -EOPNOTSUPP;
66}
6b4a0fc1
AL
67
68static inline int ethnl_cable_test_amplitude(struct phy_device *phydev,
69 u8 pair, s16 mV)
70{
71 return -EOPNOTSUPP;
72}
73
74static inline int ethnl_cable_test_pulse(struct phy_device *phydev, u16 mV)
75{
76 return -EOPNOTSUPP;
77}
78
79static inline int ethnl_cable_test_step(struct phy_device *phydev, u32 first,
80 u32 last, u32 step)
81{
82 return -EOPNOTSUPP;
83}
9179f5fe
VO
84
85static inline void
86ethtool_aggregate_mac_stats(struct net_device *dev,
87 struct ethtool_eth_mac_stats *mac_stats)
88{
89}
90
91static inline void
92ethtool_aggregate_phy_stats(struct net_device *dev,
93 struct ethtool_eth_phy_stats *phy_stats)
94{
95}
96
97static inline void
98ethtool_aggregate_ctrl_stats(struct net_device *dev,
99 struct ethtool_eth_ctrl_stats *ctrl_stats)
100{
101}
102
103static inline void
104ethtool_aggregate_pause_stats(struct net_device *dev,
105 struct ethtool_pause_stats *pause_stats)
106{
107}
108
109static inline void
110ethtool_aggregate_rmon_stats(struct net_device *dev,
111 struct ethtool_rmon_stats *rmon_stats)
112{
113}
114
90c56b38 115#endif /* IS_ENABLED(CONFIG_ETHTOOL_NETLINK) */
2b4a8990 116#endif /* _LINUX_ETHTOOL_NETLINK_H_ */