]>
Commit | Line | Data |
---|---|---|
8bde7f77 WD |
1 | /* |
2 | * (C) Copyright 2003 | |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
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 | ||
d87080b7 | 30 | DECLARE_GLOBAL_DATA_PTR; |
8bde7f77 | 31 | |
8bde7f77 WD |
32 | static void print_num(const char *, ulong); |
33 | ||
116095eb | 34 | #if !(defined(CONFIG_ARM) || defined(CONFIG_M68K)) || defined(CONFIG_CMD_NET) |
de2dff6f | 35 | static void print_eth(int idx); |
26e42cbd | 36 | #endif |
de2dff6f | 37 | |
8bde7f77 | 38 | #ifndef CONFIG_ARM /* PowerPC and other */ |
b57ca3e1 | 39 | static void print_lnum(const char *, u64); |
8bde7f77 WD |
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 | { | |
8bde7f77 WD |
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 ); | |
b57ca3e1 | 53 | print_lnum ("memsize", bd->bi_memsize ); |
8bde7f77 WD |
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 ); | |
97d80fc3 WD |
59 | #if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \ |
60 | defined(CONFIG_8260) || defined(CONFIG_E500) | |
8bde7f77 WD |
61 | print_num ("immr_base", bd->bi_immr_base ); |
62 | #endif | |
63 | print_num ("bootflags", bd->bi_bootflags ); | |
97d80fc3 | 64 | #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \ |
9fea65a6 | 65 | defined(CONFIG_405EP) || defined(CONFIG_XILINX_405) || \ |
6c5879f3 | 66 | defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
887e2ec9 SR |
67 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \ |
68 | defined(CONFIG_440SP) || defined(CONFIG_440SPE) | |
8bde7f77 | 69 | print_str ("procfreq", strmhz(buf, bd->bi_procfreq)); |
983fda83 | 70 | print_str ("plb_busfreq", strmhz(buf, bd->bi_plb_busfreq)); |
9fea65a6 | 71 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_405) || \ |
887e2ec9 SR |
72 | defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SPE) || \ |
73 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) | |
983fda83 | 74 | print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq)); |
8bde7f77 | 75 | #endif |
9fea65a6 | 76 | #else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */ |
9c4c5ae3 | 77 | #if defined(CONFIG_CPM2) |
8bde7f77 WD |
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)); | |
9c4c5ae3 | 83 | #if defined(CONFIG_CPM2) |
8bde7f77 WD |
84 | print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq)); |
85 | #endif | |
86 | print_str ("busfreq", strmhz(buf, bd->bi_busfreq)); | |
9fea65a6 | 87 | #endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */ |
983fda83 WD |
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 | |
03f5c550 | 95 | |
de2dff6f | 96 | print_eth(0); |
e2ffd59b | 97 | #if defined(CONFIG_HAS_ETH1) |
de2dff6f | 98 | print_eth(1); |
03f5c550 | 99 | #endif |
e2ffd59b | 100 | #if defined(CONFIG_HAS_ETH2) |
de2dff6f | 101 | print_eth(2); |
42d1f039 | 102 | #endif |
e2ffd59b | 103 | #if defined(CONFIG_HAS_ETH3) |
de2dff6f | 104 | print_eth(3); |
03f5c550 | 105 | #endif |
c68a05fe | 106 | #if defined(CONFIG_HAS_ETH4) |
de2dff6f | 107 | print_eth(4); |
c68a05fe | 108 | #endif |
c68a05fe | 109 | #if defined(CONFIG_HAS_ETH5) |
de2dff6f | 110 | print_eth(5); |
c68a05fe | 111 | #endif |
112 | ||
8bde7f77 WD |
113 | #ifdef CONFIG_HERMES |
114 | print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed)); | |
115 | #endif | |
b6446b67 MF |
116 | printf ("IP addr = %pI4\n", &bd->bi_ip_addr); |
117 | printf ("baudrate = %6ld bps\n", bd->bi_baudrate ); | |
4b99327a | 118 | print_num ("relocaddr", gd->relocaddr); |
8bde7f77 WD |
119 | return 0; |
120 | } | |
121 | ||
5c952cf0 WD |
122 | #elif defined(CONFIG_NIOS2) /* Nios-II */ |
123 | ||
124 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
125 | { | |
5c952cf0 WD |
126 | bd_t *bd = gd->bd; |
127 | ||
128 | print_num ("mem start", (ulong)bd->bi_memstart); | |
b57ca3e1 | 129 | print_lnum ("mem size", (u64)bd->bi_memsize); |
5c952cf0 WD |
130 | print_num ("flash start", (ulong)bd->bi_flashstart); |
131 | print_num ("flash size", (ulong)bd->bi_flashsize); | |
132 | print_num ("flash offset", (ulong)bd->bi_flashoffset); | |
133 | ||
6d0f6bcf | 134 | #if defined(CONFIG_SYS_SRAM_BASE) |
5c952cf0 WD |
135 | print_num ("sram start", (ulong)bd->bi_sramstart); |
136 | print_num ("sram size", (ulong)bd->bi_sramsize); | |
137 | #endif | |
138 | ||
90253178 | 139 | #if defined(CONFIG_CMD_NET) |
de2dff6f | 140 | print_eth(0); |
b6446b67 | 141 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
5c952cf0 WD |
142 | #endif |
143 | ||
b6446b67 | 144 | printf ("baudrate = %ld bps\n", bd->bi_baudrate); |
5c952cf0 WD |
145 | |
146 | return 0; | |
147 | } | |
cfc67116 MS |
148 | #elif defined(CONFIG_MICROBLAZE) /* ! PPC, which leaves Microblaze */ |
149 | ||
150 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
151 | { | |
cfc67116 MS |
152 | bd_t *bd = gd->bd; |
153 | print_num ("mem start ", (ulong)bd->bi_memstart); | |
b57ca3e1 | 154 | print_lnum ("mem size ", (u64)bd->bi_memsize); |
cfc67116 MS |
155 | print_num ("flash start ", (ulong)bd->bi_flashstart); |
156 | print_num ("flash size ", (ulong)bd->bi_flashsize); | |
157 | print_num ("flash offset ", (ulong)bd->bi_flashoffset); | |
6d0f6bcf | 158 | #if defined(CONFIG_SYS_SRAM_BASE) |
cfc67116 MS |
159 | print_num ("sram start ", (ulong)bd->bi_sramstart); |
160 | print_num ("sram size ", (ulong)bd->bi_sramsize); | |
161 | #endif | |
90253178 | 162 | #if defined(CONFIG_CMD_NET) |
de2dff6f | 163 | print_eth(0); |
b6446b67 | 164 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
cfc67116 | 165 | #endif |
b6446b67 | 166 | printf ("baudrate = %ld bps\n", (ulong)bd->bi_baudrate); |
cfc67116 MS |
167 | return 0; |
168 | } | |
4a551709 | 169 | |
00ab32c8 DH |
170 | #elif defined(CONFIG_SPARC) /* SPARC */ |
171 | int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) | |
172 | { | |
173 | bd_t *bd = gd->bd; | |
00ab32c8 DH |
174 | |
175 | #ifdef DEBUG | |
176 | print_num("bd address ", (ulong) bd); | |
177 | #endif | |
178 | print_num("memstart ", bd->bi_memstart); | |
b57ca3e1 | 179 | print_lnum("memsize ", bd->bi_memsize); |
00ab32c8 | 180 | print_num("flashstart ", bd->bi_flashstart); |
6d0f6bcf | 181 | print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE); |
0e8d1586 | 182 | print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR); |
6d0f6bcf JCPV |
183 | printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%lx (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE, |
184 | CONFIG_SYS_MONITOR_LEN); | |
185 | printf("CONFIG_SYS_MALLOC_BASE = 0x%lx (%d)\n", CONFIG_SYS_MALLOC_BASE, | |
186 | CONFIG_SYS_MALLOC_LEN); | |
187 | printf("CONFIG_SYS_INIT_SP_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_INIT_SP_OFFSET, | |
188 | CONFIG_SYS_STACK_SIZE); | |
189 | printf("CONFIG_SYS_PROM_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_PROM_OFFSET, | |
190 | CONFIG_SYS_PROM_SIZE); | |
191 | printf("CONFIG_SYS_GBL_DATA_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET, | |
192 | CONFIG_SYS_GBL_DATA_SIZE); | |
00ab32c8 DH |
193 | |
194 | #if defined(CONFIG_CMD_NET) | |
de2dff6f | 195 | print_eth(0); |
b6446b67 | 196 | printf("ip_addr = %pI4\n", &bd->bi_ip_addr); |
00ab32c8 | 197 | #endif |
b6446b67 | 198 | printf("baudrate = %6ld bps\n", bd->bi_baudrate); |
00ab32c8 DH |
199 | return 0; |
200 | } | |
201 | ||
8e585f02 | 202 | #elif defined(CONFIG_M68K) /* M68K */ |
8ae158cd | 203 | static void print_str(const char *, const char *); |
8e585f02 TL |
204 | |
205 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
206 | { | |
8e585f02 | 207 | bd_t *bd = gd->bd; |
8ae158cd TL |
208 | char buf[32]; |
209 | ||
8e585f02 | 210 | print_num ("memstart", (ulong)bd->bi_memstart); |
b57ca3e1 | 211 | print_lnum ("memsize", (u64)bd->bi_memsize); |
8e585f02 TL |
212 | print_num ("flashstart", (ulong)bd->bi_flashstart); |
213 | print_num ("flashsize", (ulong)bd->bi_flashsize); | |
214 | print_num ("flashoffset", (ulong)bd->bi_flashoffset); | |
6d0f6bcf | 215 | #if defined(CONFIG_SYS_INIT_RAM_ADDR) |
8ae158cd TL |
216 | print_num ("sramstart", (ulong)bd->bi_sramstart); |
217 | print_num ("sramsize", (ulong)bd->bi_sramsize); | |
8e585f02 | 218 | #endif |
6d0f6bcf | 219 | #if defined(CONFIG_SYS_MBAR) |
8ae158cd | 220 | print_num ("mbar", bd->bi_mbar_base); |
8e585f02 | 221 | #endif |
ee73cc59 | 222 | print_str ("cpufreq", strmhz(buf, bd->bi_intfreq)); |
8ae158cd TL |
223 | print_str ("busfreq", strmhz(buf, bd->bi_busfreq)); |
224 | #ifdef CONFIG_PCI | |
225 | print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq)); | |
226 | #endif | |
227 | #ifdef CONFIG_EXTRA_CLOCK | |
228 | print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq)); | |
229 | print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq)); | |
230 | print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq)); | |
231 | #endif | |
26667b7f | 232 | #if defined(CONFIG_CMD_NET) |
de2dff6f | 233 | print_eth(0); |
8e585f02 | 234 | #if defined(CONFIG_HAS_ETH1) |
de2dff6f | 235 | print_eth(1); |
8e585f02 | 236 | #endif |
8e585f02 | 237 | #if defined(CONFIG_HAS_ETH2) |
de2dff6f | 238 | print_eth(2); |
8e585f02 | 239 | #endif |
8e585f02 | 240 | #if defined(CONFIG_HAS_ETH3) |
de2dff6f | 241 | print_eth(3); |
8e585f02 TL |
242 | #endif |
243 | ||
b6446b67 | 244 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
26667b7f | 245 | #endif |
b6446b67 | 246 | printf ("baudrate = %ld bps\n", bd->bi_baudrate); |
8e585f02 TL |
247 | |
248 | return 0; | |
249 | } | |
250 | ||
8dc48d71 | 251 | #elif defined(CONFIG_BLACKFIN) |
6dadc919 | 252 | static void print_str(const char *, const char *); |
8dc48d71 MF |
253 | |
254 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
255 | { | |
8dc48d71 | 256 | bd_t *bd = gd->bd; |
6dadc919 | 257 | char buf[32]; |
8dc48d71 MF |
258 | |
259 | printf("U-Boot = %s\n", bd->bi_r_version); | |
260 | printf("CPU = %s\n", bd->bi_cpu); | |
261 | printf("Board = %s\n", bd->bi_board_name); | |
6dadc919 MF |
262 | print_str("VCO", strmhz(buf, bd->bi_vco)); |
263 | print_str("CCLK", strmhz(buf, bd->bi_cclk)); | |
264 | print_str("SCLK", strmhz(buf, bd->bi_sclk)); | |
8dc48d71 MF |
265 | |
266 | print_num("boot_params", (ulong)bd->bi_boot_params); | |
267 | print_num("memstart", (ulong)bd->bi_memstart); | |
b57ca3e1 | 268 | print_lnum("memsize", (u64)bd->bi_memsize); |
8dc48d71 MF |
269 | print_num("flashstart", (ulong)bd->bi_flashstart); |
270 | print_num("flashsize", (ulong)bd->bi_flashsize); | |
271 | print_num("flashoffset", (ulong)bd->bi_flashoffset); | |
272 | ||
de2dff6f | 273 | print_eth(0); |
b6446b67 MF |
274 | printf("ip_addr = %pI4\n", &bd->bi_ip_addr); |
275 | printf("baudrate = %d bps\n", bd->bi_baudrate); | |
8dc48d71 MF |
276 | |
277 | return 0; | |
278 | } | |
279 | ||
8bde7f77 WD |
280 | #else /* ! PPC, which leaves MIPS */ |
281 | ||
282 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
283 | { | |
8bde7f77 WD |
284 | bd_t *bd = gd->bd; |
285 | ||
286 | print_num ("boot_params", (ulong)bd->bi_boot_params); | |
287 | print_num ("memstart", (ulong)bd->bi_memstart); | |
b57ca3e1 | 288 | print_lnum ("memsize", (u64)bd->bi_memsize); |
8bde7f77 WD |
289 | print_num ("flashstart", (ulong)bd->bi_flashstart); |
290 | print_num ("flashsize", (ulong)bd->bi_flashsize); | |
291 | print_num ("flashoffset", (ulong)bd->bi_flashoffset); | |
292 | ||
de2dff6f | 293 | print_eth(0); |
b6446b67 MF |
294 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
295 | printf ("baudrate = %d bps\n", bd->bi_baudrate); | |
8bde7f77 WD |
296 | |
297 | return 0; | |
298 | } | |
299 | #endif /* MIPS */ | |
300 | ||
301 | #else /* ARM */ | |
302 | ||
303 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
304 | { | |
8bde7f77 WD |
305 | int i; |
306 | bd_t *bd = gd->bd; | |
307 | ||
308 | print_num ("arch_number", bd->bi_arch_number); | |
309 | print_num ("env_t", (ulong)bd->bi_env); | |
310 | print_num ("boot_params", (ulong)bd->bi_boot_params); | |
311 | ||
312 | for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) { | |
313 | print_num("DRAM bank", i); | |
314 | print_num("-> start", bd->bi_dram[i].start); | |
315 | print_num("-> size", bd->bi_dram[i].size); | |
316 | } | |
317 | ||
a41dbbd9 | 318 | #if defined(CONFIG_CMD_NET) |
de2dff6f | 319 | print_eth(0); |
b6446b67 | 320 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
a41dbbd9 | 321 | #endif |
b6446b67 | 322 | printf ("baudrate = %d bps\n", bd->bi_baudrate); |
8bde7f77 WD |
323 | |
324 | return 0; | |
325 | } | |
326 | ||
327 | #endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */ | |
328 | ||
329 | static void print_num(const char *name, ulong value) | |
330 | { | |
331 | printf ("%-12s= 0x%08lX\n", name, value); | |
332 | } | |
333 | ||
116095eb | 334 | #if !(defined(CONFIG_ARM) || defined(CONFIG_M68K)) || defined(CONFIG_CMD_NET) |
de2dff6f MF |
335 | static void print_eth(int idx) |
336 | { | |
337 | char name[10], *val; | |
338 | if (idx) | |
339 | sprintf(name, "eth%iaddr", idx); | |
340 | else | |
341 | strcpy(name, "ethaddr"); | |
342 | val = getenv(name); | |
343 | if (!val) | |
344 | val = "(not set)"; | |
345 | printf("%-12s= %s\n", name, val); | |
346 | } | |
26e42cbd | 347 | #endif |
de2dff6f | 348 | |
b57ca3e1 BB |
349 | #ifndef CONFIG_ARM |
350 | static void print_lnum(const char *name, u64 value) | |
351 | { | |
352 | printf ("%-12s= 0x%.8llX\n", name, value); | |
353 | } | |
354 | #endif | |
355 | ||
6dadc919 | 356 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_BLACKFIN) |
8bde7f77 WD |
357 | static void print_str(const char *name, const char *str) |
358 | { | |
359 | printf ("%-12s= %6s MHz\n", name, str); | |
360 | } | |
361 | #endif /* CONFIG_PPC */ | |
362 | ||
363 | ||
364 | /* -------------------------------------------------------------------- */ | |
365 | ||
0d498393 WD |
366 | U_BOOT_CMD( |
367 | bdinfo, 1, 1, do_bdinfo, | |
2fb2604d | 368 | "print Board Info structure", |
a89c33db | 369 | "" |
8bde7f77 | 370 | ); |