of: add optional options parameter to of_find_node_by_path()
authorLeif Lindholm <leif.lindholm@linaro.org>
Fri, 28 Nov 2014 11:34:28 +0000 (11:34 +0000)
committerGrant Likely <grant.likely@linaro.org>
Wed, 3 Dec 2014 23:12:36 +0000 (23:12 +0000)
Update of_find_node_by_path():
1) Rename function to of_find_node_opts_by_path(), adding an optional
   pointer argument. Provide a static inline wrapper version of
   of_find_node_by_path() which calls the new function with NULL as
   the optional argument.
2) Ignore any part of the path beyond and including the ':' separator.
3) Set the new provided pointer argument to the beginning of the string
   following the ':' separator.
4: Add tests.

Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
drivers/of/base.c
drivers/of/unittest.c
include/linux/of.h

index 99bc95e83d094dcb2183283b2de37ea6a6aa0b2b..bdf051d0a7e6c70142dad49543af9295ec965845 100644 (file)
@@ -714,10 +714,15 @@ static struct device_node *__of_find_node_by_path(struct device_node *parent,
 {
        struct device_node *child;
        int len = strchrnul(path, '/') - path;
+       int term;
 
        if (!len)
                return NULL;
 
+       term = strchrnul(path, ':') - path;
+       if (term < len)
+               len = term;
+
        __for_each_child_of_node(parent, child) {
                const char *name = strrchr(child->full_name, '/');
                if (WARN(!name, "malformed device_node %s\n", child->full_name))
@@ -730,11 +735,14 @@ static struct device_node *__of_find_node_by_path(struct device_node *parent,
 }
 
 /**
- *     of_find_node_by_path - Find a node matching a full OF path
+ *     of_find_node_opts_by_path - Find a node matching a full OF path
  *     @path: Either the full path to match, or if the path does not
  *            start with '/', the name of a property of the /aliases
  *            node (an alias).  In the case of an alias, the node
  *            matching the alias' value will be returned.
+ *     @opts: Address of a pointer into which to store the start of
+ *            an options string appended to the end of the path with
+ *            a ':' separator.
  *
  *     Valid paths:
  *             /foo/bar        Full path
@@ -744,11 +752,15 @@ static struct device_node *__of_find_node_by_path(struct device_node *parent,
  *     Returns a node pointer with refcount incremented, use
  *     of_node_put() on it when done.
  */
-struct device_node *of_find_node_by_path(const char *path)
+struct device_node *of_find_node_opts_by_path(const char *path, const char **opts)
 {
        struct device_node *np = NULL;
        struct property *pp;
        unsigned long flags;
+       const char *separator = strchr(path, ':');
+
+       if (opts)
+               *opts = separator ? separator + 1 : NULL;
 
        if (strcmp(path, "/") == 0)
                return of_node_get(of_root);
@@ -756,7 +768,7 @@ struct device_node *of_find_node_by_path(const char *path)
        /* The path could begin with an alias */
        if (*path != '/') {
                char *p = strchrnul(path, '/');
-               int len = p - path;
+               int len = separator ? separator - path : p - path;
 
                /* of_aliases must not be NULL */
                if (!of_aliases)
@@ -785,7 +797,7 @@ struct device_node *of_find_node_by_path(const char *path)
        raw_spin_unlock_irqrestore(&devtree_lock, flags);
        return np;
 }
-EXPORT_SYMBOL(of_find_node_by_path);
+EXPORT_SYMBOL(of_find_node_opts_by_path);
 
 /**
  *     of_find_node_by_name - Find a node by its "name" property
index 7a7ae07d592f066a4c99c8626dfb78ed3a682bdf..1807a045864878eb372db38357bf2de761ab13ad 100644 (file)
@@ -47,6 +47,7 @@ static bool selftest_live_tree;
 static void __init of_selftest_find_node_by_name(void)
 {
        struct device_node *np;
+       const char *options;
 
        np = of_find_node_by_path("/testcase-data");
        selftest(np && !strcmp("/testcase-data", np->full_name),
@@ -87,6 +88,35 @@ static void __init of_selftest_find_node_by_name(void)
        np = of_find_node_by_path("testcase-alias/missing-path");
        selftest(!np, "non-existent alias with relative path returned node %s\n", np->full_name);
        of_node_put(np);
+
+       np = of_find_node_opts_by_path("/testcase-data:testoption", &options);
+       selftest(np && !strcmp("testoption", options),
+                "option path test failed\n");
+       of_node_put(np);
+
+       np = of_find_node_opts_by_path("/testcase-data:testoption", NULL);
+       selftest(np, "NULL option path test failed\n");
+       of_node_put(np);
+
+       np = of_find_node_opts_by_path("testcase-alias:testaliasoption",
+                                      &options);
+       selftest(np && !strcmp("testaliasoption", options),
+                "option alias path test failed\n");
+       of_node_put(np);
+
+       np = of_find_node_opts_by_path("testcase-alias:testaliasoption", NULL);
+       selftest(np, "NULL option alias path test failed\n");
+       of_node_put(np);
+
+       options = "testoption";
+       np = of_find_node_opts_by_path("testcase-alias", &options);
+       selftest(np && !options, "option clearing test failed\n");
+       of_node_put(np);
+
+       options = "testoption";
+       np = of_find_node_opts_by_path("/", &options);
+       selftest(np && !options, "option clearing root node test failed\n");
+       of_node_put(np);
 }
 
 static void __init of_selftest_dynamic(void)
index aa01cf5852f8738937c51a914acf1b410f4213da..8b021db3e16e007a3483392712b37f6438293e5e 100644 (file)
@@ -236,7 +236,13 @@ extern struct device_node *of_find_matching_node_and_match(
        const struct of_device_id *matches,
        const struct of_device_id **match);
 
-extern struct device_node *of_find_node_by_path(const char *path);
+extern struct device_node *of_find_node_opts_by_path(const char *path,
+       const char **opts);
+static inline struct device_node *of_find_node_by_path(const char *path)
+{
+       return of_find_node_opts_by_path(path, NULL);
+}
+
 extern struct device_node *of_find_node_by_phandle(phandle handle);
 extern struct device_node *of_get_parent(const struct device_node *node);
 extern struct device_node *of_get_next_parent(struct device_node *node);
@@ -383,6 +389,12 @@ static inline struct device_node *of_find_node_by_path(const char *path)
        return NULL;
 }
 
+static inline struct device_node *of_find_node_opts_by_path(const char *path,
+       const char **opts)
+{
+       return NULL;
+}
+
 static inline struct device_node *of_get_parent(const struct device_node *node)
 {
        return NULL;
This page took 0.029328 seconds and 5 git commands to generate.