]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
dm: core: Show device sequence instead in dm_dump_tree()
authorZixun LI <admin@hifiphile.com>
Fri, 2 Aug 2024 09:28:12 +0000 (11:28 +0200)
committerTom Rini <trini@konsulko.com>
Tue, 27 Aug 2024 20:30:02 +0000 (14:30 -0600)
Currently uclass index is shown in DM tree dump which ignores alias
sequence numbering. The result could be confusing since these 2 numbers
could be different. Show device sequence number instead as it's more
meaningful.

Also update documentation to use sequence number.

Signed-off-by: Zixun LI <admin@hifiphile.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
doc/usage/cmd/dm.rst
drivers/core/dump.c

index 7651507937afbbf7737697471f94f97f17d6b281..196b22d137640b390527a28a9f1c5d2874929dc7 100644 (file)
@@ -112,9 +112,8 @@ This shows the full tree of devices including the following fields:
 uclass
     Shows the name of the uclass for the device
 
-Index
-    Shows the index number of the device, within the uclass. This shows the
-    ordering within the uclass, but not the sequence number.
+Seq
+    Shows the sequence number of the device, within the uclass.
 
 Probed
     Shows `+` if the device is active
@@ -366,7 +365,7 @@ dm tree
 This example shows the abridged sandbox output::
 
     => dm tree
-    Class     Index  Probed  Driver                Name
+    Class     Seq    Probed  Driver                Name
     -----------------------------------------------------------
     root          0  [ + ]   root_driver           root_driver
     demo          0  [   ]   demo_shape_drv        |-- demo_shape_drv
index 5ec30d5b3c1a49ef92754a907f60800d0040c4e6..5cbaa97fa31684cd97b73d26a206a3ccfd5652ec 100644 (file)
@@ -40,7 +40,7 @@ static void show_devices(struct udevice *dev, int depth, int last_flag,
        /* print the first 20 characters to not break the tree-format. */
        printf(CONFIG_IS_ENABLED(USE_TINY_PRINTF) ? " %s  %d  [ %c ]   %s  " :
               " %-10.10s  %3d  [ %c ]   %-20.20s  ", dev->uclass->uc_drv->name,
-              dev_get_uclass_index(dev, NULL),
+              dev->seq_,
               flags & DM_FLAG_ACTIVATED ? '+' : ' ', dev->driver->name);
 
        for (i = depth; i >= 0; i--) {
@@ -129,7 +129,7 @@ void dm_dump_tree(char *dev_name, bool extended, bool sort)
 {
        struct udevice *root;
 
-       printf(" Class     Index  Probed  Driver                Name\n");
+       printf(" Class     Seq    Probed  Driver                Name\n");
        printf("-----------------------------------------------------------\n");
 
        root = dm_root();