From nobody Sun Feb 8 05:41:14 2026 Received: from out-186.mta0.migadu.com (out-186.mta0.migadu.com [91.218.175.186]) (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 279F41F1936 for ; Thu, 3 Apr 2025 18:28:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.186 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743704889; cv=none; b=i8D+YMvOWGOKNaFS8I6Bdj6feyWinImN11fOpK8BkethcQRYUHp6VhAxHDOTTyBELQokWPV/C+zVirVXhUD8mSyihT5VeGs3XXcAa6cj2t0Pk0+EbcC2DvxeksdQTFRCjtg/M+iCyBXd2ebN9YRwOVIIHKJbtvqT0isHWy2UmFM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743704889; c=relaxed/simple; bh=9HGE9TrTnweO7XWnG7nBAZmG3PDk6spnJoz3hkJLqqI=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=GxN8QdVkiKKmBo6PJew3hp+M1212wNHSNE0tNtgrpKFRsd6F/cJVkR+U5XECd0FTbkjRTLVDa8OkiElxgPVYSy1IgtwweyNXHXeXQI+RjTt++llJ/YXSVfh78EwlL9iSOCd/oi2ps/bZJLORtbiBPORmqwfCXj7AnNsDAIhQXmM= 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=cxbq0a7U; arc=none smtp.client-ip=91.218.175.186 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="cxbq0a7U" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1743704885; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Njrew+KPtIbVI7168u+BMm4Bpq3YCah2uEWKUu7PAkQ=; b=cxbq0a7UzfbxH/r2tUwZ0WkuPqJ7YnzwAeFVyMHWCoJ0Zst6vO3m8gXxWLoYciv3bL9ut+ oamE/EvbXhJiprCtkBUlOYvkHIys/lWQ7aam54wB4dcR0LIErvkB3iJKa4wUljnpzr3aKM yNEC9YoBzE8dGMysZJECpKt6XGLfJ68= From: Sean Anderson To: netdev@vger.kernel.org, Andrew Lunn , "David S . Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Russell King Cc: Christian Marangi , Heiner Kallweit , linux-kernel@vger.kernel.org, upstream@airoha.com, Rob Herring , Saravana Kannan , devicetree@vger.kernel.org, Sean Anderson Subject: [RFC net-next PATCH 11/13] of: property: Add device link support for PCS Date: Thu, 3 Apr 2025 14:27:58 -0400 Message-Id: <20250403182758.1948569-1-sean.anderson@linux.dev> In-Reply-To: <20250403181907.1947517-1-sean.anderson@linux.dev> References: <20250403181907.1947517-1-sean.anderson@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" This adds device link support for PCS devices, providing better probe ordering. Signed-off-by: Sean Anderson --- drivers/of/property.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/of/property.c b/drivers/of/property.c index c1feb631e383..f3e0c390ddba 100644 --- a/drivers/of/property.c +++ b/drivers/of/property.c @@ -1379,6 +1379,7 @@ DEFINE_SIMPLE_PROP(pses, "pses", "#pse-cells") DEFINE_SIMPLE_PROP(power_supplies, "power-supplies", NULL) DEFINE_SUFFIX_PROP(regulators, "-supply", NULL) DEFINE_SUFFIX_PROP(gpio, "-gpio", "#gpio-cells") +DEFINE_SIMPLE_PROP(pcs_handle, "pcs-handle", NULL) =20 static struct device_node *parse_gpios(struct device_node *np, const char *prop_name, int index) @@ -1535,6 +1536,7 @@ static const struct supplier_bindings of_supplier_bin= dings[] =3D { .parse_prop =3D parse_post_init_providers, .fwlink_flags =3D FWLINK_FLAG_IGNORE, }, + { .parse_prop =3D parse_pcs_handle, }, {} }; =20 --=20 2.35.1.1320.gc452695387.dirty