aboutsummaryrefslogtreecommitdiff
path: root/include/dm/uclass.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-02-06 09:54:49 -0700
committerBin Meng <bmeng.cn@gmail.com>2020-02-07 22:41:24 +0800
commit3cf0fba4ff862d833545f82fb2209ff3c79d17b5 (patch)
treee0c877fe00a53ee5467e0d59147a858eb99ac17c /include/dm/uclass.h
parent2999846c112712ec3bcd4f1937006dd62d3b20e3 (diff)
downloadu-boot-3cf0fba4ff862d833545f82fb2209ff3c79d17b5.zip
u-boot-3cf0fba4ff862d833545f82fb2209ff3c79d17b5.tar.gz
u-boot-3cf0fba4ff862d833545f82fb2209ff3c79d17b5.tar.bz2
dm: core: Allow iterating devices without uclass_get()
At present we have uclass_foreach_dev() which requires that uclass_get() be called beforehand to find the uclass. This is good if we suspect that that function might fail, but often we know that the uclass is available. Add a new helper which does this uclass_get() automatically, so that only the uclass ID is needed. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/dm/uclass.h')
-rw-r--r--include/dm/uclass.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/dm/uclass.h b/include/dm/uclass.h
index 484d166..74b8e2e 100644
--- a/include/dm/uclass.h
+++ b/include/dm/uclass.h
@@ -366,6 +366,23 @@ int uclass_next_device_check(struct udevice **devp);
int uclass_resolve_seq(struct udevice *dev);
/**
+ * uclass_id_foreach_dev() - Helper function to iteration through devices
+ *
+ * This creates a for() loop which works through the available devices in
+ * a uclass ID in order from start to end.
+ *
+ * If for some reason the uclass cannot be found, this does nothing.
+ *
+ * @id: enum uclass_id ID to use
+ * @pos: struct udevice * to hold the current device. Set to NULL when there
+ * are no more devices.
+ * @uc: temporary uclass variable (struct udevice *)
+ */
+#define uclass_id_foreach_dev(id, pos, uc) \
+ if (!uclass_get(id, &uc)) \
+ list_for_each_entry(pos, &uc->dev_head, uclass_node)
+
+/**
* uclass_foreach_dev() - Helper function to iteration through devices
*
* This creates a for() loop which works through the available devices in