|
@@ -2991,10 +2991,15 @@ static int ixgbe_get_ts_info(struct net_device *dev,
|
|
{
|
|
{
|
|
struct ixgbe_adapter *adapter = netdev_priv(dev);
|
|
struct ixgbe_adapter *adapter = netdev_priv(dev);
|
|
|
|
|
|
|
|
+ /* we always support timestamping disabled */
|
|
|
|
+ info->rx_filters = BIT(HWTSTAMP_FILTER_NONE);
|
|
|
|
+
|
|
switch (adapter->hw.mac.type) {
|
|
switch (adapter->hw.mac.type) {
|
|
case ixgbe_mac_X550:
|
|
case ixgbe_mac_X550:
|
|
case ixgbe_mac_X550EM_x:
|
|
case ixgbe_mac_X550EM_x:
|
|
case ixgbe_mac_x550em_a:
|
|
case ixgbe_mac_x550em_a:
|
|
|
|
+ info->rx_filters |= BIT(HWTSTAMP_FILTER_ALL);
|
|
|
|
+ /* fallthrough */
|
|
case ixgbe_mac_X540:
|
|
case ixgbe_mac_X540:
|
|
case ixgbe_mac_82599EB:
|
|
case ixgbe_mac_82599EB:
|
|
info->so_timestamping =
|
|
info->so_timestamping =
|
|
@@ -3014,8 +3019,7 @@ static int ixgbe_get_ts_info(struct net_device *dev,
|
|
BIT(HWTSTAMP_TX_OFF) |
|
|
BIT(HWTSTAMP_TX_OFF) |
|
|
BIT(HWTSTAMP_TX_ON);
|
|
BIT(HWTSTAMP_TX_ON);
|
|
|
|
|
|
- info->rx_filters =
|
|
|
|
- BIT(HWTSTAMP_FILTER_NONE) |
|
|
|
|
|
|
+ info->rx_filters |=
|
|
BIT(HWTSTAMP_FILTER_PTP_V1_L4_SYNC) |
|
|
BIT(HWTSTAMP_FILTER_PTP_V1_L4_SYNC) |
|
|
BIT(HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) |
|
|
BIT(HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) |
|
|
BIT(HWTSTAMP_FILTER_PTP_V2_EVENT);
|
|
BIT(HWTSTAMP_FILTER_PTP_V2_EVENT);
|