From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-182.mta1.migadu.com (out-182.mta1.migadu.com [95.215.58.182]) (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 9F83D3EDAC6 for ; Wed, 29 Apr 2026 10:45:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.182 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777459537; cv=none; b=dHMRKo9uVpP33d77WgwjxuPGyd/pbnasosLb5t7zCvHW8en6ajRs7udKIB0OL5ZqaaGJhg4RDWsiuDwVWN/ExmqOzyBhEKBKdO2dL25CVBZieH9FOtF9Tc+PyscSEH4wbH3r4Lmsxk0lnfY4u4n4DP1NLgVxHiJ/r6qTjYRMDC0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777459537; c=relaxed/simple; bh=hoXt7ll+WEhBmdEZpAR0xBoFE9j/qYKVvqF3h/ndA2g=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=V3LMsKkTlOHUysltX79HUnJ+wcqXwBkpVoQT9R78kzIRsMOB1HnOAZi5rDxRkFN633jRYm0CwnWvCHaSO0ncsq+Edu5lpT+P37r37RkZVqXQZJn5e0ReZ4Dfp24HcJwFAQRM9nf63wR18+sI774d45IpGy66yoE/QGCUOvmX8RM= 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=CK+cdYyr; arc=none smtp.client-ip=95.215.58.182 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="CK+cdYyr" Message-ID: <218957c5-9c95-49a4-aafd-dfcaf7a84ecd@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1777459520; 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=ZQKftdkdX4eFNl/ajOq4nBnGRZp77nSc5y0FjzWpvHU=; b=CK+cdYyr7kmcbQabEoOeAmbglzjp8wm7WUdOjmE6NXb3xL10okjl5KgNmcYuyTTEGUjXkr yWnulgycH4ZuecNoNMeKM6JJ3lQuyT28KwEvCf3z2qNZAMBflJFP1FO5HtMWwjWDs9Q1w3 McWL+HrobKSBxg9TFn/8wNv4OZ8ldOg= Date: Wed, 29 Apr 2026 11:45:14 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH net-next 1/2] dpll: add pin operational state To: Ivan Vecera , netdev@vger.kernel.org Cc: Arkadiusz Kubalewski , "David S. Miller" , Donald Hunter , Eric Dumazet , Jakub Kicinski , Jiri Pirko , Jonathan Corbet , Michal Schmidt , Paolo Abeni , Pasi Vaananen , Petr Oros , Prathosh Satish , Shuah Khan , Simon Horman , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org References: <20260428154907.2820654-1-ivecera@redhat.com> <20260428154907.2820654-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: <20260428154907.2820654-2-ivecera@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 28/04/2026 16:49, Ivan Vecera wrote: > Add pin-operstate enum and operstate_on_dpll_get callback to report > the actual hardware status of a pin with respect to its parent DPLL > device. Unlike pin-state (which reflects administrative intent set > by the user), operstate reflects what the hardware is actually doing. > > Defined operational states: > - active: pin is qualified and actively used by the DPLL > - standby: pin is qualified but not actively used by the DPLL > - no-signal: pin does not have a valid signal > - qual-failed: pin signal failed qualification > > The operstate is reported inside the pin-parent-device nested > attribute alongside the existing state and phase-offset attributes. > > Signed-off-by: Ivan Vecera Reviewed-by: Vadim Fedorenko