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 55BDD45B0C; Fri, 11 Oct 2024 05:19:28 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D72504066F; Fri, 11 Oct 2024 05:19:27 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.16]) by mails.dpdk.org (Postfix) with ESMTP id 6996D402E1 for ; Fri, 11 Oct 2024 05:19:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1728616766; x=1760152766; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=5BjZ/kRpQYXMEbMJRrAEyDpiZZzuuZv3xxM0ES+TMtM=; b=DfHeAvGIv1OOQYZjdJ+cp26jjSzr5bdZ45033UI+JejlQ0Y5NXieLmW3 /oZ2JQZT7bgWUziiujGzxTO03JZZeXWO7iwdSgM5XWkoWqqMxq7mz/Qnk SOnJAtWfb6FnY+0zp2coUwy7Yf3vXl+IdynNO7+8JqZtwAv4t4rcq9qum 2zmlf7iOs6M/z20aXDMTgpGRH0y4/OY+zsJDtV+uDxAiNQuxk9tmgVMVZ MJSH3ETkDgcADs5gvY5QGpGYQOlyyEkoGQh8dQM4ZwUBmz4j3eGnwfnyp shZcX/eNxLAFT4QSaUjmd4VpMVJTrJn8C+BTwdkc7RWRlBi5Wey6yR6Oh w==; X-CSE-ConnectionGUID: Kvr+Fge/Ty6b9Hjq5uDlJg== X-CSE-MsgGUID: aD7ZLV2jSvWlgDlBcyXhcw== X-IronPort-AV: E=McAfee;i="6700,10204,11221"; a="15629287" X-IronPort-AV: E=Sophos;i="6.11,194,1725346800"; d="scan'208";a="15629287" Received: from orviesa004.jf.intel.com ([10.64.159.144]) by fmvoesa110.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Oct 2024 20:19:24 -0700 X-CSE-ConnectionGUID: jo3AGTuFThi96QX5JhnHOA== X-CSE-MsgGUID: dc4qlrC/RnanmszDzmJpGw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,194,1725346800"; d="scan'208";a="81776167" Received: from unknown (HELO localhost.localdomain) ([10.239.252.253]) by orviesa004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Oct 2024 20:19:24 -0700 From: Mingjin Ye To: dev@dpdk.org Cc: Mingjin Ye Subject: [PATCH v5 0/3] add frequency adjustment support for PTP Date: Fri, 11 Oct 2024 02:53:29 +0000 Message-Id: <20241011025332.1423395-1-mingjinx.ye@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20241010093221.1359778-2-mingjinx.ye@intel.com> References: <20241010093221.1359778-2-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. --- v5: Fixes in net/ice. 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 | 16 ++ doc/guides/rel_notes/release_24_11.rst | 4 + doc/guides/sample_app_ug/ptpclient.rst | 12 +- drivers/net/ice/ice_ethdev.c | 176 +++++++++++---- drivers/net/ice/ice_ethdev.h | 5 +- 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(+), 71 deletions(-) -- 2.25.1