blob: 17dc96179bb00fd46d8ad962bc531ddc0b8cd843 [file] [log] [blame]
wdenk57b2d802003-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>
Mike Frysinger1a8d6582011-12-04 17:45:22 +000029#include <linux/compiler.h>
wdenk57b2d802003-06-27 21:31:46 +000030
Wolfgang Denk6405a152006-03-31 18:32:53 +020031DECLARE_GLOBAL_DATA_PTR;
wdenk57b2d802003-06-27 21:31:46 +000032
Mike Frysinger1a8d6582011-12-04 17:45:22 +000033__maybe_unused
34static void print_num(const char *name, ulong value)
35{
36 printf("%-12s= 0x%08lX\n", name, value);
37}
wdenk57b2d802003-06-27 21:31:46 +000038
Simon Glass1a0f81d2011-12-06 13:37:17 +000039__maybe_unused
Mike Frysinger1a8d6582011-12-04 17:45:22 +000040static void print_eth(int idx)
41{
42 char name[10], *val;
43 if (idx)
44 sprintf(name, "eth%iaddr", idx);
45 else
46 strcpy(name, "ethaddr");
47 val = getenv(name);
48 if (!val)
49 val = "(not set)";
50 printf("%-12s= %s\n", name, val);
51}
Mike Frysinger9335cc72009-02-11 18:50:10 -050052
Mike Frysinger1a8d6582011-12-04 17:45:22 +000053__maybe_unused
Michal Simekc4c248f2013-01-23 12:21:18 +010054static void print_eths(void)
55{
56 struct eth_device *dev;
57 int i = 0;
58
59 do {
60 dev = eth_get_dev_by_index(i);
61 if (dev) {
62 printf("eth%dname = %s\n", i, dev->name);
63 print_eth(i);
64 i++;
65 }
66 } while (dev);
67
68 printf("current eth = %s\n", eth_get_name());
69 printf("ip_addr = %s\n", getenv("ipaddr"));
70}
71
72__maybe_unused
Daniel Schwierzeck0fdcf1d2012-10-03 08:36:11 +000073static void print_lnum(const char *name, unsigned long long value)
Mike Frysinger1a8d6582011-12-04 17:45:22 +000074{
75 printf("%-12s= 0x%.8llX\n", name, value);
76}
77
78__maybe_unused
79static void print_mhz(const char *name, unsigned long hz)
80{
81 char buf[32];
82
83 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
84}
wdenk57b2d802003-06-27 21:31:46 +000085
Reinhard Meyer0f8337b2010-06-06 19:01:59 +020086#if defined(CONFIG_PPC)
York Sunb0f347c2013-05-14 08:06:39 +000087void __weak board_detail(void)
88{
89 /* Please define boot_detail() for your platform */
90}
wdenk57b2d802003-06-27 21:31:46 +000091
Macpaul Lindfd70642011-04-27 16:28:35 +000092int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk57b2d802003-06-27 21:31:46 +000093{
wdenk57b2d802003-06-27 21:31:46 +000094 bd_t *bd = gd->bd;
wdenk57b2d802003-06-27 21:31:46 +000095
96#ifdef DEBUG
Macpaul Lindfd70642011-04-27 16:28:35 +000097 print_num("bd address", (ulong)bd);
wdenk57b2d802003-06-27 21:31:46 +000098#endif
Macpaul Lindfd70642011-04-27 16:28:35 +000099 print_num("memstart", bd->bi_memstart);
100 print_lnum("memsize", bd->bi_memsize);
101 print_num("flashstart", bd->bi_flashstart);
102 print_num("flashsize", bd->bi_flashsize);
103 print_num("flashoffset", bd->bi_flashoffset);
104 print_num("sramstart", bd->bi_sramstart);
105 print_num("sramsize", bd->bi_sramsize);
106#if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
107 defined(CONFIG_8260) || defined(CONFIG_E500)
108 print_num("immr_base", bd->bi_immr_base);
wdenk57b2d802003-06-27 21:31:46 +0000109#endif
Macpaul Lindfd70642011-04-27 16:28:35 +0000110 print_num("bootflags", bd->bi_bootflags);
111#if defined(CONFIG_405CR) || defined(CONFIG_405EP) || \
112 defined(CONFIG_405GP) || \
113 defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
114 defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
115 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
116 defined(CONFIG_XILINX_405)
Timur Tabi7b480702011-10-05 17:08:07 -0500117 print_mhz("procfreq", bd->bi_procfreq);
118 print_mhz("plb_busfreq", bd->bi_plb_busfreq);
Macpaul Lindfd70642011-04-27 16:28:35 +0000119#if defined(CONFIG_405EP) || defined(CONFIG_405GP) || \
120 defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
121 defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
122 defined(CONFIG_440SPE) || defined(CONFIG_XILINX_405)
Timur Tabi7b480702011-10-05 17:08:07 -0500123 print_mhz("pci_busfreq", bd->bi_pci_busfreq);
wdenk57b2d802003-06-27 21:31:46 +0000124#endif
Michal Simek594c7b52008-06-24 09:54:09 +0200125#else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500126#if defined(CONFIG_CPM2)
Timur Tabi7b480702011-10-05 17:08:07 -0500127 print_mhz("vco", bd->bi_vco);
128 print_mhz("sccfreq", bd->bi_sccfreq);
129 print_mhz("brgfreq", bd->bi_brgfreq);
wdenk57b2d802003-06-27 21:31:46 +0000130#endif
Timur Tabi7b480702011-10-05 17:08:07 -0500131 print_mhz("intfreq", bd->bi_intfreq);
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500132#if defined(CONFIG_CPM2)
Timur Tabi7b480702011-10-05 17:08:07 -0500133 print_mhz("cpmfreq", bd->bi_cpmfreq);
wdenk57b2d802003-06-27 21:31:46 +0000134#endif
Timur Tabi7b480702011-10-05 17:08:07 -0500135 print_mhz("busfreq", bd->bi_busfreq);
Michal Simek594c7b52008-06-24 09:54:09 +0200136#endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
wdenk0aeb8532004-10-10 21:21:55 +0000137
Timur Tabi1587daa2012-03-15 11:42:26 +0000138#ifdef CONFIG_ENABLE_36BIT_PHYS
139#ifdef CONFIG_PHYS_64BIT
140 puts("addressing = 36-bit\n");
141#else
142 puts("addressing = 32-bit\n");
143#endif
144#endif
145
Mike Frysinger9335cc72009-02-11 18:50:10 -0500146 print_eth(0);
wdenk54070ab2004-12-31 09:32:47 +0000147#if defined(CONFIG_HAS_ETH1)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500148 print_eth(1);
wdenk0aeb8532004-10-10 21:21:55 +0000149#endif
wdenk54070ab2004-12-31 09:32:47 +0000150#if defined(CONFIG_HAS_ETH2)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500151 print_eth(2);
wdenk9c53f402003-10-15 23:53:47 +0000152#endif
wdenk54070ab2004-12-31 09:32:47 +0000153#if defined(CONFIG_HAS_ETH3)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500154 print_eth(3);
wdenk0aeb8532004-10-10 21:21:55 +0000155#endif
richardretanubune5167f12008-09-29 18:28:23 -0400156#if defined(CONFIG_HAS_ETH4)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500157 print_eth(4);
richardretanubune5167f12008-09-29 18:28:23 -0400158#endif
richardretanubune5167f12008-09-29 18:28:23 -0400159#if defined(CONFIG_HAS_ETH5)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500160 print_eth(5);
richardretanubune5167f12008-09-29 18:28:23 -0400161#endif
162
wdenk57b2d802003-06-27 21:31:46 +0000163#ifdef CONFIG_HERMES
Timur Tabi7b480702011-10-05 17:08:07 -0500164 print_mhz("ethspeed", bd->bi_ethspeed);
wdenk57b2d802003-06-27 21:31:46 +0000165#endif
Mike Frysinger04b63f22012-04-04 18:53:40 +0000166 printf("IP addr = %s\n", getenv("ipaddr"));
Simon Glass3a7de0b2012-10-12 14:21:14 +0000167 printf("baudrate = %6u bps\n", bd->bi_baudrate);
Macpaul Lindfd70642011-04-27 16:28:35 +0000168 print_num("relocaddr", gd->relocaddr);
York Sunb0f347c2013-05-14 08:06:39 +0000169 board_detail();
wdenk57b2d802003-06-27 21:31:46 +0000170 return 0;
171}
172
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200173#elif defined(CONFIG_NIOS2)
wdenkef3386f2004-10-10 21:27:30 +0000174
Macpaul Lindfd70642011-04-27 16:28:35 +0000175int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkef3386f2004-10-10 21:27:30 +0000176{
wdenkef3386f2004-10-10 21:27:30 +0000177 bd_t *bd = gd->bd;
178
Macpaul Lindfd70642011-04-27 16:28:35 +0000179 print_num("mem start", (ulong)bd->bi_memstart);
180 print_lnum("mem size", (u64)bd->bi_memsize);
181 print_num("flash start", (ulong)bd->bi_flashstart);
182 print_num("flash size", (ulong)bd->bi_flashsize);
183 print_num("flash offset", (ulong)bd->bi_flashoffset);
wdenkef3386f2004-10-10 21:27:30 +0000184
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200185#if defined(CONFIG_SYS_SRAM_BASE)
wdenkef3386f2004-10-10 21:27:30 +0000186 print_num ("sram start", (ulong)bd->bi_sramstart);
187 print_num ("sram size", (ulong)bd->bi_sramsize);
188#endif
189
Jon Loeligerd704d912007-07-10 11:02:44 -0500190#if defined(CONFIG_CMD_NET)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500191 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000192 printf("ip_addr = %s\n", getenv("ipaddr"));
wdenkef3386f2004-10-10 21:27:30 +0000193#endif
194
Simon Glasse335e3c2012-10-12 14:21:12 +0000195 printf("baudrate = %u bps\n", bd->bi_baudrate);
wdenkef3386f2004-10-10 21:27:30 +0000196
197 return 0;
198}
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200199
200#elif defined(CONFIG_MICROBLAZE)
Michal Simek922ce202007-03-11 13:48:24 +0100201
Macpaul Lindfd70642011-04-27 16:28:35 +0000202int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Michal Simek922ce202007-03-11 13:48:24 +0100203{
Michal Simek922ce202007-03-11 13:48:24 +0100204 bd_t *bd = gd->bd;
Macpaul Lindfd70642011-04-27 16:28:35 +0000205 print_num("mem start ", (ulong)bd->bi_memstart);
206 print_lnum("mem size ", (u64)bd->bi_memsize);
207 print_num("flash start ", (ulong)bd->bi_flashstart);
208 print_num("flash size ", (ulong)bd->bi_flashsize);
209 print_num("flash offset ", (ulong)bd->bi_flashoffset);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200210#if defined(CONFIG_SYS_SRAM_BASE)
Macpaul Lindfd70642011-04-27 16:28:35 +0000211 print_num("sram start ", (ulong)bd->bi_sramstart);
212 print_num("sram size ", (ulong)bd->bi_sramsize);
Michal Simek922ce202007-03-11 13:48:24 +0100213#endif
Jon Loeligerd704d912007-07-10 11:02:44 -0500214#if defined(CONFIG_CMD_NET)
Michal Simekc4c248f2013-01-23 12:21:18 +0100215 print_eths();
Michal Simek922ce202007-03-11 13:48:24 +0100216#endif
Michal Simek971eb342013-01-23 14:15:35 +0100217 printf("baudrate = %u bps\n", bd->bi_baudrate);
Michal Simek922ce202007-03-11 13:48:24 +0100218 return 0;
219}
wdenk60164a82003-10-08 23:26:14 +0000220
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200221#elif defined(CONFIG_SPARC)
222
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200223int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Daniel Hellstrom83eb3cc2008-03-26 22:36:03 +0100224{
225 bd_t *bd = gd->bd;
Daniel Hellstrom83eb3cc2008-03-26 22:36:03 +0100226
227#ifdef DEBUG
228 print_num("bd address ", (ulong) bd);
229#endif
230 print_num("memstart ", bd->bi_memstart);
Becky Brucea36601e2008-06-09 20:37:16 -0500231 print_lnum("memsize ", bd->bi_memsize);
Daniel Hellstrom83eb3cc2008-03-26 22:36:03 +0100232 print_num("flashstart ", bd->bi_flashstart);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200233 print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE);
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200234 print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR);
Marek Vasut292af862012-07-27 08:04:33 +0000235 printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%x (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200236 CONFIG_SYS_MONITOR_LEN);
Marek Vasut292af862012-07-27 08:04:33 +0000237 printf("CONFIG_SYS_MALLOC_BASE = 0x%x (%d)\n", CONFIG_SYS_MALLOC_BASE,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200238 CONFIG_SYS_MALLOC_LEN);
Marek Vasut292af862012-07-27 08:04:33 +0000239 printf("CONFIG_SYS_INIT_SP_OFFSET = 0x%x (%d)\n", CONFIG_SYS_INIT_SP_OFFSET,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200240 CONFIG_SYS_STACK_SIZE);
Marek Vasut292af862012-07-27 08:04:33 +0000241 printf("CONFIG_SYS_PROM_OFFSET = 0x%x (%d)\n", CONFIG_SYS_PROM_OFFSET,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200242 CONFIG_SYS_PROM_SIZE);
Marek Vasut292af862012-07-27 08:04:33 +0000243 printf("CONFIG_SYS_GBL_DATA_OFFSET = 0x%x (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET,
Wolfgang Denk0191e472010-10-26 14:34:52 +0200244 GENERATED_GBL_DATA_SIZE);
Daniel Hellstrom83eb3cc2008-03-26 22:36:03 +0100245
246#if defined(CONFIG_CMD_NET)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500247 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000248 printf("ip_addr = %s\n", getenv("ipaddr"));
Daniel Hellstrom83eb3cc2008-03-26 22:36:03 +0100249#endif
Simon Glass78be0022012-10-12 14:21:15 +0000250 printf("baudrate = %6u bps\n", bd->bi_baudrate);
Daniel Hellstrom83eb3cc2008-03-26 22:36:03 +0100251 return 0;
252}
253
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200254#elif defined(CONFIG_M68K)
255
Macpaul Lindfd70642011-04-27 16:28:35 +0000256int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
TsiChung Liewf6afe722007-06-18 13:50:13 -0500257{
TsiChung Liewf6afe722007-06-18 13:50:13 -0500258 bd_t *bd = gd->bd;
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500259
Macpaul Lindfd70642011-04-27 16:28:35 +0000260 print_num("memstart", (ulong)bd->bi_memstart);
261 print_lnum("memsize", (u64)bd->bi_memsize);
262 print_num("flashstart", (ulong)bd->bi_flashstart);
263 print_num("flashsize", (ulong)bd->bi_flashsize);
264 print_num("flashoffset", (ulong)bd->bi_flashoffset);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200265#if defined(CONFIG_SYS_INIT_RAM_ADDR)
Macpaul Lindfd70642011-04-27 16:28:35 +0000266 print_num("sramstart", (ulong)bd->bi_sramstart);
267 print_num("sramsize", (ulong)bd->bi_sramsize);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500268#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200269#if defined(CONFIG_SYS_MBAR)
Macpaul Lindfd70642011-04-27 16:28:35 +0000270 print_num("mbar", bd->bi_mbar_base);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500271#endif
Timur Tabi7b480702011-10-05 17:08:07 -0500272 print_mhz("cpufreq", bd->bi_intfreq);
273 print_mhz("busfreq", bd->bi_busfreq);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500274#ifdef CONFIG_PCI
Timur Tabi7b480702011-10-05 17:08:07 -0500275 print_mhz("pcifreq", bd->bi_pcifreq);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500276#endif
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500277#ifdef CONFIG_EXTRA_CLOCK
Timur Tabi7b480702011-10-05 17:08:07 -0500278 print_mhz("flbfreq", bd->bi_flbfreq);
279 print_mhz("inpfreq", bd->bi_inpfreq);
280 print_mhz("vcofreq", bd->bi_vcofreq);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500281#endif
Stefan Roeseaddc4472007-08-18 14:37:52 +0200282#if defined(CONFIG_CMD_NET)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500283 print_eth(0);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500284#if defined(CONFIG_HAS_ETH1)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500285 print_eth(1);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500286#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500287#if defined(CONFIG_HAS_ETH2)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500288 print_eth(2);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500289#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500290#if defined(CONFIG_HAS_ETH3)
Mike Frysinger9335cc72009-02-11 18:50:10 -0500291 print_eth(3);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500292#endif
293
Mike Frysinger04b63f22012-04-04 18:53:40 +0000294 printf("ip_addr = %s\n", getenv("ipaddr"));
Stefan Roeseaddc4472007-08-18 14:37:52 +0200295#endif
Simon Glassb9b4d222012-10-12 14:21:10 +0000296 printf("baudrate = %u bps\n", bd->bi_baudrate);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500297
298 return 0;
299}
300
Mike Frysingerf443d3c2008-02-04 19:26:55 -0500301#elif defined(CONFIG_BLACKFIN)
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200302
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200303int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysingerf443d3c2008-02-04 19:26:55 -0500304{
Mike Frysingerf443d3c2008-02-04 19:26:55 -0500305 bd_t *bd = gd->bd;
306
307 printf("U-Boot = %s\n", bd->bi_r_version);
308 printf("CPU = %s\n", bd->bi_cpu);
309 printf("Board = %s\n", bd->bi_board_name);
Timur Tabi7b480702011-10-05 17:08:07 -0500310 print_mhz("VCO", bd->bi_vco);
311 print_mhz("CCLK", bd->bi_cclk);
312 print_mhz("SCLK", bd->bi_sclk);
Mike Frysingerf443d3c2008-02-04 19:26:55 -0500313
Macpaul Lindfd70642011-04-27 16:28:35 +0000314 print_num("boot_params", (ulong)bd->bi_boot_params);
315 print_num("memstart", (ulong)bd->bi_memstart);
316 print_lnum("memsize", (u64)bd->bi_memsize);
317 print_num("flashstart", (ulong)bd->bi_flashstart);
318 print_num("flashsize", (ulong)bd->bi_flashsize);
319 print_num("flashoffset", (ulong)bd->bi_flashoffset);
Mike Frysingerf443d3c2008-02-04 19:26:55 -0500320
Mike Frysinger9335cc72009-02-11 18:50:10 -0500321 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000322 printf("ip_addr = %s\n", getenv("ipaddr"));
Simon Glass25c2bad2012-10-12 14:21:17 +0000323 printf("baudrate = %u bps\n", bd->bi_baudrate);
Mike Frysingerf443d3c2008-02-04 19:26:55 -0500324
325 return 0;
326}
327
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200328#elif defined(CONFIG_MIPS)
wdenk57b2d802003-06-27 21:31:46 +0000329
Macpaul Lindfd70642011-04-27 16:28:35 +0000330int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk57b2d802003-06-27 21:31:46 +0000331{
wdenk57b2d802003-06-27 21:31:46 +0000332 bd_t *bd = gd->bd;
333
Macpaul Lindfd70642011-04-27 16:28:35 +0000334 print_num("boot_params", (ulong)bd->bi_boot_params);
335 print_num("memstart", (ulong)bd->bi_memstart);
336 print_lnum("memsize", (u64)bd->bi_memsize);
337 print_num("flashstart", (ulong)bd->bi_flashstart);
338 print_num("flashsize", (ulong)bd->bi_flashsize);
339 print_num("flashoffset", (ulong)bd->bi_flashoffset);
wdenk57b2d802003-06-27 21:31:46 +0000340
Mike Frysinger9335cc72009-02-11 18:50:10 -0500341 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000342 printf("ip_addr = %s\n", getenv("ipaddr"));
Simon Glassc81b6902012-10-12 14:21:18 +0000343 printf("baudrate = %u bps\n", bd->bi_baudrate);
wdenk57b2d802003-06-27 21:31:46 +0000344
345 return 0;
346}
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200347
348#elif defined(CONFIG_AVR32)
349
Macpaul Lindfd70642011-04-27 16:28:35 +0000350int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200351{
352 bd_t *bd = gd->bd;
353
Macpaul Lindfd70642011-04-27 16:28:35 +0000354 print_num("boot_params", (ulong)bd->bi_boot_params);
355 print_num("memstart", (ulong)bd->bi_memstart);
356 print_lnum("memsize", (u64)bd->bi_memsize);
357 print_num("flashstart", (ulong)bd->bi_flashstart);
358 print_num("flashsize", (ulong)bd->bi_flashsize);
359 print_num("flashoffset", (ulong)bd->bi_flashoffset);
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200360
361 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000362 printf("ip_addr = %s\n", getenv("ipaddr"));
Simon Glassf7cd60a2012-10-12 14:21:09 +0000363 printf("baudrate = %u bps\n", bd->bi_baudrate);
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200364
365 return 0;
366}
wdenk57b2d802003-06-27 21:31:46 +0000367
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200368#elif defined(CONFIG_ARM)
wdenk57b2d802003-06-27 21:31:46 +0000369
Macpaul Lindfd70642011-04-27 16:28:35 +0000370int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk57b2d802003-06-27 21:31:46 +0000371{
wdenk57b2d802003-06-27 21:31:46 +0000372 int i;
373 bd_t *bd = gd->bd;
374
Macpaul Lindfd70642011-04-27 16:28:35 +0000375 print_num("arch_number", bd->bi_arch_number);
376 print_num("boot_params", (ulong)bd->bi_boot_params);
wdenk57b2d802003-06-27 21:31:46 +0000377
Macpaul Lindfd70642011-04-27 16:28:35 +0000378 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
wdenk57b2d802003-06-27 21:31:46 +0000379 print_num("DRAM bank", i);
380 print_num("-> start", bd->bi_dram[i].start);
381 print_num("-> size", bd->bi_dram[i].size);
382 }
383
Hebbare6c85282007-12-18 16:03:07 -0800384#if defined(CONFIG_CMD_NET)
Michal Simekc4c248f2013-01-23 12:21:18 +0100385 print_eths();
Hebbare6c85282007-12-18 16:03:07 -0800386#endif
Simon Glassc3b324e2012-10-12 14:21:16 +0000387 printf("baudrate = %u bps\n", bd->bi_baudrate);
Aneesh Vecee9c82011-06-16 23:30:48 +0000388#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Simon Glass6b4ee152012-12-13 20:48:39 +0000389 print_num("TLB addr", gd->arch.tlb_addr);
Heiko Schocheraeb29912010-09-17 13:10:39 +0200390#endif
Macpaul Lindfd70642011-04-27 16:28:35 +0000391 print_num("relocaddr", gd->relocaddr);
392 print_num("reloc off", gd->reloc_off);
393 print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
394 print_num("sp start ", gd->start_addr_sp);
Simon Glass66d6e632012-12-13 20:49:13 +0000395#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
Macpaul Lindfd70642011-04-27 16:28:35 +0000396 print_num("FB base ", gd->fb_base);
Simon Glass66d6e632012-12-13 20:49:13 +0000397#endif
Hadli, Manjunath0dfccbe2012-02-06 00:30:44 +0000398 /*
399 * TODO: Currently only support for davinci SOC's is added.
400 * Remove this check once all the board implement this.
401 */
402#ifdef CONFIG_CLOCKS
403 printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
404 printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
405 printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
406#endif
wdenk57b2d802003-06-27 21:31:46 +0000407 return 0;
408}
409
Nobuhiro Iwamatsu3da00e62010-07-22 16:05:32 +0900410#elif defined(CONFIG_SH)
411
Macpaul Lindfd70642011-04-27 16:28:35 +0000412int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Nobuhiro Iwamatsu3da00e62010-07-22 16:05:32 +0900413{
414 bd_t *bd = gd->bd;
Macpaul Lindfd70642011-04-27 16:28:35 +0000415 print_num("mem start ", (ulong)bd->bi_memstart);
416 print_lnum("mem size ", (u64)bd->bi_memsize);
417 print_num("flash start ", (ulong)bd->bi_flashstart);
418 print_num("flash size ", (ulong)bd->bi_flashsize);
419 print_num("flash offset ", (ulong)bd->bi_flashoffset);
Nobuhiro Iwamatsu3da00e62010-07-22 16:05:32 +0900420
421#if defined(CONFIG_CMD_NET)
422 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000423 printf("ip_addr = %s\n", getenv("ipaddr"));
Nobuhiro Iwamatsu3da00e62010-07-22 16:05:32 +0900424#endif
Simon Glassd9a44622012-10-12 14:21:08 +0000425 printf("baudrate = %u bps\n", bd->bi_baudrate);
Nobuhiro Iwamatsu3da00e62010-07-22 16:05:32 +0900426 return 0;
427}
428
Graeme Russ14917a92010-08-22 16:25:58 +1000429#elif defined(CONFIG_X86)
430
Macpaul Lindfd70642011-04-27 16:28:35 +0000431int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Graeme Russ14917a92010-08-22 16:25:58 +1000432{
433 int i;
434 bd_t *bd = gd->bd;
Graeme Russ14917a92010-08-22 16:25:58 +1000435
Macpaul Lindfd70642011-04-27 16:28:35 +0000436 print_num("boot_params", (ulong)bd->bi_boot_params);
437 print_num("bi_memstart", bd->bi_memstart);
438 print_num("bi_memsize", bd->bi_memsize);
439 print_num("bi_flashstart", bd->bi_flashstart);
440 print_num("bi_flashsize", bd->bi_flashsize);
441 print_num("bi_flashoffset", bd->bi_flashoffset);
442 print_num("bi_sramstart", bd->bi_sramstart);
443 print_num("bi_sramsize", bd->bi_sramsize);
444 print_num("bi_bootflags", bd->bi_bootflags);
Timur Tabi7b480702011-10-05 17:08:07 -0500445 print_mhz("cpufreq", bd->bi_intfreq);
446 print_mhz("busfreq", bd->bi_busfreq);
Graeme Russ14917a92010-08-22 16:25:58 +1000447
Macpaul Lindfd70642011-04-27 16:28:35 +0000448 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
Graeme Russ14917a92010-08-22 16:25:58 +1000449 print_num("DRAM bank", i);
450 print_num("-> start", bd->bi_dram[i].start);
451 print_num("-> size", bd->bi_dram[i].size);
452 }
453
454#if defined(CONFIG_CMD_NET)
455 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000456 printf("ip_addr = %s\n", getenv("ipaddr"));
Timur Tabi7b480702011-10-05 17:08:07 -0500457 print_mhz("ethspeed", bd->bi_ethspeed);
Graeme Russ14917a92010-08-22 16:25:58 +1000458#endif
Simon Glass11aca5f2012-10-12 14:21:20 +0000459 printf("baudrate = %u bps\n", bd->bi_baudrate);
Graeme Russ14917a92010-08-22 16:25:58 +1000460
461 return 0;
462}
463
Simon Glass4413ed32011-09-17 06:48:47 +0000464#elif defined(CONFIG_SANDBOX)
465
466int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
467{
468 int i;
469 bd_t *bd = gd->bd;
470
471 print_num("boot_params", (ulong)bd->bi_boot_params);
472
473 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
474 print_num("DRAM bank", i);
475 print_num("-> start", bd->bi_dram[i].start);
476 print_num("-> size", bd->bi_dram[i].size);
477 }
478
479#if defined(CONFIG_CMD_NET)
480 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000481 printf("ip_addr = %s\n", getenv("ipaddr"));
Simon Glass4413ed32011-09-17 06:48:47 +0000482#endif
Simon Glass66d6e632012-12-13 20:49:13 +0000483#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
Simon Glass4413ed32011-09-17 06:48:47 +0000484 print_num("FB base ", gd->fb_base);
Simon Glass66d6e632012-12-13 20:49:13 +0000485#endif
Simon Glass4413ed32011-09-17 06:48:47 +0000486 return 0;
487}
488
Macpaul Lin354b4e32011-10-19 20:41:09 +0000489#elif defined(CONFIG_NDS32)
490
491int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
492{
493 int i;
494 bd_t *bd = gd->bd;
495
496 print_num("arch_number", bd->bi_arch_number);
497 print_num("boot_params", (ulong)bd->bi_boot_params);
498
499 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
500 print_num("DRAM bank", i);
501 print_num("-> start", bd->bi_dram[i].start);
502 print_num("-> size", bd->bi_dram[i].size);
503 }
504
505#if defined(CONFIG_CMD_NET)
506 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000507 printf("ip_addr = %s\n", getenv("ipaddr"));
Macpaul Lin354b4e32011-10-19 20:41:09 +0000508#endif
Simon Glassf4baef02012-10-12 14:21:19 +0000509 printf("baudrate = %u bps\n", bd->bi_baudrate);
Macpaul Lin354b4e32011-10-19 20:41:09 +0000510
511 return 0;
512}
513
Stefan Kristianssona646fa62011-11-18 19:21:34 +0000514#elif defined(CONFIG_OPENRISC)
515
516int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
517{
518 bd_t *bd = gd->bd;
519
520 print_num("mem start", (ulong)bd->bi_memstart);
521 print_lnum("mem size", (u64)bd->bi_memsize);
522 print_num("flash start", (ulong)bd->bi_flashstart);
523 print_num("flash size", (ulong)bd->bi_flashsize);
524 print_num("flash offset", (ulong)bd->bi_flashoffset);
525
526#if defined(CONFIG_CMD_NET)
527 print_eth(0);
Mike Frysinger04b63f22012-04-04 18:53:40 +0000528 printf("ip_addr = %s\n", getenv("ipaddr"));
Stefan Kristianssona646fa62011-11-18 19:21:34 +0000529#endif
530
Simon Glass00322d92012-10-12 14:21:13 +0000531 printf("baudrate = %u bps\n", bd->bi_baudrate);
Stefan Kristianssona646fa62011-11-18 19:21:34 +0000532
533 return 0;
534}
535
Reinhard Meyer0f8337b2010-06-06 19:01:59 +0200536#else
537 #error "a case for this architecture does not exist!"
538#endif
wdenk57b2d802003-06-27 21:31:46 +0000539
wdenk57b2d802003-06-27 21:31:46 +0000540/* -------------------------------------------------------------------- */
541
wdenkf287a242003-07-01 21:06:45 +0000542U_BOOT_CMD(
543 bdinfo, 1, 1, do_bdinfo,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600544 "print Board Info structure",
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200545 ""
wdenk57b2d802003-06-27 21:31:46 +0000546);