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 14F7845A66; Mon, 30 Sep 2024 11:06:43 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 82B3140299; Mon, 30 Sep 2024 11:06:42 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.7]) by mails.dpdk.org (Postfix) with ESMTP id 9A0FB4027C for ; Mon, 30 Sep 2024 11:06:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1727687201; x=1759223201; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ZUHeXYQQ2MRIiydOVdEzgbpHtewhE0zta0xX+iHaMKg=; b=j/iY7DBmzdcb7Bv2XG/LrqE3Up+txEYZN9Ra6iQL9uITXz1S6McQ3r/U BDeG2o+wNeEaLcfLh0GtocQpxGXJ8eKroSZkdQc+T38ziQl8q+8k5fcds QBt3CoMpuNOyLvGmFUImYKpDfX3w3Gwmz5Oqh3vXB7OXooh2eEXx272NR bvKJZxTepZ9bk0e6QRBeZjgnrH0/Yvx7N8lYV513UBeU0gMa0RPVKE3W+ exwyF9QCtp79jzsU+Kf4NpN/tWPWt/FUe/gjchGOQxI2SQMmJo2Pf2esA R195r9cznZrqHQ8kNeCmne8nRdrnfbEd8ixHimYM6bRJuXXmmsINLXMBz w==; X-CSE-ConnectionGUID: FH9TT+jnR5CluGfAIjA7KA== X-CSE-MsgGUID: +bRLr8WZT6yI43V7WLv3Ig== X-IronPort-AV: E=McAfee;i="6700,10204,11210"; a="52179939" X-IronPort-AV: E=Sophos;i="6.11,165,1725346800"; d="scan'208";a="52179939" Received: from orviesa002.jf.intel.com ([10.64.159.142]) by fmvoesa101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Sep 2024 02:06:39 -0700 X-CSE-ConnectionGUID: pOwkU2tkT3aVJ1oMaUZxXg== X-CSE-MsgGUID: Cnx2Se+qTzmuzzIdtIlrFQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,165,1725346800"; d="scan'208";a="104026092" Received: from unknown (HELO localhost.localdomain) ([10.239.252.253]) by orviesa002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Sep 2024 02:06:39 -0700 From: Mingjin Ye To: dev@dpdk.org Cc: Mingjin Ye Subject: [PATCH v3 0/3] add frequency adjustment support for PTP Date: Mon, 30 Sep 2024 08:42:13 +0000 Message-Id: <20240930084216.1174034-1-mingjinx.ye@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20240910091328.922082-1-mingjinx.ye@intel.com> References: <20240910091328.922082-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. --- v3: Add more description for API. 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 | 5 + 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 | 303 ++++++++++++++++++++++--- 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 + 13 files changed, 510 insertions(+), 81 deletions(-) -- 2.25.1