blob: 40e28dd9d23b4e14774b536bdd854e671f431ffd [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
31
32#if (CONFIG_COMMANDS & CFG_CMD_BDI)
33static 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{
42 DECLARE_GLOBAL_DATA_PTR;
43
44 int i;
45 bd_t *bd = gd->bd;
46 char buf[32];
47
48#ifdef DEBUG
49 print_num ("bd address", (ulong)bd );
50#endif
51 print_num ("memstart", bd->bi_memstart );
52 print_num ("memsize", bd->bi_memsize );
53 print_num ("flashstart", bd->bi_flashstart );
54 print_num ("flashsize", bd->bi_flashsize );
55 print_num ("flashoffset", bd->bi_flashoffset );
56 print_num ("sramstart", bd->bi_sramstart );
57 print_num ("sramsize", bd->bi_sramsize );
wdenk97d80fc2004-06-09 00:34:46 +000058#if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
59 defined(CONFIG_8260) || defined(CONFIG_E500)
wdenk8bde7f72003-06-27 21:31:46 +000060 print_num ("immr_base", bd->bi_immr_base );
61#endif
62 print_num ("bootflags", bd->bi_bootflags );
wdenk97d80fc2004-06-09 00:34:46 +000063#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
Stefan Roesec157d8e2005-08-01 16:41:48 +020064 defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \
Stefan Roese846b0dd2005-08-08 12:42:22 +020065 defined(CONFIG_440EP) || defined(CONFIG_440GR)
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 Roese846b0dd2005-08-08 12:42:22 +020069 defined(CONFIG_440EP) || defined(CONFIG_440GR)
wdenk983fda82004-10-28 00:09:35 +000070 print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq));
wdenk8bde7f72003-06-27 21:31:46 +000071#endif
Stefan Roese846b0dd2005-08-08 12:42:22 +020072#else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -050073#if defined(CONFIG_CPM2)
wdenk8bde7f72003-06-27 21:31:46 +000074 print_str ("vco", strmhz(buf, bd->bi_vco));
75 print_str ("sccfreq", strmhz(buf, bd->bi_sccfreq));
76 print_str ("brgfreq", strmhz(buf, bd->bi_brgfreq));
77#endif
78 print_str ("intfreq", strmhz(buf, bd->bi_intfreq));
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -050079#if defined(CONFIG_CPM2)
wdenk8bde7f72003-06-27 21:31:46 +000080 print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq));
81#endif
82 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
Stefan Roese846b0dd2005-08-08 12:42:22 +020083#endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
wdenk983fda82004-10-28 00:09:35 +000084#if defined(CONFIG_MPC8220)
85 print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq));
86 print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq));
87 print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq));
88 print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq));
89 print_str ("pevfreq", strmhz(buf, bd->bi_pevfreq));
90#endif
wdenk03f5c552004-10-10 21:21:55 +000091
wdenk4b9206e2004-03-23 22:14:11 +000092 puts ("ethaddr =");
wdenk8bde7f72003-06-27 21:31:46 +000093 for (i=0; i<6; ++i) {
94 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
95 }
wdenk03f5c552004-10-10 21:21:55 +000096
wdenke2ffd592004-12-31 09:32:47 +000097#if defined(CONFIG_HAS_ETH1)
wdenk4b9206e2004-03-23 22:14:11 +000098 puts ("\neth1addr =");
wdenk8bde7f72003-06-27 21:31:46 +000099 for (i=0; i<6; ++i) {
100 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
101 }
wdenk03f5c552004-10-10 21:21:55 +0000102#endif
103
wdenke2ffd592004-12-31 09:32:47 +0000104#if defined(CONFIG_HAS_ETH2)
wdenk4b9206e2004-03-23 22:14:11 +0000105 puts ("\neth2addr =");
wdenk42d1f032003-10-15 23:53:47 +0000106 for (i=0; i<6; ++i) {
107 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
108 }
109#endif
wdenk03f5c552004-10-10 21:21:55 +0000110
wdenke2ffd592004-12-31 09:32:47 +0000111#if defined(CONFIG_HAS_ETH3)
wdenk03f5c552004-10-10 21:21:55 +0000112 puts ("\neth3addr =");
113 for (i=0; i<6; ++i) {
114 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
115 }
116#endif
117
wdenk8bde7f72003-06-27 21:31:46 +0000118#ifdef CONFIG_HERMES
119 print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed));
120#endif
wdenk4b9206e2004-03-23 22:14:11 +0000121 puts ("\nIP addr = "); print_IPaddr (bd->bi_ip_addr);
wdenk8bde7f72003-06-27 21:31:46 +0000122 printf ("\nbaudrate = %6ld bps\n", bd->bi_baudrate );
123 return 0;
124}
125
wdenk4a551702003-10-08 23:26:14 +0000126#elif defined(CONFIG_NIOS) /* NIOS*/
127
128int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
129{
130 DECLARE_GLOBAL_DATA_PTR;
131
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
wdenk4b9206e2004-03-23 22:14:11 +0000141 puts ("ethaddr =");
wdenk4a551702003-10-08 23:26:14 +0000142 for (i=0; i<6; ++i) {
143 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
144 }
wdenk4b9206e2004-03-23 22:14:11 +0000145 puts ("\nip_addr = ");
wdenk4a551702003-10-08 23:26:14 +0000146 print_IPaddr (bd->bi_ip_addr);
147 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
148
149 return 0;
150}
151
wdenk5c952cf2004-10-10 21:27:30 +0000152#elif defined(CONFIG_NIOS2) /* Nios-II */
153
154int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
155{
156 DECLARE_GLOBAL_DATA_PTR;
157
158 int i;
159 bd_t *bd = gd->bd;
160
161 print_num ("mem start", (ulong)bd->bi_memstart);
162 print_num ("mem size", (ulong)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(CFG_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}
wdenk4a551702003-10-08 23:26:14 +0000185
wdenk8bde7f72003-06-27 21:31:46 +0000186#else /* ! PPC, which leaves MIPS */
187
188int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
189{
190 DECLARE_GLOBAL_DATA_PTR;
191
192 int i;
193 bd_t *bd = gd->bd;
194
195 print_num ("boot_params", (ulong)bd->bi_boot_params);
196 print_num ("memstart", (ulong)bd->bi_memstart);
197 print_num ("memsize", (ulong)bd->bi_memsize);
198 print_num ("flashstart", (ulong)bd->bi_flashstart);
199 print_num ("flashsize", (ulong)bd->bi_flashsize);
200 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
201
wdenk4b9206e2004-03-23 22:14:11 +0000202 puts ("ethaddr =");
wdenk8bde7f72003-06-27 21:31:46 +0000203 for (i=0; i<6; ++i) {
204 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
205 }
wdenk4b9206e2004-03-23 22:14:11 +0000206 puts ("\nip_addr = ");
wdenk8bde7f72003-06-27 21:31:46 +0000207 print_IPaddr (bd->bi_ip_addr);
208 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
209
210 return 0;
211}
212#endif /* MIPS */
213
214#else /* ARM */
215
216int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
217{
218 DECLARE_GLOBAL_DATA_PTR;
219
220 int i;
221 bd_t *bd = gd->bd;
222
223 print_num ("arch_number", bd->bi_arch_number);
224 print_num ("env_t", (ulong)bd->bi_env);
225 print_num ("boot_params", (ulong)bd->bi_boot_params);
226
227 for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
228 print_num("DRAM bank", i);
229 print_num("-> start", bd->bi_dram[i].start);
230 print_num("-> size", bd->bi_dram[i].size);
231 }
232
wdenk4b9206e2004-03-23 22:14:11 +0000233 puts ("ethaddr =");
wdenk8bde7f72003-06-27 21:31:46 +0000234 for (i=0; i<6; ++i) {
235 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
236 }
wdenk4b9206e2004-03-23 22:14:11 +0000237 puts ( "\n"
wdenk8bde7f72003-06-27 21:31:46 +0000238 "ip_addr = ");
239 print_IPaddr (bd->bi_ip_addr);
wdenkb79a11c2004-03-25 15:14:43 +0000240 printf ("\n"
wdenk8bde7f72003-06-27 21:31:46 +0000241 "baudrate = %d bps\n", bd->bi_baudrate);
242
243 return 0;
244}
245
246#endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
247
248static void print_num(const char *name, ulong value)
249{
250 printf ("%-12s= 0x%08lX\n", name, value);
251}
252
253#ifdef CONFIG_PPC
254static void print_str(const char *name, const char *str)
255{
256 printf ("%-12s= %6s MHz\n", name, str);
257}
258#endif /* CONFIG_PPC */
259
260
261/* -------------------------------------------------------------------- */
262
wdenk0d498392003-07-01 21:06:45 +0000263U_BOOT_CMD(
264 bdinfo, 1, 1, do_bdinfo,
wdenk8bde7f72003-06-27 21:31:46 +0000265 "bdinfo - print Board Info structure\n",
266 NULL
267);
268#endif /* CFG_CMD_BDI */