This is a note to let you know that I've just added the patch titled of: property: Add in-ports/out-ports support to of_graph_get_port_parent() to the 6.7-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: of-property-add-in-ports-out-ports-support-to-of_graph_get_port_parent.patch and it can be found in the queue-6.7 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 8f1e0d791b5281f3a38620bc7c57763dc551be15 Mon Sep 17 00:00:00 2001 From: Saravana Kannan <saravanak@xxxxxxxxxx> Date: Tue, 6 Feb 2024 17:18:02 -0800 Subject: of: property: Add in-ports/out-ports support to of_graph_get_port_parent() From: Saravana Kannan <saravanak@xxxxxxxxxx> commit 8f1e0d791b5281f3a38620bc7c57763dc551be15 upstream. Similar to the existing "ports" node name, coresight device tree bindings have added "in-ports" and "out-ports" as standard node names for a collection of ports. Add support for these name to of_graph_get_port_parent() so that remote-endpoint parsing can find the correct parent node for these coresight ports too. Signed-off-by: Saravana Kannan <saravanak@xxxxxxxxxx> Link: https://lore.kernel.org/r/20240207011803.2637531-4-saravanak@xxxxxxxxxx Signed-off-by: Rob Herring <robh@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/of/property.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/of/property.c +++ b/drivers/of/property.c @@ -762,7 +762,9 @@ struct device_node *of_graph_get_port_pa /* Walk 3 levels up only if there is 'ports' node. */ for (depth = 3; depth && node; depth--) { node = of_get_next_parent(node); - if (depth == 2 && !of_node_name_eq(node, "ports")) + if (depth == 2 && !of_node_name_eq(node, "ports") && + !of_node_name_eq(node, "in-ports") && + !of_node_name_eq(node, "out-ports")) break; } return node; Patches currently in stable-queue which might be from saravanak@xxxxxxxxxx are queue-6.7/of-property-improve-finding-the-supplier-of-a-remote.patch queue-6.7/of-property-add-in-ports-out-ports-support-to-of_graph_get_port_parent.patch queue-6.7/of-property-fix-typo-in-io-channels.patch queue-6.7/driver-core-fix-device_link_flag_is_sync_state_only.patch queue-6.7/driver-core-fw_devlink-improve-detection-of-overlapp.patch queue-6.7/of-property-improve-finding-the-consumer-of-a-remote.patch