3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
29 #include <net.h> /* for print_IPaddr */
31 DECLARE_GLOBAL_DATA_PTR;
33 static void print_num(const char *, ulong);
35 #ifndef CONFIG_ARM /* PowerPC and other */
36 static void print_lnum(const char *, u64);
39 static void print_str(const char *, const char *);
41 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
48 print_num ("bd address", (ulong)bd );
50 print_num ("memstart", bd->bi_memstart );
51 print_lnum ("memsize", bd->bi_memsize );
52 print_num ("flashstart", bd->bi_flashstart );
53 print_num ("flashsize", bd->bi_flashsize );
54 print_num ("flashoffset", bd->bi_flashoffset );
55 print_num ("sramstart", bd->bi_sramstart );
56 print_num ("sramsize", bd->bi_sramsize );
57 #if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
58 defined(CONFIG_8260) || defined(CONFIG_E500)
59 print_num ("immr_base", bd->bi_immr_base );
61 print_num ("bootflags", bd->bi_bootflags );
62 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
63 defined(CONFIG_405EP) || defined(CONFIG_XILINX_405) || \
64 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
65 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
66 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
67 print_str ("procfreq", strmhz(buf, bd->bi_procfreq));
68 print_str ("plb_busfreq", strmhz(buf, bd->bi_plb_busfreq));
69 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_405) || \
70 defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SPE) || \
71 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
72 print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq));
74 #else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
75 #if defined(CONFIG_CPM2)
76 print_str ("vco", strmhz(buf, bd->bi_vco));
77 print_str ("sccfreq", strmhz(buf, bd->bi_sccfreq));
78 print_str ("brgfreq", strmhz(buf, bd->bi_brgfreq));
80 print_str ("intfreq", strmhz(buf, bd->bi_intfreq));
81 #if defined(CONFIG_CPM2)
82 print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq));
84 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
85 #endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
86 #if defined(CONFIG_MPC8220)
87 print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq));
88 print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq));
89 print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq));
90 print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq));
91 print_str ("pevfreq", strmhz(buf, bd->bi_pevfreq));
96 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
99 #if defined(CONFIG_HAS_ETH1)
100 puts ("\neth1addr =");
101 for (i=0; i<6; ++i) {
102 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
106 #if defined(CONFIG_HAS_ETH2)
107 puts ("\neth2addr =");
108 for (i=0; i<6; ++i) {
109 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
113 #if defined(CONFIG_HAS_ETH3)
114 puts ("\neth3addr =");
115 for (i=0; i<6; ++i) {
116 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
120 #if defined(CONFIG_HAS_ETH4)
121 puts ("\neth4addr =");
122 for (i=0; i<6; ++i) {
123 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet4addr[i]);
127 #if defined(CONFIG_HAS_ETH5)
128 puts ("\neth5addr =");
129 for (i=0; i<6; ++i) {
130 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet5addr[i]);
135 print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed));
137 puts ("\nIP addr = "); print_IPaddr (bd->bi_ip_addr);
138 printf ("\nbaudrate = %6ld bps\n", bd->bi_baudrate );
142 #elif defined(CONFIG_NIOS) /* NIOS*/
144 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
149 print_num ("memstart", (ulong)bd->bi_memstart);
150 print_lnum ("memsize", (u64)bd->bi_memsize);
151 print_num ("flashstart", (ulong)bd->bi_flashstart);
152 print_num ("flashsize", (ulong)bd->bi_flashsize);
153 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
156 for (i=0; i<6; ++i) {
157 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
159 puts ("\nip_addr = ");
160 print_IPaddr (bd->bi_ip_addr);
161 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
166 #elif defined(CONFIG_NIOS2) /* Nios-II */
168 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
170 #if defined(CONFIG_CMD_NET)
175 print_num ("mem start", (ulong)bd->bi_memstart);
176 print_lnum ("mem size", (u64)bd->bi_memsize);
177 print_num ("flash start", (ulong)bd->bi_flashstart);
178 print_num ("flash size", (ulong)bd->bi_flashsize);
179 print_num ("flash offset", (ulong)bd->bi_flashoffset);
181 #if defined(CONFIG_SYS_SRAM_BASE)
182 print_num ("sram start", (ulong)bd->bi_sramstart);
183 print_num ("sram size", (ulong)bd->bi_sramsize);
186 #if defined(CONFIG_CMD_NET)
188 for (i=0; i<6; ++i) {
189 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
191 puts ("\nip_addr = ");
192 print_IPaddr (bd->bi_ip_addr);
195 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
199 #elif defined(CONFIG_MICROBLAZE) /* ! PPC, which leaves Microblaze */
201 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
205 print_num ("mem start ", (ulong)bd->bi_memstart);
206 print_lnum ("mem size ", (u64)bd->bi_memsize);
207 print_num ("flash start ", (ulong)bd->bi_flashstart);
208 print_num ("flash size ", (ulong)bd->bi_flashsize);
209 print_num ("flash offset ", (ulong)bd->bi_flashoffset);
210 #if defined(CONFIG_SYS_SRAM_BASE)
211 print_num ("sram start ", (ulong)bd->bi_sramstart);
212 print_num ("sram size ", (ulong)bd->bi_sramsize);
214 #if defined(CONFIG_CMD_NET)
216 for (i=0; i<6; ++i) {
217 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
219 puts ("\nip_addr = ");
220 print_IPaddr (bd->bi_ip_addr);
222 printf ("\nbaudrate = %ld bps\n", (ulong)bd->bi_baudrate);
226 #elif defined(CONFIG_SPARC) /* SPARC */
227 int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
230 #if defined(CONFIG_CMD_NET)
235 print_num("bd address ", (ulong) bd);
237 print_num("memstart ", bd->bi_memstart);
238 print_lnum("memsize ", bd->bi_memsize);
239 print_num("flashstart ", bd->bi_flashstart);
240 print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE);
241 print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR);
242 printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%lx (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE,
243 CONFIG_SYS_MONITOR_LEN);
244 printf("CONFIG_SYS_MALLOC_BASE = 0x%lx (%d)\n", CONFIG_SYS_MALLOC_BASE,
245 CONFIG_SYS_MALLOC_LEN);
246 printf("CONFIG_SYS_INIT_SP_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_INIT_SP_OFFSET,
247 CONFIG_SYS_STACK_SIZE);
248 printf("CONFIG_SYS_PROM_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_PROM_OFFSET,
249 CONFIG_SYS_PROM_SIZE);
250 printf("CONFIG_SYS_GBL_DATA_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET,
251 CONFIG_SYS_GBL_DATA_SIZE);
253 #if defined(CONFIG_CMD_NET)
255 for (i = 0; i < 6; ++i) {
256 printf("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
258 puts("\nIP addr = ");
259 print_IPaddr(bd->bi_ip_addr);
261 printf("\nbaudrate = %6ld bps\n", bd->bi_baudrate);
265 #elif defined(CONFIG_M68K) /* M68K */
266 static void print_str(const char *, const char *);
268 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
274 print_num ("memstart", (ulong)bd->bi_memstart);
275 print_lnum ("memsize", (u64)bd->bi_memsize);
276 print_num ("flashstart", (ulong)bd->bi_flashstart);
277 print_num ("flashsize", (ulong)bd->bi_flashsize);
278 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
279 #if defined(CONFIG_SYS_INIT_RAM_ADDR)
280 print_num ("sramstart", (ulong)bd->bi_sramstart);
281 print_num ("sramsize", (ulong)bd->bi_sramsize);
283 #if defined(CONFIG_SYS_MBAR)
284 print_num ("mbar", bd->bi_mbar_base);
286 print_str ("cpufreq", strmhz(buf, bd->bi_intfreq));
287 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
289 print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq));
291 #ifdef CONFIG_EXTRA_CLOCK
292 print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq));
293 print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq));
294 print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq));
296 #if defined(CONFIG_CMD_NET)
298 for (i=0; i<6; ++i) {
299 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
302 #if defined(CONFIG_HAS_ETH1)
303 puts ("\neth1addr =");
304 for (i=0; i<6; ++i) {
305 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
309 #if defined(CONFIG_HAS_ETH2)
310 puts ("\neth2addr =");
311 for (i=0; i<6; ++i) {
312 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
316 #if defined(CONFIG_HAS_ETH3)
317 puts ("\neth3addr =");
318 for (i=0; i<6; ++i) {
319 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
323 puts ("\nip_addr = ");
324 print_IPaddr (bd->bi_ip_addr);
326 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
331 #elif defined(CONFIG_BLACKFIN)
332 static void print_str(const char *, const char *);
334 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
340 printf("U-Boot = %s\n", bd->bi_r_version);
341 printf("CPU = %s\n", bd->bi_cpu);
342 printf("Board = %s\n", bd->bi_board_name);
343 print_str("VCO", strmhz(buf, bd->bi_vco));
344 print_str("CCLK", strmhz(buf, bd->bi_cclk));
345 print_str("SCLK", strmhz(buf, bd->bi_sclk));
347 print_num("boot_params", (ulong)bd->bi_boot_params);
348 print_num("memstart", (ulong)bd->bi_memstart);
349 print_lnum("memsize", (u64)bd->bi_memsize);
350 print_num("flashstart", (ulong)bd->bi_flashstart);
351 print_num("flashsize", (ulong)bd->bi_flashsize);
352 print_num("flashoffset", (ulong)bd->bi_flashoffset);
355 for (i = 0; i < 6; ++i)
356 printf("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
357 puts("\nip_addr = ");
358 print_IPaddr(bd->bi_ip_addr);
359 printf("\nbaudrate = %d bps\n", bd->bi_baudrate);
364 #else /* ! PPC, which leaves MIPS */
366 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
371 print_num ("boot_params", (ulong)bd->bi_boot_params);
372 print_num ("memstart", (ulong)bd->bi_memstart);
373 print_lnum ("memsize", (u64)bd->bi_memsize);
374 print_num ("flashstart", (ulong)bd->bi_flashstart);
375 print_num ("flashsize", (ulong)bd->bi_flashsize);
376 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
379 for (i=0; i<6; ++i) {
380 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
382 puts ("\nip_addr = ");
383 print_IPaddr (bd->bi_ip_addr);
384 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
392 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
397 print_num ("arch_number", bd->bi_arch_number);
398 print_num ("env_t", (ulong)bd->bi_env);
399 print_num ("boot_params", (ulong)bd->bi_boot_params);
401 for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
402 print_num("DRAM bank", i);
403 print_num("-> start", bd->bi_dram[i].start);
404 print_num("-> size", bd->bi_dram[i].size);
407 #if defined(CONFIG_CMD_NET)
409 for (i=0; i<6; ++i) {
410 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
414 print_IPaddr (bd->bi_ip_addr);
417 "baudrate = %d bps\n", bd->bi_baudrate);
422 #endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
424 static void print_num(const char *name, ulong value)
426 printf ("%-12s= 0x%08lX\n", name, value);
430 static void print_lnum(const char *name, u64 value)
432 printf ("%-12s= 0x%.8llX\n", name, value);
436 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_BLACKFIN)
437 static void print_str(const char *name, const char *str)
439 printf ("%-12s= %6s MHz\n", name, str);
441 #endif /* CONFIG_PPC */
444 /* -------------------------------------------------------------------- */
447 bdinfo, 1, 1, do_bdinfo,
448 "print Board Info structure",