From patchwork Thu Feb 15 16:02:43 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kory Maincent X-Patchwork-Id: 13558751 X-Patchwork-Delegate: kuba@kernel.org Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) (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 C3F18133995; Thu, 15 Feb 2024 16:03:25 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.200 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708013008; cv=none; b=cEuVNE0kIA23+xDuXHgRn95YZdoVIxqbDEc/ZJjmzpBiIje4ojPciMKFnGtzTzci2fwKJnKuswWgyylFZoK1I5jU73bkG2A0Z3HHbicoxs9AsoA69Bdp79z267zgp6G+LlaoK1Gx+DqfBgfGvh8ZePqWJn5DjjHMx9XymJ5EYck= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708013008; c=relaxed/simple; bh=WWoJFH6JS+/MUkdHUvXnqLWUaYHcS71uwGUNY9Jhe7Q=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=Xzy9MY3Cm8LaV+0Jh6A5YjJJt0sX3DZ0WDrlDNHVLwyml2zUkCNX4aWn5Kd6yq967u5ecgbUxfucCjdncrZe64FsU65lR6uvFrjPKot0vp/6HxW+TZSjQoAMOANIBGmwruElv4UCirMkVA2t/FciIjz+EASsvwnA3GSemk3/8Jg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=dAWaFmK4; arc=none smtp.client-ip=217.70.183.200 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="dAWaFmK4" Received: by mail.gandi.net (Postfix) with ESMTPSA id B56262000B; Thu, 15 Feb 2024 16:03:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1708013003; 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=uFMErlkNGiLrVmVrsXCK1GzGqcaS3KMbud3bor7xdQo=; b=dAWaFmK4llcx//0h2LLi76TdU/0WbhaD4nfHH3rOE0Z0JrQoJXwnCyof2DO6BV7RV4rnoW ds9HrrJzBdDF7UMg6NaXgAkkYuKT8RGYeOKV+3PpKB6tHJfxR0PvSE932RYW1fZj2GPDn2 5EqlbIxCgyuc4R86AKUL8LuYmDjX23LK2fTe5EWJMe3o7jDqNtGuyd/Su34eU7mfGKIoLh RbPYA1XKD9de3OqYIHKkxKQV4aG0hjBBVQUsQA0JsSo684WT9kSgarxtDEcN6R6jijWeTA Dro4aySkF1nqSG2QrhTVjlp9c6O5pEqrTdWIuzFa+lcVmwMd9KGb9BiXYsKrKw== From: Kory Maincent Date: Thu, 15 Feb 2024 17:02:43 +0100 Subject: [PATCH net-next v4 02/17] of: property: Add fw_devlink support for pse parent Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20240215-feature_poe-v4-2-35bb4c23266c@bootlin.com> References: <20240215-feature_poe-v4-0-35bb4c23266c@bootlin.com> In-Reply-To: <20240215-feature_poe-v4-0-35bb4c23266c@bootlin.com> To: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Jonathan Corbet , Luis Chamberlain , Russ Weight , Greg Kroah-Hartman , "Rafael J. Wysocki" , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Oleksij Rempel , Mark Brown , Frank Rowand , Andrew Lunn , Heiner Kallweit , Russell King Cc: Thomas Petazzoni , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, devicetree@vger.kernel.org, Dent Project , Kory Maincent X-Mailer: b4 0.12.4 X-GND-Sasl: kory.maincent@bootlin.com X-Patchwork-Delegate: kuba@kernel.org This allows fw_devlink to create device links between consumers of a PSE and the supplier of the PSE. This patch is sponsored by Dent Project . Reviewed-by: Andrew Lunn Signed-off-by: Kory Maincent --- Changes in v3: - New patch --- drivers/of/property.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/of/property.c b/drivers/of/property.c index 641a40cf5cf3..efe4dde65f30 100644 --- a/drivers/of/property.c +++ b/drivers/of/property.c @@ -1269,6 +1269,7 @@ DEFINE_SIMPLE_PROP(leds, "leds", NULL) DEFINE_SIMPLE_PROP(backlight, "backlight", NULL) DEFINE_SIMPLE_PROP(panel, "panel", NULL) DEFINE_SIMPLE_PROP(msi_parent, "msi-parent", "#msi-cells") +DEFINE_SIMPLE_PROP(pses, "pses", "#pse-cells") DEFINE_SUFFIX_PROP(regulators, "-supply", NULL) DEFINE_SUFFIX_PROP(gpio, "-gpio", "#gpio-cells") @@ -1359,6 +1360,7 @@ static const struct supplier_bindings of_supplier_bindings[] = { { .parse_prop = parse_backlight, }, { .parse_prop = parse_panel, }, { .parse_prop = parse_msi_parent, }, + { .parse_prop = parse_pses, }, { .parse_prop = parse_gpio_compat, }, { .parse_prop = parse_interrupts, }, { .parse_prop = parse_regulators, },