]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
driver core: Early dev_name() support.
authorPaul Mundt <lethal@linux-sh.org>
Tue, 9 Mar 2010 06:57:53 +0000 (06:57 +0000)
committerPaul Mundt <lethal@linux-sh.org>
Wed, 10 Mar 2010 04:08:32 +0000 (13:08 +0900)
Presently early platform devices suffer from the fact they are unable to
use dev_xxx() calls early on due to dev_name() and others being
unavailable at the time ->probe() is called.

This implements early init_name construction from the matched name/id
pair following the semantics of the late device/driver match. As a
result, matched IDs (inclusive of requested ones) are preserved when the
handoff from the early platform code happens at kobject initialization
time.

Since we still require kmalloc slabs to be available at this point, using
kstrdup() for establishing the init_name works fine. This subsequently
needs to be tested from dev_name() prior to the init_name being cleared
by the driver core. We don't kfree() since others will already have a
handle on the string long before the kobject initialization takes place.

This is also needed to permit drivers to use the clock framework early,
without having to manually construct their own device IDs from the match
id/name pair locally (needed by the early console and timer code on sh
and arm).

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/base/platform.c
include/linux/device.h

index 1ba9d617d241ba170842eba208b5dca64783960a..d2d4926c5c4c1dd3ac6110447fe325f6f789b01c 100644 (file)
@@ -1239,6 +1239,25 @@ static int __init early_platform_driver_probe_id(char *class_str,
                }
 
                if (match) {
+                       /*
+                        * Set up a sensible init_name to enable
+                        * dev_name() and others to be used before the
+                        * rest of the driver core is initialized.
+                        */
+                       if (!match->dev.init_name) {
+                               char buf[32];
+
+                               if (match->id != -1)
+                                       snprintf(buf, sizeof(buf), "%s.%d",
+                                                match->name, match->id);
+                               else
+                                       snprintf(buf, sizeof(buf), "%s",
+                                                match->name);
+
+                               match->dev.init_name = kstrdup(buf, GFP_KERNEL);
+                               if (!match->dev.init_name)
+                                       return -ENOMEM;
+                       }
                        if (epdrv->pdrv->probe(match))
                                pr_warning("%s: unable to probe %s early.\n",
                                           class_str, match->name);
index 182192892d45cf6db1e0c2cacb5a96835084a36d..241b96bcd7ad252c223e264e5b5ce8de09c6e528 100644 (file)
@@ -451,6 +451,10 @@ struct device {
 
 static inline const char *dev_name(const struct device *dev)
 {
+       /* Use the init name until the kobject becomes available */
+       if (dev->init_name)
+               return dev->init_name;
+
        return kobject_name(&dev->kobj);
 }