]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_bdinfo.c
ColdFire: Add M5253EVBE platform for MCF52x2
[people/ms/u-boot.git] / common / cmd_bdinfo.c
CommitLineData
8bde7f77
WD
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>
9d2b18a0 29#include <net.h> /* for print_IPaddr */
8bde7f77 30
d87080b7 31DECLARE_GLOBAL_DATA_PTR;
8bde7f77 32
baa26db4 33#if defined(CONFIG_CMD_BDI)
8bde7f77
WD
34static void print_num(const char *, ulong);
35
36#ifndef CONFIG_ARM /* PowerPC and other */
37
38#ifdef CONFIG_PPC
39static void print_str(const char *, const char *);
40
41int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
42{
8bde7f77
WD
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_num ("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 );
97d80fc3
WD
57#if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
58 defined(CONFIG_8260) || defined(CONFIG_E500)
8bde7f77
WD
59 print_num ("immr_base", bd->bi_immr_base );
60#endif
61 print_num ("bootflags", bd->bi_bootflags );
97d80fc3 62#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
c157d8e2 63 defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \
6c5879f3 64 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
887e2ec9
SR
65 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
66 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
8bde7f77 67 print_str ("procfreq", strmhz(buf, bd->bi_procfreq));
983fda83 68 print_str ("plb_busfreq", strmhz(buf, bd->bi_plb_busfreq));
c157d8e2 69#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \
887e2ec9
SR
70 defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SPE) || \
71 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
983fda83 72 print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq));
8bde7f77 73#endif
846b0dd2 74#else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
9c4c5ae3 75#if defined(CONFIG_CPM2)
8bde7f77
WD
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));
9c4c5ae3 81#if defined(CONFIG_CPM2)
8bde7f77
WD
82 print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq));
83#endif
84 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
846b0dd2 85#endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
983fda83
WD
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
03f5c550 93
4b9206ed 94 puts ("ethaddr =");
8bde7f77
WD
95 for (i=0; i<6; ++i) {
96 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
97 }
03f5c550 98
e2ffd59b 99#if defined(CONFIG_HAS_ETH1)
4b9206ed 100 puts ("\neth1addr =");
8bde7f77
WD
101 for (i=0; i<6; ++i) {
102 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
103 }
03f5c550
WD
104#endif
105
e2ffd59b 106#if defined(CONFIG_HAS_ETH2)
4b9206ed 107 puts ("\neth2addr =");
42d1f039
WD
108 for (i=0; i<6; ++i) {
109 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
110 }
111#endif
03f5c550 112
e2ffd59b 113#if defined(CONFIG_HAS_ETH3)
03f5c550
WD
114 puts ("\neth3addr =");
115 for (i=0; i<6; ++i) {
116 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
117 }
118#endif
119
8bde7f77
WD
120#ifdef CONFIG_HERMES
121 print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed));
122#endif
4b9206ed 123 puts ("\nIP addr = "); print_IPaddr (bd->bi_ip_addr);
8bde7f77
WD
124 printf ("\nbaudrate = %6ld bps\n", bd->bi_baudrate );
125 return 0;
126}
127
4a551709
WD
128#elif defined(CONFIG_NIOS) /* NIOS*/
129
130int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
131{
4a551709
WD
132 int i;
133 bd_t *bd = gd->bd;
134
135 print_num ("memstart", (ulong)bd->bi_memstart);
136 print_num ("memsize", (ulong)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
4b9206ed 141 puts ("ethaddr =");
4a551709
WD
142 for (i=0; i<6; ++i) {
143 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
144 }
4b9206ed 145 puts ("\nip_addr = ");
4a551709
WD
146 print_IPaddr (bd->bi_ip_addr);
147 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
148
149 return 0;
150}
151
5c952cf0
WD
152#elif defined(CONFIG_NIOS2) /* Nios-II */
153
154int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
155{
5c952cf0
WD
156 int i;
157 bd_t *bd = gd->bd;
158
159 print_num ("mem start", (ulong)bd->bi_memstart);
160 print_num ("mem size", (ulong)bd->bi_memsize);
161 print_num ("flash start", (ulong)bd->bi_flashstart);
162 print_num ("flash size", (ulong)bd->bi_flashsize);
163 print_num ("flash offset", (ulong)bd->bi_flashoffset);
164
165#if defined(CFG_SRAM_BASE)
166 print_num ("sram start", (ulong)bd->bi_sramstart);
167 print_num ("sram size", (ulong)bd->bi_sramsize);
168#endif
169
90253178 170#if defined(CONFIG_CMD_NET)
5c952cf0
WD
171 puts ("ethaddr =");
172 for (i=0; i<6; ++i) {
173 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
174 }
175 puts ("\nip_addr = ");
176 print_IPaddr (bd->bi_ip_addr);
177#endif
178
179 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
180
181 return 0;
182}
cfc67116
MS
183#elif defined(CONFIG_MICROBLAZE) /* ! PPC, which leaves Microblaze */
184
185int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
186{
187 int i;
188 bd_t *bd = gd->bd;
189 print_num ("mem start ", (ulong)bd->bi_memstart);
190 print_num ("mem size ", (ulong)bd->bi_memsize);
191 print_num ("flash start ", (ulong)bd->bi_flashstart);
192 print_num ("flash size ", (ulong)bd->bi_flashsize);
193 print_num ("flash offset ", (ulong)bd->bi_flashoffset);
194#if defined(CFG_SRAM_BASE)
195 print_num ("sram start ", (ulong)bd->bi_sramstart);
196 print_num ("sram size ", (ulong)bd->bi_sramsize);
197#endif
90253178 198#if defined(CONFIG_CMD_NET)
cfc67116
MS
199 puts ("ethaddr =");
200 for (i=0; i<6; ++i) {
201 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
202 }
203 puts ("\nip_addr = ");
204 print_IPaddr (bd->bi_ip_addr);
205#endif
206 printf ("\nbaudrate = %d bps\n", (ulong)bd->bi_baudrate);
207 return 0;
208}
4a551709 209
8e585f02
TL
210#elif defined(CONFIG_M68K) /* M68K */
211
212int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
213{
214 int i;
215 bd_t *bd = gd->bd;
216 print_num ("memstart", (ulong)bd->bi_memstart);
217 print_num ("memsize", (ulong)bd->bi_memsize);
218 print_num ("flashstart", (ulong)bd->bi_flashstart);
219 print_num ("flashsize", (ulong)bd->bi_flashsize);
220 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
221#if defined(CFG_INIT_RAM_ADDR)
222 print_num ("sramstart", (ulong)bd->bi_sramstart);
223 print_num ("sramsize", (ulong)bd->bi_sramsize);
224#endif
225#if defined(CFG_MBAR)
226 print_num ("mbar", bd->bi_mbar_base );
227#endif
ab77bc54 228#if defined(CONFIG_CMD_NET)
8e585f02
TL
229 puts ("ethaddr =");
230 for (i=0; i<6; ++i) {
231 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
232 }
233
234#if defined(CONFIG_HAS_ETH1)
235 puts ("\neth1addr =");
236 for (i=0; i<6; ++i) {
237 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
238 }
239#endif
240
241#if defined(CONFIG_HAS_ETH2)
ab77bc54
TL
242 puts ("\neth2addr =");
243 for (i=0; i<6; ++i) {
8e585f02
TL
244 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
245 }
246#endif
247
248#if defined(CONFIG_HAS_ETH3)
ab77bc54
TL
249 puts ("\neth3addr =");
250 for (i=0; i<6; ++i) {
8e585f02
TL
251 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
252 }
253#endif
254
255 puts ("\nip_addr = ");
256 print_IPaddr (bd->bi_ip_addr);
ab77bc54 257#endif /* CONFIG_CMD_NET */
8e585f02
TL
258 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
259
260 return 0;
261}
262
8bde7f77
WD
263#else /* ! PPC, which leaves MIPS */
264
265int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
266{
8bde7f77
WD
267 int i;
268 bd_t *bd = gd->bd;
269
270 print_num ("boot_params", (ulong)bd->bi_boot_params);
271 print_num ("memstart", (ulong)bd->bi_memstart);
272 print_num ("memsize", (ulong)bd->bi_memsize);
273 print_num ("flashstart", (ulong)bd->bi_flashstart);
274 print_num ("flashsize", (ulong)bd->bi_flashsize);
275 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
276
4b9206ed 277 puts ("ethaddr =");
8bde7f77
WD
278 for (i=0; i<6; ++i) {
279 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
280 }
4b9206ed 281 puts ("\nip_addr = ");
8bde7f77
WD
282 print_IPaddr (bd->bi_ip_addr);
283 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
284
285 return 0;
286}
287#endif /* MIPS */
288
289#else /* ARM */
290
291int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
292{
8bde7f77
WD
293 int i;
294 bd_t *bd = gd->bd;
295
296 print_num ("arch_number", bd->bi_arch_number);
297 print_num ("env_t", (ulong)bd->bi_env);
298 print_num ("boot_params", (ulong)bd->bi_boot_params);
299
300 for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
301 print_num("DRAM bank", i);
302 print_num("-> start", bd->bi_dram[i].start);
303 print_num("-> size", bd->bi_dram[i].size);
304 }
305
4b9206ed 306 puts ("ethaddr =");
8bde7f77
WD
307 for (i=0; i<6; ++i) {
308 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
309 }
4b9206ed 310 puts ( "\n"
8bde7f77
WD
311 "ip_addr = ");
312 print_IPaddr (bd->bi_ip_addr);
b79a11cc 313 printf ("\n"
8bde7f77
WD
314 "baudrate = %d bps\n", bd->bi_baudrate);
315
316 return 0;
317}
318
319#endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
320
321static void print_num(const char *name, ulong value)
322{
323 printf ("%-12s= 0x%08lX\n", name, value);
324}
325
326#ifdef CONFIG_PPC
327static void print_str(const char *name, const char *str)
328{
329 printf ("%-12s= %6s MHz\n", name, str);
330}
331#endif /* CONFIG_PPC */
332
333
334/* -------------------------------------------------------------------- */
335
0d498393
WD
336U_BOOT_CMD(
337 bdinfo, 1, 1, do_bdinfo,
8bde7f77
WD
338 "bdinfo - print Board Info structure\n",
339 NULL
340);
90253178 341#endif