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