From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-188.mta0.migadu.com (out-188.mta0.migadu.com [91.218.175.188]) (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 909453D9027 for ; Tue, 31 Mar 2026 11:43:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.188 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774957399; cv=none; b=MuDQtRCVIwcFjG8C/wsTle/hq9EKN4NvvVCskYdooYF1dY1k5ilYHpY3ruAbmOuij0zK7KSpuydS/d0nfDn5g5TTn98Pcrx9Sa4PR3NQ6bAde2mveVTI6kDveyU3LL1RQEpprPa1cvNMW+IKunPeklXnMEwHRdTkx9IioSX0fyM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774957399; c=relaxed/simple; bh=m0oflwx2nKopdBxXxkr40imGikbQrsJCm7oE/3thHw4=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=V8ItFSTvQmWKAwQPAuH+4dAyBNxtaQKQQFslwoC+69TTothzoSpuYW4J568s2oAdCOuSZzbNxh+5pUJx2wP6q6NdR/+U6wfcZZeRtUTF3B7YDP1US2p672CCSdS04h9kTyNos1zHal2eJ+JggHuYlj2jsCtXFbxiUMoYauqzSZI= 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=slwpgFU+; arc=none smtp.client-ip=91.218.175.188 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="slwpgFU+" Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1774957394; 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=HsuuuruV3Ufjc3J3b63yx0b4a/ckqDaGKovYiLIwnIw=; b=slwpgFU+lKvS9pO5fuuvMGX8cgPVYvVUtY3iDJuO4/K/nnMPk0isgbizPiCVz/2FPKen23 qxHmwiLVmsA2x1wqJgiUuJ15J5bUf51iDEg27GHsj3zBBDa5zsQTVIPERCUIMHGov4KgSm toXP+GAE1YRR9vWQ3ZesDrpV88aPr78= Date: Tue, 31 Mar 2026 12:43:09 +0100 Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH net-next v2 1/3] dpll: add frequency monitoring to netlink spec To: Ivan Vecera , netdev@vger.kernel.org Cc: Arkadiusz Kubalewski , Jiri Pirko , Jonathan Corbet , Shuah Khan , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman , Donald Hunter , Prathosh Satish , Petr Oros , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org References: <20260330105505.715099-1-ivecera@redhat.com> <20260330105505.715099-2-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: <20260330105505.715099-2-ivecera@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 30/03/2026 11:55, Ivan Vecera wrote: > Add DPLL_A_FREQUENCY_MONITOR device attribute to allow control over > the frequency monitor feature. The attribute uses the existing > dpll_feature_state enum (enable/disable) and is present in both > device-get reply and device-set request. > > Add DPLL_A_PIN_MEASURED_FREQUENCY pin attribute to expose the measured > input frequency in Hz. The attribute is present in the pin-get reply. > > Signed-off-by: Ivan Vecera Reviewed-by: Vadim Fedorenko