提交 0727702a 编写于 作者: J Joachim Fenkes 提交者: Paul Mackerras

[POWERPC] ibmebus: change probe/remove interface from using loc-code to DT path

In some cases, multiple OFDT nodes might share the same location code, so
the location code is not a unique identifier for an OFDT node. Changed the
ibmebus probe/remove interface to use the DT path of the device node instead
of the location code.

The DT path must be written into probe/remove right as it would appear in
the "devspec" attribute of the ebus device: relative to the DT root, with a
leading slash and without a trailing slash. One trailing newline will not
hurt; multiple newlines will (like perl's chomp()).

Example:

 Add a device "/proc/device-tree/foo@12345678" to ibmebus like this:
    echo /foo@12345678 > /sys/bus/ibmebus/probe

 Remove the device like this:
    echo /foo@12345678 > /sys/bus/ibmebus/remove
Signed-off-by: NJoachim Fenkes <fenkes@de.ibm.com>
Signed-off-by: NPaul Mackerras <paulus@samba.org>
上级 370a908d
...@@ -44,8 +44,6 @@ ...@@ -44,8 +44,6 @@
#include <asm/ibmebus.h> #include <asm/ibmebus.h>
#include <asm/abs_addr.h> #include <asm/abs_addr.h>
#define MAX_LOC_CODE_LENGTH 80
static struct device ibmebus_bus_device = { /* fake "parent" device */ static struct device ibmebus_bus_device = { /* fake "parent" device */
.bus_id = "ibmebus", .bus_id = "ibmebus",
}; };
...@@ -253,7 +251,7 @@ static void ibmebus_add_devices_by_id(struct of_device_id *idt) ...@@ -253,7 +251,7 @@ static void ibmebus_add_devices_by_id(struct of_device_id *idt)
return; return;
} }
static int ibmebus_match_helper_name(struct device *dev, void *data) static int ibmebus_match_name(struct device *dev, void *data)
{ {
const struct ibmebus_dev *ebus_dev = to_ibmebus_dev(dev); const struct ibmebus_dev *ebus_dev = to_ibmebus_dev(dev);
const char *name; const char *name;
...@@ -280,7 +278,7 @@ static void ibmebus_remove_devices_by_id(struct of_device_id *idt) ...@@ -280,7 +278,7 @@ static void ibmebus_remove_devices_by_id(struct of_device_id *idt)
while (strlen(idt->name) > 0) { while (strlen(idt->name) > 0) {
while ((dev = bus_find_device(&ibmebus_bus_type, NULL, while ((dev = bus_find_device(&ibmebus_bus_type, NULL,
(void*)idt->name, (void*)idt->name,
ibmebus_match_helper_name))) { ibmebus_match_name))) {
ibmebus_unregister_device(dev); ibmebus_unregister_device(dev);
} }
idt++; idt++;
...@@ -371,17 +369,30 @@ static struct device_attribute ibmebus_dev_attrs[] = { ...@@ -371,17 +369,30 @@ static struct device_attribute ibmebus_dev_attrs[] = {
__ATTR_NULL __ATTR_NULL
}; };
static int ibmebus_match_helper_loc_code(struct device *dev, void *data) static int ibmebus_match_path(struct device *dev, void *data)
{ {
const struct ibmebus_dev *ebus_dev = to_ibmebus_dev(dev); int rc;
const char *loc_code; struct device_node *dn =
of_node_get(to_ibmebus_dev(dev)->ofdev.node);
loc_code = of_get_property(ebus_dev->ofdev.node, "ibm,loc-code", NULL); rc = (dn->full_name && (strcasecmp((char*)data, dn->full_name) == 0));
if (loc_code && (strcmp(data, loc_code) == 0)) of_node_put(dn);
return 1; return rc;
}
return 0; static char *ibmebus_chomp(const char *in, size_t count)
{
char *out = (char*)kmalloc(count + 1, GFP_KERNEL);
if (!out)
return NULL;
memcpy(out, in, count);
out[count] = '\0';
if (out[count - 1] == '\n')
out[count - 1] = '\0';
return out;
} }
static ssize_t ibmebus_store_probe(struct bus_type *bus, static ssize_t ibmebus_store_probe(struct bus_type *bus,
...@@ -389,65 +400,59 @@ static ssize_t ibmebus_store_probe(struct bus_type *bus, ...@@ -389,65 +400,59 @@ static ssize_t ibmebus_store_probe(struct bus_type *bus,
{ {
struct device_node *dn = NULL; struct device_node *dn = NULL;
struct ibmebus_dev *dev; struct ibmebus_dev *dev;
const char *loc_code; char *path;
char parm[MAX_LOC_CODE_LENGTH]; ssize_t rc;
if (count >= MAX_LOC_CODE_LENGTH) path = ibmebus_chomp(buf, count);
return -EINVAL; if (!path)
memcpy(parm, buf, count); return -ENOMEM;
parm[count] = '\0';
if (parm[count-1] == '\n') if (bus_find_device(&ibmebus_bus_type, NULL, path,
parm[count-1] = '\0'; ibmebus_match_path)) {
printk(KERN_WARNING "%s: %s has already been probed\n",
if (bus_find_device(&ibmebus_bus_type, NULL, parm, __FUNCTION__, path);
ibmebus_match_helper_loc_code)) { rc = -EINVAL;
printk(KERN_WARNING "%s: loc_code %s has already been probed\n", goto out;
__FUNCTION__, parm);
return -EINVAL;
} }
while ((dn = of_find_all_nodes(dn))) { if ((dn = of_find_node_by_path(path))) {
loc_code = of_get_property(dn, "ibm,loc-code", NULL); dev = ibmebus_register_device_node(dn);
if (loc_code && (strncmp(loc_code, parm, count) == 0)) { of_node_put(dn);
dev = ibmebus_register_device_node(dn); rc = IS_ERR(dev) ? PTR_ERR(dev) : count;
if (IS_ERR(dev)) { } else {
of_node_put(dn); printk(KERN_WARNING "%s: no such device node: %s\n",
return PTR_ERR(dev); __FUNCTION__, path);
} else rc = -ENODEV;
return count; /* success */
}
} }
/* if we drop out of the loop, the loc code was invalid */ out:
printk(KERN_WARNING "%s: no device with loc_code %s found\n", kfree(path);
__FUNCTION__, parm); return rc;
return -ENODEV;
} }
static ssize_t ibmebus_store_remove(struct bus_type *bus, static ssize_t ibmebus_store_remove(struct bus_type *bus,
const char *buf, size_t count) const char *buf, size_t count)
{ {
struct device *dev; struct device *dev;
char parm[MAX_LOC_CODE_LENGTH]; char *path;
if (count >= MAX_LOC_CODE_LENGTH) path = ibmebus_chomp(buf, count);
return -EINVAL; if (!path)
memcpy(parm, buf, count); return -ENOMEM;
parm[count] = '\0';
if (parm[count-1] == '\n') if ((dev = bus_find_device(&ibmebus_bus_type, NULL, path,
parm[count-1] = '\0'; ibmebus_match_path))) {
/* The location code is unique, so we will find one device at most */
if ((dev = bus_find_device(&ibmebus_bus_type, NULL, parm,
ibmebus_match_helper_loc_code))) {
ibmebus_unregister_device(dev); ibmebus_unregister_device(dev);
kfree(path);
return count;
} else { } else {
printk(KERN_WARNING "%s: loc_code %s not on the bus\n", printk(KERN_WARNING "%s: %s not on the bus\n",
__FUNCTION__, parm); __FUNCTION__, path);
kfree(path);
return -ENODEV; return -ENODEV;
} }
return count;
} }
static struct bus_attribute ibmebus_bus_attrs[] = { static struct bus_attribute ibmebus_bus_attrs[] = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册