]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bdinfo.c
Merge commit 'wd/master'
[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
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         int i;
156         bd_t *bd = gd->bd;
157
158         print_num ("mem start",         (ulong)bd->bi_memstart);
159         print_num ("mem size",          (ulong)bd->bi_memsize);
160         print_num ("flash start",       (ulong)bd->bi_flashstart);
161         print_num ("flash size",        (ulong)bd->bi_flashsize);
162         print_num ("flash offset",      (ulong)bd->bi_flashoffset);
163
164 #if defined(CFG_SRAM_BASE)
165         print_num ("sram start",        (ulong)bd->bi_sramstart);
166         print_num ("sram size",         (ulong)bd->bi_sramsize);
167 #endif
168
169 #if defined(CONFIG_CMD_NET)
170         puts ("ethaddr     =");
171         for (i=0; i<6; ++i) {
172                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
173         }
174         puts ("\nip_addr     = ");
175         print_IPaddr (bd->bi_ip_addr);
176 #endif
177
178         printf ("\nbaudrate    = %ld bps\n", bd->bi_baudrate);
179
180         return 0;
181 }
182 #elif defined(CONFIG_MICROBLAZE) /* ! PPC, which leaves Microblaze */
183
184 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
185 {
186         int i;
187         bd_t *bd = gd->bd;
188         print_num ("mem start      ",   (ulong)bd->bi_memstart);
189         print_num ("mem size       ",   (ulong)bd->bi_memsize);
190         print_num ("flash start    ",   (ulong)bd->bi_flashstart);
191         print_num ("flash size     ",   (ulong)bd->bi_flashsize);
192         print_num ("flash offset   ",   (ulong)bd->bi_flashoffset);
193 #if defined(CFG_SRAM_BASE)
194         print_num ("sram start     ",   (ulong)bd->bi_sramstart);
195         print_num ("sram size      ",   (ulong)bd->bi_sramsize);
196 #endif
197 #if defined(CONFIG_CMD_NET)
198         puts ("ethaddr     =");
199         for (i=0; i<6; ++i) {
200                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
201         }
202         puts ("\nip_addr     = ");
203         print_IPaddr (bd->bi_ip_addr);
204 #endif
205         printf ("\nbaudrate    = %d bps\n", (ulong)bd->bi_baudrate);
206         return 0;
207 }
208
209 #elif defined(CONFIG_M68K) /* M68K */
210 static void print_str(const char *, const char *);
211
212 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
213 {
214         int i;
215         bd_t *bd = gd->bd;
216         char buf[32];
217
218         print_num ("memstart",          (ulong)bd->bi_memstart);
219         print_num ("memsize",           (ulong)bd->bi_memsize);
220         print_num ("flashstart",        (ulong)bd->bi_flashstart);
221         print_num ("flashsize",         (ulong)bd->bi_flashsize);
222         print_num ("flashoffset",       (ulong)bd->bi_flashoffset);
223 #if defined(CFG_INIT_RAM_ADDR)
224         print_num ("sramstart",         (ulong)bd->bi_sramstart);
225         print_num ("sramsize",          (ulong)bd->bi_sramsize);
226 #endif
227 #if defined(CFG_MBAR)
228         print_num ("mbar",              bd->bi_mbar_base);
229 #endif
230         print_str ("busfreq",           strmhz(buf, bd->bi_busfreq));
231 #ifdef CONFIG_PCI
232         print_str ("pcifreq",           strmhz(buf, bd->bi_pcifreq));
233 #endif
234 #ifdef CONFIG_EXTRA_CLOCK
235         print_str ("flbfreq",           strmhz(buf, bd->bi_flbfreq));
236         print_str ("inpfreq",           strmhz(buf, bd->bi_inpfreq));
237         print_str ("vcofreq",           strmhz(buf, bd->bi_vcofreq));
238 #endif
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
245 #if defined(CONFIG_HAS_ETH1)
246         puts ("\neth1addr    =");
247         for (i=0; i<6; ++i) {
248                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
249         }
250 #endif
251
252 #if defined(CONFIG_HAS_ETH2)
253         puts ("\neth2addr    =");
254         for (i=0; i<6; ++i) {
255                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
256         }
257 #endif
258
259 #if defined(CONFIG_HAS_ETH3)
260         puts ("\neth3addr    =");
261         for (i=0; i<6; ++i) {
262                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
263         }
264 #endif
265
266         puts ("\nip_addr     = ");
267         print_IPaddr (bd->bi_ip_addr);
268 #endif
269         printf ("\nbaudrate    = %d bps\n", bd->bi_baudrate);
270
271         return 0;
272 }
273
274 #else /* ! PPC, which leaves MIPS */
275
276 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
277 {
278         int i;
279         bd_t *bd = gd->bd;
280
281         print_num ("boot_params",       (ulong)bd->bi_boot_params);
282         print_num ("memstart",          (ulong)bd->bi_memstart);
283         print_num ("memsize",           (ulong)bd->bi_memsize);
284         print_num ("flashstart",        (ulong)bd->bi_flashstart);
285         print_num ("flashsize",         (ulong)bd->bi_flashsize);
286         print_num ("flashoffset",       (ulong)bd->bi_flashoffset);
287
288         puts ("ethaddr     =");
289         for (i=0; i<6; ++i) {
290                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
291         }
292         puts ("\nip_addr     = ");
293         print_IPaddr (bd->bi_ip_addr);
294         printf ("\nbaudrate    = %d bps\n", bd->bi_baudrate);
295
296         return 0;
297 }
298 #endif  /* MIPS */
299
300 #else   /* ARM */
301
302 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
303 {
304         int i;
305         bd_t *bd = gd->bd;
306
307         print_num ("arch_number",       bd->bi_arch_number);
308         print_num ("env_t",             (ulong)bd->bi_env);
309         print_num ("boot_params",       (ulong)bd->bi_boot_params);
310
311         for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
312                 print_num("DRAM bank",  i);
313                 print_num("-> start",   bd->bi_dram[i].start);
314                 print_num("-> size",    bd->bi_dram[i].size);
315         }
316
317         puts ("ethaddr     =");
318         for (i=0; i<6; ++i) {
319                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
320         }
321         puts  ( "\n"
322                 "ip_addr     = ");
323         print_IPaddr (bd->bi_ip_addr);
324         printf ("\n"
325                 "baudrate    = %d bps\n", bd->bi_baudrate);
326
327         return 0;
328 }
329
330 #endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
331
332 static void print_num(const char *name, ulong value)
333 {
334         printf ("%-12s= 0x%08lX\n", name, value);
335 }
336
337 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
338 static void print_str(const char *name, const char *str)
339 {
340         printf ("%-12s= %6s MHz\n", name, str);
341 }
342 #endif  /* CONFIG_PPC */
343
344
345 /* -------------------------------------------------------------------- */
346
347 U_BOOT_CMD(
348         bdinfo, 1,      1,      do_bdinfo,
349         "bdinfo  - print Board Info structure\n",
350         NULL
351 );