mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
40b6f2d020
This new command can dump all device resources associated to each device. The fields in every line shows: - The address of the resource - The size of the resource - The name of the release function - The stage in which the resource has been acquired (BIND/PROBE) Currently, there is no driver using devres, but if such drivers are implemented, the output of this command should look like this: => dm devres - root_driver - soc - extbus - serial@54006800 bfb541e8 (8 byte) devm_kmalloc_release BIND bfb54440 (4 byte) devm_kmalloc_release PROBE bfb54460 (4 byte) devm_kmalloc_release PROBE - serial@54006900 bfb54270 (8 byte) devm_kmalloc_release BIND - gpio@55000000 - i2c@58780000 bfb5bce8 (12 byte) devm_kmalloc_release PROBE bfb5bd10 (4 byte) devm_kmalloc_release PROBE - eeprom bfb54418 (12 byte) devm_kmalloc_release BIND Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Simon Glass <sjg@chromium.org>
74 lines
1.5 KiB
C
74 lines
1.5 KiB
C
/*
|
|
* Copyright (c) 2013 Google, Inc
|
|
*
|
|
* (C) Copyright 2012
|
|
* Marek Vasut <marex@denx.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <malloc.h>
|
|
#include <mapmem.h>
|
|
#include <errno.h>
|
|
#include <asm/io.h>
|
|
#include <dm/root.h>
|
|
#include <dm/util.h>
|
|
|
|
static int do_dm_dump_all(cmd_tbl_t *cmdtp, int flag, int argc,
|
|
char * const argv[])
|
|
{
|
|
dm_dump_all();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int do_dm_dump_uclass(cmd_tbl_t *cmdtp, int flag, int argc,
|
|
char * const argv[])
|
|
{
|
|
dm_dump_uclass();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int do_dm_dump_devres(cmd_tbl_t *cmdtp, int flag, int argc,
|
|
char * const argv[])
|
|
{
|
|
dm_dump_devres();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static cmd_tbl_t test_commands[] = {
|
|
U_BOOT_CMD_MKENT(tree, 0, 1, do_dm_dump_all, "", ""),
|
|
U_BOOT_CMD_MKENT(uclass, 1, 1, do_dm_dump_uclass, "", ""),
|
|
U_BOOT_CMD_MKENT(devres, 1, 1, do_dm_dump_devres, "", ""),
|
|
};
|
|
|
|
static int do_dm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|
{
|
|
cmd_tbl_t *test_cmd;
|
|
int ret;
|
|
|
|
if (argc < 2)
|
|
return CMD_RET_USAGE;
|
|
test_cmd = find_cmd_tbl(argv[1], test_commands,
|
|
ARRAY_SIZE(test_commands));
|
|
argc -= 2;
|
|
argv += 2;
|
|
if (!test_cmd || argc > test_cmd->maxargs)
|
|
return CMD_RET_USAGE;
|
|
|
|
ret = test_cmd->cmd(test_cmd, flag, argc, argv);
|
|
|
|
return cmd_process_error(test_cmd, ret);
|
|
}
|
|
|
|
U_BOOT_CMD(
|
|
dm, 3, 1, do_dm,
|
|
"Driver model low level access",
|
|
"tree Dump driver model tree ('*' = activated)\n"
|
|
"dm uclass Dump list of instances for each uclass\n"
|
|
"dm devres Dump list of device resources for each device"
|
|
);
|