aboutsummaryrefslogtreecommitdiff
path: root/include/fdtdec.h
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2019-03-21 19:10:01 +0100
committerSimon Glass <sjg@chromium.org>2019-04-11 20:10:50 -0600
commit8153d53b9340e652f78efbf99979d951ba853458 (patch)
treed6b40768826194ba248e97cd35e0ab905e7021bb /include/fdtdec.h
parent4f253ad064689bc55eaba1c3e7d42f0f358a72c3 (diff)
downloadu-boot-8153d53b9340e652f78efbf99979d951ba853458.zip
u-boot-8153d53b9340e652f78efbf99979d951ba853458.tar.gz
u-boot-8153d53b9340e652f78efbf99979d951ba853458.tar.bz2
fdtdec: Implement fdtdec_set_phandle()
This function can be used to set a phandle for a given node. Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'include/fdtdec.h')
-rw-r--r--include/fdtdec.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/fdtdec.h b/include/fdtdec.h
index 3f75387..ba7f873 100644
--- a/include/fdtdec.h
+++ b/include/fdtdec.h
@@ -1021,6 +1021,17 @@ int fdtdec_setup_memory_banksize_fdt(const void *blob);
int fdtdec_setup_memory_banksize(void);
/**
+ * fdtdec_set_phandle() - sets the phandle of a given node
+ *
+ * @param blob FDT blob
+ * @param node offset in the FDT blob of the node whose phandle is to
+ * be set
+ * @param phandle phandle to set for the given node
+ * @return 0 on success or a negative error code on failure
+ */
+int fdtdec_set_phandle(void *blob, int node, uint32_t phandle);
+
+/**
* Set up the device tree ready for use
*/
int fdtdec_setup(void);