]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bdinfo.c
Merge branch 'staging'
[karo-tx-uboot.git] / common / cmd_bdinfo.c
1 /*
2  * (C) Copyright 2003
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 /*
25  * Boot support
26  */
27 #include <common.h>
28 #include <command.h>
29 #include <linux/compiler.h>
30
31 DECLARE_GLOBAL_DATA_PTR;
32
33 __maybe_unused
34 static void print_num(const char *name, ulong value)
35 {
36         printf("%-12s= 0x%08lX\n", name, value);
37 }
38
39 __maybe_unused
40 static void print_eth(int idx)
41 {
42         char name[10], *val;
43         if (idx)
44                 sprintf(name, "eth%iaddr", idx);
45         else
46                 strcpy(name, "ethaddr");
47         val = getenv(name);
48         if (!val)
49                 val = "(not set)";
50         printf("%-12s= %s\n", name, val);
51 }
52
53 __maybe_unused
54 static void print_lnum(const char *name, u64 value)
55 {
56         printf("%-12s= 0x%.8llX\n", name, value);
57 }
58
59 __maybe_unused
60 static void print_mhz(const char *name, unsigned long hz)
61 {
62         char buf[32];
63
64         printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
65 }
66
67 #if defined(CONFIG_PPC)
68
69 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
70 {
71         bd_t *bd = gd->bd;
72
73 #ifdef DEBUG
74         print_num("bd address",         (ulong)bd);
75 #endif
76         print_num("memstart",           bd->bi_memstart);
77         print_lnum("memsize",           bd->bi_memsize);
78         print_num("flashstart",         bd->bi_flashstart);
79         print_num("flashsize",          bd->bi_flashsize);
80         print_num("flashoffset",        bd->bi_flashoffset);
81         print_num("sramstart",          bd->bi_sramstart);
82         print_num("sramsize",           bd->bi_sramsize);
83 #if     defined(CONFIG_5xx)  || defined(CONFIG_8xx) || \
84         defined(CONFIG_8260) || defined(CONFIG_E500)
85         print_num("immr_base",          bd->bi_immr_base);
86 #endif
87         print_num("bootflags",          bd->bi_bootflags);
88 #if     defined(CONFIG_405CR) || defined(CONFIG_405EP) || \
89         defined(CONFIG_405GP) || \
90         defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
91         defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
92         defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
93         defined(CONFIG_XILINX_405)
94         print_mhz("procfreq",           bd->bi_procfreq);
95         print_mhz("plb_busfreq",        bd->bi_plb_busfreq);
96 #if     defined(CONFIG_405EP) || defined(CONFIG_405GP) || \
97         defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
98         defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
99         defined(CONFIG_440SPE) || defined(CONFIG_XILINX_405)
100         print_mhz("pci_busfreq",        bd->bi_pci_busfreq);
101 #endif
102 #else   /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
103 #if defined(CONFIG_CPM2)
104         print_mhz("vco",                bd->bi_vco);
105         print_mhz("sccfreq",            bd->bi_sccfreq);
106         print_mhz("brgfreq",            bd->bi_brgfreq);
107 #endif
108         print_mhz("intfreq",            bd->bi_intfreq);
109 #if defined(CONFIG_CPM2)
110         print_mhz("cpmfreq",            bd->bi_cpmfreq);
111 #endif
112         print_mhz("busfreq",            bd->bi_busfreq);
113 #endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
114 #if defined(CONFIG_MPC8220)
115         print_mhz("inpfreq",            bd->bi_inpfreq);
116         print_mhz("flbfreq",            bd->bi_flbfreq);
117         print_mhz("pcifreq",            bd->bi_pcifreq);
118         print_mhz("vcofreq",            bd->bi_vcofreq);
119         print_mhz("pevfreq",            bd->bi_pevfreq);
120 #endif
121
122         print_eth(0);
123 #if defined(CONFIG_HAS_ETH1)
124         print_eth(1);
125 #endif
126 #if defined(CONFIG_HAS_ETH2)
127         print_eth(2);
128 #endif
129 #if defined(CONFIG_HAS_ETH3)
130         print_eth(3);
131 #endif
132 #if defined(CONFIG_HAS_ETH4)
133         print_eth(4);
134 #endif
135 #if defined(CONFIG_HAS_ETH5)
136         print_eth(5);
137 #endif
138
139 #ifdef CONFIG_HERMES
140         print_mhz("ethspeed",           bd->bi_ethspeed);
141 #endif
142         printf("IP addr     = %pI4\n", &bd->bi_ip_addr);
143         printf("baudrate    = %6ld bps\n", bd->bi_baudrate);
144         print_num("relocaddr", gd->relocaddr);
145         return 0;
146 }
147
148 #elif defined(CONFIG_NIOS2)
149
150 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
151 {
152         bd_t *bd = gd->bd;
153
154         print_num("mem start",          (ulong)bd->bi_memstart);
155         print_lnum("mem size",          (u64)bd->bi_memsize);
156         print_num("flash start",        (ulong)bd->bi_flashstart);
157         print_num("flash size",         (ulong)bd->bi_flashsize);
158         print_num("flash offset",       (ulong)bd->bi_flashoffset);
159
160 #if defined(CONFIG_SYS_SRAM_BASE)
161         print_num ("sram start",        (ulong)bd->bi_sramstart);
162         print_num ("sram size",         (ulong)bd->bi_sramsize);
163 #endif
164
165 #if defined(CONFIG_CMD_NET)
166         print_eth(0);
167         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
168 #endif
169
170         printf("baudrate    = %ld bps\n", bd->bi_baudrate);
171
172         return 0;
173 }
174
175 #elif defined(CONFIG_MICROBLAZE)
176
177 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
178 {
179         bd_t *bd = gd->bd;
180         print_num("mem start      ",    (ulong)bd->bi_memstart);
181         print_lnum("mem size       ",   (u64)bd->bi_memsize);
182         print_num("flash start    ",    (ulong)bd->bi_flashstart);
183         print_num("flash size     ",    (ulong)bd->bi_flashsize);
184         print_num("flash offset   ",    (ulong)bd->bi_flashoffset);
185 #if defined(CONFIG_SYS_SRAM_BASE)
186         print_num("sram start     ",    (ulong)bd->bi_sramstart);
187         print_num("sram size      ",    (ulong)bd->bi_sramsize);
188 #endif
189 #if defined(CONFIG_CMD_NET)
190         print_eth(0);
191         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
192 #endif
193         printf("baudrate    = %ld bps\n", (ulong)bd->bi_baudrate);
194         return 0;
195 }
196
197 #elif defined(CONFIG_SPARC)
198
199 int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
200 {
201         bd_t *bd = gd->bd;
202
203 #ifdef DEBUG
204         print_num("bd address             ", (ulong) bd);
205 #endif
206         print_num("memstart               ", bd->bi_memstart);
207         print_lnum("memsize                ", bd->bi_memsize);
208         print_num("flashstart             ", bd->bi_flashstart);
209         print_num("CONFIG_SYS_MONITOR_BASE       ", CONFIG_SYS_MONITOR_BASE);
210         print_num("CONFIG_ENV_ADDR           ", CONFIG_ENV_ADDR);
211         printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%lx (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE,
212                CONFIG_SYS_MONITOR_LEN);
213         printf("CONFIG_SYS_MALLOC_BASE        = 0x%lx (%d)\n", CONFIG_SYS_MALLOC_BASE,
214                CONFIG_SYS_MALLOC_LEN);
215         printf("CONFIG_SYS_INIT_SP_OFFSET     = 0x%lx (%d)\n", CONFIG_SYS_INIT_SP_OFFSET,
216                CONFIG_SYS_STACK_SIZE);
217         printf("CONFIG_SYS_PROM_OFFSET        = 0x%lx (%d)\n", CONFIG_SYS_PROM_OFFSET,
218                CONFIG_SYS_PROM_SIZE);
219         printf("CONFIG_SYS_GBL_DATA_OFFSET    = 0x%lx (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET,
220                GENERATED_GBL_DATA_SIZE);
221
222 #if defined(CONFIG_CMD_NET)
223         print_eth(0);
224         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
225 #endif
226         printf("baudrate               = %6ld bps\n", bd->bi_baudrate);
227         return 0;
228 }
229
230 #elif defined(CONFIG_M68K)
231
232 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
233 {
234         bd_t *bd = gd->bd;
235
236         print_num("memstart",           (ulong)bd->bi_memstart);
237         print_lnum("memsize",           (u64)bd->bi_memsize);
238         print_num("flashstart",         (ulong)bd->bi_flashstart);
239         print_num("flashsize",          (ulong)bd->bi_flashsize);
240         print_num("flashoffset",        (ulong)bd->bi_flashoffset);
241 #if defined(CONFIG_SYS_INIT_RAM_ADDR)
242         print_num("sramstart",          (ulong)bd->bi_sramstart);
243         print_num("sramsize",           (ulong)bd->bi_sramsize);
244 #endif
245 #if defined(CONFIG_SYS_MBAR)
246         print_num("mbar",               bd->bi_mbar_base);
247 #endif
248         print_mhz("cpufreq",            bd->bi_intfreq);
249         print_mhz("busfreq",            bd->bi_busfreq);
250 #ifdef CONFIG_PCI
251         print_mhz("pcifreq",            bd->bi_pcifreq);
252 #endif
253 #ifdef CONFIG_EXTRA_CLOCK
254         print_mhz("flbfreq",            bd->bi_flbfreq);
255         print_mhz("inpfreq",            bd->bi_inpfreq);
256         print_mhz("vcofreq",            bd->bi_vcofreq);
257 #endif
258 #if defined(CONFIG_CMD_NET)
259         print_eth(0);
260 #if defined(CONFIG_HAS_ETH1)
261         print_eth(1);
262 #endif
263 #if defined(CONFIG_HAS_ETH2)
264         print_eth(2);
265 #endif
266 #if defined(CONFIG_HAS_ETH3)
267         print_eth(3);
268 #endif
269
270         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
271 #endif
272         printf("baudrate    = %ld bps\n", bd->bi_baudrate);
273
274         return 0;
275 }
276
277 #elif defined(CONFIG_BLACKFIN)
278
279 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
280 {
281         bd_t *bd = gd->bd;
282
283         printf("U-Boot      = %s\n", bd->bi_r_version);
284         printf("CPU         = %s\n", bd->bi_cpu);
285         printf("Board       = %s\n", bd->bi_board_name);
286         print_mhz("VCO",        bd->bi_vco);
287         print_mhz("CCLK",       bd->bi_cclk);
288         print_mhz("SCLK",       bd->bi_sclk);
289
290         print_num("boot_params",        (ulong)bd->bi_boot_params);
291         print_num("memstart",           (ulong)bd->bi_memstart);
292         print_lnum("memsize",           (u64)bd->bi_memsize);
293         print_num("flashstart",         (ulong)bd->bi_flashstart);
294         print_num("flashsize",          (ulong)bd->bi_flashsize);
295         print_num("flashoffset",        (ulong)bd->bi_flashoffset);
296
297         print_eth(0);
298         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
299         printf("baudrate    = %d bps\n", bd->bi_baudrate);
300
301         return 0;
302 }
303
304 #elif defined(CONFIG_MIPS)
305
306 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
307 {
308         bd_t *bd = gd->bd;
309
310         print_num("boot_params",        (ulong)bd->bi_boot_params);
311         print_num("memstart",           (ulong)bd->bi_memstart);
312         print_lnum("memsize",           (u64)bd->bi_memsize);
313         print_num("flashstart",         (ulong)bd->bi_flashstart);
314         print_num("flashsize",          (ulong)bd->bi_flashsize);
315         print_num("flashoffset",        (ulong)bd->bi_flashoffset);
316
317         print_eth(0);
318         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
319         printf("baudrate    = %d bps\n", bd->bi_baudrate);
320
321         return 0;
322 }
323
324 #elif defined(CONFIG_AVR32)
325
326 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
327 {
328         bd_t *bd = gd->bd;
329
330         print_num("boot_params",        (ulong)bd->bi_boot_params);
331         print_num("memstart",           (ulong)bd->bi_memstart);
332         print_lnum("memsize",           (u64)bd->bi_memsize);
333         print_num("flashstart",         (ulong)bd->bi_flashstart);
334         print_num("flashsize",          (ulong)bd->bi_flashsize);
335         print_num("flashoffset",        (ulong)bd->bi_flashoffset);
336
337         print_eth(0);
338         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
339         printf("baudrate    = %lu bps\n", bd->bi_baudrate);
340
341         return 0;
342 }
343
344 #elif defined(CONFIG_ARM)
345
346 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
347 {
348         int i;
349         bd_t *bd = gd->bd;
350
351         print_num("arch_number",        bd->bi_arch_number);
352         print_num("boot_params",        (ulong)bd->bi_boot_params);
353
354         for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
355                 print_num("DRAM bank",  i);
356                 print_num("-> start",   bd->bi_dram[i].start);
357                 print_num("-> size",    bd->bi_dram[i].size);
358         }
359
360 #if defined(CONFIG_CMD_NET)
361         print_eth(0);
362         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
363 #endif
364         printf("baudrate    = %d bps\n", bd->bi_baudrate);
365 #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
366         print_num("TLB addr", gd->tlb_addr);
367 #endif
368         print_num("relocaddr", gd->relocaddr);
369         print_num("reloc off", gd->reloc_off);
370         print_num("irq_sp", gd->irq_sp);        /* irq stack pointer */
371         print_num("sp start ", gd->start_addr_sp);
372         print_num("FB base  ", gd->fb_base);
373         return 0;
374 }
375
376 #elif defined(CONFIG_SH)
377
378 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
379 {
380         bd_t *bd = gd->bd;
381         print_num("mem start      ",    (ulong)bd->bi_memstart);
382         print_lnum("mem size       ",   (u64)bd->bi_memsize);
383         print_num("flash start    ",    (ulong)bd->bi_flashstart);
384         print_num("flash size     ",    (ulong)bd->bi_flashsize);
385         print_num("flash offset   ",    (ulong)bd->bi_flashoffset);
386
387 #if defined(CONFIG_CMD_NET)
388         print_eth(0);
389         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
390 #endif
391         printf("baudrate    = %ld bps\n", (ulong)bd->bi_baudrate);
392         return 0;
393 }
394
395 #elif defined(CONFIG_X86)
396
397 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
398 {
399         int i;
400         bd_t *bd = gd->bd;
401
402         print_num("boot_params",        (ulong)bd->bi_boot_params);
403         print_num("bi_memstart",        bd->bi_memstart);
404         print_num("bi_memsize",         bd->bi_memsize);
405         print_num("bi_flashstart",      bd->bi_flashstart);
406         print_num("bi_flashsize",       bd->bi_flashsize);
407         print_num("bi_flashoffset",     bd->bi_flashoffset);
408         print_num("bi_sramstart",       bd->bi_sramstart);
409         print_num("bi_sramsize",        bd->bi_sramsize);
410         print_num("bi_bootflags",       bd->bi_bootflags);
411         print_mhz("cpufreq",            bd->bi_intfreq);
412         print_mhz("busfreq",            bd->bi_busfreq);
413
414         for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
415                 print_num("DRAM bank",  i);
416                 print_num("-> start",   bd->bi_dram[i].start);
417                 print_num("-> size",    bd->bi_dram[i].size);
418         }
419
420 #if defined(CONFIG_CMD_NET)
421         print_eth(0);
422         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
423         print_mhz("ethspeed",       bd->bi_ethspeed);
424 #endif
425         printf("baudrate    = %d bps\n", bd->bi_baudrate);
426
427         return 0;
428 }
429
430 #elif defined(CONFIG_SANDBOX)
431
432 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
433 {
434         int i;
435         bd_t *bd = gd->bd;
436
437         print_num("boot_params", (ulong)bd->bi_boot_params);
438
439         for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
440                 print_num("DRAM bank", i);
441                 print_num("-> start", bd->bi_dram[i].start);
442                 print_num("-> size", bd->bi_dram[i].size);
443         }
444
445 #if defined(CONFIG_CMD_NET)
446         print_eth(0);
447         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
448 #endif
449         print_num("FB base  ", gd->fb_base);
450         return 0;
451 }
452
453 #elif defined(CONFIG_NDS32)
454
455 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
456 {
457         int i;
458         bd_t *bd = gd->bd;
459
460         print_num("arch_number",        bd->bi_arch_number);
461         print_num("boot_params",        (ulong)bd->bi_boot_params);
462
463         for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
464                 print_num("DRAM bank",  i);
465                 print_num("-> start",   bd->bi_dram[i].start);
466                 print_num("-> size",    bd->bi_dram[i].size);
467         }
468
469 #if defined(CONFIG_CMD_NET)
470         print_eth(0);
471         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
472 #endif
473         printf("baudrate    = %d bps\n", bd->bi_baudrate);
474
475         return 0;
476 }
477
478 #elif defined(CONFIG_OPENRISC)
479
480 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
481 {
482         bd_t *bd = gd->bd;
483
484         print_num("mem start",          (ulong)bd->bi_memstart);
485         print_lnum("mem size",          (u64)bd->bi_memsize);
486         print_num("flash start",        (ulong)bd->bi_flashstart);
487         print_num("flash size",         (ulong)bd->bi_flashsize);
488         print_num("flash offset",       (ulong)bd->bi_flashoffset);
489
490 #if defined(CONFIG_CMD_NET)
491         print_eth(0);
492         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
493 #endif
494
495         printf("baudrate    = %ld bps\n", bd->bi_baudrate);
496
497         return 0;
498 }
499
500 #else
501  #error "a case for this architecture does not exist!"
502 #endif
503
504 /* -------------------------------------------------------------------- */
505
506 U_BOOT_CMD(
507         bdinfo, 1,      1,      do_bdinfo,
508         "print Board Info structure",
509         ""
510 );