|
@@ -1156,24 +1156,7 @@ struct fwnode_handle *
|
|
|
fwnode_graph_get_next_endpoint(struct fwnode_handle *fwnode,
|
|
|
struct fwnode_handle *prev)
|
|
|
{
|
|
|
- struct fwnode_handle *endpoint = NULL;
|
|
|
-
|
|
|
- if (is_of_node(fwnode)) {
|
|
|
- struct device_node *node;
|
|
|
-
|
|
|
- node = of_graph_get_next_endpoint(to_of_node(fwnode),
|
|
|
- to_of_node(prev));
|
|
|
-
|
|
|
- if (node)
|
|
|
- endpoint = &node->fwnode;
|
|
|
- } else if (is_acpi_node(fwnode)) {
|
|
|
- endpoint = acpi_graph_get_next_endpoint(fwnode, prev);
|
|
|
- if (IS_ERR(endpoint))
|
|
|
- endpoint = NULL;
|
|
|
- }
|
|
|
-
|
|
|
- return endpoint;
|
|
|
-
|
|
|
+ return fwnode_call_ptr_op(fwnode, graph_get_next_endpoint, prev);
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(fwnode_graph_get_next_endpoint);
|
|
|
|
|
@@ -1186,22 +1169,12 @@ EXPORT_SYMBOL_GPL(fwnode_graph_get_next_endpoint);
|
|
|
struct fwnode_handle *
|
|
|
fwnode_graph_get_remote_port_parent(struct fwnode_handle *fwnode)
|
|
|
{
|
|
|
- struct fwnode_handle *parent = NULL;
|
|
|
+ struct fwnode_handle *port, *parent;
|
|
|
|
|
|
- if (is_of_node(fwnode)) {
|
|
|
- struct device_node *node;
|
|
|
+ port = fwnode_graph_get_remote_port(fwnode);
|
|
|
+ parent = fwnode_call_ptr_op(port, graph_get_port_parent);
|
|
|
|
|
|
- node = of_graph_get_remote_port_parent(to_of_node(fwnode));
|
|
|
- if (node)
|
|
|
- parent = &node->fwnode;
|
|
|
- } else if (is_acpi_node(fwnode)) {
|
|
|
- int ret;
|
|
|
-
|
|
|
- ret = acpi_graph_get_remote_endpoint(fwnode, &parent, NULL,
|
|
|
- NULL);
|
|
|
- if (ret)
|
|
|
- return NULL;
|
|
|
- }
|
|
|
+ fwnode_handle_put(port);
|
|
|
|
|
|
return parent;
|
|
|
}
|
|
@@ -1215,23 +1188,7 @@ EXPORT_SYMBOL_GPL(fwnode_graph_get_remote_port_parent);
|
|
|
*/
|
|
|
struct fwnode_handle *fwnode_graph_get_remote_port(struct fwnode_handle *fwnode)
|
|
|
{
|
|
|
- struct fwnode_handle *port = NULL;
|
|
|
-
|
|
|
- if (is_of_node(fwnode)) {
|
|
|
- struct device_node *node;
|
|
|
-
|
|
|
- node = of_graph_get_remote_port(to_of_node(fwnode));
|
|
|
- if (node)
|
|
|
- port = &node->fwnode;
|
|
|
- } else if (is_acpi_node(fwnode)) {
|
|
|
- int ret;
|
|
|
-
|
|
|
- ret = acpi_graph_get_remote_endpoint(fwnode, NULL, &port, NULL);
|
|
|
- if (ret)
|
|
|
- return NULL;
|
|
|
- }
|
|
|
-
|
|
|
- return port;
|
|
|
+ return fwnode_get_next_parent(fwnode_graph_get_remote_endpoint(fwnode));
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(fwnode_graph_get_remote_port);
|
|
|
|
|
@@ -1244,25 +1201,7 @@ EXPORT_SYMBOL_GPL(fwnode_graph_get_remote_port);
|
|
|
struct fwnode_handle *
|
|
|
fwnode_graph_get_remote_endpoint(struct fwnode_handle *fwnode)
|
|
|
{
|
|
|
- struct fwnode_handle *endpoint = NULL;
|
|
|
-
|
|
|
- if (is_of_node(fwnode)) {
|
|
|
- struct device_node *node;
|
|
|
-
|
|
|
- node = of_parse_phandle(to_of_node(fwnode), "remote-endpoint",
|
|
|
- 0);
|
|
|
- if (node)
|
|
|
- endpoint = &node->fwnode;
|
|
|
- } else if (is_acpi_node(fwnode)) {
|
|
|
- int ret;
|
|
|
-
|
|
|
- ret = acpi_graph_get_remote_endpoint(fwnode, NULL, NULL,
|
|
|
- &endpoint);
|
|
|
- if (ret)
|
|
|
- return NULL;
|
|
|
- }
|
|
|
-
|
|
|
- return endpoint;
|
|
|
+ return fwnode_call_ptr_op(fwnode, graph_get_remote_endpoint);
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(fwnode_graph_get_remote_endpoint);
|
|
|
|
|
@@ -1278,22 +1217,8 @@ EXPORT_SYMBOL_GPL(fwnode_graph_get_remote_endpoint);
|
|
|
int fwnode_graph_parse_endpoint(struct fwnode_handle *fwnode,
|
|
|
struct fwnode_endpoint *endpoint)
|
|
|
{
|
|
|
- struct fwnode_handle *port_fwnode = fwnode_get_parent(fwnode);
|
|
|
-
|
|
|
memset(endpoint, 0, sizeof(*endpoint));
|
|
|
|
|
|
- endpoint->local_fwnode = fwnode;
|
|
|
-
|
|
|
- if (is_acpi_node(port_fwnode)) {
|
|
|
- fwnode_property_read_u32(port_fwnode, "port", &endpoint->port);
|
|
|
- fwnode_property_read_u32(fwnode, "endpoint", &endpoint->id);
|
|
|
- } else {
|
|
|
- fwnode_property_read_u32(port_fwnode, "reg", &endpoint->port);
|
|
|
- fwnode_property_read_u32(fwnode, "reg", &endpoint->id);
|
|
|
- }
|
|
|
-
|
|
|
- fwnode_handle_put(port_fwnode);
|
|
|
-
|
|
|
- return 0;
|
|
|
+ return fwnode_call_int_op(fwnode, graph_parse_endpoint, endpoint);
|
|
|
}
|
|
|
EXPORT_SYMBOL(fwnode_graph_parse_endpoint);
|