From: Thierry Reding <thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: David Gibson
<david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org>,
Jon Loeliger <jdl-CYoMK+44s/E@public.gmane.org>
Cc: devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Simon Glass <sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>,
Masahiro Yamada
<yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org>
Subject: [PATCH 3/3] fdt: Add functions to retrieve strings
Date: Wed, 15 Jul 2015 13:13:59 +0200 [thread overview]
Message-ID: <1436958839-14793-4-git-send-email-thierry.reding@gmail.com> (raw)
In-Reply-To: <1436958839-14793-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Given a device tree node, a property name and an index, the new function
fdt_get_string_index() will return in an output argument a pointer to
the index'th string in the property's value.
The fdt_get_string() is a shortcut for the above with the index being 0.
Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
libfdt/fdt_ro.c | 30 ++++++++++++++++++++++++++++++
libfdt/libfdt.h | 27 +++++++++++++++++++++++++++
tests/strings.c | 24 ++++++++++++++++++++++++
3 files changed, 81 insertions(+)
diff --git a/libfdt/fdt_ro.c b/libfdt/fdt_ro.c
index aab3d1b94509..34f09d6c8c09 100644
--- a/libfdt/fdt_ro.c
+++ b/libfdt/fdt_ro.c
@@ -584,6 +584,36 @@ int fdt_find_string(const void *fdt, int nodeoffset, const char *property,
return -FDT_ERR_NOTFOUND;
}
+int fdt_get_string_index(const void *fdt, int nodeoffset, const char *property,
+ int index, const char **output)
+{
+ const char *list;
+ int length, i;
+
+ list = fdt_getprop(fdt, nodeoffset, property, &length);
+
+ for (i = 0; i < length; i++) {
+ int len = strlen(list);
+
+ if (index == 0) {
+ *output = list;
+ return 0;
+ }
+
+ list += len + 1;
+ i += len;
+ index--;
+ }
+
+ return FDT_ERR_NOTFOUND;
+}
+
+int fdt_get_string(const void *fdt, int nodeoffset, const char *property,
+ const char **output)
+{
+ return fdt_get_string_index(fdt, nodeoffset, property, 0, output);
+}
+
int fdt_node_check_compatible(const void *fdt, int nodeoffset,
const char *compatible)
{
diff --git a/libfdt/libfdt.h b/libfdt/libfdt.h
index 34ab30dc3338..518550f1927d 100644
--- a/libfdt/libfdt.h
+++ b/libfdt/libfdt.h
@@ -888,6 +888,33 @@ int fdt_count_strings(const void *fdt, int nodeoffset, const char *property);
int fdt_find_string(const void *fdt, int nodeoffset, const char *property,
const char *string);
+/**
+ * fdt_get_string_index() - obtain the string at a given index in a string list
+ * @fdt: pointer to the device tree blob
+ * @nodeoffset: offset of a tree node
+ * @property: name of the property containing the string list
+ * @index: index of the string to return
+ * @output: return location for the string
+ * @return: 0 if the string was found or a negative error code otherwise
+ */
+int fdt_get_string_index(const void *fdt, int nodeoffset, const char *property,
+ int index, const char **output);
+
+/**
+ * fdt_get_string() - obtain the first string in a string list
+ * @fdt: pointer to the device tree blob
+ * @nodeoffset: offset of a tree node
+ * @property: name of the property containing the string list
+ * @output: return location for the string
+ * @return: 0 if the string was found or a negative error code otherwise
+ *
+ * This is a shortcut for:
+ *
+ * fdt_get_string_index(fdt, node, property, 0, output).
+ */
+int fdt_get_string(const void *fdt, int nodeoffset, const char *property,
+ const char **output);
+
/**********************************************************************/
/* Read-only functions (addressing related) */
/**********************************************************************/
diff --git a/tests/strings.c b/tests/strings.c
index 050230567468..e532e5fa8656 100644
--- a/tests/strings.c
+++ b/tests/strings.c
@@ -63,6 +63,26 @@ static void check_string_index(const void *fdt, const char *path,
path, err, index);
}
+static void check_string(const void *fdt, const char *path,
+ const char *property, int index,
+ const char *string)
+{
+ const char *result;
+ int offset, err;
+
+ offset = fdt_path_offset(fdt, path);
+ if (offset < 0)
+ FAIL("Couldn't find path %s", path);
+
+ err = fdt_get_string_index(fdt, offset, property, index, &result);
+ if (err < 0)
+ FAIL("Couldn't extract string: %d\n", err);
+
+ if (strcmp(string, result) != 0)
+ FAIL("String %d is %s instead of %s\n",
+ index, result, string);
+}
+
int main(int argc, char *argv[])
{
void *fdt;
@@ -82,5 +102,9 @@ int main(int argc, char *argv[])
check_string_index(fdt, "/device", "compatible", "baz", 1);
check_string_index(fdt, "/device", "big-endian", "bL", -1);
+ check_string(fdt, "/", "compatible", 0, "foo");
+ check_string(fdt, "/device", "compatible", 0, "bar");
+ check_string(fdt, "/device", "compatible", 1, "baz");
+
PASS();
}
--
2.4.5
next prev parent reply other threads:[~2015-07-15 11:13 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-15 11:13 [PATCH 0/3] Add a couple of string-related functions Thierry Reding
[not found] ` <1436958839-14793-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-07-15 11:13 ` [PATCH 1/3] fdt: Add a function to count strings Thierry Reding
[not found] ` <1436958839-14793-2-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-07-15 13:41 ` David Gibson
[not found] ` <20150715134130.GA1567-RXTfZT5YzpxwFLYp8hBm2A@public.gmane.org>
2015-07-16 11:13 ` Thierry Reding
2015-07-16 12:29 ` David Gibson
[not found] ` <20150716122935.GD25179-1s0os16eZneny3qCrzbmXA@public.gmane.org>
2015-07-17 9:10 ` Thierry Reding
2015-07-17 13:44 ` David Gibson
2015-07-15 11:13 ` [PATCH 2/3] fdt: Add a function to get the index of a string Thierry Reding
2015-07-15 11:13 ` Thierry Reding [this message]
2015-07-15 13:29 ` [PATCH 0/3] Add a couple of string-related functions Jon Loeliger
[not found] ` <E1ZFMkd-0002ir-O5-h9b8CULRd+FWk0Htik3J/w@public.gmane.org>
2015-07-15 21:45 ` Simon Glass
[not found] ` <CAPnjgZ12VVSDkALDDg31Sgwo1PpFPfE10GFtrseHWpRX1re-HQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-07-16 5:27 ` David Gibson
[not found] ` <20150716052716.GB25179-1s0os16eZneny3qCrzbmXA@public.gmane.org>
2015-07-16 16:56 ` Simon Glass
[not found] ` <CAPnjgZ0FQvjkC=LUWeCgeDw+x+DePyaNQ=CiC+ht86U2KY_BMA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-07-16 23:40 ` David Gibson
[not found] ` <20150716234007.GE25179-1s0os16eZneny3qCrzbmXA@public.gmane.org>
2015-07-20 2:19 ` Simon Glass
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=1436958839-14793-4-git-send-email-thierry.reding@gmail.com \
--to=thierry.reding-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
--cc=david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org \
--cc=devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=jdl-CYoMK+44s/E@public.gmane.org \
--cc=sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
--cc=yamada.masahiro-uWyLwvC0a2jby3iVrkZq2A@public.gmane.org \
/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).