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 C796A4590C; Thu, 5 Sep 2024 12:49:59 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7CFCD42E10; Thu, 5 Sep 2024 12:49:59 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.15]) by mails.dpdk.org (Postfix) with ESMTP id 20AC04025C for ; Thu, 5 Sep 2024 12:49:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1725533398; x=1757069398; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=MnxW4IsYUIP72iGm6woe86SVfDcJMVNl6zXmtbRcWKI=; b=XfGzUW77AxEnVSGZVVly94HFMVqrcmE4N4Hzd8g60hGeTPugWbsFkale g4jWcx5VtnpksCxAcmYLYI9lK5a48mST1zvso79nhoRtGw0cEG0qO5Tae tbSZRS4Z4iE3cW7V16L1mWCRxy8mef9ST8xYk+WUHW2GafrpJDhbO6LR6 qbsJyO3mksnbLgYobUDSk/3XeincOM4Mg3cNK4G6zlPEl5GEBtdQTP2aI izO/PLZYUhWkRy+XpO7JwtTJ5fmqrDMwWEGbBAr69gba81LFXxYxIiJnE x5jVqhyRML12X4/uij7STKv1qmFxzxEH304I0AATotpVq5kTilS2uUnPn g==; X-CSE-ConnectionGUID: hGKbjvHZQIq38TsvSHPMmw== X-CSE-MsgGUID: UIOVYJ2nQJKMAS9joQ2mqw== X-IronPort-AV: E=McAfee;i="6700,10204,11185"; a="24403147" X-IronPort-AV: E=Sophos;i="6.10,204,1719903600"; d="scan'208";a="24403147" Received: from orviesa004.jf.intel.com ([10.64.159.144]) by fmvoesa109.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2024 03:49:49 -0700 X-CSE-ConnectionGUID: RJnp5FeTRYikdr9teuOSpw== X-CSE-MsgGUID: 8UwJ0DWxQ/6N7QVPi2z9XQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.10,204,1719903600"; d="scan'208";a="70506353" Received: from unknown (HELO localhost.localdomain) ([10.239.252.253]) by orviesa004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Sep 2024 03:49:48 -0700 From: Mingjin Ye To: dev@dpdk.org Cc: Mingjin Ye Subject: [PATCH v2 0/3] add frequency adjustment support for PTP Date: Thu, 5 Sep 2024 10:26:21 +0000 Message-Id: <20240905102624.865044-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 | 21 ++ lib/ethdev/version.map | 3 + 13 files changed, 483 insertions(+), 108 deletions(-) -- 2.25.1