From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: h.assmann@pengutronix.de, Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH v2 1/4] of: add helpers to get alias from device node path + property name
Date: Fri, 15 Nov 2024 13:15:59 +0100 [thread overview]
Message-ID: <20241115121602.3999375-1-a.fatoum@pengutronix.de> (raw)
The existing of_find_device and of_find_path helpers require that
barebox has already probed devices. For use in code where this
assumption doesn't always hold true, let's add helpers that return
the alias if it exists.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
v1 -> v2:
- fix check for wring variable: rnode = ...; if (!node)
to if (!rnode)
- look up property in node at np_name, not in root node
---
drivers/of/base.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++
include/of.h | 32 ++++++++++++++++++++++++++
2 files changed, 89 insertions(+)
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 960a9327aed2..cf850d4bf789 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -318,6 +318,63 @@ const char *of_alias_get(struct device_node *np)
}
EXPORT_SYMBOL_GPL(of_alias_get);
+static const char *of_get_partition_device_alias(struct device_node *np)
+{
+ const char *alias;
+
+ alias = of_alias_get(np);
+ if (alias)
+ return alias;
+
+ np = of_get_parent(np);
+ if (np && of_device_is_compatible(np, "fixed-partitions"))
+ np = of_get_parent(np);
+
+ return of_alias_get(np);
+}
+
+const char *of_property_get_alias_from(struct device_node *root,
+ const char *np_name, const char *propname,
+ int index)
+{
+ struct device_node *node, *rnode;
+ const char *path;
+ int ret;
+
+ node = of_find_node_by_path_or_alias(root, np_name);
+ if (!node)
+ return NULL;
+
+ ret = of_property_read_string_index(node, propname, index, &path);
+ if (ret < 0)
+ return NULL;
+
+ rnode = of_find_node_by_path(path);
+ if (!rnode)
+ return NULL;
+
+ return of_get_partition_device_alias(rnode);
+}
+EXPORT_SYMBOL_GPL(of_property_get_alias_from);
+
+const char *of_parse_phandle_and_get_alias_from(struct device_node *root,
+ const char *np_name, const char *phandle_name,
+ int index)
+{
+ struct device_node *node, *rnode;
+
+ node = of_find_node_by_path_or_alias(root, np_name);
+ if (!node)
+ return NULL;
+
+ rnode = of_parse_phandle_from(node, root, phandle_name, index);
+ if (!rnode)
+ return NULL;
+
+ return of_get_partition_device_alias(rnode);
+}
+EXPORT_SYMBOL_GPL(of_parse_phandle_and_get_alias_from);
+
/*
* of_find_node_by_alias - Find a node given an alias name
* @root: the root node of the tree. If NULL, use internal tree
diff --git a/include/of.h b/include/of.h
index 3f5e5f9b04bb..e93b1bbf2f0a 100644
--- a/include/of.h
+++ b/include/of.h
@@ -314,6 +314,14 @@ extern int of_alias_get_id_from(struct device_node *root, struct device_node *np
extern const char *of_alias_get(struct device_node *np);
extern int of_modalias_node(struct device_node *node, char *modalias, int len);
+extern const char *of_property_get_alias_from(struct device_node *root,
+ const char *np_name, const char *propname,
+ int index);
+
+extern const char *of_parse_phandle_and_get_alias_from(struct device_node *root,
+ const char *np_name, const char *phandle_name,
+ int index);
+
extern struct device_node *of_get_root_node(void);
extern int of_set_root_node(struct device_node *node);
extern int barebox_register_of(struct device_node *root);
@@ -944,6 +952,20 @@ static inline int of_modalias_node(struct device_node *node, char *modalias,
return -ENOSYS;
}
+static inline const char *of_property_get_alias_from(struct device_node *root,
+ const char *np_name, const char *propname,
+ int index)
+{
+ return NULL;
+}
+
+static inline const char *of_parse_phandle_and_get_alias_from(struct device_node *root,
+ const char *np_name, const char *phandle_name,
+ int index)
+{
+ return NULL;
+}
+
static inline int of_platform_populate(struct device_node *root,
const struct of_device_id *matches,
struct device *parent)
@@ -1275,6 +1297,16 @@ static inline void of_delete_property_by_name(struct device_node *np, const char
of_delete_property(of_find_property(np, name, NULL));
}
+static inline const char *of_property_get_alias(const char *np_name, const char *propname)
+{
+ return of_property_get_alias_from(NULL, np_name, propname, 0);
+}
+
+static inline const char *of_parse_phandle_and_get_alias(const char *np_name, const char *phandle_name)
+{
+ return of_parse_phandle_and_get_alias_from(NULL, np_name, phandle_name, 0);
+}
+
extern const struct of_device_id of_default_bus_match_table[];
int of_device_enable(struct device_node *node);
--
2.39.5
next reply other threads:[~2024-11-15 12:16 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-15 12:15 Ahmad Fatoum [this message]
2024-11-15 12:16 ` [PATCH v2 2/4] environment: implement of_env_get_alias_by_path helper Ahmad Fatoum
2024-11-15 12:38 ` Ahmad Fatoum
2024-11-15 12:16 ` [PATCH v2 3/4] bootsource: have bootsource_get_alias_name return const char * Ahmad Fatoum
2024-11-15 12:16 ` [PATCH v2 4/4] ARM: i.MX8MP: tqma8mpxl: fix bbu registration for other boards using SoM Ahmad Fatoum
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=20241115121602.3999375-1-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=h.assmann@pengutronix.de \
/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