]> git.ipfire.org Git - people/ms/u-boot.git/blob - common/cmd_bdinfo.c
Merge branch 'master' of git://www.denx.de/git/u-boot-mpc83xx
[people/ms/u-boot.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 <net.h> /* for print_IPaddr */
30
31 DECLARE_GLOBAL_DATA_PTR;
32
33 static void print_num(const char *, ulong);
34
35 #ifndef CONFIG_ARM /* PowerPC and other */
36
37 #ifdef CONFIG_PPC
38 static void print_str(const char *, const char *);
39
40 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
41 {
42 int i;
43 bd_t *bd = gd->bd;
44 char buf[32];
45
46 #ifdef DEBUG
47 print_num ("bd address", (ulong)bd );
48 #endif
49 print_num ("memstart", bd->bi_memstart );
50 print_num ("memsize", bd->bi_memsize );
51 print_num ("flashstart", bd->bi_flashstart );
52 print_num ("flashsize", bd->bi_flashsize );
53 print_num ("flashoffset", bd->bi_flashoffset );
54 print_num ("sramstart", bd->bi_sramstart );
55 print_num ("sramsize", bd->bi_sramsize );
56 #if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
57 defined(CONFIG_8260) || defined(CONFIG_E500)
58 print_num ("immr_base", bd->bi_immr_base );
59 #endif
60 print_num ("bootflags", bd->bi_bootflags );
61 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
62 defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \
63 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
64 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
65 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
66 print_str ("procfreq", strmhz(buf, bd->bi_procfreq));
67 print_str ("plb_busfreq", strmhz(buf, bd->bi_plb_busfreq));
68 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \
69 defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SPE) || \
70 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
71 print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq));
72 #endif
73 #else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
74 #if defined(CONFIG_CPM2)
75 print_str ("vco", strmhz(buf, bd->bi_vco));
76 print_str ("sccfreq", strmhz(buf, bd->bi_sccfreq));
77 print_str ("brgfreq", strmhz(buf, bd->bi_brgfreq));
78 #endif
79 print_str ("intfreq", strmhz(buf, bd->bi_intfreq));
80 #if defined(CONFIG_CPM2)
81 print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq));
82 #endif
83 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
84 #endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
85 #if defined(CONFIG_MPC8220)
86 print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq));
87 print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq));
88 print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq));
89 print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq));
90 print_str ("pevfreq", strmhz(buf, bd->bi_pevfreq));
91 #endif
92
93 puts ("ethaddr =");
94 for (i=0; i<6; ++i) {
95 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
96 }
97
98 #if defined(CONFIG_HAS_ETH1)
99 puts ("\neth1addr =");
100 for (i=0; i<6; ++i) {
101 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
102 }
103 #endif
104
105 #if defined(CONFIG_HAS_ETH2)
106 puts ("\neth2addr =");
107 for (i=0; i<6; ++i) {
108 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
109 }
110 #endif
111
112 #if defined(CONFIG_HAS_ETH3)
113 puts ("\neth3addr =");
114 for (i=0; i<6; ++i) {
115 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
116 }
117 #endif
118
119 #ifdef CONFIG_HERMES
120 print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed));
121 #endif
122 puts ("\nIP addr = "); print_IPaddr (bd->bi_ip_addr);
123 printf ("\nbaudrate = %6ld bps\n", bd->bi_baudrate );
124 return 0;
125 }
126
127 #elif defined(CONFIG_NIOS) /* NIOS*/
128
129 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
130 {
131 int i;
132 bd_t *bd = gd->bd;
133
134 print_num ("memstart", (ulong)bd->bi_memstart);
135 print_num ("memsize", (ulong)bd->bi_memsize);
136 print_num ("flashstart", (ulong)bd->bi_flashstart);
137 print_num ("flashsize", (ulong)bd->bi_flashsize);
138 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
139
140 puts ("ethaddr =");
141 for (i=0; i<6; ++i) {
142 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
143 }
144 puts ("\nip_addr = ");
145 print_IPaddr (bd->bi_ip_addr);
146 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
147
148 return 0;
149 }
150
151 #elif defined(CONFIG_NIOS2) /* Nios-II */
152
153 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
154 {
155 #if defined(CONFIG_CMD_NET)
156 int i;
157 #endif
158 bd_t *bd = gd->bd;
159
160 print_num ("mem start", (ulong)bd->bi_memstart);
161 print_num ("mem size", (ulong)bd->bi_memsize);
162 print_num ("flash start", (ulong)bd->bi_flashstart);
163 print_num ("flash size", (ulong)bd->bi_flashsize);
164 print_num ("flash offset", (ulong)bd->bi_flashoffset);
165
166 #if defined(CFG_SRAM_BASE)
167 print_num ("sram start", (ulong)bd->bi_sramstart);
168 print_num ("sram size", (ulong)bd->bi_sramsize);
169 #endif
170
171 #if defined(CONFIG_CMD_NET)
172 puts ("ethaddr =");
173 for (i=0; i<6; ++i) {
174 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
175 }
176 puts ("\nip_addr = ");
177 print_IPaddr (bd->bi_ip_addr);
178 #endif
179
180 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
181
182 return 0;
183 }
184 #elif defined(CONFIG_MICROBLAZE) /* ! PPC, which leaves Microblaze */
185
186 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
187 {
188 int i;
189 bd_t *bd = gd->bd;
190 print_num ("mem start ", (ulong)bd->bi_memstart);
191 print_num ("mem size ", (ulong)bd->bi_memsize);
192 print_num ("flash start ", (ulong)bd->bi_flashstart);
193 print_num ("flash size ", (ulong)bd->bi_flashsize);
194 print_num ("flash offset ", (ulong)bd->bi_flashoffset);
195 #if defined(CFG_SRAM_BASE)
196 print_num ("sram start ", (ulong)bd->bi_sramstart);
197 print_num ("sram size ", (ulong)bd->bi_sramsize);
198 #endif
199 #if defined(CONFIG_CMD_NET)
200 puts ("ethaddr =");
201 for (i=0; i<6; ++i) {
202 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
203 }
204 puts ("\nip_addr = ");
205 print_IPaddr (bd->bi_ip_addr);
206 #endif
207 printf ("\nbaudrate = %d bps\n", (ulong)bd->bi_baudrate);
208 return 0;
209 }
210
211 #elif defined(CONFIG_SPARC) /* SPARC */
212 int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
213 {
214 bd_t *bd = gd->bd;
215 #if defined(CONFIG_CMD_NET)
216 int i;
217 #endif
218
219 #ifdef DEBUG
220 print_num("bd address ", (ulong) bd);
221 #endif
222 print_num("memstart ", bd->bi_memstart);
223 print_num("memsize ", bd->bi_memsize);
224 print_num("flashstart ", bd->bi_flashstart);
225 print_num("CFG_MONITOR_BASE ", CFG_MONITOR_BASE);
226 print_num("CFG_ENV_ADDR ", CFG_ENV_ADDR);
227 printf("CFG_RELOC_MONITOR_BASE = 0x%lx (%d)\n", CFG_RELOC_MONITOR_BASE,
228 CFG_MONITOR_LEN);
229 printf("CFG_MALLOC_BASE = 0x%lx (%d)\n", CFG_MALLOC_BASE,
230 CFG_MALLOC_LEN);
231 printf("CFG_INIT_SP_OFFSET = 0x%lx (%d)\n", CFG_INIT_SP_OFFSET,
232 CFG_STACK_SIZE);
233 printf("CFG_PROM_OFFSET = 0x%lx (%d)\n", CFG_PROM_OFFSET,
234 CFG_PROM_SIZE);
235 printf("CFG_GBL_DATA_OFFSET = 0x%lx (%d)\n", CFG_GBL_DATA_OFFSET,
236 CFG_GBL_DATA_SIZE);
237
238 #if defined(CONFIG_CMD_NET)
239 puts("ethaddr =");
240 for (i = 0; i < 6; ++i) {
241 printf("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
242 }
243 puts("\nIP addr = ");
244 print_IPaddr(bd->bi_ip_addr);
245 #endif
246 printf("\nbaudrate = %6ld bps\n", bd->bi_baudrate);
247 return 0;
248 }
249
250 #elif defined(CONFIG_M68K) /* M68K */
251 static void print_str(const char *, const char *);
252
253 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
254 {
255 int i;
256 bd_t *bd = gd->bd;
257 char buf[32];
258
259 print_num ("memstart", (ulong)bd->bi_memstart);
260 print_num ("memsize", (ulong)bd->bi_memsize);
261 print_num ("flashstart", (ulong)bd->bi_flashstart);
262 print_num ("flashsize", (ulong)bd->bi_flashsize);
263 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
264 #if defined(CFG_INIT_RAM_ADDR)
265 print_num ("sramstart", (ulong)bd->bi_sramstart);
266 print_num ("sramsize", (ulong)bd->bi_sramsize);
267 #endif
268 #if defined(CFG_MBAR)
269 print_num ("mbar", bd->bi_mbar_base);
270 #endif
271 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
272 #ifdef CONFIG_PCI
273 print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq));
274 #endif
275 #ifdef CONFIG_EXTRA_CLOCK
276 print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq));
277 print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq));
278 print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq));
279 #endif
280 #if defined(CONFIG_CMD_NET)
281 puts ("ethaddr =");
282 for (i=0; i<6; ++i) {
283 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
284 }
285
286 #if defined(CONFIG_HAS_ETH1)
287 puts ("\neth1addr =");
288 for (i=0; i<6; ++i) {
289 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
290 }
291 #endif
292
293 #if defined(CONFIG_HAS_ETH2)
294 puts ("\neth2addr =");
295 for (i=0; i<6; ++i) {
296 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
297 }
298 #endif
299
300 #if defined(CONFIG_HAS_ETH3)
301 puts ("\neth3addr =");
302 for (i=0; i<6; ++i) {
303 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
304 }
305 #endif
306
307 puts ("\nip_addr = ");
308 print_IPaddr (bd->bi_ip_addr);
309 #endif
310 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
311
312 return 0;
313 }
314
315 #elif defined(CONFIG_BLACKFIN)
316
317 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
318 {
319 int i;
320 bd_t *bd = gd->bd;
321
322 printf("U-Boot = %s\n", bd->bi_r_version);
323 printf("CPU = %s\n", bd->bi_cpu);
324 printf("Board = %s\n", bd->bi_board_name);
325 printf("VCO = %lu MHz\n", bd->bi_vco / 1000000);
326 printf("CCLK = %lu MHz\n", bd->bi_cclk / 1000000);
327 printf("SCLK = %lu MHz\n", bd->bi_sclk / 1000000);
328
329 print_num("boot_params", (ulong)bd->bi_boot_params);
330 print_num("memstart", (ulong)bd->bi_memstart);
331 print_num("memsize", (ulong)bd->bi_memsize);
332 print_num("flashstart", (ulong)bd->bi_flashstart);
333 print_num("flashsize", (ulong)bd->bi_flashsize);
334 print_num("flashoffset", (ulong)bd->bi_flashoffset);
335
336 puts("ethaddr =");
337 for (i = 0; i < 6; ++i)
338 printf("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
339 puts("\nip_addr = ");
340 print_IPaddr(bd->bi_ip_addr);
341 printf("\nbaudrate = %d bps\n", bd->bi_baudrate);
342
343 return 0;
344 }
345
346 #else /* ! PPC, which leaves MIPS */
347
348 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
349 {
350 int i;
351 bd_t *bd = gd->bd;
352
353 print_num ("boot_params", (ulong)bd->bi_boot_params);
354 print_num ("memstart", (ulong)bd->bi_memstart);
355 print_num ("memsize", (ulong)bd->bi_memsize);
356 print_num ("flashstart", (ulong)bd->bi_flashstart);
357 print_num ("flashsize", (ulong)bd->bi_flashsize);
358 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
359
360 puts ("ethaddr =");
361 for (i=0; i<6; ++i) {
362 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
363 }
364 puts ("\nip_addr = ");
365 print_IPaddr (bd->bi_ip_addr);
366 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
367
368 return 0;
369 }
370 #endif /* MIPS */
371
372 #else /* ARM */
373
374 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
375 {
376 int i;
377 bd_t *bd = gd->bd;
378
379 print_num ("arch_number", bd->bi_arch_number);
380 print_num ("env_t", (ulong)bd->bi_env);
381 print_num ("boot_params", (ulong)bd->bi_boot_params);
382
383 for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
384 print_num("DRAM bank", i);
385 print_num("-> start", bd->bi_dram[i].start);
386 print_num("-> size", bd->bi_dram[i].size);
387 }
388
389 #if defined(CONFIG_CMD_NET)
390 puts ("ethaddr =");
391 for (i=0; i<6; ++i) {
392 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
393 }
394 puts ( "\n"
395 "ip_addr = ");
396 print_IPaddr (bd->bi_ip_addr);
397 #endif
398 printf ("\n"
399 "baudrate = %d bps\n", bd->bi_baudrate);
400
401 return 0;
402 }
403
404 #endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
405
406 static void print_num(const char *name, ulong value)
407 {
408 printf ("%-12s= 0x%08lX\n", name, value);
409 }
410
411 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
412 static void print_str(const char *name, const char *str)
413 {
414 printf ("%-12s= %6s MHz\n", name, str);
415 }
416 #endif /* CONFIG_PPC */
417
418
419 /* -------------------------------------------------------------------- */
420
421 U_BOOT_CMD(
422 bdinfo, 1, 1, do_bdinfo,
423 "bdinfo - print Board Info structure\n",
424 NULL
425 );