From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 50E6728682 for ; Sat, 27 Sep 2025 22:52:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759013574; cv=none; b=OlRinDOArNB4fu9ll/av8iXO5ocnEOspC5VH2UzSeBWpUTzBitR8YZHxHRWVLzkGYAPtgVcmP8K8YQJMYar8PRfTigMajZzmYIN1RF1OXTXEE0GCdvQS8IzQOro7W1wUGpLUM8ZySi94BNqmJ5LC3Jk9Ip0C7dYt9r9bpKCtxDw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759013574; c=relaxed/simple; bh=/aQMykb19JAsIgGW57ODolQopGsrNbaC9EirkoZrUjQ=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=RpnT9Qduif/gCZ52YYHlNd5h5ckl58bn4htWA9q8KVUBGUj+u4xJUoNYJPv+3RkKYURlO/BcOAEMDbhX4bLcLd8DMZNV3Ee55D+yBPakI3kcSCKCtL8N27FDdgoefN1Q17XP4L6tKt3jbgRrQ2QuQ5FX4Iqn9mF9/WXzFoHzVxI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=AV/0rMZV; arc=none smtp.client-ip=91.218.175.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="AV/0rMZV" Message-ID: <17cf1f38-38d3-4112-bae0-584f0839cdd6@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1759013560; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=w2WHTopxGRmHnpfC+dKNt8XmZhQQZVj0k/p9ca23m9s=; b=AV/0rMZVrrGii7FMvci2GWpaaXJXStF8FUhnsXAItjDI5OnxRtatQmLAUzxk0KyC3Xixlp snn6BdFOXdvuQn9twXMk5goAgUk62b3dTrc7tjUDWkY89FOdhXM28DMs233x3WhucJcq1m +SICNpDPBRfQR5uJNXExl0E1LwV8yFA= Date: Sat, 27 Sep 2025 23:52:36 +0100 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH net-next v2 0/3] dpll: add phase offset averaging factor To: Ivan Vecera , netdev@vger.kernel.org Cc: Arkadiusz Kubalewski , Jiri Pirko , Jonathan Corbet , Donald Hunter , Jakub Kicinski , "David S. Miller" , Eric Dumazet , Paolo Abeni , Simon Horman , Prathosh Satish , Chuck Lever , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, Michal Schmidt , Petr Oros References: <20250927084912.2343597-1-ivecera@redhat.com> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Vadim Fedorenko In-Reply-To: <20250927084912.2343597-1-ivecera@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 27.09.2025 09:49, Ivan Vecera wrote: > For some hardware, the phase shift may result from averaging previous values > and the newly measured value. In this case, the averaging is controlled by > a configurable averaging factor. > > Add new device level attribute phase-offset-avg-factor, appropriate > callbacks and implement them in zl3073x driver. > > Ivan Vecera (3): > dpll: add phase-offset-avg-factor device attribute to netlink spec > dpll: add phase_offset_avg_factor_get/set callback ops > dpll: zl3073x: Allow to configure phase offset averaging factor > > Documentation/driver-api/dpll.rst | 18 +++++++- > Documentation/netlink/specs/dpll.yaml | 6 +++ > drivers/dpll/dpll_netlink.c | 66 ++++++++++++++++++++++++--- > drivers/dpll/dpll_nl.c | 5 +- > drivers/dpll/zl3073x/core.c | 38 +++++++++++++-- > drivers/dpll/zl3073x/core.h | 15 +++++- > drivers/dpll/zl3073x/dpll.c | 58 +++++++++++++++++++++++ > drivers/dpll/zl3073x/dpll.h | 2 + > include/linux/dpll.h | 6 +++ > include/uapi/linux/dpll.h | 1 + > 10 files changed, 199 insertions(+), 16 deletions(-) For the series: Reviewed-by: Vadim Fedorenko