From: Grant Likely <grant.likely@secretlab.ca>
To: linuxppc-dev@ozlabs.org, sfr@canb.auug.org.au,
david@gibson.dropbear.id.au, davem@davemloft.net
Subject: [PATCH] [POWERPC] of: add alias helper functions.
Date: Mon, 04 Feb 2008 09:16:08 -0700 [thread overview]
Message-ID: <20080204161604.10674.9289.stgit@trillian.secretlab.ca> (raw)
From: Grant Likely <grant.likely@secretlab.ca>
Add helper functions for translating back and forth between alias
properties and device tree nodes.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
---
drivers/of/base.c | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++
include/linux/of.h | 2 +
2 files changed, 82 insertions(+), 0 deletions(-)
diff --git a/drivers/of/base.c b/drivers/of/base.c
index b306fef..54a7f2e 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -331,3 +331,83 @@ struct device_node *of_find_matching_node(struct device_node *from,
return np;
}
EXPORT_SYMBOL(of_find_matching_node);
+
+/**
+ * of_find_node_by_alias - Find a node from an alias name
+ * @alias: Alias to decode
+ *
+ * Returns a node pointer with refcount incremented. Use of_node_put
+ * on it when done.
+ */
+struct device_node *of_find_node_by_alias(const char *alias)
+{
+ struct device_node *np, *alias_np;
+ const char *path;
+
+ np = NULL;
+
+ /* First decode the alias into a path */
+ alias_np = of_find_node_by_path("/aliases");
+ if (!alias_np)
+ return NULL;
+
+ path = of_get_property(alias_np, alias, NULL);
+ if (!path)
+ goto exit;
+
+ /* Next find the node pointed to by the alias */
+ np = of_find_node_by_path(path);
+
+ exit:
+ of_node_put(alias_np);
+ return np;
+}
+
+/**
+ * of_node_alias - Return the alias for a node
+ * @np Pointer to device node
+ * @prefix Prefix string; if provided then this function will only
+ * match on properties which have the given prefix.
+ *
+ * returns the alias property name for the given node without the prefix
+ */
+const char *of_node_alias(struct device_node *np, const char *prefix)
+{
+ struct device_node *alias_np, *test_np;
+ struct property *pp;
+ int prefix_len;
+ const char *alias;
+
+ prefix_len = 0;
+ if (prefix)
+ prefix_len = strlen(prefix);
+
+ /* First decode the alias into a path */
+ alias_np = of_find_node_by_path("/aliases");
+ if (!alias_np)
+ return NULL;
+
+ /* Loop over the aliases looking for a match */
+ alias = NULL;
+ for (pp = alias_np->properties; pp != 0; pp = pp->next) {
+ /* Skip properties which don't begin with the prefix */
+ if (prefix && (strncmp(pp->name, prefix, prefix_len) != 0))
+ continue;
+
+ /* Skip properties which aren't a NULL terminated string */
+ if (memchr(pp->value, 0, pp->length) == NULL)
+ continue;
+
+ /* Find out what node the property points to and see if it
+ * matches. If so then we've found our alias */
+ test_np = of_find_node_by_path(pp->value);
+ if (test_np == np)
+ alias = pp->name + prefix_len;
+ of_node_put(test_np);
+ if (alias)
+ break;
+ }
+
+ of_node_put(alias_np);
+ return alias;
+}
diff --git a/include/linux/of.h b/include/linux/of.h
index b5f33ef..aae1570 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -68,5 +68,7 @@ extern int of_n_addr_cells(struct device_node *np);
extern int of_n_size_cells(struct device_node *np);
extern const struct of_device_id *of_match_node(
const struct of_device_id *matches, const struct device_node *node);
+extern struct device_node *of_find_node_by_alias(const char *alias);
+extern const char *of_node_alias(struct device_node *np, const char *prefix);
#endif /* _LINUX_OF_H */
next reply other threads:[~2008-02-04 16:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-04 16:16 Grant Likely [this message]
2008-02-05 4:21 ` [PATCH] [POWERPC] of: add alias helper functions Stephen Rothwell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080204161604.10674.9289.stgit@trillian.secretlab.ca \
--to=grant.likely@secretlab.ca \
--cc=davem@davemloft.net \
--cc=david@gibson.dropbear.id.au \
--cc=linuxppc-dev@ozlabs.org \
--cc=sfr@canb.auug.org.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).