From patchwork Sun Apr 1 15:19:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Cochran X-Patchwork-Id: 149932 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 9CA02B700B for ; Mon, 2 Apr 2012 01:21:06 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751443Ab2DAPVD (ORCPT ); Sun, 1 Apr 2012 11:21:03 -0400 Received: from mail-wg0-f44.google.com ([74.125.82.44]:44368 "EHLO mail-wg0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751266Ab2DAPUe (ORCPT ); Sun, 1 Apr 2012 11:20:34 -0400 Received: by wgbdr13 with SMTP id dr13so1959432wgb.1 for ; Sun, 01 Apr 2012 08:20:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :in-reply-to:references; bh=M7p3ZsAAZ74pkW6pE3cfPNi5NXgj5Jt7YoaZDYzKq4E=; b=D6z7y9pPJ5C0IXsHtJIWmXXByVQ9xjnNW8Jt1tpplNbo3svqG/DbSCERNFDGuVNhlG 4SqqFkmg07Wv4oJP0QhQGPMMytZ2vLH0bpyzMmjWf5MUzUNgUbBBVnXeU4uzox3LgIoX WcOZzdrgJnHVx4keodM/EeSYg9LATbVGSPfHbk6Ymhy+4OCirQAdx9ZLztP5i8ZlcWDk /DE1wzvYwq1mzJf/dWN3Pq66EK6v+HRlXwiWqap9Ggdic0VkzY3TAoJoril7rle5icY6 ErczFbylKzNK7kGpOuErjmJVQ1VZtZiZURb8w8sNXwetr7fVghfPcxE6q9v4+qS9wUa/ J8SA== Received: by 10.180.104.231 with SMTP id gh7mr15930524wib.10.1333293633503; Sun, 01 Apr 2012 08:20:33 -0700 (PDT) Received: from localhost.localdomain (089144206229.atnat0015.highway.a1.net. [89.144.206.229]) by mx.google.com with ESMTPS id gg2sm41898624wib.7.2012.04.01.08.20.29 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 01 Apr 2012 08:20:32 -0700 (PDT) From: Richard Cochran To: Cc: David Miller , Ben Hutchings , Martin Porter , Jacob Keller , Jeff Kirsher , John Ronciak , e1000-devel@lists.sourceforge.net Subject: [PATCH V2 net-next 02/28] ethtool: Introduce a method for getting time stamping capabilities. Date: Sun, 1 Apr 2012 17:19:47 +0200 Message-Id: X-Mailer: git-send-email 1.7.2.5 In-Reply-To: References: In-Reply-To: References: Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This commit adds a new ethtool ioctl that exposes the SO_TIMESTAMPING capabilities of a network interface. In addition, user space programs can use this ioctl to discover the PTP Hardware Clock (PHC) device associated with the interface. Since software receive time stamps are handled by the stack, the generic ethtool code can answer the query correctly in case the MAC or PHY drivers lack special time stamping features. Signed-off-by: Richard Cochran --- include/linux/ethtool.h | 23 +++++++++++++++++++++++ include/linux/phy.h | 3 +++ net/core/ethtool.c | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 62 insertions(+), 0 deletions(-) diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h index e1d9e0e..776b3d0 100644 --- a/include/linux/ethtool.h +++ b/include/linux/ethtool.h @@ -726,6 +726,24 @@ struct ethtool_sfeatures { struct ethtool_set_features_block features[0]; }; +/** + * struct ethtool_ts_info - holds a device's timestamping and PHC association + * @cmd: command number = %ETHTOOL_GET_TS_INFO + * @so_timestamping: bit mask of SO_TIMESTAMPING modes supported by the device + * @phc_index: device index of the associated PHC, or -1 if there is none + * @tx_types: bit mask of hwtstamp_tx_types modes supported by the device + * @rx_filters: bit mask of hwtstamp_rx_filters modes supported by the device + */ +struct ethtool_ts_info { + __u32 cmd; + __u32 so_timestamping; + __s32 phc_index; + __u32 tx_types; + __u32 tx_reserved[3]; + __u32 rx_filters; + __u32 rx_reserved[3]; +}; + /* * %ETHTOOL_SFEATURES changes features present in features[].valid to the * values of corresponding bits in features[].requested. Bits in .requested @@ -893,6 +911,9 @@ static inline u32 ethtool_rxfh_indir_default(u32 index, u32 n_rx_rings) * and flag of the device. * @get_dump_data: Get dump data. * @set_dump: Set dump specific flags to the device. + * @get_ts_info: Get the time stamping and PTP hardware clock capabilities. + * Driver supporting transmit time stamps in software should set this to + * ethtool_op_get_ts_info(). * * All operations are optional (i.e. the function pointer may be set * to %NULL) and callers must take this into account. Callers must @@ -955,6 +976,7 @@ struct ethtool_ops { int (*get_dump_data)(struct net_device *, struct ethtool_dump *, void *); int (*set_dump)(struct net_device *, struct ethtool_dump *); + int (*get_ts_info)(struct net_device *, struct ethtool_ts_info *); }; #endif /* __KERNEL__ */ @@ -1029,6 +1051,7 @@ struct ethtool_ops { #define ETHTOOL_SET_DUMP 0x0000003e /* Set dump settings */ #define ETHTOOL_GET_DUMP_FLAG 0x0000003f /* Get dump settings */ #define ETHTOOL_GET_DUMP_DATA 0x00000040 /* Get dump data */ +#define ETHTOOL_GET_TS_INFO 0x00000041 /* Get time stamping and PHC info */ /* compatibility with older code */ #define SPARC_ETH_GSET ETHTOOL_GSET diff --git a/include/linux/phy.h b/include/linux/phy.h index 6fe0a37..f092032 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -412,6 +412,9 @@ struct phy_driver { /* Clears up any memory if needed */ void (*remove)(struct phy_device *phydev); + /* Handles ethtool queries for hardware time stamping. */ + int (*ts_info)(struct phy_device *phydev, struct ethtool_ts_info *ti); + /* Handles SIOCSHWTSTAMP ioctl for hardware time stamping. */ int (*hwtstamp)(struct phy_device *phydev, struct ifreq *ifr); diff --git a/net/core/ethtool.c b/net/core/ethtool.c index 6d6d7d2..d6eff4b 100644 --- a/net/core/ethtool.c +++ b/net/core/ethtool.c @@ -17,6 +17,8 @@ #include #include #include +#include +#include #include #include #include @@ -1278,6 +1280,37 @@ out: return ret; } +static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr) +{ + int err = 0; + struct ethtool_ts_info info; + const struct ethtool_ops *ops = dev->ethtool_ops; + struct phy_device *phydev = dev->phydev; + + memset(&info, 0, sizeof(info)); + info.cmd = ETHTOOL_GET_TS_INFO; + + if (phydev && phydev->drv && phydev->drv->ts_info) + err = phydev->drv->ts_info(phydev, &info); + + else if (dev->ethtool_ops->get_ts_info) + err = ops->get_ts_info(dev, &info); + else { + info.so_timestamping = + SOF_TIMESTAMPING_RX_SOFTWARE | + SOF_TIMESTAMPING_SOFTWARE; + info.phc_index = -1; + } + + if (err) + return err; + + if (copy_to_user(useraddr, &info, sizeof(info))) + err = -EFAULT; + + return err; +} + /* The main entry point in this file. Called from net/core/dev.c */ int dev_ethtool(struct net *net, struct ifreq *ifr) @@ -1496,6 +1529,9 @@ int dev_ethtool(struct net *net, struct ifreq *ifr) case ETHTOOL_GET_DUMP_DATA: rc = ethtool_get_dump_data(dev, useraddr); break; + case ETHTOOL_GET_TS_INFO: + rc = ethtool_get_ts_info(dev, useraddr); + break; default: rc = -EOPNOTSUPP; }