[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 08/25] dt: add helper for 64bit cell adds
From: |
Alexander Graf |
Subject: |
[Qemu-ppc] [PATCH 08/25] dt: add helper for 64bit cell adds |
Date: |
Wed, 30 May 2012 13:00:29 +0200 |
Some times in the device tree, we find an array of 2 u32 cells that
really are a single u64 value. This patch adds a helper to make the
creation of these easy.
Signed-off-by: Alexander Graf <address@hidden>
---
device_tree.c | 7 +++++++
device_tree.h | 2 ++
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/device_tree.c b/device_tree.c
index 317bdd0..b511b34 100644
--- a/device_tree.c
+++ b/device_tree.c
@@ -154,6 +154,13 @@ int qemu_devtree_setprop_cell(void *fdt, const char
*node_path,
return r;
}
+int qemu_devtree_setprop_cell64(void *fdt, const char *node_path,
+ const char *property, uint64_t val)
+{
+ val = cpu_to_be64(val);
+ return qemu_devtree_setprop(fdt, node_path, property, &val, sizeof(val));
+}
+
int qemu_devtree_setprop_cell2(void *fdt, const char *node_path,
const char *property, uint32_t val,
uint32_t val2)
diff --git a/device_tree.h b/device_tree.h
index f37a4da..6f08483 100644
--- a/device_tree.h
+++ b/device_tree.h
@@ -21,6 +21,8 @@ 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_cell64(void *fdt, const char *node_path,
+ const char *property, uint64_t val);
int qemu_devtree_setprop_cell2(void *fdt, const char *node_path,
const char *property, uint32_t val,
uint32_t val2);
--
1.6.0.2
- [Qemu-ppc] [PATCH 00/25] PPC: mpc8544ds: Create device tree dynamically, Alexander Graf, 2012/05/30
- [Qemu-ppc] [PATCH 04/25] dt: temporarily disable subtree creation failure check, Alexander Graf, 2012/05/30
- [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 <=
- [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, 2012/05/30
- [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