summaryrefslogtreecommitdiffstats
path: root/include/dm/lists.h
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2014-06-20 20:03:51 -0400
committerTom Rini <trini@ti.com>2014-06-20 20:03:51 -0400
commit39b6d07fd7e692736cdb05a000b1c84ab43de4fb (patch)
tree72b3530f77de13dab378b5be9789edd952bc9e03 /include/dm/lists.h
parent45f0ad9545578b4436fdf04ba25a10173bcb75ef (diff)
parent22ec136325fdfc805b1e48e5ac8e17f23b4e9fc6 (diff)
downloadtalos-obmc-uboot-39b6d07fd7e692736cdb05a000b1c84ab43de4fb.tar.gz
talos-obmc-uboot-39b6d07fd7e692736cdb05a000b1c84ab43de4fb.zip
Merge branch 'master' of git://git.denx.de/u-boot-dm
Diffstat (limited to 'include/dm/lists.h')
-rw-r--r--include/dm/lists.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/dm/lists.h b/include/dm/lists.h
index 7feba4b00f..49d87e6176 100644
--- a/include/dm/lists.h
+++ b/include/dm/lists.h
@@ -32,8 +32,28 @@ struct driver *lists_driver_lookup_name(const char *name);
*/
struct uclass_driver *lists_uclass_lookup(enum uclass_id id);
+/**
+ * lists_bind_drivers() - search for and bind all drivers to parent
+ *
+ * This searches the U_BOOT_DEVICE() structures and creates new devices for
+ * each one. The devices will have @parent as their parent.
+ *
+ * @parent: parent driver (root)
+ * @early_only: If true, bind only drivers with the DM_INIT_F flag. If false
+ * bind all drivers.
+ */
int lists_bind_drivers(struct udevice *parent);
+/**
+ * lists_bind_fdt() - bind a device tree node
+ *
+ * This creates a new device bound to the given device tree node, with
+ * @parent as its parent.
+ *
+ * @parent: parent driver (root)
+ * @blob: device tree blob
+ * @offset: offset of this device tree node
+ */
int lists_bind_fdt(struct udevice *parent, const void *blob, int offset);
#endif
OpenPOWER on IntegriCloud