rockchip: Remove ARCH= references from documentation
[oweals/u-boot.git] / cmd / bdinfo.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2003
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  */
6
7 /*
8  * Boot support
9  */
10 #include <common.h>
11 #include <command.h>
12 #include <env.h>
13 #include <net.h>
14 #include <vsprintf.h>
15 #include <asm/cache.h>
16 #include <linux/compiler.h>
17
18 DECLARE_GLOBAL_DATA_PTR;
19
20 __maybe_unused void print_cpu_word_size(void)
21 {
22         printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8);
23 }
24
25 __maybe_unused
26 static void print_num(const char *name, ulong value)
27 {
28         printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
29 }
30
31 __maybe_unused
32 static void print_eth(int idx)
33 {
34         char name[10], *val;
35         if (idx)
36                 sprintf(name, "eth%iaddr", idx);
37         else
38                 strcpy(name, "ethaddr");
39         val = env_get(name);
40         if (!val)
41                 val = "(not set)";
42         printf("%-12s= %s\n", name, val);
43 }
44
45 #ifndef CONFIG_DM_ETH
46 __maybe_unused
47 static void print_eths(void)
48 {
49         struct eth_device *dev;
50         int i = 0;
51
52         do {
53                 dev = eth_get_dev_by_index(i);
54                 if (dev) {
55                         printf("eth%dname    = %s\n", i, dev->name);
56                         print_eth(i);
57                         i++;
58                 }
59         } while (dev);
60
61         printf("current eth = %s\n", eth_get_name());
62         printf("ip_addr     = %s\n", env_get("ipaddr"));
63 }
64 #endif
65
66 __maybe_unused
67 static void print_lnum(const char *name, unsigned long long value)
68 {
69         printf("%-12s= 0x%.8llX\n", name, value);
70 }
71
72 __maybe_unused
73 static void print_mhz(const char *name, unsigned long hz)
74 {
75         char buf[32];
76
77         printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
78 }
79
80
81 static inline void print_bi_boot_params(const bd_t *bd)
82 {
83         print_num("boot_params",        (ulong)bd->bi_boot_params);
84 }
85
86 static inline void print_bi_mem(const bd_t *bd)
87 {
88 #if defined(CONFIG_SH)
89         print_num("mem start      ",    (ulong)bd->bi_memstart);
90         print_lnum("mem size       ",   (u64)bd->bi_memsize);
91 #elif defined(CONFIG_ARC)
92         print_num("mem start",          (ulong)bd->bi_memstart);
93         print_lnum("mem size",          (u64)bd->bi_memsize);
94 #else
95         print_num("memstart",           (ulong)bd->bi_memstart);
96         print_lnum("memsize",           (u64)bd->bi_memsize);
97 #endif
98 }
99
100 static inline void print_bi_dram(const bd_t *bd)
101 {
102 #ifdef CONFIG_NR_DRAM_BANKS
103         int i;
104
105         for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
106                 if (bd->bi_dram[i].size) {
107                         print_num("DRAM bank",  i);
108                         print_num("-> start",   bd->bi_dram[i].start);
109                         print_num("-> size",    bd->bi_dram[i].size);
110                 }
111         }
112 #endif
113 }
114
115 static inline void print_bi_flash(const bd_t *bd)
116 {
117 #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_SH)
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);
121
122 #elif defined(CONFIG_NIOS2)
123         print_num("flash start",        (ulong)bd->bi_flashstart);
124         print_num("flash size",         (ulong)bd->bi_flashsize);
125         print_num("flash offset",       (ulong)bd->bi_flashoffset);
126 #else
127         print_num("flashstart",         (ulong)bd->bi_flashstart);
128         print_num("flashsize",          (ulong)bd->bi_flashsize);
129         print_num("flashoffset",        (ulong)bd->bi_flashoffset);
130 #endif
131 }
132
133 static inline void print_eth_ip_addr(void)
134 {
135 #if defined(CONFIG_CMD_NET)
136         print_eth(0);
137 #if defined(CONFIG_HAS_ETH1)
138         print_eth(1);
139 #endif
140 #if defined(CONFIG_HAS_ETH2)
141         print_eth(2);
142 #endif
143 #if defined(CONFIG_HAS_ETH3)
144         print_eth(3);
145 #endif
146 #if defined(CONFIG_HAS_ETH4)
147         print_eth(4);
148 #endif
149 #if defined(CONFIG_HAS_ETH5)
150         print_eth(5);
151 #endif
152         printf("IP addr     = %s\n", env_get("ipaddr"));
153 #endif
154 }
155
156 static inline void print_baudrate(void)
157 {
158 #if defined(CONFIG_PPC)
159         printf("baudrate    = %6u bps\n", gd->baudrate);
160 #else
161         printf("baudrate    = %u bps\n", gd->baudrate);
162 #endif
163 }
164
165 static inline void __maybe_unused print_std_bdinfo(const bd_t *bd)
166 {
167         print_bi_boot_params(bd);
168         print_bi_mem(bd);
169         print_bi_flash(bd);
170         print_eth_ip_addr();
171         print_baudrate();
172 }
173
174 #if defined(CONFIG_PPC)
175 void __weak board_detail(void)
176 {
177         /* Please define board_detail() for your platform */
178 }
179
180 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
181 {
182         bd_t *bd = gd->bd;
183
184 #ifdef DEBUG
185         print_num("bd address",         (ulong)bd);
186 #endif
187         print_bi_mem(bd);
188         print_bi_flash(bd);
189         print_num("sramstart",          bd->bi_sramstart);
190         print_num("sramsize",           bd->bi_sramsize);
191 #if     defined(CONFIG_MPC8xx) || defined(CONFIG_E500)
192         print_num("immr_base",          bd->bi_immr_base);
193 #endif
194         print_num("bootflags",          bd->bi_bootflags);
195 #if defined(CONFIG_CPM2)
196         print_mhz("vco",                bd->bi_vco);
197         print_mhz("sccfreq",            bd->bi_sccfreq);
198         print_mhz("brgfreq",            bd->bi_brgfreq);
199 #endif
200         print_mhz("intfreq",            bd->bi_intfreq);
201 #if defined(CONFIG_CPM2)
202         print_mhz("cpmfreq",            bd->bi_cpmfreq);
203 #endif
204         print_mhz("busfreq",            bd->bi_busfreq);
205
206 #ifdef CONFIG_ENABLE_36BIT_PHYS
207 #ifdef CONFIG_PHYS_64BIT
208         puts("addressing  = 36-bit\n");
209 #else
210         puts("addressing  = 32-bit\n");
211 #endif
212 #endif
213
214         print_eth_ip_addr();
215         print_baudrate();
216         print_num("relocaddr", gd->relocaddr);
217         board_detail();
218         print_cpu_word_size();
219
220         return 0;
221 }
222
223 #elif defined(CONFIG_NIOS2)
224
225 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
226 {
227         bd_t *bd = gd->bd;
228
229         print_bi_dram(bd);
230         print_bi_flash(bd);
231
232 #if defined(CONFIG_SYS_SRAM_BASE)
233         print_num ("sram start",        (ulong)bd->bi_sramstart);
234         print_num ("sram size",         (ulong)bd->bi_sramsize);
235 #endif
236
237         print_eth_ip_addr();
238         print_baudrate();
239         print_cpu_word_size();
240
241         return 0;
242 }
243
244 #elif defined(CONFIG_MICROBLAZE)
245
246 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
247 {
248         bd_t *bd = gd->bd;
249
250         print_bi_dram(bd);
251         print_bi_flash(bd);
252 #if defined(CONFIG_SYS_SRAM_BASE)
253         print_num("sram start     ",    (ulong)bd->bi_sramstart);
254         print_num("sram size      ",    (ulong)bd->bi_sramsize);
255 #endif
256 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
257         print_eths();
258 #endif
259         print_baudrate();
260         print_num("relocaddr", gd->relocaddr);
261         print_num("reloc off", gd->reloc_off);
262         print_num("fdt_blob", (ulong)gd->fdt_blob);
263         print_num("new_fdt", (ulong)gd->new_fdt);
264         print_num("fdt_size", (ulong)gd->fdt_size);
265         print_cpu_word_size();
266
267         return 0;
268 }
269
270 #elif defined(CONFIG_M68K)
271
272 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
273 {
274         bd_t *bd = gd->bd;
275
276         print_bi_mem(bd);
277         print_bi_flash(bd);
278 #if defined(CONFIG_SYS_INIT_RAM_ADDR)
279         print_num("sramstart",          (ulong)bd->bi_sramstart);
280         print_num("sramsize",           (ulong)bd->bi_sramsize);
281 #endif
282 #if defined(CONFIG_SYS_MBAR)
283         print_num("mbar",               bd->bi_mbar_base);
284 #endif
285         print_mhz("cpufreq",            bd->bi_intfreq);
286         print_mhz("busfreq",            bd->bi_busfreq);
287 #ifdef CONFIG_PCI
288         print_mhz("pcifreq",            bd->bi_pcifreq);
289 #endif
290 #ifdef CONFIG_EXTRA_CLOCK
291         print_mhz("flbfreq",            bd->bi_flbfreq);
292         print_mhz("inpfreq",            bd->bi_inpfreq);
293         print_mhz("vcofreq",            bd->bi_vcofreq);
294 #endif
295         print_eth_ip_addr();
296         print_baudrate();
297         print_cpu_word_size();
298
299         return 0;
300 }
301
302 #elif defined(CONFIG_MIPS)
303
304 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
305 {
306         print_std_bdinfo(gd->bd);
307         print_num("relocaddr", gd->relocaddr);
308         print_num("reloc off", gd->reloc_off);
309         print_cpu_word_size();
310
311         return 0;
312 }
313
314 #elif defined(CONFIG_ARM)
315
316 static int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
317                      char *const argv[])
318 {
319         bd_t *bd = gd->bd;
320
321         print_num("arch_number",        bd->bi_arch_number);
322         print_bi_boot_params(bd);
323         print_bi_dram(bd);
324
325 #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
326         if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) {
327                 print_num("Secure ram",
328                           gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
329         }
330 #endif
331 #ifdef CONFIG_RESV_RAM
332         if (gd->arch.resv_ram)
333                 print_num("Reserved ram", gd->arch.resv_ram);
334 #endif
335 #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
336         print_eths();
337 #endif
338         print_baudrate();
339 #if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
340         print_num("TLB addr", gd->arch.tlb_addr);
341 #endif
342         print_num("relocaddr", gd->relocaddr);
343         print_num("reloc off", gd->reloc_off);
344         print_num("irq_sp", gd->irq_sp);        /* irq stack pointer */
345         print_num("sp start ", gd->start_addr_sp);
346 #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO)
347         print_num("FB base  ", gd->fb_base);
348 #endif
349         /*
350          * TODO: Currently only support for davinci SOC's is added.
351          * Remove this check once all the board implement this.
352          */
353 #ifdef CONFIG_CLOCKS
354         printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
355         printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
356         printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
357 #endif
358 #ifdef CONFIG_BOARD_TYPES
359         printf("Board Type  = %ld\n", gd->board_type);
360 #endif
361 #if CONFIG_VAL(SYS_MALLOC_F_LEN)
362         printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
363                CONFIG_VAL(SYS_MALLOC_F_LEN));
364 #endif
365 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
366         print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
367 #endif
368         if (gd->fdt_blob)
369                 print_num("fdt_blob", (ulong)gd->fdt_blob);
370         print_cpu_word_size();
371
372         return 0;
373 }
374
375 #elif defined(CONFIG_SH)
376
377 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
378 {
379         bd_t *bd = gd->bd;
380
381         print_bi_mem(bd);
382         print_bi_flash(bd);
383         print_eth_ip_addr();
384         print_baudrate();
385         print_cpu_word_size();
386
387         return 0;
388 }
389
390 #elif defined(CONFIG_X86)
391
392 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
393 {
394         bd_t *bd = gd->bd;
395
396         print_bi_boot_params(bd);
397
398         print_bi_dram(bd);
399
400         print_num("relocaddr", gd->relocaddr);
401         print_num("reloc off", gd->reloc_off);
402 #if defined(CONFIG_CMD_NET)
403         print_eth_ip_addr();
404         print_mhz("ethspeed",       bd->bi_ethspeed);
405 #endif
406         print_baudrate();
407         print_cpu_word_size();
408
409         return 0;
410 }
411
412 #elif defined(CONFIG_SANDBOX)
413
414 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
415 {
416         bd_t *bd = gd->bd;
417
418         print_bi_boot_params(bd);
419         print_bi_dram(bd);
420         print_eth_ip_addr();
421
422 #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
423         print_num("FB base  ", gd->fb_base);
424 #endif
425         print_cpu_word_size();
426
427         return 0;
428 }
429
430 #elif defined(CONFIG_NDS32)
431
432 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
433 {
434         bd_t *bd = gd->bd;
435
436         print_num("arch_number",        bd->bi_arch_number);
437         print_bi_boot_params(bd);
438         print_bi_dram(bd);
439         print_eth_ip_addr();
440         print_baudrate();
441         print_cpu_word_size();
442
443         return 0;
444 }
445
446 #elif defined(CONFIG_RISCV)
447
448 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
449 {
450         bd_t *bd = gd->bd;
451
452         print_bi_boot_params(bd);
453         print_bi_dram(bd);
454         print_num("relocaddr", gd->relocaddr);
455         print_num("reloc off", gd->reloc_off);
456         print_eth_ip_addr();
457         print_baudrate();
458         print_cpu_word_size();
459
460         return 0;
461 }
462
463 #elif defined(CONFIG_ARC)
464
465 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
466 {
467         bd_t *bd = gd->bd;
468
469         print_bi_mem(bd);
470         print_eth_ip_addr();
471         print_baudrate();
472         print_cpu_word_size();
473
474         return 0;
475 }
476
477 #elif defined(CONFIG_XTENSA)
478
479 int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
480 {
481         print_std_bdinfo(gd->bd);
482         return 0;
483 }
484
485 #else
486  #error "a case for this architecture does not exist!"
487 #endif
488
489 /* -------------------------------------------------------------------- */
490
491 U_BOOT_CMD(
492         bdinfo, 1,      1,      do_bdinfo,
493         "print Board Info structure",
494         ""
495 );