blob: f67893992031d5a914d70f334a4519fe6a65354f [file] [log] [blame]
wdenk8bde7f72003-06-27 21:31:46 +00001/*
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>
wdenk9d2b18a2003-06-28 23:11:04 +000029#include <net.h> /* for print_IPaddr */
wdenk8bde7f72003-06-27 21:31:46 +000030
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 );
wdenk97d80fc2004-06-09 00:34:46 +000058#if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
59 defined(CONFIG_8260) || defined(CONFIG_E500)
wdenk8bde7f72003-06-27 21:31:46 +000060 print_num ("immr_base", bd->bi_immr_base );
61#endif
62 print_num ("bootflags", bd->bi_bootflags );
wdenk97d80fc2004-06-09 00:34:46 +000063#if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \
64 defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300)
wdenk8bde7f72003-06-27 21:31:46 +000065 print_str ("procfreq", strmhz(buf, bd->bi_procfreq));
66 print_str ("plb_busfreq", strmhz(buf, bd->bi_plb_busfreq));
wdenk028ab6b2004-02-23 23:54:43 +000067#if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300)
wdenk8bde7f72003-06-27 21:31:46 +000068 print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq));
69#endif
wdenk028ab6b2004-02-23 23:54:43 +000070#else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300 */
wdenk42d1f032003-10-15 23:53:47 +000071#if defined(CONFIG_8260) || defined(CONFIG_MPC8560)
wdenk8bde7f72003-06-27 21:31:46 +000072 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));
wdenk42d1f032003-10-15 23:53:47 +000077#if defined(CONFIG_8260) || defined(CONFIG_MPC8560)
wdenk8bde7f72003-06-27 21:31:46 +000078 print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq));
79#endif
80 print_str ("busfreq", strmhz(buf, bd->bi_busfreq));
wdenk028ab6b2004-02-23 23:54:43 +000081#endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300 */
wdenk4b9206e2004-03-23 22:14:11 +000082 puts ("ethaddr =");
wdenk8bde7f72003-06-27 21:31:46 +000083 for (i=0; i<6; ++i) {
84 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
85 }
wdenk97d80fc2004-06-09 00:34:46 +000086#if (defined CONFIG_PN62) || (defined CONFIG_PPCHAMELEONEVB) || \
87 (defined CONFIG_MPC8540ADS) || (defined CONFIG_MPC8560ADS) || \
88 (defined CONFIG_MPC8555CDS)
wdenk4b9206e2004-03-23 22:14:11 +000089 puts ("\neth1addr =");
wdenk8bde7f72003-06-27 21:31:46 +000090 for (i=0; i<6; ++i) {
91 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]);
92 }
93#endif /* CONFIG_PN62 */
wdenk97d80fc2004-06-09 00:34:46 +000094#if defined(CONFIG_MPC8540ADS) || defined(CONFIG_MPC8560ADS) || defined(CONFIG_MPC8555CDS)
wdenk4b9206e2004-03-23 22:14:11 +000095 puts ("\neth2addr =");
wdenk42d1f032003-10-15 23:53:47 +000096 for (i=0; i<6; ++i) {
97 printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]);
98 }
99#endif
wdenk8bde7f72003-06-27 21:31:46 +0000100#ifdef CONFIG_HERMES
101 print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed));
102#endif
wdenk4b9206e2004-03-23 22:14:11 +0000103 puts ("\nIP addr = "); print_IPaddr (bd->bi_ip_addr);
wdenk8bde7f72003-06-27 21:31:46 +0000104 printf ("\nbaudrate = %6ld bps\n", bd->bi_baudrate );
105 return 0;
106}
107
wdenk4a551702003-10-08 23:26:14 +0000108#elif defined(CONFIG_NIOS) /* NIOS*/
109
110int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
111{
112 DECLARE_GLOBAL_DATA_PTR;
113
114 int i;
115 bd_t *bd = gd->bd;
116
117 print_num ("memstart", (ulong)bd->bi_memstart);
118 print_num ("memsize", (ulong)bd->bi_memsize);
119 print_num ("flashstart", (ulong)bd->bi_flashstart);
120 print_num ("flashsize", (ulong)bd->bi_flashsize);
121 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
122
wdenk4b9206e2004-03-23 22:14:11 +0000123 puts ("ethaddr =");
wdenk4a551702003-10-08 23:26:14 +0000124 for (i=0; i<6; ++i) {
125 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
126 }
wdenk4b9206e2004-03-23 22:14:11 +0000127 puts ("\nip_addr = ");
wdenk4a551702003-10-08 23:26:14 +0000128 print_IPaddr (bd->bi_ip_addr);
129 printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate);
130
131 return 0;
132}
133
134
wdenk8bde7f72003-06-27 21:31:46 +0000135#else /* ! PPC, which leaves MIPS */
136
137int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
138{
139 DECLARE_GLOBAL_DATA_PTR;
140
141 int i;
142 bd_t *bd = gd->bd;
143
144 print_num ("boot_params", (ulong)bd->bi_boot_params);
145 print_num ("memstart", (ulong)bd->bi_memstart);
146 print_num ("memsize", (ulong)bd->bi_memsize);
147 print_num ("flashstart", (ulong)bd->bi_flashstart);
148 print_num ("flashsize", (ulong)bd->bi_flashsize);
149 print_num ("flashoffset", (ulong)bd->bi_flashoffset);
150
wdenk4b9206e2004-03-23 22:14:11 +0000151 puts ("ethaddr =");
wdenk8bde7f72003-06-27 21:31:46 +0000152 for (i=0; i<6; ++i) {
153 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
154 }
wdenk4b9206e2004-03-23 22:14:11 +0000155 puts ("\nip_addr = ");
wdenk8bde7f72003-06-27 21:31:46 +0000156 print_IPaddr (bd->bi_ip_addr);
157 printf ("\nbaudrate = %d bps\n", bd->bi_baudrate);
158
159 return 0;
160}
161#endif /* MIPS */
162
163#else /* ARM */
164
165int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
166{
167 DECLARE_GLOBAL_DATA_PTR;
168
169 int i;
170 bd_t *bd = gd->bd;
171
172 print_num ("arch_number", bd->bi_arch_number);
173 print_num ("env_t", (ulong)bd->bi_env);
174 print_num ("boot_params", (ulong)bd->bi_boot_params);
175
176 for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) {
177 print_num("DRAM bank", i);
178 print_num("-> start", bd->bi_dram[i].start);
179 print_num("-> size", bd->bi_dram[i].size);
180 }
181
wdenk4b9206e2004-03-23 22:14:11 +0000182 puts ("ethaddr =");
wdenk8bde7f72003-06-27 21:31:46 +0000183 for (i=0; i<6; ++i) {
184 printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]);
185 }
wdenk4b9206e2004-03-23 22:14:11 +0000186 puts ( "\n"
wdenk8bde7f72003-06-27 21:31:46 +0000187 "ip_addr = ");
188 print_IPaddr (bd->bi_ip_addr);
wdenkb79a11c2004-03-25 15:14:43 +0000189 printf ("\n"
wdenk8bde7f72003-06-27 21:31:46 +0000190 "baudrate = %d bps\n", bd->bi_baudrate);
191
192 return 0;
193}
194
195#endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
196
197static void print_num(const char *name, ulong value)
198{
199 printf ("%-12s= 0x%08lX\n", name, value);
200}
201
202#ifdef CONFIG_PPC
203static void print_str(const char *name, const char *str)
204{
205 printf ("%-12s= %6s MHz\n", name, str);
206}
207#endif /* CONFIG_PPC */
208
209
210/* -------------------------------------------------------------------- */
211
wdenk0d498392003-07-01 21:06:45 +0000212U_BOOT_CMD(
213 bdinfo, 1, 1, do_bdinfo,
wdenk8bde7f72003-06-27 21:31:46 +0000214 "bdinfo - print Board Info structure\n",
215 NULL
216);
217#endif /* CFG_CMD_BDI */