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