Merge https://source.denx.de/u-boot/custodians/u-boot-marvell
[u-boot.git] / cmd / bdinfo.c
blobae9e1923eacff41a35be9164cbbc5bedf30a07af
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Implements the 'bd' command to show board information
5 * (C) Copyright 2003
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 */
9 #include <command.h>
10 #include <dm.h>
11 #include <env.h>
12 #include <getopt.h>
13 #include <lmb.h>
14 #include <mapmem.h>
15 #include <net.h>
16 #include <serial.h>
17 #include <video.h>
18 #include <vsprintf.h>
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();
49 uchar enetaddr[6];
50 char name[10];
51 int ret;
53 if (idx)
54 sprintf(name, "eth%iaddr", idx);
55 else
56 strcpy(name, "ethaddr");
58 ret = eth_env_get_enetaddr_by_index("eth", idx, enetaddr);
60 printf("current eth = %s\n", eth_get_name());
61 if (!ret)
62 printf("%-12s= (not set)\n", name);
63 else
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)
70 char buf[32];
72 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
75 static void print_bi_dram(const struct bd_info *bd)
77 int i;
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;
95 struct uclass *uc;
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",
109 plat->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;
120 int ret;
122 if (!dev || !IS_ENABLED(CONFIG_DM_SERIAL))
123 return;
125 ret = serial_getinfo(dev, &info);
126 if (ret)
127 return;
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)
138 #ifdef DEBUG
139 bdinfo_print_num_l("bd address", (ulong)bd);
140 #endif
141 bdinfo_print_num_l("boot_params", (ulong)bd->bi_boot_params);
142 print_bi_dram(bd);
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))
151 print_eth();
152 bdinfo_print_num_l("fdt_blob", (ulong)map_to_sysmem(gd->fdt_blob));
153 if (IS_ENABLED(CONFIG_VIDEO))
154 show_video_info();
155 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
156 bdinfo_print_num_l("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
157 #endif
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());
171 arch_print_bdinfo();
173 return 0;
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;
180 int opt;
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) {
187 switch (opt) {
188 case 'a':
189 return bdinfo_print_all(bd);
190 case 'e':
191 if (!IS_ENABLED(CONFIG_CMD_NET) &&
192 !IS_ENABLED(CONFIG_CMD_NET_LWIP))
193 return CMD_RET_USAGE;
194 print_eth();
195 return CMD_RET_SUCCESS;
196 case 'm':
197 print_bi_dram(bd);
198 return CMD_RET_SUCCESS;
199 default:
200 return CMD_RET_USAGE;
204 return CMD_RET_USAGE;
207 U_BOOT_CMD(
208 bdinfo, 2, 1, do_bdinfo,
209 "print Board Info structure",