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