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 1064745B00; Thu, 10 Oct 2024 11:55:31 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F37C74025E; Thu, 10 Oct 2024 11:55:30 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.7]) by mails.dpdk.org (Postfix) with ESMTP id 864144025E for ; Thu, 10 Oct 2024 11:55:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1728554130; x=1760090130; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=N/TmU4+m1bE6XGH2aE9MTg1aRjxePwI4SRkGnONqEZA=; b=J7VLWQes0kPuZZiqJwWbHfPsrmY0RUmItJxjUkV6lHHfqh301ynCOKLU NlO0J+l0nPrtFZMrbYwciL1VNrQOtS5GLnIvL6Wzs4Z6/fuzKeohVVnwJ xWfsEyZn1tyTSvJHvXHKvWc2PKHIwQ+EVtpzMTJolHCmIA+Q/DOpPvNtI Y8tknNxHkuIEjqAnw+WZ8coA1tCqzASwOehc5yhd+d33wKwkFafLe40bG 3ZjYH8KvhSex9+3i7PXUtF7EohbgvfzYY3JX1f2Goa1BN6NCAXqA+85Tu yOWPodQmGX0KB8cV8ruH8JtrrCPhEj0e9RGuakh4CG8YZfshIzxs0L5QI Q==; X-CSE-ConnectionGUID: uMALE4t2SICBpHjQq1+0ag== X-CSE-MsgGUID: TiNbNqCcTPyzog8uDHQmMw== X-IronPort-AV: E=McAfee;i="6700,10204,11220"; a="53304883" X-IronPort-AV: E=Sophos;i="6.11,192,1725346800"; d="scan'208";a="53304883" Received: from fmviesa004.fm.intel.com ([10.60.135.144]) by fmvoesa101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Oct 2024 02:55:29 -0700 X-CSE-ConnectionGUID: dyFHKNJHQs6Ly8ucHEkBTw== X-CSE-MsgGUID: ulLJWwjxS9KH3oCn/q20Fw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,192,1725346800"; d="scan'208";a="81111605" Received: from unknown (HELO localhost.localdomain) ([10.239.252.253]) by fmviesa004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Oct 2024 02:55:27 -0700 From: Mingjin Ye To: dev@dpdk.org Cc: Mingjin Ye Subject: [PATCH v4 0/3] add frequency adjustment support for PTP Date: Thu, 10 Oct 2024 09:32:18 +0000 Message-Id: <20241010093221.1359778-1-mingjinx.ye@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20240930084216.1174034-1-mingjinx.ye@intel.com> References: <20240930084216.1174034-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 --- v2: rte_eth_timesync_adjust_freq marked as experimental. --- v3: Add more description for API. --- v4: Documentation for adding a ptpclient. Mingjin Ye (3): ethdev: add frequency adjustment API net/ice: add frequency adjustment support for PTP examples/ptpclient: add frequency adjustment doc/guides/nics/features.rst | 4 +- doc/guides/nics/ice.rst | 15 ++ doc/guides/rel_notes/release_24_11.rst | 4 + doc/guides/sample_app_ug/ptpclient.rst | 12 +- 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 | 284 +++++++++++++++++++++++-- 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 | 43 ++++ lib/ethdev/version.map | 3 + 14 files changed, 515 insertions(+), 68 deletions(-) -- 2.25.1