upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.0 KiB
96 lines
2.0 KiB
/*
|
|
* Copyright (c) 2015 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <mapmem.h>
|
|
#include <dm/root.h>
|
|
|
|
static void show_devices(struct udevice *dev, int depth, int last_flag)
|
|
{
|
|
int i, is_last;
|
|
struct udevice *child;
|
|
char class_name[12];
|
|
|
|
/* print the first 11 characters to not break the tree-format. */
|
|
strlcpy(class_name, dev->uclass->uc_drv->name, sizeof(class_name));
|
|
printf(" %-11s [ %c ] ", class_name,
|
|
dev->flags & DM_FLAG_ACTIVATED ? '+' : ' ');
|
|
|
|
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) {
|
|
printf(" Class Probed Name\n");
|
|
printf("----------------------------------------\n");
|
|
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
|
|
*/
|
|
static void dm_display_line(struct udevice *dev)
|
|
{
|
|
printf("- %c %s @ %08lx",
|
|
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;
|
|
|
|
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;
|
|
list_for_each_entry(dev, &uc->dev_head, uclass_node) {
|
|
dm_display_line(dev);
|
|
}
|
|
puts("\n");
|
|
}
|
|
}
|
|
|