]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/fdt_support.h
Prepare v2015.07-rc2
[karo-tx-uboot.git] / include / fdt_support.h
index cb31847325f844947e2d4991c80633cae9e7c4c3..2ace1550ef0e87b6a388b2b47756c0ddbb738680 100644 (file)
@@ -16,8 +16,35 @@ uint32_t fdt_getprop_u32_default_node(const void *fdt, int off, int cell,
                                const char *prop, const uint32_t dflt);
 uint32_t fdt_getprop_u32_default(const void *fdt, const char *path,
                                const char *prop, const uint32_t dflt);
+
+/**
+ * Add data to the root of the FDT before booting the OS.
+ *
+ * See doc/device-tree-bindings/root.txt
+ *
+ * @param fdt          FDT address in memory
+ * @return 0 if ok, or -FDT_ERR_... on error
+ */
+int fdt_root(void *fdt);
+
+/**
+ * Add chosen data the FDT before booting the OS.
+ *
+ * In particular, this adds the kernel command line (bootargs) to the FDT.
+ *
+ * @param fdt          FDT address in memory
+ * @return 0 if ok, or -FDT_ERR_... on error
+ */
 int fdt_chosen(void *fdt);
+
+/**
+ * Add initrd information to the FDT before booting the OS.
+ *
+ * @param fdt          FDT address in memory
+ * @return 0 if ok, or -FDT_ERR_... on error
+ */
 int fdt_initrd(void *fdt, ulong initrd_start, ulong initrd_end);
+
 void do_fixup_by_path(void *fdt, const char *path, const char *prop,
                      const void *val, int len, int create);
 void do_fixup_by_path_u32(void *fdt, const char *path, const char *prop,