[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 02/25] dt: add helpers for 2, 3 and 4 cell adds
From: |
Alexander Graf |
Subject: |
[Qemu-ppc] [PATCH 02/25] dt: add helpers for 2, 3 and 4 cell adds |
Date: |
Wed, 30 May 2012 13:00:23 +0200 |
We have device tree helpers that allow us to create single cell (u32)
wide properties. However, when creating properties that contain an array of
cells, we need to jump through hoops, manually passing in an array with
converted endianness.
To ease the pain of this a bit, create helpers for the most common array
sizes, namely 2, 3 and 4 cells wide properties.
Signed-off-by: Alexander Graf <address@hidden>
---
device_tree.c | 30 ++++++++++++++++++++++++++++++
device_tree.h | 9 +++++++++
2 files changed, 39 insertions(+), 0 deletions(-)
diff --git a/device_tree.c b/device_tree.c
index 94a239e..b1dff4f 100644
--- a/device_tree.c
+++ b/device_tree.c
@@ -117,6 +117,36 @@ int qemu_devtree_setprop_cell(void *fdt, const char
*node_path,
return r;
}
+int qemu_devtree_setprop_cell2(void *fdt, const char *node_path,
+ const char *property, uint32_t val,
+ uint32_t val2)
+{
+ uint32_t tmp[] = { cpu_to_be32(val),
+ cpu_to_be32(val2) };
+ return qemu_devtree_setprop(fdt, node_path, property, tmp, sizeof(tmp));
+}
+
+int qemu_devtree_setprop_cell3(void *fdt, const char *node_path,
+ const char *property, uint32_t val,
+ uint32_t val2, uint32_t val3)
+{
+ uint32_t tmp[] = { cpu_to_be32(val),
+ cpu_to_be32(val2),
+ cpu_to_be32(val3) };
+ return qemu_devtree_setprop(fdt, node_path, property, tmp, sizeof(tmp));
+}
+
+int qemu_devtree_setprop_cell4(void *fdt, const char *node_path,
+ const char *property, uint32_t val,
+ uint32_t val2, uint32_t val3, uint32_t val4)
+{
+ uint32_t tmp[] = { cpu_to_be32(val),
+ cpu_to_be32(val2),
+ cpu_to_be32(val3),
+ cpu_to_be32(val4) };
+ return qemu_devtree_setprop(fdt, node_path, property, tmp, sizeof(tmp));
+}
+
int qemu_devtree_setprop_string(void *fdt, const char *node_path,
const char *property, const char *string)
{
diff --git a/device_tree.h b/device_tree.h
index 4378685..9db7f86 100644
--- a/device_tree.h
+++ b/device_tree.h
@@ -20,6 +20,15 @@ int qemu_devtree_setprop(void *fdt, const char *node_path,
const char *property, void *val_array, int size);
int qemu_devtree_setprop_cell(void *fdt, const char *node_path,
const char *property, uint32_t val);
+int qemu_devtree_setprop_cell2(void *fdt, const char *node_path,
+ const char *property, uint32_t val,
+ uint32_t val2);
+int qemu_devtree_setprop_cell3(void *fdt, const char *node_path,
+ const char *property, uint32_t val,
+ uint32_t val2, uint32_t val3);
+int qemu_devtree_setprop_cell4(void *fdt, const char *node_path,
+ const char *property, uint32_t val,
+ uint32_t val2, uint32_t val3, uint32_t val4);
int qemu_devtree_setprop_string(void *fdt, const char *node_path,
const char *property, const char *string);
int qemu_devtree_nop_node(void *fdt, const char *node_path);
--
1.6.0.2
- [Qemu-ppc] [PATCH 17/25] PPC: e500: dt: create mpic node dynamically, (continued)
- [Qemu-ppc] [PATCH 17/25] PPC: e500: dt: create mpic node dynamically, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 01/25] dt: allow add_subnode to create root subnodes, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 09/25] PPC: e500: require libfdt, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 03/25] dt: add helper for phandle references, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 05/25] dt: add helper for phandle enumeration, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 08/25] dt: add helper for 64bit cell adds, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 10/25] PPC: e500: dt: create memory node dynamically, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 13/25] PPC: e500: dt: create / node dynamically, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 02/25] dt: add helpers for 2, 3 and 4 cell adds,
Alexander Graf <=
- [Qemu-ppc] [PATCH 12/25] PPC: e500: dt: create /hypervisor node dynamically, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 24/25] PPC: e500: enable manual loading of dtb blob, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 14/25] PPC: e500: dt: create /chosen node dynamically, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 22/25] PPC: e500: dt: use 64bit cell helper, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 15/25] PPC: e500: dt: create /soc8544 node dynamically, Alexander Graf, 2012/05/30