1 // SPDX-License-Identifier: GPL-2.0+
14 #include <linux/compiler.h>
16 DECLARE_GLOBAL_DATA_PTR;
19 static void print_num(const char *name, ulong value)
21 printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
25 static void print_eth(int idx)
29 sprintf(name, "eth%iaddr", idx);
31 strcpy(name, "ethaddr");
35 printf("%-12s= %s\n", name, val);
40 static void print_eths(void)
42 struct eth_device *dev;
46 dev = eth_get_dev_by_index(i);
48 printf("eth%dname = %s\n", i, dev->name);
54 printf("current eth = %s\n", eth_get_name());
55 printf("ip_addr = %s\n", env_get("ipaddr"));
60 static void print_lnum(const char *name, unsigned long long value)
62 printf("%-12s= 0x%.8llX\n", name, value);
66 static void print_mhz(const char *name, unsigned long hz)
70 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
74 static inline void print_bi_boot_params(const bd_t *bd)
76 print_num("boot_params", (ulong)bd->bi_boot_params);
79 static inline void print_bi_mem(const bd_t *bd)
81 #if defined(CONFIG_SH)
82 print_num("mem start ", (ulong)bd->bi_memstart);
83 print_lnum("mem size ", (u64)bd->bi_memsize);
84 #elif defined(CONFIG_ARC)
85 print_num("mem start", (ulong)bd->bi_memstart);
86 print_lnum("mem size", (u64)bd->bi_memsize);
88 print_num("memstart", (ulong)bd->bi_memstart);
89 print_lnum("memsize", (u64)bd->bi_memsize);
93 static inline void print_bi_dram(const bd_t *bd)
95 #ifdef CONFIG_NR_DRAM_BANKS
98 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
99 if (bd->bi_dram[i].size) {
100 print_num("DRAM bank", i);
101 print_num("-> start", bd->bi_dram[i].start);
102 print_num("-> size", bd->bi_dram[i].size);
108 static inline void print_bi_flash(const bd_t *bd)
110 #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_SH)
111 print_num("flash start ", (ulong)bd->bi_flashstart);
112 print_num("flash size ", (ulong)bd->bi_flashsize);
113 print_num("flash offset ", (ulong)bd->bi_flashoffset);
115 #elif defined(CONFIG_NIOS2)
116 print_num("flash start", (ulong)bd->bi_flashstart);
117 print_num("flash size", (ulong)bd->bi_flashsize);
118 print_num("flash offset", (ulong)bd->bi_flashoffset);
120 print_num("flashstart", (ulong)bd->bi_flashstart);
121 print_num("flashsize", (ulong)bd->bi_flashsize);
122 print_num("flashoffset", (ulong)bd->bi_flashoffset);
126 static inline void print_eth_ip_addr(void)
128 #if defined(CONFIG_CMD_NET)
130 #if defined(CONFIG_HAS_ETH1)
133 #if defined(CONFIG_HAS_ETH2)
136 #if defined(CONFIG_HAS_ETH3)
139 #if defined(CONFIG_HAS_ETH4)
142 #if defined(CONFIG_HAS_ETH5)
145 printf("IP addr = %s\n", env_get("ipaddr"));
149 static inline void print_baudrate(void)
151 #if defined(CONFIG_PPC)
152 printf("baudrate = %6u bps\n", gd->baudrate);
154 printf("baudrate = %u bps\n", gd->baudrate);
158 static inline void __maybe_unused print_std_bdinfo(const bd_t *bd)
160 print_bi_boot_params(bd);
167 #if defined(CONFIG_PPC)
168 void __weak board_detail(void)
170 /* Please define board_detail() for your platform */
173 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
178 print_num("bd address", (ulong)bd);
182 print_num("sramstart", bd->bi_sramstart);
183 print_num("sramsize", bd->bi_sramsize);
184 #if defined(CONFIG_MPC8xx) || defined(CONFIG_E500)
185 print_num("immr_base", bd->bi_immr_base);
187 print_num("bootflags", bd->bi_bootflags);
188 #if defined(CONFIG_CPM2)
189 print_mhz("vco", bd->bi_vco);
190 print_mhz("sccfreq", bd->bi_sccfreq);
191 print_mhz("brgfreq", bd->bi_brgfreq);
193 print_mhz("intfreq", bd->bi_intfreq);
194 #if defined(CONFIG_CPM2)
195 print_mhz("cpmfreq", bd->bi_cpmfreq);
197 print_mhz("busfreq", bd->bi_busfreq);
199 #ifdef CONFIG_ENABLE_36BIT_PHYS
200 #ifdef CONFIG_PHYS_64BIT
201 puts("addressing = 36-bit\n");
203 puts("addressing = 32-bit\n");
209 print_num("relocaddr", gd->relocaddr);
214 #elif defined(CONFIG_NIOS2)
216 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
223 #if defined(CONFIG_SYS_SRAM_BASE)
224 print_num ("sram start", (ulong)bd->bi_sramstart);
225 print_num ("sram size", (ulong)bd->bi_sramsize);
234 #elif defined(CONFIG_MICROBLAZE)
236 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);
246 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
250 print_num("relocaddr", gd->relocaddr);
251 print_num("reloc off", gd->reloc_off);
252 print_num("fdt_blob", (ulong)gd->fdt_blob);
253 print_num("new_fdt", (ulong)gd->new_fdt);
254 print_num("fdt_size", (ulong)gd->fdt_size);
259 #elif defined(CONFIG_M68K)
261 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
267 #if defined(CONFIG_SYS_INIT_RAM_ADDR)
268 print_num("sramstart", (ulong)bd->bi_sramstart);
269 print_num("sramsize", (ulong)bd->bi_sramsize);
271 #if defined(CONFIG_SYS_MBAR)
272 print_num("mbar", bd->bi_mbar_base);
274 print_mhz("cpufreq", bd->bi_intfreq);
275 print_mhz("busfreq", bd->bi_busfreq);
277 print_mhz("pcifreq", bd->bi_pcifreq);
279 #ifdef CONFIG_EXTRA_CLOCK
280 print_mhz("flbfreq", bd->bi_flbfreq);
281 print_mhz("inpfreq", bd->bi_inpfreq);
282 print_mhz("vcofreq", bd->bi_vcofreq);
290 #elif defined(CONFIG_MIPS)
292 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
294 print_std_bdinfo(gd->bd);
295 print_num("relocaddr", gd->relocaddr);
296 print_num("reloc off", gd->reloc_off);
301 #elif defined(CONFIG_ARM)
303 static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc,
308 print_num("arch_number", bd->bi_arch_number);
309 print_bi_boot_params(bd);
312 #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
313 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) {
314 print_num("Secure ram",
315 gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
318 #ifdef CONFIG_RESV_RAM
319 if (gd->arch.resv_ram)
320 print_num("Reserved ram", gd->arch.resv_ram);
322 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
326 #if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
327 print_num("TLB addr", gd->arch.tlb_addr);
329 print_num("relocaddr", gd->relocaddr);
330 print_num("reloc off", gd->reloc_off);
331 print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
332 print_num("sp start ", gd->start_addr_sp);
333 #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO)
334 print_num("FB base ", gd->fb_base);
337 * TODO: Currently only support for davinci SOC's is added.
338 * Remove this check once all the board implement this.
341 printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
342 printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
343 printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
345 #ifdef CONFIG_BOARD_TYPES
346 printf("Board Type = %ld\n", gd->board_type);
348 #if CONFIG_VAL(SYS_MALLOC_F_LEN)
349 printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
350 CONFIG_VAL(SYS_MALLOC_F_LEN));
352 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
353 print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
356 print_num("fdt_blob", (ulong)gd->fdt_blob);
361 #elif defined(CONFIG_SH)
363 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
374 #elif defined(CONFIG_X86)
376 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
380 print_bi_boot_params(bd);
384 print_num("relocaddr", gd->relocaddr);
385 print_num("reloc off", gd->reloc_off);
386 #if defined(CONFIG_CMD_NET)
388 print_mhz("ethspeed", bd->bi_ethspeed);
395 #elif defined(CONFIG_SANDBOX)
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_LCD) || defined(CONFIG_VIDEO)
406 print_num("FB base ", gd->fb_base);
411 #elif defined(CONFIG_NDS32)
413 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
417 print_num("arch_number", bd->bi_arch_number);
418 print_bi_boot_params(bd);
426 #elif defined(CONFIG_RISCV)
428 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
432 print_bi_boot_params(bd);
434 print_num("relocaddr", gd->relocaddr);
435 print_num("reloc off", gd->reloc_off);
442 #elif defined(CONFIG_ARC)
444 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
455 #elif defined(CONFIG_XTENSA)
457 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
459 print_std_bdinfo(gd->bd);
464 #error "a case for this architecture does not exist!"
467 /* -------------------------------------------------------------------- */
470 bdinfo, 1, 1, do_bdinfo,
471 "print Board Info structure",