]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
304fbef1 SG |
2 | /* |
3 | * Copyright (c) 2015 Google, Inc | |
304fbef1 SG |
4 | */ |
5 | ||
6 | #include <common.h> | |
7 | #include <dm.h> | |
8 | #include <mapmem.h> | |
9 | #include <dm/root.h> | |
fce136aa | 10 | #include <dm/util.h> |
999b2043 | 11 | #include <dm/uclass-internal.h> |
304fbef1 SG |
12 | |
13 | static void show_devices(struct udevice *dev, int depth, int last_flag) | |
14 | { | |
15 | int i, is_last; | |
16 | struct udevice *child; | |
73466df3 | 17 | u32 flags = dev_get_flags(dev); |
304fbef1 | 18 | |
5197dafc | 19 | /* print the first 20 characters to not break the tree-format. */ |
45ad176a SG |
20 | printf(IS_ENABLED(CONFIG_SPL_BUILD) ? " %s %d [ %c ] %s " : |
21 | " %-10.10s %3d [ %c ] %-20.20s ", dev->uclass->uc_drv->name, | |
999b2043 | 22 | dev_get_uclass_index(dev, NULL), |
45ad176a | 23 | flags & DM_FLAG_ACTIVATED ? '+' : ' ', dev->driver->name); |
304fbef1 SG |
24 | |
25 | for (i = depth; i >= 0; i--) { | |
26 | is_last = (last_flag >> i) & 1; | |
27 | if (i) { | |
28 | if (is_last) | |
29 | printf(" "); | |
30 | else | |
31 | printf("| "); | |
32 | } else { | |
33 | if (is_last) | |
34 | printf("`-- "); | |
35 | else | |
36 | printf("|-- "); | |
37 | } | |
38 | } | |
39 | ||
40 | printf("%s\n", dev->name); | |
41 | ||
42 | list_for_each_entry(child, &dev->child_head, sibling_node) { | |
43 | is_last = list_is_last(&child->sibling_node, &dev->child_head); | |
44 | show_devices(child, depth + 1, (last_flag << 1) | is_last); | |
45 | } | |
46 | } | |
47 | ||
48 | void dm_dump_all(void) | |
49 | { | |
50 | struct udevice *root; | |
51 | ||
52 | root = dm_root(); | |
53 | if (root) { | |
54d2cfe6 | 54 | printf(" Class Index Probed Driver Name\n"); |
5197dafc | 55 | printf("-----------------------------------------------------------\n"); |
304fbef1 SG |
56 | show_devices(root, -1, 0); |
57 | } | |
58 | } | |
59 | ||
60 | /** | |
61 | * dm_display_line() - Display information about a single device | |
62 | * | |
63 | * Displays a single line of information with an option prefix | |
64 | * | |
65 | * @dev: Device to display | |
66 | */ | |
999b2043 | 67 | static void dm_display_line(struct udevice *dev, int index) |
304fbef1 | 68 | { |
2a43dbdf | 69 | printf("%-3i %c %s @ %08lx", index, |
73466df3 | 70 | dev_get_flags(dev) & DM_FLAG_ACTIVATED ? '*' : ' ', |
304fbef1 | 71 | dev->name, (ulong)map_to_sysmem(dev)); |
2462139f | 72 | if (dev->seq_ != -1) |
36c03d18 | 73 | printf(", seq %d", dev_seq(dev)); |
304fbef1 SG |
74 | puts("\n"); |
75 | } | |
76 | ||
77 | void dm_dump_uclass(void) | |
78 | { | |
79 | struct uclass *uc; | |
80 | int ret; | |
81 | int id; | |
82 | ||
83 | for (id = 0; id < UCLASS_COUNT; id++) { | |
84 | struct udevice *dev; | |
999b2043 | 85 | int i = 0; |
304fbef1 SG |
86 | |
87 | ret = uclass_get(id, &uc); | |
88 | if (ret) | |
89 | continue; | |
90 | ||
91 | printf("uclass %d: %s\n", id, uc->uc_drv->name); | |
92 | if (list_empty(&uc->dev_head)) | |
93 | continue; | |
81f351d6 | 94 | uclass_foreach_dev(dev, uc) { |
999b2043 JJH |
95 | dm_display_line(dev, i); |
96 | i++; | |
304fbef1 SG |
97 | } |
98 | puts("\n"); | |
99 | } | |
100 | } | |
7b9d60fc | 101 | |
2e488368 | 102 | void dm_dump_driver_compat(void) |
7b9d60fc SA |
103 | { |
104 | struct driver *d = ll_entry_start(struct driver, driver); | |
105 | const int n_ents = ll_entry_count(struct driver, driver); | |
106 | struct driver *entry; | |
107 | const struct udevice_id *match; | |
108 | ||
109 | puts("Driver Compatible\n"); | |
110 | puts("--------------------------------\n"); | |
111 | for (entry = d; entry < d + n_ents; entry++) { | |
28888ca3 OP |
112 | match = entry->of_match; |
113 | ||
114 | printf("%-20.20s", entry->name); | |
115 | if (match) { | |
116 | printf(" %s", match->compatible); | |
117 | match++; | |
118 | } | |
119 | printf("\n"); | |
120 | ||
121 | for (; match && match->compatible; match++) | |
122 | printf("%-20.20s %s\n", "", match->compatible); | |
7b9d60fc SA |
123 | } |
124 | } | |
2e488368 NF |
125 | |
126 | void dm_dump_drivers(void) | |
127 | { | |
128 | struct driver *d = ll_entry_start(struct driver, driver); | |
129 | const int n_ents = ll_entry_count(struct driver, driver); | |
130 | struct driver *entry; | |
131 | struct udevice *udev; | |
132 | struct uclass *uc; | |
9dec2c1f | 133 | int ret; |
2e488368 NF |
134 | int i; |
135 | ||
136 | puts("Driver uid uclass Devices\n"); | |
137 | puts("----------------------------------------------------------\n"); | |
138 | ||
139 | for (entry = d; entry < d + n_ents; entry++) { | |
9dec2c1f | 140 | ret = uclass_get(entry->id, &uc); |
2e488368 NF |
141 | |
142 | printf("%-25.25s %-3.3d %-20.20s ", entry->name, entry->id, | |
9dec2c1f | 143 | !ret ? uc->uc_drv->name : "<no uclass>"); |
2e488368 | 144 | |
9dec2c1f | 145 | if (ret) { |
2e488368 NF |
146 | puts("\n"); |
147 | continue; | |
148 | } | |
149 | ||
150 | i = 0; | |
151 | uclass_foreach_dev(udev, uc) { | |
152 | if (udev->driver != entry) | |
153 | continue; | |
154 | if (i) | |
155 | printf("%-51.51s", ""); | |
156 | ||
157 | printf("%-25.25s\n", udev->name); | |
158 | i++; | |
159 | } | |
160 | if (!i) | |
161 | puts("<none>\n"); | |
162 | } | |
163 | } | |
164 | ||
165 | void dm_dump_static_driver_info(void) | |
166 | { | |
167 | struct driver_info *drv = ll_entry_start(struct driver_info, | |
168 | driver_info); | |
169 | const int n_ents = ll_entry_count(struct driver_info, driver_info); | |
170 | struct driver_info *entry; | |
171 | ||
172 | puts("Driver Address\n"); | |
173 | puts("---------------------------------\n"); | |
174 | for (entry = drv; entry != drv + n_ents; entry++) { | |
175 | printf("%-25.25s @%08lx\n", entry->name, | |
caa4daa2 | 176 | (ulong)map_to_sysmem(entry->plat)); |
2e488368 NF |
177 | } |
178 | } |