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 3A0FC45B10; Fri, 11 Oct 2024 08:56:56 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 10E4940279; Fri, 11 Oct 2024 08:56:56 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.12]) by mails.dpdk.org (Postfix) with ESMTP id 658CC40264 for ; Fri, 11 Oct 2024 08:56:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1728629814; x=1760165814; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=18eVdocEf31BSCKLb+1Y79s5wfS+Yhwiiv1+VnXSuYo=; b=CtsyEXHrHUWpWAWd5/j0HFX7dtjOOrueAq7Qf07Q648HcmB5OthanQOV O0eY03KcwIDuZGk2RTcSbKXCucDgveHdMKzFRlp5trhikIUXu7qAXix10 eFS79UXvi/NDbg4TQqnOgSFxKXhVlmrejFoYCs8v6ZdGJz3C8DpULfeuw gy+XbHN3G9LU+3yESpWOCEF10IGKlubVztJYhiKh6/QaLU2yLkTAqpSqq T5RsaNwjSeBTKZttmlfe4acpi/MWQ7ck9mSSoD6nRk8z0Cl8YWLQznVCm BWNHN9L91F6kFdn7dahRxw+JWK4RlfMFjTzS2OB9SU8pQ7dpFNVVV1/4V w==; X-CSE-ConnectionGUID: Zdikce4IQ3644FQQ8BP5Zw== X-CSE-MsgGUID: ZWyriUfKSX6nU6HLUphbpw== X-IronPort-AV: E=McAfee;i="6700,10204,11221"; a="39413080" X-IronPort-AV: E=Sophos;i="6.11,195,1725346800"; d="scan'208";a="39413080" Received: from orviesa003.jf.intel.com ([10.64.159.143]) by orvoesa104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Oct 2024 23:56:53 -0700 X-CSE-ConnectionGUID: wLRiwBsWQ8CnIApsqLndkw== X-CSE-MsgGUID: gEDuBL84SoWT9Jc80WGsfA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,195,1725346800"; d="scan'208";a="81650322" Received: from unknown (HELO localhost.localdomain) ([10.239.252.253]) by ORVIESA003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Oct 2024 23:56:52 -0700 From: Mingjin Ye To: dev@dpdk.org Cc: Mingjin Ye Subject: [PATCH v6 0/3] add frequency adjustment support for PTP Date: Fri, 11 Oct 2024 06:34:04 +0000 Message-Id: <20241011063407.1427421-1-mingjinx.ye@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20241011025332.1423395-1-mingjinx.ye@intel.com> References: <20241011025332.1423395-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 --- v2: rte_eth_timesync_adjust_freq marked as experimental. --- v3: Add more description for API. --- v4: Documentation for adding a ptpclient. --- v5: Fixes in ice. --- v6: Fix git commit conflict. 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 | 5 + 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, 516 insertions(+), 71 deletions(-) -- 2.25.1