]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
dm: core: add function uclass_probe_all() to probe all devices
authorVabhav Sharma <vabhav.sharma@nxp.com>
Wed, 9 Dec 2020 05:12:03 +0000 (10:42 +0530)
committerTom Rini <trini@konsulko.com>
Sat, 16 Jan 2021 19:49:09 +0000 (14:49 -0500)
Support a common method to probe all devices associated with uclass.

This includes data structures and code for finding the first device and
looping for remaining devices associated with uclasses (groups of devices
with the same purpose, e.g. all SERIAL ports will be in the same uclass).

An example is SBSA compliant PL011 UART IP, where firmware does the serial
port initialization and prepare uart device to let the kernel use it for
sending and reveiving the characters.SERIAL uclass will use this function
to initialize PL011 UART ports.

The feature is enabled with CONFIG_DM.

Signed-off-by: Vabhav Sharma <vabhav.sharma@nxp.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
drivers/core/uclass.c
include/dm/uclass.h

index cdb975d5b316fa2e4768e644384968a5707478d3..f38122d54b5684220da814a61504ff70cfe4d2e7 100644 (file)
@@ -757,6 +757,25 @@ int uclass_pre_remove_device(struct udevice *dev)
 }
 #endif
 
+int uclass_probe_all(enum uclass_id id)
+{
+       struct udevice *dev;
+       int ret;
+
+       ret = uclass_first_device(id, &dev);
+       if (ret || !dev)
+               return ret;
+
+       /* Scanning uclass to probe all devices */
+       while (dev) {
+               ret = uclass_next_device(&dev);
+               if (ret)
+                       return ret;
+       }
+
+       return 0;
+}
+
 UCLASS_DRIVER(nop) = {
        .id             = UCLASS_NOP,
        .name           = "nop",
index b5f066dbf48bf3da2de23a96c97741a0b5315dbb..d95683740cb2229483ebe8a1564f62f691bbe21c 100644 (file)
@@ -376,6 +376,17 @@ int uclass_next_device_check(struct udevice **devp);
 int uclass_first_device_drvdata(enum uclass_id id, ulong driver_data,
                                struct udevice **devp);
 
+/**
+ * uclass_probe_all() - Probe all devices based on an uclass ID
+ *
+ * This function probes all devices associated with a uclass by
+ * looking for its ID.
+ *
+ * @id: uclass ID to look up
+ * @return 0 if OK, other -ve on error
+ */
+int uclass_probe_all(enum uclass_id id);
+
 /**
  * uclass_id_foreach_dev() - Helper function to iteration through devices
  *