]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_bdinfo.c
Patches by Jon Loeliger, 24 Aug 2004:
[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
WD
30
31
32#if (CONFIG_COMMANDS & CFG_CMD_BDI)
33static void print_num(const char *, ulong);
34
35#ifndef CONFIG_ARM /* PowerPC and other */
36
37#ifdef CONFIG_PPC
38static void print_str(const char *, const char *);
39
40int 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 );
97d80fc3
WD
58#if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
59 defined(CONFIG_8260) || defined(CONFIG_E500)
8bde7f77
WD
60 print_num ("immr_base", bd->bi_immr_base );
61#endif
62 print_num ("bootflags", bd->bi_bootflags );
97d80fc3
WD
63#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
64 defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300)
8bde7f77
WD
65 print_str ("procfreq", strmhz(buf, bd->bi_procfreq));
66 print_str ("plb_busfreq", strmhz(buf, bd->bi_plb_busfreq));
028ab6b5 67#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300)
8bde7f77
WD
68 print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq));
69#endif
028ab6b5 70#else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300 */
42d1f039 71#if defined(CONFIG_8260) || defined(CONFIG_MPC8560)
8bde7f77
WD
72 print_str ("vco", strmhz(buf, bd->bi_vco));
73 print_str ("sccfreq", strmhz(buf, bd->bi_sccfreq));
74 print_str ("brgfreq", strmhz(buf, bd->bi_brgfreq));
75#endif
76 print_str ("intfreq", strmhz(buf, bd->bi_intfreq));
42d1f039 77#if defined(CONFIG_8260) || defined(CONFIG_MPC8560)
8bde7f77
WD
78 print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq));
79#endif
80 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
028ab6b5 81#endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300 */
03f5c550 82
4b9206ed 83 puts ("ethaddr =");
8bde7f77
WD
84 for (i=0; i<6; ++i) {
85 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
86 }
03f5c550
WD
87
88#if defined(CONFIG_ETH1ADDR)
4b9206ed 89 puts ("\neth1addr =");
8bde7f77
WD
90 for (i=0; i<6; ++i) {
91 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
92 }
03f5c550
WD
93#endif
94
95#if defined(CONFIG_ETH2ADDR)
4b9206ed 96 puts ("\neth2addr =");
42d1f039
WD
97 for (i=0; i<6; ++i) {
98 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
99 }
100#endif
03f5c550
WD
101
102#if defined(CONFIG_ETH3ADDR)
103 puts ("\neth3addr =");
104 for (i=0; i<6; ++i) {
105 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]);
106 }
107#endif
108
8bde7f77
WD
109#ifdef CONFIG_HERMES
110 print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed));
111#endif
4b9206ed 112 puts ("\nIP addr = "); print_IPaddr (bd->bi_ip_addr);
8bde7f77
WD
113 printf ("\nbaudrate = %6ld bps\n", bd->bi_baudrate );
114 return 0;
115}
116
4a551709
WD
117#elif defined(CONFIG_NIOS) /* NIOS*/
118
119int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
120{
121 DECLARE_GLOBAL_DATA_PTR;
122
123 int i;
124 bd_t *bd = gd->bd;
125
126 print_num ("memstart", (ulong)bd->bi_memstart);
127 print_num ("memsize", (ulong)bd->bi_memsize);
128 print_num ("flashstart", (ulong)bd->bi_flashstart);
129 print_num ("flashsize", (ulong)bd->bi_flashsize);
130 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
131
4b9206ed 132 puts ("ethaddr =");
4a551709
WD
133 for (i=0; i<6; ++i) {
134 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
135 }
4b9206ed 136 puts ("\nip_addr = ");
4a551709
WD
137 print_IPaddr (bd->bi_ip_addr);
138 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
139
140 return 0;
141}
142
143
8bde7f77
WD
144#else /* ! PPC, which leaves MIPS */
145
146int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
147{
148 DECLARE_GLOBAL_DATA_PTR;
149
150 int i;
151 bd_t *bd = gd->bd;
152
153 print_num ("boot_params", (ulong)bd->bi_boot_params);
154 print_num ("memstart", (ulong)bd->bi_memstart);
155 print_num ("memsize", (ulong)bd->bi_memsize);
156 print_num ("flashstart", (ulong)bd->bi_flashstart);
157 print_num ("flashsize", (ulong)bd->bi_flashsize);
158 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
159
4b9206ed 160 puts ("ethaddr =");
8bde7f77
WD
161 for (i=0; i<6; ++i) {
162 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
163 }
4b9206ed 164 puts ("\nip_addr = ");
8bde7f77
WD
165 print_IPaddr (bd->bi_ip_addr);
166 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
167
168 return 0;
169}
170#endif /* MIPS */
171
172#else /* ARM */
173
174int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
175{
176 DECLARE_GLOBAL_DATA_PTR;
177
178 int i;
179 bd_t *bd = gd->bd;
180
181 print_num ("arch_number", bd->bi_arch_number);
182 print_num ("env_t", (ulong)bd->bi_env);
183 print_num ("boot_params", (ulong)bd->bi_boot_params);
184
185 for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
186 print_num("DRAM bank", i);
187 print_num("-> start", bd->bi_dram[i].start);
188 print_num("-> size", bd->bi_dram[i].size);
189 }
190
4b9206ed 191 puts ("ethaddr =");
8bde7f77
WD
192 for (i=0; i<6; ++i) {
193 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
194 }
4b9206ed 195 puts ( "\n"
8bde7f77
WD
196 "ip_addr = ");
197 print_IPaddr (bd->bi_ip_addr);
b79a11cc 198 printf ("\n"
8bde7f77
WD
199 "baudrate = %d bps\n", bd->bi_baudrate);
200
201 return 0;
202}
203
204#endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
205
206static void print_num(const char *name, ulong value)
207{
208 printf ("%-12s= 0x%08lX\n", name, value);
209}
210
211#ifdef CONFIG_PPC
212static void print_str(const char *name, const char *str)
213{
214 printf ("%-12s= %6s MHz\n", name, str);
215}
216#endif /* CONFIG_PPC */
217
218
219/* -------------------------------------------------------------------- */
220
0d498393
WD
221U_BOOT_CMD(
222 bdinfo, 1, 1, do_bdinfo,
8bde7f77
WD
223 "bdinfo - print Board Info structure\n",
224 NULL
225);
226#endif /* CFG_CMD_BDI */