blob: 0229846d3ea3f64fe5c4faf8e4095c5abf3269b0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk8bde7f72003-06-27 21:31:46 +00002/*
Simon Glassbda89092020-05-10 14:17:00 -06003 * Implements the 'bd' command to show board information
4 *
wdenk8bde7f72003-06-27 21:31:46 +00005 * (C) Copyright 2003
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk8bde7f72003-06-27 21:31:46 +00007 */
8
wdenk8bde7f72003-06-27 21:31:46 +00009#include <common.h>
10#include <command.h>
Simon Glass7b51b572019-08-01 09:46:52 -060011#include <env.h>
Tero Kristo9996cea2020-07-20 11:10:45 +030012#include <lmb.h>
Simon Glass90526e92020-05-10 11:39:56 -060013#include <net.h>
Simon Glass2189d5f2019-11-14 12:57:20 -070014#include <vsprintf.h>
Simon Glass90526e92020-05-10 11:39:56 -060015#include <asm/cache.h>
wdenk8bde7f72003-06-27 21:31:46 +000016
Wolfgang Denkd87080b2006-03-31 18:32:53 +020017DECLARE_GLOBAL_DATA_PTR;
wdenk8bde7f72003-06-27 21:31:46 +000018
Simon Glass655f17f2020-05-10 14:16:55 -060019void bdinfo_print_num(const char *name, ulong value)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000020{
Heinrich Schuchardt95187bb2018-10-11 13:15:01 +020021 printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
Mike Frysingerd88af4d2011-12-04 17:45:22 +000022}
wdenk8bde7f72003-06-27 21:31:46 +000023
Mike Frysingerd88af4d2011-12-04 17:45:22 +000024static void print_eth(int idx)
25{
26 char name[10], *val;
27 if (idx)
28 sprintf(name, "eth%iaddr", idx);
29 else
30 strcpy(name, "ethaddr");
Simon Glass00caae62017-08-03 12:22:12 -060031 val = env_get(name);
Mike Frysingerd88af4d2011-12-04 17:45:22 +000032 if (!val)
33 val = "(not set)";
34 printf("%-12s= %s\n", name, val);
35}
Mike Frysingerde2dff62009-02-11 18:50:10 -050036
Simon Glass655f17f2020-05-10 14:16:55 -060037void bdinfo_print_mhz(const char *name, unsigned long hz)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000038{
39 char buf[32];
40
41 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
42}
wdenk8bde7f72003-06-27 21:31:46 +000043
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090044static void print_bi_dram(const struct bd_info *bd)
Max Filippovfd60e992016-07-28 03:57:20 +030045{
Max Filippovfd60e992016-07-28 03:57:20 +030046 int i;
47
48 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
Simon Glassddd917b2016-08-05 21:57:27 -060049 if (bd->bi_dram[i].size) {
Simon Glass655f17f2020-05-10 14:16:55 -060050 bdinfo_print_num("DRAM bank", i);
51 bdinfo_print_num("-> start", bd->bi_dram[i].start);
52 bdinfo_print_num("-> size", bd->bi_dram[i].size);
Simon Glassddd917b2016-08-05 21:57:27 -060053 }
Max Filippovfd60e992016-07-28 03:57:20 +030054 }
Max Filippovfd60e992016-07-28 03:57:20 +030055}
56
Simon Glass59b0d7d2020-05-10 14:16:56 -060057__weak void arch_print_bdinfo(void)
58{
59}
60
Simon Glass1af97562020-05-10 14:16:28 -060061int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
62{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090063 struct bd_info *bd = gd->bd;
Simon Glass2e0fa212020-05-10 14:16:37 -060064
65#ifdef DEBUG
Simon Glass655f17f2020-05-10 14:16:55 -060066 bdinfo_print_num("bd address", (ulong)bd);
Simon Glass2e0fa212020-05-10 14:16:37 -060067#endif
Simon Glass655f17f2020-05-10 14:16:55 -060068 bdinfo_print_num("boot_params", (ulong)bd->bi_boot_params);
Simon Glass2e0fa212020-05-10 14:16:37 -060069 print_bi_dram(bd);
Ovidiu Panait6ecefcf2020-07-24 14:12:13 +030070 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
71 bdinfo_print_num("sramstart", (ulong)bd->bi_sramstart);
72 bdinfo_print_num("sramsize", (ulong)bd->bi_sramsize);
73 }
Simon Glass655f17f2020-05-10 14:16:55 -060074 bdinfo_print_num("flashstart", (ulong)bd->bi_flashstart);
75 bdinfo_print_num("flashsize", (ulong)bd->bi_flashsize);
76 bdinfo_print_num("flashoffset", (ulong)bd->bi_flashoffset);
Simon Glass3e1cca22020-05-10 14:16:46 -060077 printf("baudrate = %u bps\n", gd->baudrate);
Simon Glass655f17f2020-05-10 14:16:55 -060078 bdinfo_print_num("relocaddr", gd->relocaddr);
79 bdinfo_print_num("reloc off", gd->reloc_off);
Simon Glassdb76c9b2020-05-10 14:16:50 -060080 printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8);
Simon Glass8a2ba582020-05-10 14:16:54 -060081 if (IS_ENABLED(CONFIG_CMD_NET)) {
Simon Glass441539f2020-05-10 14:16:53 -060082 printf("current eth = %s\n", eth_get_name());
Simon Glass8a2ba582020-05-10 14:16:54 -060083 print_eth(0);
84 printf("IP addr = %s\n", env_get("ipaddr"));
85 }
Simon Glass655f17f2020-05-10 14:16:55 -060086 bdinfo_print_num("fdt_blob", (ulong)gd->fdt_blob);
87 bdinfo_print_num("new_fdt", (ulong)gd->new_fdt);
88 bdinfo_print_num("fdt_size", (ulong)gd->fdt_size);
Simon Glass1aeeaeb2020-05-10 14:16:39 -060089#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO)
Simon Glass655f17f2020-05-10 14:16:55 -060090 bdinfo_print_num("FB base ", gd->fb_base);
Simon Glass1aeeaeb2020-05-10 14:16:39 -060091#endif
Simon Glass1aeeaeb2020-05-10 14:16:39 -060092#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
Simon Glass655f17f2020-05-10 14:16:55 -060093 bdinfo_print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
Simon Glass1aeeaeb2020-05-10 14:16:39 -060094#endif
Tero Kristo9996cea2020-07-20 11:10:45 +030095 if (gd->fdt_blob) {
96 struct lmb lmb;
97
98 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
99 lmb_dump_all_force(&lmb);
100 }
Simon Glass59b0d7d2020-05-10 14:16:56 -0600101
102 arch_print_bdinfo();
Simon Glass1af97562020-05-10 14:16:28 -0600103
104 return 0;
105}
Simon Glass1af97562020-05-10 14:16:28 -0600106
wdenk0d498392003-07-01 21:06:45 +0000107U_BOOT_CMD(
108 bdinfo, 1, 1, do_bdinfo,
Peter Tyser2fb26042009-01-27 18:03:12 -0600109 "print Board Info structure",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200110 ""
wdenk8bde7f72003-06-27 21:31:46 +0000111);