]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bdinfo.c
90a6ad09bdf8ce3a9e4c0122c1b75d58170cf6d0
[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 #include <net.h>                /* for print_IPaddr */
30
31
32 #if (CONFIG_COMMANDS & CFG_CMD_BDI)
33 static void print_num(const char *, ulong);
34
35 #ifndef CONFIG_ARM      /* PowerPC and other */
36
37 #ifdef CONFIG_PPC
38 static void print_str(const char *, const char *);
39
40 int 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     );
58 #if defined(CONFIG_5xx)  || defined(CONFIG_8xx) || \
59     defined(CONFIG_8260) || defined(CONFIG_E500)
60         print_num ("immr_base",     bd->bi_immr_base    );
61 #endif
62         print_num ("bootflags",     bd->bi_bootflags    );
63 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
64     defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \
65     defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
66         defined(CONFIG_440SP)
67         print_str ("procfreq",      strmhz(buf, bd->bi_procfreq));
68         print_str ("plb_busfreq",   strmhz(buf, bd->bi_plb_busfreq));
69 #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \
70     defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SPE)
71         print_str ("pci_busfreq",   strmhz(buf, bd->bi_pci_busfreq));
72 #endif
73 #else   /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
74 #if defined(CONFIG_CPM2)
75         print_str ("vco",           strmhz(buf, bd->bi_vco));
76         print_str ("sccfreq",       strmhz(buf, bd->bi_sccfreq));
77         print_str ("brgfreq",       strmhz(buf, bd->bi_brgfreq));
78 #endif
79         print_str ("intfreq",       strmhz(buf, bd->bi_intfreq));
80 #if defined(CONFIG_CPM2)
81         print_str ("cpmfreq",       strmhz(buf, bd->bi_cpmfreq));
82 #endif
83         print_str ("busfreq",       strmhz(buf, bd->bi_busfreq));
84 #endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, CONFIG_440EP CONFIG_440GR */
85 #if defined(CONFIG_MPC8220)
86         print_str ("inpfreq",       strmhz(buf, bd->bi_inpfreq));
87         print_str ("flbfreq",       strmhz(buf, bd->bi_flbfreq));
88         print_str ("pcifreq",       strmhz(buf, bd->bi_pcifreq));
89         print_str ("vcofreq",       strmhz(buf, bd->bi_vcofreq));
90         print_str ("pevfreq",       strmhz(buf, bd->bi_pevfreq));
91 #endif
92
93         puts ("ethaddr     =");
94         for (i=0; i<6; ++i) {
95                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
96         }
97
98 #if defined(CONFIG_HAS_ETH1)
99         puts ("\neth1addr    =");
100         for (i=0; i<6; ++i) {
101                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
102         }
103 #endif
104
105 #if defined(CONFIG_HAS_ETH2)
106        puts ("\neth2addr    =");
107        for (i=0; i<6; ++i) {
108                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
109         }
110 #endif
111
112 #if defined(CONFIG_HAS_ETH3)
113        puts ("\neth3addr    =");
114        for (i=0; i<6; ++i) {
115                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
116         }
117 #endif
118
119 #ifdef CONFIG_HERMES
120         print_str ("ethspeed",      strmhz(buf, bd->bi_ethspeed));
121 #endif
122         puts ("\nIP addr     = ");      print_IPaddr (bd->bi_ip_addr);
123         printf ("\nbaudrate    = %6ld bps\n", bd->bi_baudrate   );
124         return 0;
125 }
126
127 #elif defined(CONFIG_NIOS) /* NIOS*/
128
129 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
130 {
131         DECLARE_GLOBAL_DATA_PTR;
132
133         int i;
134         bd_t *bd = gd->bd;
135
136         print_num ("memstart",          (ulong)bd->bi_memstart);
137         print_num ("memsize",           (ulong)bd->bi_memsize);
138         print_num ("flashstart",        (ulong)bd->bi_flashstart);
139         print_num ("flashsize",         (ulong)bd->bi_flashsize);
140         print_num ("flashoffset",       (ulong)bd->bi_flashoffset);
141
142         puts ("ethaddr     =");
143         for (i=0; i<6; ++i) {
144                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
145         }
146         puts ("\nip_addr     = ");
147         print_IPaddr (bd->bi_ip_addr);
148         printf ("\nbaudrate    = %ld bps\n", bd->bi_baudrate);
149
150         return 0;
151 }
152
153 #elif defined(CONFIG_NIOS2) /* Nios-II */
154
155 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
156 {
157         DECLARE_GLOBAL_DATA_PTR;
158
159         int i;
160         bd_t *bd = gd->bd;
161
162         print_num ("mem start",         (ulong)bd->bi_memstart);
163         print_num ("mem size",          (ulong)bd->bi_memsize);
164         print_num ("flash start",       (ulong)bd->bi_flashstart);
165         print_num ("flash size",        (ulong)bd->bi_flashsize);
166         print_num ("flash offset",      (ulong)bd->bi_flashoffset);
167
168 #if defined(CFG_SRAM_BASE)
169         print_num ("sram start",        (ulong)bd->bi_sramstart);
170         print_num ("sram size",         (ulong)bd->bi_sramsize);
171 #endif
172
173 #if defined(CFG_CMD_NET)
174         puts ("ethaddr     =");
175         for (i=0; i<6; ++i) {
176                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
177         }
178         puts ("\nip_addr     = ");
179         print_IPaddr (bd->bi_ip_addr);
180 #endif
181
182         printf ("\nbaudrate    = %ld bps\n", bd->bi_baudrate);
183
184         return 0;
185 }
186
187 #else /* ! PPC, which leaves MIPS */
188
189 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
190 {
191         DECLARE_GLOBAL_DATA_PTR;
192
193         int i;
194         bd_t *bd = gd->bd;
195
196         print_num ("boot_params",       (ulong)bd->bi_boot_params);
197         print_num ("memstart",          (ulong)bd->bi_memstart);
198         print_num ("memsize",           (ulong)bd->bi_memsize);
199         print_num ("flashstart",        (ulong)bd->bi_flashstart);
200         print_num ("flashsize",         (ulong)bd->bi_flashsize);
201         print_num ("flashoffset",       (ulong)bd->bi_flashoffset);
202
203         puts ("ethaddr     =");
204         for (i=0; i<6; ++i) {
205                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
206         }
207         puts ("\nip_addr     = ");
208         print_IPaddr (bd->bi_ip_addr);
209         printf ("\nbaudrate    = %d bps\n", bd->bi_baudrate);
210
211         return 0;
212 }
213 #endif  /* MIPS */
214
215 #else   /* ARM */
216
217 int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
218 {
219         DECLARE_GLOBAL_DATA_PTR;
220
221         int i;
222         bd_t *bd = gd->bd;
223
224         print_num ("arch_number",       bd->bi_arch_number);
225         print_num ("env_t",             (ulong)bd->bi_env);
226         print_num ("boot_params",       (ulong)bd->bi_boot_params);
227
228         for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
229                 print_num("DRAM bank",  i);
230                 print_num("-> start",   bd->bi_dram[i].start);
231                 print_num("-> size",    bd->bi_dram[i].size);
232         }
233
234         puts ("ethaddr     =");
235         for (i=0; i<6; ++i) {
236                 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
237         }
238         puts  ( "\n"
239                 "ip_addr     = ");
240         print_IPaddr (bd->bi_ip_addr);
241         printf ("\n"
242                 "baudrate    = %d bps\n", bd->bi_baudrate);
243
244         return 0;
245 }
246
247 #endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
248
249 static void print_num(const char *name, ulong value)
250 {
251         printf ("%-12s= 0x%08lX\n", name, value);
252 }
253
254 #ifdef CONFIG_PPC
255 static void print_str(const char *name, const char *str)
256 {
257         printf ("%-12s= %6s MHz\n", name, str);
258 }
259 #endif  /* CONFIG_PPC */
260
261
262 /* -------------------------------------------------------------------- */
263
264 U_BOOT_CMD(
265         bdinfo, 1,      1,      do_bdinfo,
266         "bdinfo  - print Board Info structure\n",
267         NULL
268 );
269 #endif  /* CFG_CMD_BDI */