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 1F53845901; Thu, 5 Sep 2024 03:55:34 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B63CF40264; Thu, 5 Sep 2024 03:55:33 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.13]) by mails.dpdk.org (Postfix) with ESMTP id 2D07A4025C for ; Thu, 5 Sep 2024 03:55:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1725501331; x=1757037331; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=pkkUO7T4er4c0nFUf3XzECN6rEYm7oRE1GLC02jolCo=; b=HzvOOEsSVGAaea8wo0gRP168TEwTb64A1a/TQh/iWM5V5OxDkPPFURu3 ZCjkRwg+ZZMYI3TfnaHr0VlLWvkJewA1KTUuI2BQ/m8/SWQ4zQaFQzhkl pEMn09iuwAdSnufIs8wID80TU3V6zGHXy25CcEvBWVZMc9/L+j4YkmWeM njYrAIRdzLp9Pg67RGAWKOdjaVVxPnz4+HagTVgilIX5MOiwYqg83kGc0 NPsSEY1DmV4Q4Pb2r9EqGN3EDhdZk4kXxt+AGWPnwsNlA27ILlL2IN+UK GA4xUWlg36DCPzoel4BF0EfpbIQbzqPoEi1ynwfnkdeyTnDk4PN2Pn6+7 w==; X-CSE-ConnectionGUID: sqHejl+TTBWVZKz4lCPS3Q== X-CSE-MsgGUID: UwuqCo8MR6GSUO4P4Pn+Hw== X-IronPort-AV: E=McAfee;i="6700,10204,11185"; a="27112517" X-IronPort-AV: E=Sophos;i="6.10,203,1719903600"; d="scan'208";a="27112517" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by fmvoesa107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Sep 2024 18:55:30 -0700 X-CSE-ConnectionGUID: RzcZjmHRRyy5dwqD+4CpJw== X-CSE-MsgGUID: cDwM3q8nTSS9pm/UM+AG9Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.10,203,1719903600"; d="scan'208";a="65456017" Received: from unknown (HELO localhost.localdomain) ([10.239.252.253]) by orviesa009-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Sep 2024 18:55:29 -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 01:31:41 +0000 Message-Id: <20240905013144.844499-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 | 3 +- doc/guides/nics/ice.rst | 15 ++ 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 | 19 ++ 11 files changed, 474 insertions(+), 81 deletions(-) -- 2.25.1