2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-06-23 21:38:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Google, Inc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <mapmem.h>
|
|
|
|
#include <dm/root.h>
|
2017-06-22 08:10:11 +00:00
|
|
|
#include <dm/util.h>
|
2018-08-09 14:17:43 +00:00
|
|
|
#include <dm/uclass-internal.h>
|
2015-06-23 21:38:35 +00:00
|
|
|
|
|
|
|
static void show_devices(struct udevice *dev, int depth, int last_flag)
|
|
|
|
{
|
|
|
|
int i, is_last;
|
|
|
|
struct udevice *child;
|
|
|
|
|
2018-10-15 09:03:06 +00:00
|
|
|
/* print the first 20 characters to not break the tree-format. */
|
2019-09-30 08:19:13 +00:00
|
|
|
printf(" %-10.10s %3d [ %c ] %-20.20s ", dev->uclass->uc_drv->name,
|
2018-08-09 14:17:43 +00:00
|
|
|
dev_get_uclass_index(dev, NULL),
|
2017-08-02 18:12:02 +00:00
|
|
|
dev->flags & DM_FLAG_ACTIVATED ? '+' : ' ', dev->driver->name);
|
2015-06-23 21:38:35 +00:00
|
|
|
|
|
|
|
for (i = depth; i >= 0; i--) {
|
|
|
|
is_last = (last_flag >> i) & 1;
|
|
|
|
if (i) {
|
|
|
|
if (is_last)
|
|
|
|
printf(" ");
|
|
|
|
else
|
|
|
|
printf("| ");
|
|
|
|
} else {
|
|
|
|
if (is_last)
|
|
|
|
printf("`-- ");
|
|
|
|
else
|
|
|
|
printf("|-- ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%s\n", dev->name);
|
|
|
|
|
|
|
|
list_for_each_entry(child, &dev->child_head, sibling_node) {
|
|
|
|
is_last = list_is_last(&child->sibling_node, &dev->child_head);
|
|
|
|
show_devices(child, depth + 1, (last_flag << 1) | is_last);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void dm_dump_all(void)
|
|
|
|
{
|
|
|
|
struct udevice *root;
|
|
|
|
|
|
|
|
root = dm_root();
|
|
|
|
if (root) {
|
2018-12-06 01:42:52 +00:00
|
|
|
printf(" Class Index Probed Driver Name\n");
|
2018-10-15 09:03:06 +00:00
|
|
|
printf("-----------------------------------------------------------\n");
|
2015-06-23 21:38:35 +00:00
|
|
|
show_devices(root, -1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dm_display_line() - Display information about a single device
|
|
|
|
*
|
|
|
|
* Displays a single line of information with an option prefix
|
|
|
|
*
|
|
|
|
* @dev: Device to display
|
|
|
|
*/
|
2018-08-09 14:17:43 +00:00
|
|
|
static void dm_display_line(struct udevice *dev, int index)
|
2015-06-23 21:38:35 +00:00
|
|
|
{
|
2019-09-30 08:19:13 +00:00
|
|
|
printf("%-3i %c %s @ %08lx", index,
|
2015-06-23 21:38:35 +00:00
|
|
|
dev->flags & DM_FLAG_ACTIVATED ? '*' : ' ',
|
|
|
|
dev->name, (ulong)map_to_sysmem(dev));
|
|
|
|
if (dev->seq != -1 || dev->req_seq != -1)
|
|
|
|
printf(", seq %d, (req %d)", dev->seq, dev->req_seq);
|
|
|
|
puts("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void dm_dump_uclass(void)
|
|
|
|
{
|
|
|
|
struct uclass *uc;
|
|
|
|
int ret;
|
|
|
|
int id;
|
|
|
|
|
|
|
|
for (id = 0; id < UCLASS_COUNT; id++) {
|
|
|
|
struct udevice *dev;
|
2018-08-09 14:17:43 +00:00
|
|
|
int i = 0;
|
2015-06-23 21:38:35 +00:00
|
|
|
|
|
|
|
ret = uclass_get(id, &uc);
|
|
|
|
if (ret)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
printf("uclass %d: %s\n", id, uc->uc_drv->name);
|
|
|
|
if (list_empty(&uc->dev_head))
|
|
|
|
continue;
|
2018-09-28 13:12:55 +00:00
|
|
|
uclass_foreach_dev(dev, uc) {
|
2018-08-09 14:17:43 +00:00
|
|
|
dm_display_line(dev, i);
|
|
|
|
i++;
|
2015-06-23 21:38:35 +00:00
|
|
|
}
|
|
|
|
puts("\n");
|
|
|
|
}
|
|
|
|
}
|
2020-01-17 19:48:09 +00:00
|
|
|
|
|
|
|
void dm_dump_drivers(void)
|
|
|
|
{
|
|
|
|
struct driver *d = ll_entry_start(struct driver, driver);
|
|
|
|
const int n_ents = ll_entry_count(struct driver, driver);
|
|
|
|
struct driver *entry;
|
|
|
|
const struct udevice_id *match;
|
|
|
|
|
|
|
|
puts("Driver Compatible\n");
|
|
|
|
puts("--------------------------------\n");
|
|
|
|
for (entry = d; entry < d + n_ents; entry++) {
|
|
|
|
for (match = entry->of_match; match->compatible; match++)
|
|
|
|
printf("%-20.20s %s\n",
|
|
|
|
match == entry->of_match ? entry->name : "",
|
|
|
|
match->compatible);
|
|
|
|
if (match == entry->of_match)
|
|
|
|
printf("%-20.20s\n", entry->name);
|
|
|
|
}
|
|
|
|
}
|