3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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_5xx) || defined(CONFIG_8xx) || \
187 defined(CONFIG_MPC8260) || defined(CONFIG_E500)
188 print_num("immr_base", bd->bi_immr_base);
190 print_num("bootflags", bd->bi_bootflags);
191 #if defined(CONFIG_405EP) || \
192 defined(CONFIG_405GP) || \
193 defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
194 defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
195 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
196 defined(CONFIG_XILINX_405)
197 print_mhz("procfreq", bd->bi_procfreq);
198 print_mhz("plb_busfreq", bd->bi_plb_busfreq);
199 #if defined(CONFIG_405EP) || defined(CONFIG_405GP) || \
200 defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
201 defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
202 defined(CONFIG_440SPE) || defined(CONFIG_XILINX_405)
203 print_mhz("pci_busfreq", bd->bi_pci_busfreq);
205 #else /* ! CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
206 #if defined(CONFIG_CPM2)
207 print_mhz("vco", bd->bi_vco);
208 print_mhz("sccfreq", bd->bi_sccfreq);
209 print_mhz("brgfreq", bd->bi_brgfreq);
211 print_mhz("intfreq", bd->bi_intfreq);
212 #if defined(CONFIG_CPM2)
213 print_mhz("cpmfreq", bd->bi_cpmfreq);
215 print_mhz("busfreq", bd->bi_busfreq);
216 #endif /* CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
218 #ifdef CONFIG_ENABLE_36BIT_PHYS
219 #ifdef CONFIG_PHYS_64BIT
220 puts("addressing = 36-bit\n");
222 puts("addressing = 32-bit\n");
228 print_num("relocaddr", gd->relocaddr);
233 #elif defined(CONFIG_NIOS2)
235 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
242 #if defined(CONFIG_SYS_SRAM_BASE)
243 print_num ("sram start", (ulong)bd->bi_sramstart);
244 print_num ("sram size", (ulong)bd->bi_sramsize);
253 #elif defined(CONFIG_MICROBLAZE)
255 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
261 #if defined(CONFIG_SYS_SRAM_BASE)
262 print_num("sram start ", (ulong)bd->bi_sramstart);
263 print_num("sram size ", (ulong)bd->bi_sramsize);
265 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
269 print_num("relocaddr", gd->relocaddr);
270 print_num("reloc off", gd->reloc_off);
271 print_num("fdt_blob", (ulong)gd->fdt_blob);
272 print_num("new_fdt", (ulong)gd->new_fdt);
273 print_num("fdt_size", (ulong)gd->fdt_size);
278 #elif defined(CONFIG_M68K)
280 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
286 #if defined(CONFIG_SYS_INIT_RAM_ADDR)
287 print_num("sramstart", (ulong)bd->bi_sramstart);
288 print_num("sramsize", (ulong)bd->bi_sramsize);
290 #if defined(CONFIG_SYS_MBAR)
291 print_num("mbar", bd->bi_mbar_base);
293 print_mhz("cpufreq", bd->bi_intfreq);
294 print_mhz("busfreq", bd->bi_busfreq);
296 print_mhz("pcifreq", bd->bi_pcifreq);
298 #ifdef CONFIG_EXTRA_CLOCK
299 print_mhz("flbfreq", bd->bi_flbfreq);
300 print_mhz("inpfreq", bd->bi_inpfreq);
301 print_mhz("vcofreq", bd->bi_vcofreq);
309 #elif defined(CONFIG_MIPS)
311 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
313 print_std_bdinfo(gd->bd);
314 print_num("relocaddr", gd->relocaddr);
315 print_num("reloc off", gd->reloc_off);
320 #elif defined(CONFIG_AVR32)
322 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
324 print_std_bdinfo(gd->bd);
328 #elif defined(CONFIG_ARM)
330 static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc,
335 print_num("arch_number", bd->bi_arch_number);
336 print_bi_boot_params(bd);
339 #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
340 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) {
341 print_num("Secure ram",
342 gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
345 #ifdef CONFIG_RESV_RAM
346 if (gd->arch.resv_ram)
347 print_num("Reserved ram", gd->arch.resv_ram);
349 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
353 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
354 print_num("TLB addr", gd->arch.tlb_addr);
356 print_num("relocaddr", gd->relocaddr);
357 print_num("reloc off", gd->reloc_off);
358 print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
359 print_num("sp start ", gd->start_addr_sp);
360 #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
361 print_num("FB base ", gd->fb_base);
364 * TODO: Currently only support for davinci SOC's is added.
365 * Remove this check once all the board implement this.
368 printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
369 printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
370 printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
372 #ifdef CONFIG_BOARD_TYPES
373 printf("Board Type = %ld\n", gd->board_type);
375 #ifdef CONFIG_SYS_MALLOC_F
376 printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
377 CONFIG_SYS_MALLOC_F_LEN);
383 #elif defined(CONFIG_SH)
385 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
396 #elif defined(CONFIG_X86)
398 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
402 print_bi_boot_params(bd);
406 #if defined(CONFIG_CMD_NET)
408 print_mhz("ethspeed", bd->bi_ethspeed);
415 #elif defined(CONFIG_SANDBOX)
417 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
421 print_bi_boot_params(bd);
425 #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
426 print_num("FB base ", gd->fb_base);
431 #elif defined(CONFIG_NDS32)
433 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
437 print_num("arch_number", bd->bi_arch_number);
438 print_bi_boot_params(bd);
446 #elif defined(CONFIG_ARC)
448 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
459 #elif defined(CONFIG_XTENSA)
461 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
463 print_std_bdinfo(gd->bd);
468 #error "a case for this architecture does not exist!"
471 /* -------------------------------------------------------------------- */
474 bdinfo, 1, 1, do_bdinfo,
475 "print Board Info structure",