From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Lu, Wenzhuo" Subject: Re: [PATCH v2 0/7] ethdev: add support for ieee1588 timestamping Date: Thu, 2 Jul 2015 01:24:40 +0000 Message-ID: <6A0DE07E22DDAD4C9103DF62FEBC0909CF6F2F@shsmsx102.ccr.corp.intel.com> References: <1435585344-26652-1-git-send-email-john.mcnamara@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable To: "Mcnamara, John" , "dev@dpdk.org" Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 4260912A8 for ; Thu, 2 Jul 2015 03:26:14 +0200 (CEST) In-Reply-To: <1435585344-26652-1-git-send-email-john.mcnamara@intel.com> Content-Language: en-US List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi, > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of John McNamara > Sent: Monday, June 29, 2015 9:42 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 0/7] ethdev: add support for ieee1588 > timestamping >=20 > This patchset adds ethdev API to enable and read IEEE1588/802.1AS PTP > timestamps from devices that support it. The following functions are adde= d: >=20 > rte_eth_timesync_enable() > rte_eth_timesync_disable() > rte_eth_timesync_read_rx_timestamp() > rte_eth_timesync_read_tx_timestamp() >=20 > The "ieee1588" forwarding mode in testpmd is also refactored to demonstra= te > the new API and to clean up the code. >=20 > Adds support for igb, ixgbe and i40e. >=20 >=20 > V2: > * Added i40e support. >=20 > * Renamed ethdev functions from rte_eth_ieee15888_*() to > rte_eth_timesync_*() > since 802.1AS can be supported through the same interfaces. >=20 > V1: > * Initial version for >=20 > John McNamara (7): > ethdev: add support for ieee1588 timestamping > e1000: add support for ieee1588 timestamping > ixgbe: add support for ieee1588 timestamping > i40e: add support for ieee1588 timestamping > app/testpmd: refactor ieee1588 forwarding > doc: document ieee1588 forwarding mode > abi: announce mbuf addition for ieee1588 in DPDK 2.2 >=20 > app/test-pmd/ieee1588fwd.c | 466 ++--------------------= ------ > doc/guides/rel_notes/abi.rst | 5 + > doc/guides/testpmd_app_ug/run_app.rst | 2 +- > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 2 + > drivers/net/e1000/igb_ethdev.c | 115 +++++++ > drivers/net/i40e/i40e_ethdev.c | 143 +++++++++ > drivers/net/i40e/i40e_rxtx.c | 39 ++- > drivers/net/ixgbe/ixgbe_ethdev.c | 122 ++++++++ > lib/librte_ether/rte_ethdev.c | 70 ++++- > lib/librte_ether/rte_ethdev.h | 90 +++++- > lib/librte_ether/rte_ether_version.map | 4 + > 11 files changed, 615 insertions(+), 443 deletions(-) >=20 > -- > 1.8.1.4 Acked-by: Wenzhuo Lu