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