5 * SPDX-License-Identifier: GPL-2.0+
13 #include <linux/compiler.h>
15 DECLARE_GLOBAL_DATA_PTR;
18 static void print_num(const char *name, ulong value)
20 printf("%-12s= 0x%08lX\n", name, value);
24 static void print_eth(int idx)
28 sprintf(name, "eth%iaddr", idx);
30 strcpy(name, "ethaddr");
34 printf("%-12s= %s\n", name, val);
39 static void print_eths(void)
41 struct eth_device *dev;
45 dev = eth_get_dev_by_index(i);
47 printf("eth%dname = %s\n", i, dev->name);
53 printf("current eth = %s\n", eth_get_name());
54 printf("ip_addr = %s\n", getenv("ipaddr"));
59 static void print_lnum(const char *name, unsigned long long value)
61 printf("%-12s= 0x%.8llX\n", name, value);
65 static void print_mhz(const char *name, unsigned long hz)
69 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
73 static inline void print_bi_boot_params(const bd_t *bd)
75 print_num("boot_params", (ulong)bd->bi_boot_params);
78 static inline void print_bi_mem(const bd_t *bd)
80 #if defined(CONFIG_SH)
81 print_num("mem start ", (ulong)bd->bi_memstart);
82 print_lnum("mem size ", (u64)bd->bi_memsize);
83 #elif defined(CONFIG_ARC)
84 print_num("mem start", (ulong)bd->bi_memstart);
85 print_lnum("mem size", (u64)bd->bi_memsize);
86 #elif defined(CONFIG_AVR32)
87 print_num("memstart", (ulong)bd->bi_dram[0].start);
88 print_lnum("memsize", (u64)bd->bi_dram[0].size);
90 print_num("memstart", (ulong)bd->bi_memstart);
91 print_lnum("memsize", (u64)bd->bi_memsize);
95 static inline void print_bi_dram(const bd_t *bd)
97 #ifdef CONFIG_NR_DRAM_BANKS
100 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
101 if (bd->bi_dram[i].size) {
102 print_num("DRAM bank", i);
103 print_num("-> start", bd->bi_dram[i].start);
104 print_num("-> size", bd->bi_dram[i].size);
110 static inline void print_bi_flash(const bd_t *bd)
112 #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_SH)
113 print_num("flash start ", (ulong)bd->bi_flashstart);
114 print_num("flash size ", (ulong)bd->bi_flashsize);
115 print_num("flash offset ", (ulong)bd->bi_flashoffset);
117 #elif defined(CONFIG_NIOS2)
118 print_num("flash start", (ulong)bd->bi_flashstart);
119 print_num("flash size", (ulong)bd->bi_flashsize);
120 print_num("flash offset", (ulong)bd->bi_flashoffset);
122 print_num("flashstart", (ulong)bd->bi_flashstart);
123 print_num("flashsize", (ulong)bd->bi_flashsize);
124 print_num("flashoffset", (ulong)bd->bi_flashoffset);
128 static inline void print_eth_ip_addr(void)
130 #if defined(CONFIG_CMD_NET)
132 #if defined(CONFIG_HAS_ETH1)
135 #if defined(CONFIG_HAS_ETH2)
138 #if defined(CONFIG_HAS_ETH3)
141 #if defined(CONFIG_HAS_ETH4)
144 #if defined(CONFIG_HAS_ETH5)
147 printf("IP addr = %s\n", getenv("ipaddr"));
151 static inline void print_baudrate(void)
153 #if defined(CONFIG_PPC)
154 printf("baudrate = %6u bps\n", gd->baudrate);
156 printf("baudrate = %u bps\n", gd->baudrate);
160 static inline void __maybe_unused print_std_bdinfo(const bd_t *bd)
162 print_bi_boot_params(bd);
169 #if defined(CONFIG_PPC)
170 void __weak board_detail(void)
172 /* Please define boot_detail() for your platform */
175 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
180 print_num("bd address", (ulong)bd);
184 print_num("sramstart", bd->bi_sramstart);
185 print_num("sramsize", bd->bi_sramsize);
186 #if defined(CONFIG_E500)
187 print_num("immr_base", bd->bi_immr_base);
189 print_num("bootflags", bd->bi_bootflags);
190 #if defined(CONFIG_405EP) || \
191 defined(CONFIG_405GP) || \
192 defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
193 defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
194 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
195 defined(CONFIG_XILINX_405)
196 print_mhz("procfreq", bd->bi_procfreq);
197 print_mhz("plb_busfreq", bd->bi_plb_busfreq);
198 #if defined(CONFIG_405EP) || defined(CONFIG_405GP) || \
199 defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
200 defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
201 defined(CONFIG_440SPE) || defined(CONFIG_XILINX_405)
202 print_mhz("pci_busfreq", bd->bi_pci_busfreq);
204 #else /* ! CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
205 #if defined(CONFIG_CPM2)
206 print_mhz("vco", bd->bi_vco);
207 print_mhz("sccfreq", bd->bi_sccfreq);
208 print_mhz("brgfreq", bd->bi_brgfreq);
210 print_mhz("intfreq", bd->bi_intfreq);
211 #if defined(CONFIG_CPM2)
212 print_mhz("cpmfreq", bd->bi_cpmfreq);
214 print_mhz("busfreq", bd->bi_busfreq);
215 #endif /* CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
217 #ifdef CONFIG_ENABLE_36BIT_PHYS
218 #ifdef CONFIG_PHYS_64BIT
219 puts("addressing = 36-bit\n");
221 puts("addressing = 32-bit\n");
227 print_num("relocaddr", gd->relocaddr);
232 #elif defined(CONFIG_NIOS2)
234 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
241 #if defined(CONFIG_SYS_SRAM_BASE)
242 print_num ("sram start", (ulong)bd->bi_sramstart);
243 print_num ("sram size", (ulong)bd->bi_sramsize);
252 #elif defined(CONFIG_MICROBLAZE)
254 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
260 #if defined(CONFIG_SYS_SRAM_BASE)
261 print_num("sram start ", (ulong)bd->bi_sramstart);
262 print_num("sram size ", (ulong)bd->bi_sramsize);
264 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
268 print_num("relocaddr", gd->relocaddr);
269 print_num("reloc off", gd->reloc_off);
270 print_num("fdt_blob", (ulong)gd->fdt_blob);
271 print_num("new_fdt", (ulong)gd->new_fdt);
272 print_num("fdt_size", (ulong)gd->fdt_size);
277 #elif defined(CONFIG_M68K)
279 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
285 #if defined(CONFIG_SYS_INIT_RAM_ADDR)
286 print_num("sramstart", (ulong)bd->bi_sramstart);
287 print_num("sramsize", (ulong)bd->bi_sramsize);
289 #if defined(CONFIG_SYS_MBAR)
290 print_num("mbar", bd->bi_mbar_base);
292 print_mhz("cpufreq", bd->bi_intfreq);
293 print_mhz("busfreq", bd->bi_busfreq);
295 print_mhz("pcifreq", bd->bi_pcifreq);
297 #ifdef CONFIG_EXTRA_CLOCK
298 print_mhz("flbfreq", bd->bi_flbfreq);
299 print_mhz("inpfreq", bd->bi_inpfreq);
300 print_mhz("vcofreq", bd->bi_vcofreq);
308 #elif defined(CONFIG_MIPS)
310 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
312 print_std_bdinfo(gd->bd);
313 print_num("relocaddr", gd->relocaddr);
314 print_num("reloc off", gd->reloc_off);
319 #elif defined(CONFIG_AVR32)
321 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
323 print_std_bdinfo(gd->bd);
327 #elif defined(CONFIG_ARM)
329 static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc,
334 print_num("arch_number", bd->bi_arch_number);
335 print_bi_boot_params(bd);
338 #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
339 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) {
340 print_num("Secure ram",
341 gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
344 #ifdef CONFIG_RESV_RAM
345 if (gd->arch.resv_ram)
346 print_num("Reserved ram", gd->arch.resv_ram);
348 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
352 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
353 print_num("TLB addr", gd->arch.tlb_addr);
355 print_num("relocaddr", gd->relocaddr);
356 print_num("reloc off", gd->reloc_off);
357 print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
358 print_num("sp start ", gd->start_addr_sp);
359 #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
360 print_num("FB base ", gd->fb_base);
363 * TODO: Currently only support for davinci SOC's is added.
364 * Remove this check once all the board implement this.
367 printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
368 printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
369 printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
371 #ifdef CONFIG_BOARD_TYPES
372 printf("Board Type = %ld\n", gd->board_type);
374 #ifdef CONFIG_SYS_MALLOC_F
375 printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
376 CONFIG_SYS_MALLOC_F_LEN);
382 #elif defined(CONFIG_SH)
384 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
395 #elif defined(CONFIG_X86)
397 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
401 print_bi_boot_params(bd);
405 #if defined(CONFIG_CMD_NET)
407 print_mhz("ethspeed", bd->bi_ethspeed);
414 #elif defined(CONFIG_SANDBOX)
416 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
420 print_bi_boot_params(bd);
424 #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
425 print_num("FB base ", gd->fb_base);
430 #elif defined(CONFIG_NDS32)
432 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
436 print_num("arch_number", bd->bi_arch_number);
437 print_bi_boot_params(bd);
445 #elif defined(CONFIG_ARC)
447 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
458 #elif defined(CONFIG_XTENSA)
460 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
462 print_std_bdinfo(gd->bd);
467 #error "a case for this architecture does not exist!"
470 /* -------------------------------------------------------------------- */
473 bdinfo, 1, 1, do_bdinfo,
474 "print Board Info structure",