blob: c28a155453099fda3e5d7ca4ab232f89a87527d3 [file] [log] [blame]
wdenk8bde7f72003-06-27 21:31:46 +00001/*
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>
wdenk9d2b18a2003-06-28 23:11:04 +000029#include <net.h> /* for print_IPaddr */
wdenk8bde7f72003-06-27 21:31:46 +000030
Wolfgang Denkd87080b2006-03-31 18:32:53 +020031DECLARE_GLOBAL_DATA_PTR;
wdenk8bde7f72003-06-27 21:31:46 +000032
wdenk8bde7f72003-06-27 21:31:46 +000033static void print_num(const char *, ulong);
34
35#ifndef CONFIG_ARM /* PowerPC and other */
36
37#ifdef CONFIG_PPC
38static void print_str(const char *, const char *);
39
40int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
41{
wdenk8bde7f72003-06-27 21:31:46 +000042 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 );
wdenk97d80fc2004-06-09 00:34:46 +000056#if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
57 defined(CONFIG_8260) || defined(CONFIG_E500)
wdenk8bde7f72003-06-27 21:31:46 +000058 print_num ("immr_base", bd->bi_immr_base );
59#endif
60 print_num ("bootflags", bd->bi_bootflags );
wdenk97d80fc2004-06-09 00:34:46 +000061#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
Stefan Roesec157d8e2005-08-01 16:41:48 +020062 defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \
Marian Balakowicz6c5879f2006-06-30 16:30:46 +020063 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
Stefan Roese887e2ec2006-09-07 11:51:23 +020064 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
65 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
wdenk8bde7f72003-06-27 21:31:46 +000066 print_str ("procfreq", strmhz(buf, bd->bi_procfreq));
wdenk983fda82004-10-28 00:09:35 +000067 print_str ("plb_busfreq", strmhz(buf, bd->bi_plb_busfreq));
Stefan Roesec157d8e2005-08-01 16:41:48 +020068#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \
Stefan Roese887e2ec2006-09-07 11:51:23 +020069 defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SPE) || \
70 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
wdenk983fda82004-10-28 00:09:35 +000071 print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq));
wdenk8bde7f72003-06-27 21:31:46 +000072#endif
Stefan Roese846b0dd2005-08-08 12:42:22 +020073#else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -050074#if defined(CONFIG_CPM2)
wdenk8bde7f72003-06-27 21:31:46 +000075 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));
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -050080#if defined(CONFIG_CPM2)
wdenk8bde7f72003-06-27 21:31:46 +000081 print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq));
82#endif
83 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
Stefan Roese846b0dd2005-08-08 12:42:22 +020084#endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
wdenk983fda82004-10-28 00:09:35 +000085#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
wdenk03f5c552004-10-10 21:21:55 +000092
wdenk4b9206e2004-03-23 22:14:11 +000093 puts ("ethaddr =");
wdenk8bde7f72003-06-27 21:31:46 +000094 for (i=0; i<6; ++i) {
95 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
96 }
wdenk03f5c552004-10-10 21:21:55 +000097
wdenke2ffd592004-12-31 09:32:47 +000098#if defined(CONFIG_HAS_ETH1)
wdenk4b9206e2004-03-23 22:14:11 +000099 puts ("\neth1addr =");
wdenk8bde7f72003-06-27 21:31:46 +0000100 for (i=0; i<6; ++i) {
101 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
102 }
wdenk03f5c552004-10-10 21:21:55 +0000103#endif
104
wdenke2ffd592004-12-31 09:32:47 +0000105#if defined(CONFIG_HAS_ETH2)
wdenk4b9206e2004-03-23 22:14:11 +0000106 puts ("\neth2addr =");
wdenk42d1f032003-10-15 23:53:47 +0000107 for (i=0; i<6; ++i) {
108 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
109 }
110#endif
wdenk03f5c552004-10-10 21:21:55 +0000111
wdenke2ffd592004-12-31 09:32:47 +0000112#if defined(CONFIG_HAS_ETH3)
wdenk03f5c552004-10-10 21:21:55 +0000113 puts ("\neth3addr =");
114 for (i=0; i<6; ++i) {
115 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
116 }
117#endif
118
wdenk8bde7f72003-06-27 21:31:46 +0000119#ifdef CONFIG_HERMES
120 print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed));
121#endif
wdenk4b9206e2004-03-23 22:14:11 +0000122 puts ("\nIP addr = "); print_IPaddr (bd->bi_ip_addr);
wdenk8bde7f72003-06-27 21:31:46 +0000123 printf ("\nbaudrate = %6ld bps\n", bd->bi_baudrate );
124 return 0;
125}
126
wdenk4a551702003-10-08 23:26:14 +0000127#elif defined(CONFIG_NIOS) /* NIOS*/
128
129int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
130{
wdenk4a551702003-10-08 23:26:14 +0000131 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
wdenk4b9206e2004-03-23 22:14:11 +0000140 puts ("ethaddr =");
wdenk4a551702003-10-08 23:26:14 +0000141 for (i=0; i<6; ++i) {
142 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
143 }
wdenk4b9206e2004-03-23 22:14:11 +0000144 puts ("\nip_addr = ");
wdenk4a551702003-10-08 23:26:14 +0000145 print_IPaddr (bd->bi_ip_addr);
146 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
147
148 return 0;
149}
150
wdenk5c952cf2004-10-10 21:27:30 +0000151#elif defined(CONFIG_NIOS2) /* Nios-II */
152
153int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
154{
Jean-Christophe PLAGNIOL-VILLARD252f60b2008-01-10 03:52:44 -0500155#if defined(CONFIG_CMD_NET)
wdenk5c952cf2004-10-10 21:27:30 +0000156 int i;
Jean-Christophe PLAGNIOL-VILLARD252f60b2008-01-10 03:52:44 -0500157#endif
wdenk5c952cf2004-10-10 21:27:30 +0000158 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
Jon Loeliger90253172007-07-10 11:02:44 -0500171#if defined(CONFIG_CMD_NET)
wdenk5c952cf2004-10-10 21:27:30 +0000172 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}
Michal Simekcfc67112007-03-11 13:48:24 +0100184#elif defined(CONFIG_MICROBLAZE) /* ! PPC, which leaves Microblaze */
185
186int 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
Jon Loeliger90253172007-07-10 11:02:44 -0500199#if defined(CONFIG_CMD_NET)
Michal Simekcfc67112007-03-11 13:48:24 +0100200 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}
wdenk4a551702003-10-08 23:26:14 +0000210
TsiChung Liew8e585f02007-06-18 13:50:13 -0500211#elif defined(CONFIG_M68K) /* M68K */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500212static void print_str(const char *, const char *);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500213
214int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
215{
216 int i;
217 bd_t *bd = gd->bd;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500218 char buf[32];
219
TsiChung Liew8e585f02007-06-18 13:50:13 -0500220 print_num ("memstart", (ulong)bd->bi_memstart);
221 print_num ("memsize", (ulong)bd->bi_memsize);
222 print_num ("flashstart", (ulong)bd->bi_flashstart);
223 print_num ("flashsize", (ulong)bd->bi_flashsize);
224 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
225#if defined(CFG_INIT_RAM_ADDR)
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500226 print_num ("sramstart", (ulong)bd->bi_sramstart);
227 print_num ("sramsize", (ulong)bd->bi_sramsize);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500228#endif
229#if defined(CFG_MBAR)
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500230 print_num ("mbar", bd->bi_mbar_base);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500231#endif
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500232 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
233#ifdef CONFIG_PCI
234 print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq));
235#endif
236#ifdef CONFIG_EXTRA_CLOCK
237 print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq));
238 print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq));
239 print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq));
240#endif
Stefan Roese26667b72007-08-18 14:37:52 +0200241#if defined(CONFIG_CMD_NET)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500242 puts ("ethaddr =");
243 for (i=0; i<6; ++i) {
244 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
245 }
246
247#if defined(CONFIG_HAS_ETH1)
248 puts ("\neth1addr =");
249 for (i=0; i<6; ++i) {
250 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
251 }
252#endif
253
254#if defined(CONFIG_HAS_ETH2)
TsiChungLiewab77bc52007-08-15 15:39:17 -0500255 puts ("\neth2addr =");
256 for (i=0; i<6; ++i) {
TsiChung Liew8e585f02007-06-18 13:50:13 -0500257 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
258 }
259#endif
260
261#if defined(CONFIG_HAS_ETH3)
TsiChungLiewab77bc52007-08-15 15:39:17 -0500262 puts ("\neth3addr =");
263 for (i=0; i<6; ++i) {
TsiChung Liew8e585f02007-06-18 13:50:13 -0500264 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
265 }
266#endif
267
268 puts ("\nip_addr = ");
269 print_IPaddr (bd->bi_ip_addr);
Stefan Roese26667b72007-08-18 14:37:52 +0200270#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500271 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
272
273 return 0;
274}
275
wdenk8bde7f72003-06-27 21:31:46 +0000276#else /* ! PPC, which leaves MIPS */
277
278int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
279{
wdenk8bde7f72003-06-27 21:31:46 +0000280 int i;
281 bd_t *bd = gd->bd;
282
283 print_num ("boot_params", (ulong)bd->bi_boot_params);
284 print_num ("memstart", (ulong)bd->bi_memstart);
285 print_num ("memsize", (ulong)bd->bi_memsize);
286 print_num ("flashstart", (ulong)bd->bi_flashstart);
287 print_num ("flashsize", (ulong)bd->bi_flashsize);
288 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
289
wdenk4b9206e2004-03-23 22:14:11 +0000290 puts ("ethaddr =");
wdenk8bde7f72003-06-27 21:31:46 +0000291 for (i=0; i<6; ++i) {
292 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
293 }
wdenk4b9206e2004-03-23 22:14:11 +0000294 puts ("\nip_addr = ");
wdenk8bde7f72003-06-27 21:31:46 +0000295 print_IPaddr (bd->bi_ip_addr);
296 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
297
298 return 0;
299}
300#endif /* MIPS */
301
302#else /* ARM */
303
304int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
305{
wdenk8bde7f72003-06-27 21:31:46 +0000306 int i;
307 bd_t *bd = gd->bd;
308
309 print_num ("arch_number", bd->bi_arch_number);
310 print_num ("env_t", (ulong)bd->bi_env);
311 print_num ("boot_params", (ulong)bd->bi_boot_params);
312
313 for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
314 print_num("DRAM bank", i);
315 print_num("-> start", bd->bi_dram[i].start);
316 print_num("-> size", bd->bi_dram[i].size);
317 }
318
wdenk4b9206e2004-03-23 22:14:11 +0000319 puts ("ethaddr =");
wdenk8bde7f72003-06-27 21:31:46 +0000320 for (i=0; i<6; ++i) {
321 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
322 }
wdenk4b9206e2004-03-23 22:14:11 +0000323 puts ( "\n"
wdenk8bde7f72003-06-27 21:31:46 +0000324 "ip_addr = ");
325 print_IPaddr (bd->bi_ip_addr);
wdenkb79a11c2004-03-25 15:14:43 +0000326 printf ("\n"
wdenk8bde7f72003-06-27 21:31:46 +0000327 "baudrate = %d bps\n", bd->bi_baudrate);
328
329 return 0;
330}
331
332#endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
333
334static void print_num(const char *name, ulong value)
335{
336 printf ("%-12s= 0x%08lX\n", name, value);
337}
338
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500339#if defined(CONFIG_PPC) || defined(CONFIG_M68K)
wdenk8bde7f72003-06-27 21:31:46 +0000340static void print_str(const char *name, const char *str)
341{
342 printf ("%-12s= %6s MHz\n", name, str);
343}
344#endif /* CONFIG_PPC */
345
346
347/* -------------------------------------------------------------------- */
348
wdenk0d498392003-07-01 21:06:45 +0000349U_BOOT_CMD(
350 bdinfo, 1, 1, do_bdinfo,
wdenk8bde7f72003-06-27 21:31:46 +0000351 "bdinfo - print Board Info structure\n",
352 NULL
353);