Commit ffc30b74 authored by Russell King's avatar Russell King

component: track components via array rather than list

Since we now have an array which defines each component, maintain the
components to be bound in the array rather than a separate list.  We
also need duplicate tracking so we can eliminate multiple bind calls
for the same component: we preserve the list-based component order in
that the first match which adds the component determines its position.
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 29f1c7fd
...@@ -18,18 +18,21 @@ ...@@ -18,18 +18,21 @@
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/slab.h> #include <linux/slab.h>
struct component;
struct component_match { struct component_match {
size_t alloc; size_t alloc;
size_t num; size_t num;
struct { struct {
void *data; void *data;
int (*fn)(struct device *, void *); int (*fn)(struct device *, void *);
struct component *component;
bool duplicate;
} compare[0]; } compare[0];
}; };
struct master { struct master {
struct list_head node; struct list_head node;
struct list_head components;
bool bound; bool bound;
const struct component_master_ops *ops; const struct component_master_ops *ops;
...@@ -39,7 +42,6 @@ struct master { ...@@ -39,7 +42,6 @@ struct master {
struct component { struct component {
struct list_head node; struct list_head node;
struct list_head master_node;
struct master *master; struct master *master;
bool bound; bool bound;
...@@ -63,46 +65,20 @@ static struct master *__master_find(struct device *dev, ...@@ -63,46 +65,20 @@ static struct master *__master_find(struct device *dev,
return NULL; return NULL;
} }
/* Attach an unattached component to a master. */ static struct component *find_component(struct master *master,
static void component_attach_master(struct master *master, struct component *c)
{
c->master = master;
list_add_tail(&c->master_node, &master->components);
}
/* Detach a component from a master. */
static void component_detach_master(struct master *master, struct component *c)
{
list_del(&c->master_node);
c->master = NULL;
}
/*
* Add a component to a master, finding the component via the compare
* function and compare data. This is safe to call for duplicate matches
* and will not result in the same component being added multiple times.
*/
static int component_master_add_child(struct master *master,
int (*compare)(struct device *, void *), void *compare_data) int (*compare)(struct device *, void *), void *compare_data)
{ {
struct component *c; struct component *c;
int ret = -ENXIO;
list_for_each_entry(c, &component_list, node) { list_for_each_entry(c, &component_list, node) {
if (c->master && c->master != master) if (c->master && c->master != master)
continue; continue;
if (compare(c->dev, compare_data)) { if (compare(c->dev, compare_data))
if (!c->master) return c;
component_attach_master(master, c);
ret = 0;
break;
}
} }
return ret; return NULL;
} }
static int find_components(struct master *master) static int find_components(struct master *master)
...@@ -116,26 +92,39 @@ static int find_components(struct master *master) ...@@ -116,26 +92,39 @@ static int find_components(struct master *master)
* any components which are found to this master. * any components which are found to this master.
*/ */
for (i = 0; i < match->num; i++) { for (i = 0; i < match->num; i++) {
ret = component_master_add_child(master, struct component *c;
match->compare[i].fn,
match->compare[i].data); dev_dbg(master->dev, "Looking for component %zu\n", i);
if (ret)
if (match->compare[i].component)
continue;
c = find_component(master, match->compare[i].fn,
match->compare[i].data);
if (!c) {
ret = -ENXIO;
break; break;
}
dev_dbg(master->dev, "found component %s, duplicate %u\n", dev_name(c->dev), !!c->master);
/* Attach this component to the master */
match->compare[i].duplicate = !!c->master;
match->compare[i].component = c;
c->master = master;
} }
return ret; return ret;
} }
/* Detach all attached components from this master */ /* Detach component from associated master */
static void master_remove_components(struct master *master) static void remove_component(struct master *master, struct component *c)
{ {
while (!list_empty(&master->components)) { size_t i;
struct component *c = list_first_entry(&master->components,
struct component, master_node);
WARN_ON(c->master != master);
component_detach_master(master, c); /* Detach the component from this master. */
} for (i = 0; i < master->match->num; i++)
if (master->match->compare[i].component == c)
master->match->compare[i].component = NULL;
} }
/* /*
...@@ -150,37 +139,32 @@ static int try_to_bring_up_master(struct master *master, ...@@ -150,37 +139,32 @@ static int try_to_bring_up_master(struct master *master,
{ {
int ret; int ret;
dev_dbg(master->dev, "trying to bring up master\n");
if (find_components(master)) { if (find_components(master)) {
/* Failed to find all components */ dev_dbg(master->dev, "master has incomplete components\n");
ret = 0; return 0;
goto out;
} }
if (component && component->master != master) { if (component && component->master != master) {
ret = 0; dev_dbg(master->dev, "master is not for this component (%s)\n",
goto out; dev_name(component->dev));
return 0;
} }
if (!devres_open_group(master->dev, NULL, GFP_KERNEL)) { if (!devres_open_group(master->dev, NULL, GFP_KERNEL))
ret = -ENOMEM; return -ENOMEM;
goto out;
}
/* Found all components */ /* Found all components */
ret = master->ops->bind(master->dev); ret = master->ops->bind(master->dev);
if (ret < 0) { if (ret < 0) {
devres_release_group(master->dev, NULL); devres_release_group(master->dev, NULL);
dev_info(master->dev, "master bind failed: %d\n", ret); dev_info(master->dev, "master bind failed: %d\n", ret);
goto out; return ret;
} }
master->bound = true; master->bound = true;
return 1; return 1;
out:
master_remove_components(master);
return ret;
} }
static int try_to_bring_up_masters(struct component *component) static int try_to_bring_up_masters(struct component *component)
...@@ -206,8 +190,6 @@ static void take_down_master(struct master *master) ...@@ -206,8 +190,6 @@ static void take_down_master(struct master *master)
devres_release_group(master->dev, NULL); devres_release_group(master->dev, NULL);
master->bound = false; master->bound = false;
} }
master_remove_components(master);
} }
static size_t component_match_size(size_t num) static size_t component_match_size(size_t num)
...@@ -265,6 +247,7 @@ void component_match_add(struct device *dev, struct component_match **matchptr, ...@@ -265,6 +247,7 @@ void component_match_add(struct device *dev, struct component_match **matchptr,
match->compare[match->num].fn = compare; match->compare[match->num].fn = compare;
match->compare[match->num].data = compare_data; match->compare[match->num].data = compare_data;
match->compare[match->num].component = NULL;
match->num++; match->num++;
} }
EXPORT_SYMBOL(component_match_add); EXPORT_SYMBOL(component_match_add);
...@@ -288,7 +271,6 @@ int component_master_add_with_match(struct device *dev, ...@@ -288,7 +271,6 @@ int component_master_add_with_match(struct device *dev,
master->dev = dev; master->dev = dev;
master->ops = ops; master->ops = ops;
master->match = match; master->match = match;
INIT_LIST_HEAD(&master->components);
/* Add to the list of available masters. */ /* Add to the list of available masters. */
mutex_lock(&component_mutex); mutex_lock(&component_mutex);
...@@ -311,13 +293,24 @@ void component_master_del(struct device *dev, ...@@ -311,13 +293,24 @@ void component_master_del(struct device *dev,
const struct component_master_ops *ops) const struct component_master_ops *ops)
{ {
struct master *master; struct master *master;
int i;
mutex_lock(&component_mutex); mutex_lock(&component_mutex);
master = __master_find(dev, ops); master = __master_find(dev, ops);
if (master) { if (master) {
struct component_match *match = master->match;
take_down_master(master); take_down_master(master);
list_del(&master->node); list_del(&master->node);
if (match) {
for (i = 0; i < match->num; i++) {
struct component *c = match->compare[i].component;
if (c)
c->master = NULL;
}
}
kfree(master); kfree(master);
} }
mutex_unlock(&component_mutex); mutex_unlock(&component_mutex);
...@@ -340,6 +333,7 @@ void component_unbind_all(struct device *master_dev, void *data) ...@@ -340,6 +333,7 @@ void component_unbind_all(struct device *master_dev, void *data)
{ {
struct master *master; struct master *master;
struct component *c; struct component *c;
size_t i;
WARN_ON(!mutex_is_locked(&component_mutex)); WARN_ON(!mutex_is_locked(&component_mutex));
...@@ -347,8 +341,12 @@ void component_unbind_all(struct device *master_dev, void *data) ...@@ -347,8 +341,12 @@ void component_unbind_all(struct device *master_dev, void *data)
if (!master) if (!master)
return; return;
list_for_each_entry_reverse(c, &master->components, master_node) /* Unbind components in reverse order */
component_unbind(c, master, data); for (i = master->match->num; i--; )
if (!master->match->compare[i].duplicate) {
c = master->match->compare[i].component;
component_unbind(c, master, data);
}
} }
EXPORT_SYMBOL_GPL(component_unbind_all); EXPORT_SYMBOL_GPL(component_unbind_all);
...@@ -408,6 +406,7 @@ int component_bind_all(struct device *master_dev, void *data) ...@@ -408,6 +406,7 @@ int component_bind_all(struct device *master_dev, void *data)
{ {
struct master *master; struct master *master;
struct component *c; struct component *c;
size_t i;
int ret = 0; int ret = 0;
WARN_ON(!mutex_is_locked(&component_mutex)); WARN_ON(!mutex_is_locked(&component_mutex));
...@@ -416,16 +415,21 @@ int component_bind_all(struct device *master_dev, void *data) ...@@ -416,16 +415,21 @@ int component_bind_all(struct device *master_dev, void *data)
if (!master) if (!master)
return -EINVAL; return -EINVAL;
list_for_each_entry(c, &master->components, master_node) { /* Bind components in match order */
ret = component_bind(c, master, data); for (i = 0; i < master->match->num; i++)
if (ret) if (!master->match->compare[i].duplicate) {
break; c = master->match->compare[i].component;
} ret = component_bind(c, master, data);
if (ret)
break;
}
if (ret != 0) { if (ret != 0) {
list_for_each_entry_continue_reverse(c, &master->components, for (; i--; )
master_node) if (!master->match->compare[i].duplicate) {
component_unbind(c, master, data); c = master->match->compare[i].component;
component_unbind(c, master, data);
}
} }
return ret; return ret;
...@@ -473,8 +477,10 @@ void component_del(struct device *dev, const struct component_ops *ops) ...@@ -473,8 +477,10 @@ void component_del(struct device *dev, const struct component_ops *ops)
break; break;
} }
if (component && component->master) if (component && component->master) {
take_down_master(component->master); take_down_master(component->master);
remove_component(component->master, component);
}
mutex_unlock(&component_mutex); mutex_unlock(&component_mutex);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment