From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0C03045954; Tue, 10 Sep 2024 11:45:29 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CDC88427B6; Tue, 10 Sep 2024 11:45:28 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.18]) by mails.dpdk.org (Postfix) with ESMTP id 9740E402A1 for ; Tue, 10 Sep 2024 11:45:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1725961527; x=1757497527; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=SxFXg795d0OPpAOXjs1xBzlyLsO88g/EwSCxQPhfpdE=; b=LdAs2TQpSCF8fzM0qxWjGgtXqqGn58WN1m0nwfhYjgZo5vdFaaxNi6Kh 38Z5w3fDLPLEZmePM3RQ/LZKqN4cn6e4EggnXpdkWDq29cUIKaaLe4eHz ct/yzdk0Kap+Cj4OQqls6LsaHX/nbi6yJdC6OHqRpi6nSXt/xYuP2p8hm K43dEHp2OW3viBM/A8jBOoGhX5yoIxIhFyFF4OoTftxr4eu51C4kRVsIY byqBtJBIrqA3QXawYFPq9Lc2f/Y/VEA62rymWPlya58hTzUvr/QhHcZ/O 4nLAC6gsbvpzYPvcSq21T72BEZOxnn4tzSV+WpalltDVYIV+Fz8DhZk7r g==; X-CSE-ConnectionGUID: f9KkmYiRQ4aTXAkCuNQCtg== X-CSE-MsgGUID: uNeS0No3Qsen8tVsOjBmKQ== X-IronPort-AV: E=McAfee;i="6700,10204,11190"; a="24195698" X-IronPort-AV: E=Sophos;i="6.10,216,1719903600"; d="scan'208";a="24195698" Received: from fmviesa009.fm.intel.com ([10.60.135.149]) by fmvoesa112.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2024 02:45:25 -0700 X-CSE-ConnectionGUID: KhJGvqGwSOeraqqqHbpRmg== X-CSE-MsgGUID: JT0kxUhFQiugzZ3ssVsOAQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.10,216,1719903600"; d="scan'208";a="66979211" Received: from unknown (HELO localhost.localdomain) ([10.239.252.253]) by fmviesa009-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2024 02:45:24 -0700 From: Mingjin Ye To: dev@dpdk.org Cc: Mingjin Ye Subject: [PATCH v2 0/3] add frequency adjustment support for PTP Date: Tue, 10 Sep 2024 09:13:25 +0000 Message-Id: <20240910091328.922082-1-mingjinx.ye@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20240905013144.844499-1-mingjinx.ye@intel.com> References: <20240905013144.844499-1-mingjinx.ye@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org [1/3] ethdev: add frequency adjustment API [2/3] net/ice: add frequency adjustment support for PTP [3/3] examples/ptpclient: add frequency adjustment support --- v2: rte_eth_timesync_adjust_freq marked as experimental. Mingjin Ye (3): ethdev: add frequency adjustment API net/ice: add frequency adjustment support for PTP examples/ptpclient: add frequency adjustment support doc/guides/nics/features.rst | 4 +- doc/guides/nics/ice.rst | 15 ++ doc/guides/rel_notes/release_24_11.rst | 30 +-- drivers/net/ice/ice_ethdev.c | 177 +++++++++++---- drivers/net/ice/ice_ethdev.h | 2 + drivers/net/ice/ice_rxtx.c | 4 +- examples/ptpclient/ptpclient.c | 298 ++++++++++++++++++++++--- lib/ethdev/ethdev_driver.h | 5 + lib/ethdev/ethdev_trace.h | 9 + lib/ethdev/ethdev_trace_points.c | 3 + lib/ethdev/rte_ethdev.c | 18 ++ lib/ethdev/rte_ethdev.h | 20 ++ lib/ethdev/version.map | 3 + 13 files changed, 481 insertions(+), 107 deletions(-) -- 2.25.1