]> Git Repo - J-u-boot.git/blame - cmd/bdinfo.c
bdinfo: sh: Use the generic bd command
[J-u-boot.git] / cmd / bdinfo.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
8bde7f77
WD
2/*
3 * (C) Copyright 2003
4 * Wolfgang Denk, DENX Software Engineering, [email protected].
8bde7f77
WD
5 */
6
7/*
8 * Boot support
9 */
10#include <common.h>
11#include <command.h>
7b51b576 12#include <env.h>
90526e9f 13#include <net.h>
2189d5f1 14#include <vsprintf.h>
90526e9f 15#include <asm/cache.h>
d88af4da 16#include <linux/compiler.h>
8bde7f77 17
d87080b7 18DECLARE_GLOBAL_DATA_PTR;
8bde7f77 19
8d99d543
SG
20__maybe_unused void print_cpu_word_size(void)
21{
22 printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8);
23}
24
d88af4da
MF
25__maybe_unused
26static void print_num(const char *name, ulong value)
27{
95187bb7 28 printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
d88af4da 29}
8bde7f77 30
5f3dfadc 31__maybe_unused
d88af4da
MF
32static 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");
00caae6d 39 val = env_get(name);
d88af4da
MF
40 if (!val)
41 val = "(not set)";
42 printf("%-12s= %s\n", name, val);
43}
de2dff6f 44
05c3e68f 45#ifndef CONFIG_DM_ETH
9fc6a06a
MS
46__maybe_unused
47static 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());
00caae6d 62 printf("ip_addr = %s\n", env_get("ipaddr"));
9fc6a06a 63}
05c3e68f 64#endif
9fc6a06a 65
d88af4da 66__maybe_unused
47708457 67static void print_lnum(const char *name, unsigned long long value)
d88af4da
MF
68{
69 printf("%-12s= 0x%.8llX\n", name, value);
70}
71
72__maybe_unused
73static 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}
8bde7f77 79
171e5396
MF
80
81static inline void print_bi_boot_params(const bd_t *bd)
82{
83 print_num("boot_params", (ulong)bd->bi_boot_params);
84}
85
12feb364
MF
86static 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);
12feb364
MF
94#else
95 print_num("memstart", (ulong)bd->bi_memstart);
96 print_lnum("memsize", (u64)bd->bi_memsize);
97#endif
98}
99
fd60e99f
MF
100static 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) {
ddd917b8
SG
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 }
fd60e99f
MF
111 }
112#endif
113}
114
f80e5359
MF
115static 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
70cc0c34 122#elif defined(CONFIG_NIOS2)
f80e5359
MF
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
8752e260
MF
133static 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
00caae6d 152 printf("IP addr = %s\n", env_get("ipaddr"));
8752e260
MF
153#endif
154}
155
4e3fa7d8
MF
156static inline void print_baudrate(void)
157{
158#if defined(CONFIG_PPC)
159 printf("baudrate = %6u bps\n", gd->baudrate);
4e3fa7d8
MF
160#else
161 printf("baudrate = %u bps\n", gd->baudrate);
162#endif
163}
164
b37483c4 165static inline void __maybe_unused print_std_bdinfo(const bd_t *bd)
e3795084
MF
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
c99ea790 174#if defined(CONFIG_PPC)
e7939464
YS
175void __weak board_detail(void)
176{
7b07a20c 177 /* Please define board_detail() for your platform */
e7939464 178}
8bde7f77 179
09140113 180int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
8bde7f77 181{
8bde7f77 182 bd_t *bd = gd->bd;
8bde7f77
WD
183
184#ifdef DEBUG
5902e8f7
ML
185 print_num("bd address", (ulong)bd);
186#endif
12feb364 187 print_bi_mem(bd);
f80e5359 188 print_bi_flash(bd);
5902e8f7
ML
189 print_num("sramstart", bd->bi_sramstart);
190 print_num("sramsize", bd->bi_sramsize);
ee1e600c 191#if defined(CONFIG_MPC8xx) || defined(CONFIG_E500)
5902e8f7
ML
192 print_num("immr_base", bd->bi_immr_base);
193#endif
194 print_num("bootflags", bd->bi_bootflags);
9c4c5ae3 195#if defined(CONFIG_CPM2)
0c277ef9
TT
196 print_mhz("vco", bd->bi_vco);
197 print_mhz("sccfreq", bd->bi_sccfreq);
198 print_mhz("brgfreq", bd->bi_brgfreq);
8bde7f77 199#endif
0c277ef9 200 print_mhz("intfreq", bd->bi_intfreq);
9c4c5ae3 201#if defined(CONFIG_CPM2)
0c277ef9 202 print_mhz("cpmfreq", bd->bi_cpmfreq);
8bde7f77 203#endif
0c277ef9 204 print_mhz("busfreq", bd->bi_busfreq);
03f5c550 205
34e210f5
TT
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
8752e260 214 print_eth_ip_addr();
4e3fa7d8 215 print_baudrate();
5902e8f7 216 print_num("relocaddr", gd->relocaddr);
e7939464 217 board_detail();
8d99d543
SG
218 print_cpu_word_size();
219
8bde7f77
WD
220 return 0;
221}
222
c99ea790 223#elif defined(CONFIG_NIOS2)
5c952cf0 224
08c56d19 225#define USE_GENERIC
c99ea790
RM
226
227#elif defined(CONFIG_MICROBLAZE)
cfc67116 228
271db508 229#define USE_GENERIC
4a551709 230
c99ea790
RM
231#elif defined(CONFIG_M68K)
232
09140113 233int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
8e585f02 234{
8e585f02 235 bd_t *bd = gd->bd;
8ae158cd 236
12feb364 237 print_bi_mem(bd);
f80e5359 238 print_bi_flash(bd);
6d0f6bcf 239#if defined(CONFIG_SYS_INIT_RAM_ADDR)
5902e8f7
ML
240 print_num("sramstart", (ulong)bd->bi_sramstart);
241 print_num("sramsize", (ulong)bd->bi_sramsize);
8e585f02 242#endif
6d0f6bcf 243#if defined(CONFIG_SYS_MBAR)
5902e8f7 244 print_num("mbar", bd->bi_mbar_base);
8e585f02 245#endif
0c277ef9
TT
246 print_mhz("cpufreq", bd->bi_intfreq);
247 print_mhz("busfreq", bd->bi_busfreq);
8ae158cd 248#ifdef CONFIG_PCI
0c277ef9 249 print_mhz("pcifreq", bd->bi_pcifreq);
8ae158cd
TL
250#endif
251#ifdef CONFIG_EXTRA_CLOCK
0c277ef9
TT
252 print_mhz("flbfreq", bd->bi_flbfreq);
253 print_mhz("inpfreq", bd->bi_inpfreq);
254 print_mhz("vcofreq", bd->bi_vcofreq);
8ae158cd 255#endif
8752e260 256 print_eth_ip_addr();
4e3fa7d8 257 print_baudrate();
8d99d543 258 print_cpu_word_size();
8e585f02
TL
259
260 return 0;
261}
262
c99ea790 263#elif defined(CONFIG_MIPS)
8bde7f77 264
df529b5a 265#define USE_GENERIC
8bde7f77 266
c99ea790 267#elif defined(CONFIG_ARM)
8bde7f77 268
09140113
SG
269static int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
270 char *const argv[])
8bde7f77 271{
8bde7f77
WD
272 bd_t *bd = gd->bd;
273
5902e8f7 274 print_num("arch_number", bd->bi_arch_number);
171e5396 275 print_bi_boot_params(bd);
fd60e99f 276 print_bi_dram(bd);
8bde7f77 277
e8149522 278#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
e61a7534 279 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) {
e8149522 280 print_num("Secure ram",
e61a7534 281 gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
e8149522
YS
282 }
283#endif
f2ccf7f7
YS
284#ifdef CONFIG_RESV_RAM
285 if (gd->arch.resv_ram)
286 print_num("Reserved ram", gd->arch.resv_ram);
287#endif
ff973800 288#if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
9fc6a06a 289 print_eths();
a41dbbd9 290#endif
4e3fa7d8 291 print_baudrate();
10015025 292#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
34fd5d25 293 print_num("TLB addr", gd->arch.tlb_addr);
f1d2b313 294#endif
5902e8f7
ML
295 print_num("relocaddr", gd->relocaddr);
296 print_num("reloc off", gd->reloc_off);
297 print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
298 print_num("sp start ", gd->start_addr_sp);
5a760f61 299#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO)
5902e8f7 300 print_num("FB base ", gd->fb_base);
c8fcd0f2 301#endif
8f5d4687
HM
302 /*
303 * TODO: Currently only support for davinci SOC's is added.
304 * Remove this check once all the board implement this.
305 */
306#ifdef CONFIG_CLOCKS
307 printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
308 printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
309 printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
7bb7d672
HS
310#endif
311#ifdef CONFIG_BOARD_TYPES
312 printf("Board Type = %ld\n", gd->board_type);
8f5d4687 313#endif
f1896c45 314#if CONFIG_VAL(SYS_MALLOC_F_LEN)
7f7ddf2a 315 printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
f1896c45 316 CONFIG_VAL(SYS_MALLOC_F_LEN));
8ad0c664
HS
317#endif
318#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
319 print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
7f7ddf2a 320#endif
53539533 321 if (gd->fdt_blob)
95187bb7 322 print_num("fdt_blob", (ulong)gd->fdt_blob);
8d99d543 323 print_cpu_word_size();
7f7ddf2a 324
8bde7f77
WD
325 return 0;
326}
327
ebd0d062
NI
328#elif defined(CONFIG_SH)
329
f41b830f 330#define USE_GENERIC
ebd0d062 331
a806ee6f
GR
332#elif defined(CONFIG_X86)
333
09140113 334int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
a806ee6f 335{
a806ee6f 336 bd_t *bd = gd->bd;
a806ee6f 337
171e5396 338 print_bi_boot_params(bd);
5902e8f7 339
fd60e99f 340 print_bi_dram(bd);
a806ee6f 341
ca92ad4f
HS
342 print_num("relocaddr", gd->relocaddr);
343 print_num("reloc off", gd->reloc_off);
a806ee6f 344#if defined(CONFIG_CMD_NET)
8752e260 345 print_eth_ip_addr();
0c277ef9 346 print_mhz("ethspeed", bd->bi_ethspeed);
a806ee6f 347#endif
4e3fa7d8 348 print_baudrate();
8d99d543 349 print_cpu_word_size();
a806ee6f
GR
350
351 return 0;
352}
353
6fcc3be4
SG
354#elif defined(CONFIG_SANDBOX)
355
09140113 356int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
6fcc3be4 357{
6fcc3be4
SG
358 bd_t *bd = gd->bd;
359
171e5396 360 print_bi_boot_params(bd);
fd60e99f 361 print_bi_dram(bd);
8752e260 362 print_eth_ip_addr();
6fcc3be4 363
c8fcd0f2 364#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
6fcc3be4 365 print_num("FB base ", gd->fb_base);
c8fcd0f2 366#endif
8d99d543
SG
367 print_cpu_word_size();
368
6fcc3be4
SG
369 return 0;
370}
371
64d61461
ML
372#elif defined(CONFIG_NDS32)
373
09140113 374int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
64d61461 375{
64d61461
ML
376 bd_t *bd = gd->bd;
377
378 print_num("arch_number", bd->bi_arch_number);
171e5396 379 print_bi_boot_params(bd);
fd60e99f 380 print_bi_dram(bd);
8752e260 381 print_eth_ip_addr();
4e3fa7d8 382 print_baudrate();
8d99d543 383 print_cpu_word_size();
64d61461
ML
384
385 return 0;
386}
387
068feb9b
RC
388#elif defined(CONFIG_RISCV)
389
09140113 390int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
068feb9b
RC
391{
392 bd_t *bd = gd->bd;
393
068feb9b
RC
394 print_bi_boot_params(bd);
395 print_bi_dram(bd);
058b77a9
BM
396 print_num("relocaddr", gd->relocaddr);
397 print_num("reloc off", gd->reloc_off);
068feb9b
RC
398 print_eth_ip_addr();
399 print_baudrate();
8d99d543 400 print_cpu_word_size();
068feb9b
RC
401
402 return 0;
403}
404
946f6f24 405#elif defined(CONFIG_ARC)
bc5d5428 406
09140113 407int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
bc5d5428
AB
408{
409 bd_t *bd = gd->bd;
410
12feb364 411 print_bi_mem(bd);
8752e260 412 print_eth_ip_addr();
4e3fa7d8 413 print_baudrate();
8d99d543 414 print_cpu_word_size();
bc5d5428
AB
415
416 return 0;
417}
418
de5e5cea
CZ
419#elif defined(CONFIG_XTENSA)
420
1af9756d
SG
421#define USE_GENERIC
422
423#else
424 #error "a case for this architecture does not exist!"
425#endif
426
427/* Temporary check for archs that use generic bdinfo. Eventually all will */
428#ifdef USE_GENERIC
09140113 429int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
de5e5cea
CZ
430{
431 print_std_bdinfo(gd->bd);
df529b5a
SG
432 print_num("relocaddr", gd->relocaddr);
433 print_num("reloc off", gd->reloc_off);
434 print_cpu_word_size();
271db508
SG
435#if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
436 print_eths();
437#endif
438 print_num("fdt_blob", (ulong)gd->fdt_blob);
439 print_num("new_fdt", (ulong)gd->new_fdt);
440 print_num("fdt_size", (ulong)gd->fdt_size);
1af9756d 441
de5e5cea
CZ
442 return 0;
443}
c99ea790 444#endif
8bde7f77 445
8bde7f77
WD
446/* -------------------------------------------------------------------- */
447
0d498393
WD
448U_BOOT_CMD(
449 bdinfo, 1, 1, do_bdinfo,
2fb2604d 450 "print Board Info structure",
a89c33db 451 ""
8bde7f77 452);
This page took 0.605874 seconds and 4 git commands to generate.