All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Williamson <alex.williamson@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
	Eric Auger <eric.auger@linaro.org>
Subject: [Qemu-devel] [PULL 08/13] device_tree: introduce qemu_fdt_node_path
Date: Thu, 18 Feb 2016 13:06:32 -0700	[thread overview]
Message-ID: <20160218200632.29220.34589.stgit@gimli.home> (raw)
In-Reply-To: <20160218200419.29220.39836.stgit@gimli.home>

From: Eric Auger <eric.auger@linaro.org>

This new helper routine returns a NULL terminated array of
node paths matching a node name and a compat string.

Signed-off-by: Eric Auger <eric.auger@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
---
 device_tree.c                |   51 ++++++++++++++++++++++++++++++++++++++++++
 include/sysemu/device_tree.h |   18 +++++++++++++++
 2 files changed, 69 insertions(+)

diff --git a/device_tree.c b/device_tree.c
index 9e77c69..2587257 100644
--- a/device_tree.c
+++ b/device_tree.c
@@ -226,6 +226,57 @@ static int findnode_nofail(void *fdt, const char *node_path)
     return offset;
 }
 
+char **qemu_fdt_node_path(void *fdt, const char *name, char *compat,
+                          Error **errp)
+{
+    int offset, len, ret;
+    const char *iter_name;
+    unsigned int path_len = 16, n = 0;
+    GSList *path_list = NULL, *iter;
+    char **path_array;
+
+    offset = fdt_node_offset_by_compatible(fdt, -1, compat);
+
+    while (offset >= 0) {
+        iter_name = fdt_get_name(fdt, offset, &len);
+        if (!iter_name) {
+            offset = len;
+            break;
+        }
+        if (!strcmp(iter_name, name)) {
+            char *path;
+
+            path = g_malloc(path_len);
+            while ((ret = fdt_get_path(fdt, offset, path, path_len))
+                  == -FDT_ERR_NOSPACE) {
+                path_len += 16;
+                path = g_realloc(path, path_len);
+            }
+            path_list = g_slist_prepend(path_list, path);
+            n++;
+        }
+        offset = fdt_node_offset_by_compatible(fdt, offset, compat);
+    }
+
+    if (offset < 0 && offset != -FDT_ERR_NOTFOUND) {
+        error_setg(errp, "%s: abort parsing dt for %s/%s: %s",
+                   __func__, name, compat, fdt_strerror(offset));
+        g_slist_free_full(path_list, g_free);
+        return NULL;
+    }
+
+    path_array = g_new(char *, n + 1);
+    path_array[n--] = NULL;
+
+    for (iter = path_list; iter; iter = iter->next) {
+        path_array[n--] = iter->data;
+    }
+
+    g_slist_free(path_list);
+
+    return path_array;
+}
+
 int qemu_fdt_setprop(void *fdt, const char *node_path,
                      const char *property, const void *val, int size)
 {
diff --git a/include/sysemu/device_tree.h b/include/sysemu/device_tree.h
index 62093ba..552df21 100644
--- a/include/sysemu/device_tree.h
+++ b/include/sysemu/device_tree.h
@@ -25,6 +25,24 @@ void *load_device_tree(const char *filename_path, int *sizep);
 void *load_device_tree_from_sysfs(void);
 #endif
 
+/**
+ * qemu_fdt_node_path: return the paths of nodes matching a given
+ * name and compat string
+ * @fdt: pointer to the dt blob
+ * @name: node name
+ * @compat: compatibility string
+ * @errp: handle to an error object
+ *
+ * returns a newly allocated NULL-terminated array of node paths.
+ * Use g_strfreev() to free it. If one or more nodes were found, the
+ * array contains the path of each node and the last element equals to
+ * NULL. If there is no error but no matching node was found, the
+ * returned array contains a single element equal to NULL. If an error
+ * was encountered when parsing the blob, the function returns NULL
+ */
+char **qemu_fdt_node_path(void *fdt, const char *name, char *compat,
+                          Error **errp);
+
 int qemu_fdt_setprop(void *fdt, const char *node_path,
                      const char *property, const void *val, int size);
 int qemu_fdt_setprop_cell(void *fdt, const char *node_path,

  parent reply	other threads:[~2016-02-18 20:06 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-18 20:05 [Qemu-devel] [PULL 00/13] VFIO updates 2016-02-18 Alex Williamson
2016-02-18 20:05 ` [Qemu-devel] [PULL 01/13] pcie: modify the capability size assert Alex Williamson
2016-02-18 20:05 ` [Qemu-devel] [PULL 02/13] vfio: make the 4 bytes aligned for capability size Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 03/13] aer: impove pcie_aer_init to support vfio device Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 04/13] pcie_aer: expose pcie_aer_msg() interface Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 05/13] vfio/pci: replace 1 with PCI_CAP_LIST_NEXT to make code self-explain Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 06/13] hw/vfio/platform: amd-xgbe device Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 07/13] device_tree: introduce load_device_tree_from_sysfs Alex Williamson
2016-02-18 20:06 ` Alex Williamson [this message]
2016-02-18 20:06 ` [Qemu-devel] [PULL 09/13] device_tree: qemu_fdt_getprop converted to use the error API Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 10/13] device_tree: qemu_fdt_getprop_cell " Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 11/13] hw/arm/sysbus-fdt: helpers for clock node generation Alex Williamson
2016-02-18 20:06 ` [Qemu-devel] [PULL 12/13] hw/arm/sysbus-fdt: enable amd-xgbe dynamic instantiation Alex Williamson
2016-02-18 20:07 ` [Qemu-devel] [PULL 13/13] hw/arm/sysbus-fdt: remove qemu_fdt_setprop returned value check Alex Williamson
2016-02-19 10:50 ` [Qemu-devel] [PULL 00/13] VFIO updates 2016-02-18 Peter Maydell
2016-02-19 12:20   ` Eric Auger

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=20160218200632.29220.34589.stgit@gimli.home \
    --to=alex.williamson@redhat.com \
    --cc=eric.auger@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.