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 1FAB24590C; Thu, 5 Sep 2024 12:32:08 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9250D42E10; Thu, 5 Sep 2024 12:32:07 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.14]) by mails.dpdk.org (Postfix) with ESMTP id 01E404025C for ; Thu, 5 Sep 2024 12:32:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1725532326; x=1757068326; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=Q+Uh09pzG6AIzPMGrhKk8SV0mN+lSAz/lN8EkhRlMJc=; b=TWGUBbfnqsj79aEzRhTkzMxTs+mVkMNaxaLImqck1N5lzgFh7+zT5eOL InF3okxAckNhY3Vs4irwds7nUSL2GhbamjhmsVfKrpLvNJZqcYsEuW6/y 0xO/lKYfquQKLbbKAMidy7xS1dyclJuaitxwJ9MeOEvIR6pE7CFQdz80Y yk7fetwxIyZQv48qF1ZsI5NLLlYNOHj5AKeRyzkQpsvM2d7r3rCtkz0tc I+ncKduGNeEUGRarxn8y7BhIjQ/L4UE7CTWCq0v9Ibys6x2oQvO6XC+E7 +/SJr8fBEy4u+5ZnWbpQthBvkvYMi27nTTwWH8DSgCfgFNASL9Wnm5Sz9 A==; X-CSE-ConnectionGUID: wcYBMpqlQn2xQJIh9CZOOw== X-CSE-MsgGUID: osPUMvzPQWeG6LSor3fEcw== X-IronPort-AV: E=McAfee;i="6700,10204,11185"; a="24433002" X-IronPort-AV: E=Sophos;i="6.10,204,1719903600"; d="scan'208";a="24433002" Received: from orviesa008.jf.intel.com ([10.64.159.148]) by fmvoesa108.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2024 03:32:05 -0700 X-CSE-ConnectionGUID: kLT3g2vFQcOtKnDWnBHgHw== X-CSE-MsgGUID: 3QOvEK2ZRbyDo57V2+SkFQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.10,204,1719903600"; d="scan'208";a="66318905" Received: from unknown (HELO localhost.localdomain) ([10.239.252.253]) by orviesa008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2024 03:32:03 -0700 From: Mingjin Ye To: dev@dpdk.org Cc: Mingjin Ye Subject: [PATCH 0/3] add frequency adjustment support for PTP Date: Thu, 5 Sep 2024 10:08:36 +0000 Message-Id: <20240905100839.861860-1-mingjinx.ye@intel.com> X-Mailer: git-send-email 2.25.1 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 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 | 300 ++++++++++++++++++++++--- 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, 482 insertions(+), 108 deletions(-) -- 2.25.1