]> git.ipfire.org Git - people/ms/u-boot.git/blob - common/cmd_bdinfo.c
Merge branch 'master' of git://git.denx.de/u-boot-usb
[people/ms/u-boot.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
30 DECLARE_GLOBAL_DATA_PTR;
31
32 static void print_num(const char *, ulong);
33
34 #if !(defined(CONFIG_ARM) || defined(CONFIG_M68K)) || defined(CONFIG_CMD_NET)
35 static void print_eth(int idx);
36 #endif
37
38 #ifndef CONFIG_ARM /* PowerPC and other */
39 static void print_lnum(const char *, u64);
40
41 #ifdef CONFIG_PPC
42 static void print_str(const char *, const char *);
43
44 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
45 {
46 bd_t *bd = gd->bd;
47 char buf[32];
48
49 #ifdef DEBUG
50 print_num ("bd address", (ulong)bd );
51 #endif
52 print_num ("memstart", bd->bi_memstart );
53 print_lnum ("memsize", bd->bi_memsize );
54 print_num ("flashstart", bd->bi_flashstart );
55 print_num ("flashsize", bd->bi_flashsize );
56 print_num ("flashoffset", bd->bi_flashoffset );
57 print_num ("sramstart", bd->bi_sramstart );
58 print_num ("sramsize", bd->bi_sramsize );
59 #if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
60 defined(CONFIG_8260) || defined(CONFIG_E500)
61 print_num ("immr_base", bd->bi_immr_base );
62 #endif
63 print_num ("bootflags", bd->bi_bootflags );
64 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
65 defined(CONFIG_405EP) || defined(CONFIG_XILINX_405) || \
66 defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
67 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
68 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
69 print_str ("procfreq", strmhz(buf, bd->bi_procfreq));
70 print_str ("plb_busfreq", strmhz(buf, bd->bi_plb_busfreq));
71 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_405) || \
72 defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SPE) || \
73 defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
74 print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq));
75 #endif
76 #else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
77 #if defined(CONFIG_CPM2)
78 print_str ("vco", strmhz(buf, bd->bi_vco));
79 print_str ("sccfreq", strmhz(buf, bd->bi_sccfreq));
80 print_str ("brgfreq", strmhz(buf, bd->bi_brgfreq));
81 #endif
82 print_str ("intfreq", strmhz(buf, bd->bi_intfreq));
83 #if defined(CONFIG_CPM2)
84 print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq));
85 #endif
86 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
87 #endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
88 #if defined(CONFIG_MPC8220)
89 print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq));
90 print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq));
91 print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq));
92 print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq));
93 print_str ("pevfreq", strmhz(buf, bd->bi_pevfreq));
94 #endif
95
96 print_eth(0);
97 #if defined(CONFIG_HAS_ETH1)
98 print_eth(1);
99 #endif
100 #if defined(CONFIG_HAS_ETH2)
101 print_eth(2);
102 #endif
103 #if defined(CONFIG_HAS_ETH3)
104 print_eth(3);
105 #endif
106 #if defined(CONFIG_HAS_ETH4)
107 print_eth(4);
108 #endif
109 #if defined(CONFIG_HAS_ETH5)
110 print_eth(5);
111 #endif
112
113 #ifdef CONFIG_HERMES
114 print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed));
115 #endif
116 printf ("IP addr = %pI4\n", &bd->bi_ip_addr);
117 printf ("baudrate = %6ld bps\n", bd->bi_baudrate );
118 print_num ("relocaddr", gd->relocaddr);
119 return 0;
120 }
121
122 #elif defined(CONFIG_NIOS) /* NIOS*/
123
124 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
125 {
126 bd_t *bd = gd->bd;
127
128 print_num ("memstart", (ulong)bd->bi_memstart);
129 print_lnum ("memsize", (u64)bd->bi_memsize);
130 print_num ("flashstart", (ulong)bd->bi_flashstart);
131 print_num ("flashsize", (ulong)bd->bi_flashsize);
132 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
133
134 print_eth(0);
135 printf ("ip_addr = %pI4\n", &bd->bi_ip_addr);
136 printf ("baudrate = %ld bps\n", bd->bi_baudrate);
137
138 return 0;
139 }
140
141 #elif defined(CONFIG_NIOS2) /* Nios-II */
142
143 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
144 {
145 bd_t *bd = gd->bd;
146
147 print_num ("mem start", (ulong)bd->bi_memstart);
148 print_lnum ("mem size", (u64)bd->bi_memsize);
149 print_num ("flash start", (ulong)bd->bi_flashstart);
150 print_num ("flash size", (ulong)bd->bi_flashsize);
151 print_num ("flash offset", (ulong)bd->bi_flashoffset);
152
153 #if defined(CONFIG_SYS_SRAM_BASE)
154 print_num ("sram start", (ulong)bd->bi_sramstart);
155 print_num ("sram size", (ulong)bd->bi_sramsize);
156 #endif
157
158 #if defined(CONFIG_CMD_NET)
159 print_eth(0);
160 printf ("ip_addr = %pI4\n", &bd->bi_ip_addr);
161 #endif
162
163 printf ("baudrate = %ld bps\n", bd->bi_baudrate);
164
165 return 0;
166 }
167 #elif defined(CONFIG_MICROBLAZE) /* ! PPC, which leaves Microblaze */
168
169 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
170 {
171 bd_t *bd = gd->bd;
172 print_num ("mem start ", (ulong)bd->bi_memstart);
173 print_lnum ("mem size ", (u64)bd->bi_memsize);
174 print_num ("flash start ", (ulong)bd->bi_flashstart);
175 print_num ("flash size ", (ulong)bd->bi_flashsize);
176 print_num ("flash offset ", (ulong)bd->bi_flashoffset);
177 #if defined(CONFIG_SYS_SRAM_BASE)
178 print_num ("sram start ", (ulong)bd->bi_sramstart);
179 print_num ("sram size ", (ulong)bd->bi_sramsize);
180 #endif
181 #if defined(CONFIG_CMD_NET)
182 print_eth(0);
183 printf ("ip_addr = %pI4\n", &bd->bi_ip_addr);
184 #endif
185 printf ("baudrate = %ld bps\n", (ulong)bd->bi_baudrate);
186 return 0;
187 }
188
189 #elif defined(CONFIG_SPARC) /* SPARC */
190 int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
191 {
192 bd_t *bd = gd->bd;
193
194 #ifdef DEBUG
195 print_num("bd address ", (ulong) bd);
196 #endif
197 print_num("memstart ", bd->bi_memstart);
198 print_lnum("memsize ", bd->bi_memsize);
199 print_num("flashstart ", bd->bi_flashstart);
200 print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE);
201 print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR);
202 printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%lx (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE,
203 CONFIG_SYS_MONITOR_LEN);
204 printf("CONFIG_SYS_MALLOC_BASE = 0x%lx (%d)\n", CONFIG_SYS_MALLOC_BASE,
205 CONFIG_SYS_MALLOC_LEN);
206 printf("CONFIG_SYS_INIT_SP_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_INIT_SP_OFFSET,
207 CONFIG_SYS_STACK_SIZE);
208 printf("CONFIG_SYS_PROM_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_PROM_OFFSET,
209 CONFIG_SYS_PROM_SIZE);
210 printf("CONFIG_SYS_GBL_DATA_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET,
211 CONFIG_SYS_GBL_DATA_SIZE);
212
213 #if defined(CONFIG_CMD_NET)
214 print_eth(0);
215 printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
216 #endif
217 printf("baudrate = %6ld bps\n", bd->bi_baudrate);
218 return 0;
219 }
220
221 #elif defined(CONFIG_M68K) /* M68K */
222 static void print_str(const char *, const char *);
223
224 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
225 {
226 bd_t *bd = gd->bd;
227 char buf[32];
228
229 print_num ("memstart", (ulong)bd->bi_memstart);
230 print_lnum ("memsize", (u64)bd->bi_memsize);
231 print_num ("flashstart", (ulong)bd->bi_flashstart);
232 print_num ("flashsize", (ulong)bd->bi_flashsize);
233 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
234 #if defined(CONFIG_SYS_INIT_RAM_ADDR)
235 print_num ("sramstart", (ulong)bd->bi_sramstart);
236 print_num ("sramsize", (ulong)bd->bi_sramsize);
237 #endif
238 #if defined(CONFIG_SYS_MBAR)
239 print_num ("mbar", bd->bi_mbar_base);
240 #endif
241 print_str ("cpufreq", strmhz(buf, bd->bi_intfreq));
242 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
243 #ifdef CONFIG_PCI
244 print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq));
245 #endif
246 #ifdef CONFIG_EXTRA_CLOCK
247 print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq));
248 print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq));
249 print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq));
250 #endif
251 #if defined(CONFIG_CMD_NET)
252 print_eth(0);
253 #if defined(CONFIG_HAS_ETH1)
254 print_eth(1);
255 #endif
256 #if defined(CONFIG_HAS_ETH2)
257 print_eth(2);
258 #endif
259 #if defined(CONFIG_HAS_ETH3)
260 print_eth(3);
261 #endif
262
263 printf ("ip_addr = %pI4\n", &bd->bi_ip_addr);
264 #endif
265 printf ("baudrate = %ld bps\n", bd->bi_baudrate);
266
267 return 0;
268 }
269
270 #elif defined(CONFIG_BLACKFIN)
271 static void print_str(const char *, const char *);
272
273 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
274 {
275 bd_t *bd = gd->bd;
276 char buf[32];
277
278 printf("U-Boot = %s\n", bd->bi_r_version);
279 printf("CPU = %s\n", bd->bi_cpu);
280 printf("Board = %s\n", bd->bi_board_name);
281 print_str("VCO", strmhz(buf, bd->bi_vco));
282 print_str("CCLK", strmhz(buf, bd->bi_cclk));
283 print_str("SCLK", strmhz(buf, bd->bi_sclk));
284
285 print_num("boot_params", (ulong)bd->bi_boot_params);
286 print_num("memstart", (ulong)bd->bi_memstart);
287 print_lnum("memsize", (u64)bd->bi_memsize);
288 print_num("flashstart", (ulong)bd->bi_flashstart);
289 print_num("flashsize", (ulong)bd->bi_flashsize);
290 print_num("flashoffset", (ulong)bd->bi_flashoffset);
291
292 print_eth(0);
293 printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
294 printf("baudrate = %d bps\n", bd->bi_baudrate);
295
296 return 0;
297 }
298
299 #else /* ! PPC, which leaves MIPS */
300
301 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
302 {
303 bd_t *bd = gd->bd;
304
305 print_num ("boot_params", (ulong)bd->bi_boot_params);
306 print_num ("memstart", (ulong)bd->bi_memstart);
307 print_lnum ("memsize", (u64)bd->bi_memsize);
308 print_num ("flashstart", (ulong)bd->bi_flashstart);
309 print_num ("flashsize", (ulong)bd->bi_flashsize);
310 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
311
312 print_eth(0);
313 printf ("ip_addr = %pI4\n", &bd->bi_ip_addr);
314 printf ("baudrate = %d bps\n", bd->bi_baudrate);
315
316 return 0;
317 }
318 #endif /* MIPS */
319
320 #else /* ARM */
321
322 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
323 {
324 int i;
325 bd_t *bd = gd->bd;
326
327 print_num ("arch_number", bd->bi_arch_number);
328 print_num ("env_t", (ulong)bd->bi_env);
329 print_num ("boot_params", (ulong)bd->bi_boot_params);
330
331 for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
332 print_num("DRAM bank", i);
333 print_num("-> start", bd->bi_dram[i].start);
334 print_num("-> size", bd->bi_dram[i].size);
335 }
336
337 #if defined(CONFIG_CMD_NET)
338 print_eth(0);
339 printf ("ip_addr = %pI4\n", &bd->bi_ip_addr);
340 #endif
341 printf ("baudrate = %d bps\n", bd->bi_baudrate);
342
343 return 0;
344 }
345
346 #endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
347
348 static void print_num(const char *name, ulong value)
349 {
350 printf ("%-12s= 0x%08lX\n", name, value);
351 }
352
353 #if !(defined(CONFIG_ARM) || defined(CONFIG_M68K)) || defined(CONFIG_CMD_NET)
354 static void print_eth(int idx)
355 {
356 char name[10], *val;
357 if (idx)
358 sprintf(name, "eth%iaddr", idx);
359 else
360 strcpy(name, "ethaddr");
361 val = getenv(name);
362 if (!val)
363 val = "(not set)";
364 printf("%-12s= %s\n", name, val);
365 }
366 #endif
367
368 #ifndef CONFIG_ARM
369 static void print_lnum(const char *name, u64 value)
370 {
371 printf ("%-12s= 0x%.8llX\n", name, value);
372 }
373 #endif
374
375 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_BLACKFIN)
376 static void print_str(const char *name, const char *str)
377 {
378 printf ("%-12s= %6s MHz\n", name, str);
379 }
380 #endif /* CONFIG_PPC */
381
382
383 /* -------------------------------------------------------------------- */
384
385 U_BOOT_CMD(
386 bdinfo, 1, 1, do_bdinfo,
387 "print Board Info structure",
388 ""
389 );