mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
cmd/bdinfo: extract print_std_bdinfo
print_std_bdinfo outputs typical set of board information entries: boot params location, memory and flash addresses and sizes, network interfaces information and configured serial baud rate. Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
4e3fa7d8a1
commit
e379508435
1 changed files with 12 additions and 20 deletions
32
cmd/bdinfo.c
32
cmd/bdinfo.c
|
@ -157,6 +157,15 @@ static inline void print_baudrate(void)
|
|||
#endif
|
||||
}
|
||||
|
||||
static inline void print_std_bdinfo(const bd_t *bd)
|
||||
{
|
||||
print_bi_boot_params(bd);
|
||||
print_bi_mem(bd);
|
||||
print_bi_flash(bd);
|
||||
print_eth_ip_addr();
|
||||
print_baudrate();
|
||||
}
|
||||
|
||||
#if defined(CONFIG_PPC)
|
||||
void __weak board_detail(void)
|
||||
{
|
||||
|
@ -340,11 +349,7 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
print_mhz("CCLK", bd->bi_cclk);
|
||||
print_mhz("SCLK", bd->bi_sclk);
|
||||
|
||||
print_bi_boot_params(bd);
|
||||
print_bi_mem(bd);
|
||||
print_bi_flash(bd);
|
||||
print_eth_ip_addr();
|
||||
print_baudrate();
|
||||
print_std_bdinfo(bd);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -353,13 +358,7 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
|
||||
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||
{
|
||||
bd_t *bd = gd->bd;
|
||||
|
||||
print_bi_boot_params(bd);
|
||||
print_bi_mem(bd);
|
||||
print_bi_flash(bd);
|
||||
print_eth_ip_addr();
|
||||
print_baudrate();
|
||||
print_std_bdinfo(gd->bd);
|
||||
print_num("relocaddr", gd->relocaddr);
|
||||
print_num("reloc off", gd->reloc_off);
|
||||
|
||||
|
@ -370,14 +369,7 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
|
||||
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||
{
|
||||
bd_t *bd = gd->bd;
|
||||
|
||||
print_bi_boot_params(bd);
|
||||
print_bi_mem(bd);
|
||||
print_bi_flash(bd);
|
||||
print_eth_ip_addr();
|
||||
print_baudrate();
|
||||
|
||||
print_std_bdinfo(gd->bd);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue