From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-177.mta0.migadu.com (out-177.mta0.migadu.com [91.218.175.177]) (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 4CB1C3A9D87 for ; Tue, 31 Mar 2026 11:45:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.177 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774957558; cv=none; b=e+o2uZJzwWsXjTWjnUzrO8WY61q0H8oSTaC+SlDua/rNttwkvEjc59SfbzuR3pypAeh7O8ZXmPdftrgPmR3q1EpxE7XfsJuVP5a4eDGqUd8T9M06lbB+nbs4c5/J3yTw0maVkrR/uE8XDU0bHqSgUE4n9ZUnUEG1dVKfMYv0apo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774957558; c=relaxed/simple; bh=OUYgSyX/AmDPuYbf1y3UWqD6X57Ff9v32jLUL2uOyvI=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=HVOks9Z//cFfz6G3Xe4CDyiwu9keOuv9o8kUzo5aeGViYkNzX469DWMYMombA2HfpEMDCtcmmJ1NU9DtOoA5DifxiqiZV0UaNPFuUnI3iKcjxVIAf0Sv1/hPlj1Q0utGjnEC40O+Bd1IQklUpRh4hWK3eEKkGRJbeEEEtBtH6ms= 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=fkYG71kO; arc=none smtp.client-ip=91.218.175.177 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="fkYG71kO" Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1774957555; 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=6ReF17fCkadAbkp2YDOZfTTfqawmF9ZRpg/8RnG+xBo=; b=fkYG71kOnHTFHNodR2v4naruaqj+qjIgN90zJjNgxNLRAHHRmWPMT2y+0FS1b2LfWLh94+ ZxA64KxRdIHUKVKzYSeMHpQEx0fViy4F6wYlIxWHhKMCWHRbIfQVkxxPWwHJs4dM0p0Q79 H/rCAjL0jTOf2sGW3AxuBvcrn+jyOGc= Date: Tue, 31 Mar 2026 12:45:52 +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 2/3] dpll: add frequency monitoring callback ops 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-3-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-3-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 new callback operations for a dpll device: > - freq_monitor_get(..) - to obtain current state of frequency monitor > feature from dpll device, > - freq_monitor_set(..) - to allow feature configuration. > > Add new callback operation for a dpll pin: > - measured_freq_get(..) - to obtain the measured frequency in Hz. > > Obtain the feature state value using the get callback and provide it to > the user if the device driver implements callbacks. The measured_freq_get > pin callback is only invoked when the frequency monitor is enabled. > > Execute the set callback upon user requests. > > Signed-off-by: Ivan Vecera Reviewed-by: Vadim Fedorenko