]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bdinfo.c
Merge branch 'next' of git://git.denx.de/u-boot-nios
[karo-tx-uboot.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_NIOS2) /* Nios-II */
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 ("mem start",         (ulong)bd->bi_memstart);
129         print_lnum ("mem size",         (u64)bd->bi_memsize);
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
134 #if defined(CONFIG_SYS_SRAM_BASE)
135         print_num ("sram start",        (ulong)bd->bi_sramstart);
136         print_num ("sram size",         (ulong)bd->bi_sramsize);
137 #endif
138
139 #if defined(CONFIG_CMD_NET)
140         print_eth(0);
141         printf ("ip_addr     = %pI4\n", &bd->bi_ip_addr);
142 #endif
143
144         printf ("baudrate    = %ld bps\n", bd->bi_baudrate);
145
146         return 0;
147 }
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 {
152         bd_t *bd = gd->bd;
153         print_num ("mem start      ",   (ulong)bd->bi_memstart);
154         print_lnum ("mem size       ",  (u64)bd->bi_memsize);
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);
158 #if defined(CONFIG_SYS_SRAM_BASE)
159         print_num ("sram start     ",   (ulong)bd->bi_sramstart);
160         print_num ("sram size      ",   (ulong)bd->bi_sramsize);
161 #endif
162 #if defined(CONFIG_CMD_NET)
163         print_eth(0);
164         printf ("ip_addr     = %pI4\n", &bd->bi_ip_addr);
165 #endif
166         printf ("baudrate    = %ld bps\n", (ulong)bd->bi_baudrate);
167         return 0;
168 }
169
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;
174
175 #ifdef DEBUG
176         print_num("bd address             ", (ulong) bd);
177 #endif
178         print_num("memstart               ", bd->bi_memstart);
179         print_lnum("memsize                ", bd->bi_memsize);
180         print_num("flashstart             ", bd->bi_flashstart);
181         print_num("CONFIG_SYS_MONITOR_BASE       ", CONFIG_SYS_MONITOR_BASE);
182         print_num("CONFIG_ENV_ADDR           ", CONFIG_ENV_ADDR);
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);
193
194 #if defined(CONFIG_CMD_NET)
195         print_eth(0);
196         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
197 #endif
198         printf("baudrate               = %6ld bps\n", bd->bi_baudrate);
199         return 0;
200 }
201
202 #elif defined(CONFIG_M68K) /* M68K */
203 static void print_str(const char *, const char *);
204
205 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
206 {
207         bd_t *bd = gd->bd;
208         char buf[32];
209
210         print_num ("memstart",          (ulong)bd->bi_memstart);
211         print_lnum ("memsize",          (u64)bd->bi_memsize);
212         print_num ("flashstart",        (ulong)bd->bi_flashstart);
213         print_num ("flashsize",         (ulong)bd->bi_flashsize);
214         print_num ("flashoffset",       (ulong)bd->bi_flashoffset);
215 #if defined(CONFIG_SYS_INIT_RAM_ADDR)
216         print_num ("sramstart",         (ulong)bd->bi_sramstart);
217         print_num ("sramsize",          (ulong)bd->bi_sramsize);
218 #endif
219 #if defined(CONFIG_SYS_MBAR)
220         print_num ("mbar",              bd->bi_mbar_base);
221 #endif
222         print_str ("cpufreq",           strmhz(buf, bd->bi_intfreq));
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
232 #if defined(CONFIG_CMD_NET)
233         print_eth(0);
234 #if defined(CONFIG_HAS_ETH1)
235         print_eth(1);
236 #endif
237 #if defined(CONFIG_HAS_ETH2)
238         print_eth(2);
239 #endif
240 #if defined(CONFIG_HAS_ETH3)
241         print_eth(3);
242 #endif
243
244         printf ("ip_addr     = %pI4\n", &bd->bi_ip_addr);
245 #endif
246         printf ("baudrate    = %ld bps\n", bd->bi_baudrate);
247
248         return 0;
249 }
250
251 #elif defined(CONFIG_BLACKFIN)
252 static void print_str(const char *, const char *);
253
254 int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
255 {
256         bd_t *bd = gd->bd;
257         char buf[32];
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);
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));
265
266         print_num("boot_params", (ulong)bd->bi_boot_params);
267         print_num("memstart",    (ulong)bd->bi_memstart);
268         print_lnum("memsize",    (u64)bd->bi_memsize);
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
273         print_eth(0);
274         printf("ip_addr     = %pI4\n", &bd->bi_ip_addr);
275         printf("baudrate    = %d bps\n", bd->bi_baudrate);
276
277         return 0;
278 }
279
280 #else /* ! PPC, which leaves MIPS */
281
282 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
283 {
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);
288         print_lnum ("memsize",          (u64)bd->bi_memsize);
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
293         print_eth(0);
294         printf ("ip_addr     = %pI4\n", &bd->bi_ip_addr);
295         printf ("baudrate    = %d bps\n", bd->bi_baudrate);
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 {
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
318 #if defined(CONFIG_CMD_NET)
319         print_eth(0);
320         printf ("ip_addr     = %pI4\n", &bd->bi_ip_addr);
321 #endif
322         printf ("baudrate    = %d bps\n", bd->bi_baudrate);
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
334 #if !(defined(CONFIG_ARM) || defined(CONFIG_M68K)) || defined(CONFIG_CMD_NET)
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 }
347 #endif
348
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
356 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_BLACKFIN)
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
366 U_BOOT_CMD(
367         bdinfo, 1,      1,      do_bdinfo,
368         "print Board Info structure",
369         ""
370 );