2 * Copyright (c) 2015 Google, Inc
4 * SPDX-License-Identifier: GPL-2.0+
13 static void show_devices(struct udevice *dev, int depth, int last_flag)
16 struct udevice *child;
18 /* print the first 11 characters to not break the tree-format. */
19 printf(" %-10.10s [ %c ] %-10.10s ", dev->uclass->uc_drv->name,
20 dev->flags & DM_FLAG_ACTIVATED ? '+' : ' ', dev->driver->name);
22 for (i = depth; i >= 0; i--) {
23 is_last = (last_flag >> i) & 1;
37 printf("%s\n", dev->name);
39 list_for_each_entry(child, &dev->child_head, sibling_node) {
40 is_last = list_is_last(&child->sibling_node, &dev->child_head);
41 show_devices(child, depth + 1, (last_flag << 1) | is_last);
45 void dm_dump_all(void)
51 printf(" Class Probed Driver Name\n");
52 printf("----------------------------------------\n");
53 show_devices(root, -1, 0);
58 * dm_display_line() - Display information about a single device
60 * Displays a single line of information with an option prefix
62 * @dev: Device to display
64 static void dm_display_line(struct udevice *dev)
66 printf("- %c %s @ %08lx",
67 dev->flags & DM_FLAG_ACTIVATED ? '*' : ' ',
68 dev->name, (ulong)map_to_sysmem(dev));
69 if (dev->seq != -1 || dev->req_seq != -1)
70 printf(", seq %d, (req %d)", dev->seq, dev->req_seq);
74 void dm_dump_uclass(void)
80 for (id = 0; id < UCLASS_COUNT; id++) {
83 ret = uclass_get(id, &uc);
87 printf("uclass %d: %s\n", id, uc->uc_drv->name);
88 if (list_empty(&uc->dev_head))
90 list_for_each_entry(dev, &uc->dev_head, uclass_node) {