configs: visionfive2: Enable CONFIG_OF_BOARD_SETUP
[platform/kernel/u-boot.git] / cmd / bdinfo.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Implements the 'bd' command to show board information
4  *
5  * (C) Copyright 2003
6  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7  */
8
9 #include <common.h>
10 #include <command.h>
11 #include <dm.h>
12 #include <env.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>
22
23 DECLARE_GLOBAL_DATA_PTR;
24
25 void bdinfo_print_size(const char *name, uint64_t size)
26 {
27         printf("%-12s= ", name);
28         print_size(size, "\n");
29 }
30
31 void bdinfo_print_str(const char *name, const char *str)
32 {
33         printf("%-12s= %s\n", name, str);
34 }
35
36 void bdinfo_print_num_l(const char *name, ulong value)
37 {
38         printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
39 }
40
41 void bdinfo_print_num_ll(const char *name, unsigned long long value)
42 {
43         printf("%-12s= 0x%.*llx\n", name, 2 * (int)sizeof(ulong), value);
44 }
45
46 static void print_eth(void)
47 {
48         const int idx = eth_get_dev_index();
49         uchar enetaddr[6];
50         char name[10];
51         int ret;
52
53         if (idx)
54                 sprintf(name, "eth%iaddr", idx);
55         else
56                 strcpy(name, "ethaddr");
57
58         ret = eth_env_get_enetaddr_by_index("eth", idx, enetaddr);
59
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"));
66 }
67
68 void bdinfo_print_mhz(const char *name, unsigned long hz)
69 {
70         char buf[32];
71
72         printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
73 }
74
75 static void print_bi_dram(const struct bd_info *bd)
76 {
77         int i;
78
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);
84                 }
85         }
86 }
87
88 __weak void arch_print_bdinfo(void)
89 {
90 }
91
92 static void show_video_info(void)
93 {
94         const struct udevice *dev;
95         struct uclass *uc;
96
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);
103
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);
110                         }
111                         printf("%-12s= %dx%dx%d\n", "FB size", upriv->xsize,
112                                upriv->ysize, 1 << upriv->bpix);
113                 }
114         }
115 }
116
117 static void print_serial(struct udevice *dev)
118 {
119         struct serial_device_info info;
120         int ret;
121
122         if (!dev || !IS_ENABLED(CONFIG_DM_SERIAL))
123                 return;
124
125         ret = serial_getinfo(dev, &info);
126         if (ret)
127                 return;
128
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);
134 }
135
136 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
137 {
138         struct bd_info *bd = gd->bd;
139
140 #ifdef DEBUG
141         bdinfo_print_num_l("bd address", (ulong)bd);
142 #endif
143         bdinfo_print_num_l("boot_params", (ulong)bd->bi_boot_params);
144         print_bi_dram(bd);
145         if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
146                 bdinfo_print_num_l("sramstart", (ulong)bd->bi_sramstart);
147                 bdinfo_print_num_l("sramsize", (ulong)bd->bi_sramsize);
148         }
149         bdinfo_print_num_l("flashstart", (ulong)bd->bi_flashstart);
150         bdinfo_print_num_l("flashsize", (ulong)bd->bi_flashsize);
151         bdinfo_print_num_l("flashoffset", (ulong)bd->bi_flashoffset);
152         printf("baudrate    = %u bps\n", gd->baudrate);
153         bdinfo_print_num_l("relocaddr", gd->relocaddr);
154         bdinfo_print_num_l("reloc off", gd->reloc_off);
155         printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8);
156         if (IS_ENABLED(CONFIG_CMD_NET))
157                 print_eth();
158         bdinfo_print_num_l("fdt_blob", (ulong)map_to_sysmem(gd->fdt_blob));
159         bdinfo_print_num_l("new_fdt", (ulong)map_to_sysmem(gd->new_fdt));
160         bdinfo_print_num_l("fdt_size", (ulong)gd->fdt_size);
161         if (IS_ENABLED(CONFIG_VIDEO))
162                 show_video_info();
163 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
164         bdinfo_print_num_l("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
165 #endif
166         if (IS_ENABLED(CONFIG_LMB) && gd->fdt_blob) {
167                 struct lmb lmb;
168
169                 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
170                 lmb_dump_all_force(&lmb);
171                 if (IS_ENABLED(CONFIG_OF_REAL))
172                         printf("devicetree  = %s\n", fdtdec_get_srcname());
173         }
174         print_serial(gd->cur_serial_dev);
175
176         if (IS_ENABLED(CONFIG_CMD_BDINFO_EXTRA)) {
177                 bdinfo_print_num_ll("stack ptr", (ulong)&bd);
178                 bdinfo_print_num_ll("ram_top ptr", (ulong)gd->ram_top);
179                 bdinfo_print_num_l("malloc base", gd_malloc_start());
180         }
181
182         arch_print_bdinfo();
183
184         return 0;
185 }
186
187 U_BOOT_CMD(
188         bdinfo, 1,      1,      do_bdinfo,
189         "print Board Info structure",
190         ""
191 );