summaryrefslogtreecommitdiffstats
path: root/drivers/base/devcon.c
diff options
context:
space:
mode:
authorHeikki Krogerus2019-05-31 16:15:40 +0200
committerRafael J. Wysocki2019-06-03 10:55:38 +0200
commitfde777791eb83f6c5845b81af89de6be60a2b2ce (patch)
tree6a5800a2ed670460a797d7a2f38cd1979a96e14e /drivers/base/devcon.c
parentdevice property: Introduce fwnode_find_reference() (diff)
downloadkernel-qcow2-linux-fde777791eb83f6c5845b81af89de6be60a2b2ce.tar.gz
kernel-qcow2-linux-fde777791eb83f6c5845b81af89de6be60a2b2ce.tar.xz
kernel-qcow2-linux-fde777791eb83f6c5845b81af89de6be60a2b2ce.zip
device connection: Find connections also by checking the references
We can also use this API to find named references that the device nodes have by using fwnode_property_get_reference_args() function. Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Tested-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/base/devcon.c')
-rw-r--r--drivers/base/devcon.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/drivers/base/devcon.c b/drivers/base/devcon.c
index 04db9ae235e4..f7035fc12b92 100644
--- a/drivers/base/devcon.c
+++ b/drivers/base/devcon.c
@@ -38,6 +38,28 @@ fwnode_graph_devcon_match(struct fwnode_handle *fwnode, const char *con_id,
return NULL;
}
+static void *
+fwnode_devcon_match(struct fwnode_handle *fwnode, const char *con_id,
+ void *data, devcon_match_fn_t match)
+{
+ struct device_connection con = { };
+ void *ret;
+ int i;
+
+ for (i = 0; ; i++) {
+ con.fwnode = fwnode_find_reference(fwnode, con_id, i);
+ if (IS_ERR(con.fwnode))
+ break;
+
+ ret = match(&con, -1, data);
+ fwnode_handle_put(con.fwnode);
+ if (ret)
+ return ret;
+ }
+
+ return NULL;
+}
+
/**
* device_connection_find_match - Find physical connection to a device
* @dev: Device with the connection
@@ -65,6 +87,10 @@ void *device_connection_find_match(struct device *dev, const char *con_id,
ret = fwnode_graph_devcon_match(fwnode, con_id, data, match);
if (ret)
return ret;
+
+ ret = fwnode_devcon_match(fwnode, con_id, data, match);
+ if (ret)
+ return ret;
}
mutex_lock(&devcon_lock);