diff options
author | Richard Cochran <richardcochran@gmail.com> | 2012-04-03 18:59:21 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-04 05:28:46 -0400 |
commit | 509a7c25729feab353502e1b544c614772a1d49a (patch) | |
tree | 44e08849d8c9cd6cff083c5d3b1720588d4e8944 /drivers | |
parent | a85bbddd080ab49e461870411f6bb93f3d94ec11 (diff) |
ixp4xx_eth: Support the get_ts_info ethtool method.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/xscale/ixp4xx_eth.c | 29 | ||||
-rw-r--r-- | drivers/ptp/ptp_ixp46x.c | 3 |
2 files changed, 32 insertions, 0 deletions
diff --git a/drivers/net/ethernet/xscale/ixp4xx_eth.c b/drivers/net/ethernet/xscale/ixp4xx_eth.c index 41a8b5a9849e..482648fcf0b6 100644 --- a/drivers/net/ethernet/xscale/ixp4xx_eth.c +++ b/drivers/net/ethernet/xscale/ixp4xx_eth.c | |||
@@ -1002,12 +1002,41 @@ static int ixp4xx_nway_reset(struct net_device *dev) | |||
1002 | return phy_start_aneg(port->phydev); | 1002 | return phy_start_aneg(port->phydev); |
1003 | } | 1003 | } |
1004 | 1004 | ||
1005 | int ixp46x_phc_index = -1; | ||
1006 | |||
1007 | static int ixp4xx_get_ts_info(struct net_device *dev, | ||
1008 | struct ethtool_ts_info *info) | ||
1009 | { | ||
1010 | if (!cpu_is_ixp46x()) { | ||
1011 | info->so_timestamping = | ||
1012 | SOF_TIMESTAMPING_TX_SOFTWARE | | ||
1013 | SOF_TIMESTAMPING_RX_SOFTWARE | | ||
1014 | SOF_TIMESTAMPING_SOFTWARE; | ||
1015 | info->phc_index = -1; | ||
1016 | return 0; | ||
1017 | } | ||
1018 | info->so_timestamping = | ||
1019 | SOF_TIMESTAMPING_TX_HARDWARE | | ||
1020 | SOF_TIMESTAMPING_RX_HARDWARE | | ||
1021 | SOF_TIMESTAMPING_RAW_HARDWARE; | ||
1022 | info->phc_index = ixp46x_phc_index; | ||
1023 | info->tx_types = | ||
1024 | (1 << HWTSTAMP_TX_OFF) | | ||
1025 | (1 << HWTSTAMP_TX_ON); | ||
1026 | info->rx_filters = | ||
1027 | (1 << HWTSTAMP_FILTER_NONE) | | ||
1028 | (1 << HWTSTAMP_FILTER_PTP_V1_L4_SYNC) | | ||
1029 | (1 << HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ); | ||
1030 | return 0; | ||
1031 | } | ||
1032 | |||
1005 | static const struct ethtool_ops ixp4xx_ethtool_ops = { | 1033 | static const struct ethtool_ops ixp4xx_ethtool_ops = { |
1006 | .get_drvinfo = ixp4xx_get_drvinfo, | 1034 | .get_drvinfo = ixp4xx_get_drvinfo, |
1007 | .get_settings = ixp4xx_get_settings, | 1035 | .get_settings = ixp4xx_get_settings, |
1008 | .set_settings = ixp4xx_set_settings, | 1036 | .set_settings = ixp4xx_set_settings, |
1009 | .nway_reset = ixp4xx_nway_reset, | 1037 | .nway_reset = ixp4xx_nway_reset, |
1010 | .get_link = ethtool_op_get_link, | 1038 | .get_link = ethtool_op_get_link, |
1039 | .get_ts_info = ixp4xx_get_ts_info, | ||
1011 | }; | 1040 | }; |
1012 | 1041 | ||
1013 | 1042 | ||
diff --git a/drivers/ptp/ptp_ixp46x.c b/drivers/ptp/ptp_ixp46x.c index 6f2782bb5f41..9d13a71c5367 100644 --- a/drivers/ptp/ptp_ixp46x.c +++ b/drivers/ptp/ptp_ixp46x.c | |||
@@ -284,6 +284,7 @@ static void __exit ptp_ixp_exit(void) | |||
284 | { | 284 | { |
285 | free_irq(MASTER_IRQ, &ixp_clock); | 285 | free_irq(MASTER_IRQ, &ixp_clock); |
286 | free_irq(SLAVE_IRQ, &ixp_clock); | 286 | free_irq(SLAVE_IRQ, &ixp_clock); |
287 | ixp46x_phc_clock = -1; | ||
287 | ptp_clock_unregister(ixp_clock.ptp_clock); | 288 | ptp_clock_unregister(ixp_clock.ptp_clock); |
288 | } | 289 | } |
289 | 290 | ||
@@ -302,6 +303,8 @@ static int __init ptp_ixp_init(void) | |||
302 | if (IS_ERR(ixp_clock.ptp_clock)) | 303 | if (IS_ERR(ixp_clock.ptp_clock)) |
303 | return PTR_ERR(ixp_clock.ptp_clock); | 304 | return PTR_ERR(ixp_clock.ptp_clock); |
304 | 305 | ||
306 | ixp46x_phc_clock = ptp_clock_index(ixp_clock.ptp_clock); | ||
307 | |||
305 | __raw_writel(DEFAULT_ADDEND, &ixp_clock.regs->addend); | 308 | __raw_writel(DEFAULT_ADDEND, &ixp_clock.regs->addend); |
306 | __raw_writel(1, &ixp_clock.regs->trgt_lo); | 309 | __raw_writel(1, &ixp_clock.regs->trgt_lo); |
307 | __raw_writel(0, &ixp_clock.regs->trgt_hi); | 310 | __raw_writel(0, &ixp_clock.regs->trgt_hi); |