From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f53.google.com (mail-wg0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id 22B275A53 for ; Fri, 10 Jul 2015 02:44:31 +0200 (CEST) Received: by wgck11 with SMTP id k11so236880384wgc.0 for ; Thu, 09 Jul 2015 17:44:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=bWI5Cutatu4Sc5dyF4/iU+8LpH27OW9y6oy6AuNhTgc=; b=iZ4CFrsY2qssocCZRH+1csnL8bS30nvkfB+aIA4kr9oAAt4C5kAfJoCAtWNEZGWqKb 3YanFX28bjxSeveFwbDCQPy5YAycVX5sk8ffZNu9+l+p3Qn1eEbeiMt9+0deHVGVxr3L T1zEFc4GZz0azvq1y2hu19FiEzvgenzI7EnGIyqXJ8v4onHqSxJLqWU+ozaM5LYjYMLa iJNhWNnb0qNOzuQR20JDNiwOYbClfKjnX0HtMzrsUo+2grD3SaeTy+iavv7xGsCFGV5p ZRfhLFWl0axON3QoWuu074Zlm45Mb1ffzzjcTHifTWnyXHER2SpuI8pOpirxXR/Abb4o zC1g== X-Gm-Message-State: ALoCoQlHt37Iquq0hQ9dAWdxFpp5SVaEUABf7i+lt8o1K91ewqahN7VlbIN3XE6Ew0Mqz0NsAT19 X-Received: by 10.194.76.132 with SMTP id k4mr34811340wjw.77.1436489070984; Thu, 09 Jul 2015 17:44:30 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id dt1sm500342wib.7.2015.07.09.17.44.28 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 09 Jul 2015 17:44:29 -0700 (PDT) From: Thomas Monjalon To: John McNamara Date: Fri, 10 Jul 2015 02:43:23 +0200 Message-ID: <11775483.8CWTBnj1rF@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1436448620-13972-1-git-send-email-john.mcnamara@intel.com> References: <1436448620-13972-1-git-send-email-john.mcnamara@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v4 0/7] ethdev: add support for ieee1588 timestamping X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Jul 2015 00:44:31 -0000 2015-07-09 14:30, John McNamara: > This patchset adds ethdev API to enable and read IEEE1588/802.1AS PTP > timestamps from devices that support it. The following functions are added: > > rte_eth_timesync_enable() > rte_eth_timesync_disable() > rte_eth_timesync_read_rx_timestamp() > rte_eth_timesync_read_tx_timestamp() > > The "ieee1588" forwarding mode in testpmd is also refactored to demonstrate > the new API and to clean up the code. > > Adds support for igb, ixgbe and i40e. > > V4: > * Added timesync field to end of mbuf to pass IEEE1588 registers and flags. > Removed previous ABI deprecation notice. > > V3: > * Fixed issued with version.map. > > V2: > * Added i40e support. > > * Renamed ethdev functions from rte_eth_ieee15888_*() to rte_eth_timesync_*() > since 802.1AS can be supported through the same interfaces. > > V1: > * Initial version for igb and ixgbe. > > > John McNamara (7): > ethdev: add support for ieee1588 timestamping > mbuf: add field for ieee1588 timesync index > 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 Was previously acked by Wenzhuo except the new mbuf field. Applied, thanks