1 // SPDX-License-Identifier: GPL-2.0+
3 * Implements the 'bd' command to show board information
19 #include <asm/cache.h>
20 #include <asm/global_data.h>
21 #include <display_options.h>
23 DECLARE_GLOBAL_DATA_PTR;
25 void bdinfo_print_size(const char *name, uint64_t size)
27 printf("%-12s= ", name);
28 print_size(size, "\n");
31 void bdinfo_print_str(const char *name, const char *str)
33 printf("%-12s= %s\n", name, str);
36 void bdinfo_print_num_l(const char *name, ulong value)
38 printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
41 void bdinfo_print_num_ll(const char *name, unsigned long long value)
43 printf("%-12s= 0x%.*llx\n", name, 2 * (int)sizeof(ulong), value);
46 static void print_eth(void)
48 const int idx = eth_get_dev_index();
54 sprintf(name, "eth%iaddr", idx);
56 strcpy(name, "ethaddr");
58 ret = eth_env_get_enetaddr_by_index("eth", idx, enetaddr);
60 printf("current eth = %s\n", eth_get_name());
62 printf("%-12s= (not set)\n", name);
64 printf("%-12s= %pM\n", name, enetaddr);
65 printf("IP addr = %s\n", env_get("ipaddr"));
68 void bdinfo_print_mhz(const char *name, unsigned long hz)
72 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
75 static void print_bi_dram(const struct bd_info *bd)
79 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
80 if (bd->bi_dram[i].size) {
81 bdinfo_print_num_l("DRAM bank", i);
82 bdinfo_print_num_ll("-> start", bd->bi_dram[i].start);
83 bdinfo_print_num_ll("-> size", bd->bi_dram[i].size);
88 __weak void arch_print_bdinfo(void)
92 static void show_video_info(void)
94 const struct udevice *dev;
97 uclass_id_foreach_dev(UCLASS_VIDEO, dev, uc) {
98 printf("%-12s= %s %sactive\n", "Video", dev->name,
99 device_active(dev) ? "" : "in");
100 if (device_active(dev)) {
101 struct video_priv *upriv = dev_get_uclass_priv(dev);
102 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
104 bdinfo_print_num_ll("FB base", (ulong)upriv->fb);
105 if (upriv->copy_fb) {
106 bdinfo_print_num_ll("FB copy",
107 (ulong)upriv->copy_fb);
108 bdinfo_print_num_l(" copy size",
111 printf("%-12s= %dx%dx%d\n", "FB size", upriv->xsize,
112 upriv->ysize, 1 << upriv->bpix);
117 static void print_serial(struct udevice *dev)
119 struct serial_device_info info;
122 if (!dev || !IS_ENABLED(CONFIG_DM_SERIAL))
125 ret = serial_getinfo(dev, &info);
129 bdinfo_print_num_l("serial addr", info.addr);
130 bdinfo_print_num_l(" width", info.reg_width);
131 bdinfo_print_num_l(" shift", info.reg_shift);
132 bdinfo_print_num_l(" offset", info.reg_offset);
133 bdinfo_print_num_l(" clock", info.clock);
136 static int bdinfo_print_all(struct bd_info *bd)
139 bdinfo_print_num_l("bd address", (ulong)bd);
141 bdinfo_print_num_l("boot_params", (ulong)bd->bi_boot_params);
143 bdinfo_print_num_l("flashstart", (ulong)bd->bi_flashstart);
144 bdinfo_print_num_l("flashsize", (ulong)bd->bi_flashsize);
145 bdinfo_print_num_l("flashoffset", (ulong)bd->bi_flashoffset);
146 printf("baudrate = %u bps\n", gd->baudrate);
147 bdinfo_print_num_l("relocaddr", gd->relocaddr);
148 bdinfo_print_num_l("reloc off", gd->reloc_off);
149 printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8);
150 if (IS_ENABLED(CONFIG_CMD_NET) || IS_ENABLED(CONFIG_CMD_NET_LWIP))
152 bdinfo_print_num_l("fdt_blob", (ulong)map_to_sysmem(gd->fdt_blob));
153 if (IS_ENABLED(CONFIG_VIDEO))
155 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
156 bdinfo_print_num_l("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
158 if (IS_ENABLED(CONFIG_LMB) && gd->fdt_blob) {
159 lmb_dump_all_force();
160 if (IS_ENABLED(CONFIG_OF_REAL))
161 printf("devicetree = %s\n", fdtdec_get_srcname());
163 print_serial(gd->cur_serial_dev);
165 if (IS_ENABLED(CONFIG_CMD_BDINFO_EXTRA)) {
166 bdinfo_print_num_ll("stack ptr", (ulong)&bd);
167 bdinfo_print_num_ll("ram_top ptr", (ulong)gd->ram_top);
168 bdinfo_print_num_l("malloc base", gd_malloc_start());
176 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
178 struct bd_info *bd = gd->bd;
179 struct getopt_state gs;
182 if (!CONFIG_IS_ENABLED(GETOPT) || argc == 1)
183 return bdinfo_print_all(bd);
185 getopt_init_state(&gs);
186 while ((opt = getopt(&gs, argc, argv, "aem")) > 0) {
189 return bdinfo_print_all(bd);
191 if (!IS_ENABLED(CONFIG_CMD_NET) &&
192 !IS_ENABLED(CONFIG_CMD_NET_LWIP))
193 return CMD_RET_USAGE;
195 return CMD_RET_SUCCESS;
198 return CMD_RET_SUCCESS;
200 return CMD_RET_USAGE;
204 return CMD_RET_USAGE;
208 bdinfo, 2, 1, do_bdinfo,
209 "print Board Info structure",