blob: 1c4bed96b5b75fc753cfb89485202cb4fb19f22d [file] [log] [blame]
wdenk8bde7f72003-06-27 21:31:46 +00001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk8bde7f72003-06-27 21:31:46 +00006 */
7
8/*
9 * Boot support
10 */
11#include <common.h>
12#include <command.h>
Mike Frysingerd88af4d2011-12-04 17:45:22 +000013#include <linux/compiler.h>
wdenk8bde7f72003-06-27 21:31:46 +000014
Wolfgang Denkd87080b2006-03-31 18:32:53 +020015DECLARE_GLOBAL_DATA_PTR;
wdenk8bde7f72003-06-27 21:31:46 +000016
Mike Frysingerd88af4d2011-12-04 17:45:22 +000017__maybe_unused
18static void print_num(const char *name, ulong value)
19{
20 printf("%-12s= 0x%08lX\n", name, value);
21}
wdenk8bde7f72003-06-27 21:31:46 +000022
Simon Glass5f3dfad2011-12-06 13:37:17 +000023__maybe_unused
Mike Frysingerd88af4d2011-12-04 17:45:22 +000024static void print_eth(int idx)
25{
26 char name[10], *val;
27 if (idx)
28 sprintf(name, "eth%iaddr", idx);
29 else
30 strcpy(name, "ethaddr");
31 val = getenv(name);
32 if (!val)
33 val = "(not set)";
34 printf("%-12s= %s\n", name, val);
35}
Mike Frysingerde2dff62009-02-11 18:50:10 -050036
Joe Hershberger05c3e682015-03-22 17:09:10 -050037#ifndef CONFIG_DM_ETH
Mike Frysingerd88af4d2011-12-04 17:45:22 +000038__maybe_unused
Michal Simek9fc6a062013-01-23 12:21:18 +010039static void print_eths(void)
40{
41 struct eth_device *dev;
42 int i = 0;
43
44 do {
45 dev = eth_get_dev_by_index(i);
46 if (dev) {
47 printf("eth%dname = %s\n", i, dev->name);
48 print_eth(i);
49 i++;
50 }
51 } while (dev);
52
53 printf("current eth = %s\n", eth_get_name());
54 printf("ip_addr = %s\n", getenv("ipaddr"));
55}
Joe Hershberger05c3e682015-03-22 17:09:10 -050056#endif
Michal Simek9fc6a062013-01-23 12:21:18 +010057
58__maybe_unused
Daniel Schwierzeck47708452012-10-03 08:36:11 +000059static void print_lnum(const char *name, unsigned long long value)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000060{
61 printf("%-12s= 0x%.8llX\n", name, value);
62}
63
64__maybe_unused
65static void print_mhz(const char *name, unsigned long hz)
66{
67 char buf[32];
68
69 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
70}
wdenk8bde7f72003-06-27 21:31:46 +000071
Reinhard Meyerc99ea792010-06-06 19:01:59 +020072#if defined(CONFIG_PPC)
York Sune7939462013-05-14 08:06:39 +000073void __weak board_detail(void)
74{
75 /* Please define boot_detail() for your platform */
76}
wdenk8bde7f72003-06-27 21:31:46 +000077
Macpaul Lin5902e8f2011-04-27 16:28:35 +000078int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk8bde7f72003-06-27 21:31:46 +000079{
wdenk8bde7f72003-06-27 21:31:46 +000080 bd_t *bd = gd->bd;
wdenk8bde7f72003-06-27 21:31:46 +000081
82#ifdef DEBUG
Macpaul Lin5902e8f2011-04-27 16:28:35 +000083 print_num("bd address", (ulong)bd);
wdenk8bde7f72003-06-27 21:31:46 +000084#endif
Macpaul Lin5902e8f2011-04-27 16:28:35 +000085 print_num("memstart", bd->bi_memstart);
86 print_lnum("memsize", bd->bi_memsize);
87 print_num("flashstart", bd->bi_flashstart);
88 print_num("flashsize", bd->bi_flashsize);
89 print_num("flashoffset", bd->bi_flashoffset);
90 print_num("sramstart", bd->bi_sramstart);
91 print_num("sramsize", bd->bi_sramsize);
92#if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
Masahiro Yamada58dac322014-03-05 17:40:10 +090093 defined(CONFIG_MPC8260) || defined(CONFIG_E500)
Macpaul Lin5902e8f2011-04-27 16:28:35 +000094 print_num("immr_base", bd->bi_immr_base);
wdenk8bde7f72003-06-27 21:31:46 +000095#endif
Macpaul Lin5902e8f2011-04-27 16:28:35 +000096 print_num("bootflags", bd->bi_bootflags);
Matthias Fuchs3fb85882013-08-07 12:10:38 +020097#if defined(CONFIG_405EP) || \
Macpaul Lin5902e8f2011-04-27 16:28:35 +000098 defined(CONFIG_405GP) || \
99 defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
100 defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
101 defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
102 defined(CONFIG_XILINX_405)
Timur Tabi0c277ef2011-10-05 17:08:07 -0500103 print_mhz("procfreq", bd->bi_procfreq);
104 print_mhz("plb_busfreq", bd->bi_plb_busfreq);
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000105#if defined(CONFIG_405EP) || defined(CONFIG_405GP) || \
106 defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
107 defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
108 defined(CONFIG_440SPE) || defined(CONFIG_XILINX_405)
Timur Tabi0c277ef2011-10-05 17:08:07 -0500109 print_mhz("pci_busfreq", bd->bi_pci_busfreq);
wdenk8bde7f72003-06-27 21:31:46 +0000110#endif
Matthias Fuchs3fb85882013-08-07 12:10:38 +0200111#else /* ! CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -0500112#if defined(CONFIG_CPM2)
Timur Tabi0c277ef2011-10-05 17:08:07 -0500113 print_mhz("vco", bd->bi_vco);
114 print_mhz("sccfreq", bd->bi_sccfreq);
115 print_mhz("brgfreq", bd->bi_brgfreq);
wdenk8bde7f72003-06-27 21:31:46 +0000116#endif
Timur Tabi0c277ef2011-10-05 17:08:07 -0500117 print_mhz("intfreq", bd->bi_intfreq);
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -0500118#if defined(CONFIG_CPM2)
Timur Tabi0c277ef2011-10-05 17:08:07 -0500119 print_mhz("cpmfreq", bd->bi_cpmfreq);
wdenk8bde7f72003-06-27 21:31:46 +0000120#endif
Timur Tabi0c277ef2011-10-05 17:08:07 -0500121 print_mhz("busfreq", bd->bi_busfreq);
Matthias Fuchs3fb85882013-08-07 12:10:38 +0200122#endif /* CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
wdenk03f5c552004-10-10 21:21:55 +0000123
Timur Tabi34e210f2012-03-15 11:42:26 +0000124#ifdef CONFIG_ENABLE_36BIT_PHYS
125#ifdef CONFIG_PHYS_64BIT
126 puts("addressing = 36-bit\n");
127#else
128 puts("addressing = 32-bit\n");
129#endif
130#endif
131
Mike Frysingerde2dff62009-02-11 18:50:10 -0500132 print_eth(0);
wdenke2ffd592004-12-31 09:32:47 +0000133#if defined(CONFIG_HAS_ETH1)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500134 print_eth(1);
wdenk03f5c552004-10-10 21:21:55 +0000135#endif
wdenke2ffd592004-12-31 09:32:47 +0000136#if defined(CONFIG_HAS_ETH2)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500137 print_eth(2);
wdenk42d1f032003-10-15 23:53:47 +0000138#endif
wdenke2ffd592004-12-31 09:32:47 +0000139#if defined(CONFIG_HAS_ETH3)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500140 print_eth(3);
wdenk03f5c552004-10-10 21:21:55 +0000141#endif
richardretanubunc68a05f2008-09-29 18:28:23 -0400142#if defined(CONFIG_HAS_ETH4)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500143 print_eth(4);
richardretanubunc68a05f2008-09-29 18:28:23 -0400144#endif
richardretanubunc68a05f2008-09-29 18:28:23 -0400145#if defined(CONFIG_HAS_ETH5)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500146 print_eth(5);
richardretanubunc68a05f2008-09-29 18:28:23 -0400147#endif
148
Mike Frysinger50a47d02012-04-04 18:53:40 +0000149 printf("IP addr = %s\n", getenv("ipaddr"));
Masahiro Yamada8e261572014-04-04 20:09:58 +0900150 printf("baudrate = %6u bps\n", gd->baudrate);
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000151 print_num("relocaddr", gd->relocaddr);
York Sune7939462013-05-14 08:06:39 +0000152 board_detail();
wdenk8bde7f72003-06-27 21:31:46 +0000153 return 0;
154}
155
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200156#elif defined(CONFIG_NIOS2)
wdenk5c952cf2004-10-10 21:27:30 +0000157
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000158int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk5c952cf2004-10-10 21:27:30 +0000159{
Thomas Chou744b57b2015-10-27 10:21:06 +0800160 int i;
wdenk5c952cf2004-10-10 21:27:30 +0000161 bd_t *bd = gd->bd;
162
Thomas Chou744b57b2015-10-27 10:21:06 +0800163 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
164 print_num("DRAM bank", i);
165 print_num("-> start", bd->bi_dram[i].start);
166 print_num("-> size", bd->bi_dram[i].size);
167 }
168
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000169 print_num("flash start", (ulong)bd->bi_flashstart);
170 print_num("flash size", (ulong)bd->bi_flashsize);
171 print_num("flash offset", (ulong)bd->bi_flashoffset);
wdenk5c952cf2004-10-10 21:27:30 +0000172
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200173#if defined(CONFIG_SYS_SRAM_BASE)
wdenk5c952cf2004-10-10 21:27:30 +0000174 print_num ("sram start", (ulong)bd->bi_sramstart);
175 print_num ("sram size", (ulong)bd->bi_sramsize);
176#endif
177
Jon Loeliger90253172007-07-10 11:02:44 -0500178#if defined(CONFIG_CMD_NET)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500179 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000180 printf("ip_addr = %s\n", getenv("ipaddr"));
wdenk5c952cf2004-10-10 21:27:30 +0000181#endif
182
Masahiro Yamada8e261572014-04-04 20:09:58 +0900183 printf("baudrate = %u bps\n", gd->baudrate);
wdenk5c952cf2004-10-10 21:27:30 +0000184
185 return 0;
186}
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200187
188#elif defined(CONFIG_MICROBLAZE)
Michal Simekcfc67112007-03-11 13:48:24 +0100189
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000190int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Michal Simekcfc67112007-03-11 13:48:24 +0100191{
Michal Simekcfc67112007-03-11 13:48:24 +0100192 bd_t *bd = gd->bd;
Michal Simeke945f6d2014-05-08 16:08:44 +0200193 int i;
194
195 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
196 print_num("DRAM bank", i);
197 print_num("-> start", bd->bi_dram[i].start);
198 print_num("-> size", bd->bi_dram[i].size);
199 }
200
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000201 print_num("flash start ", (ulong)bd->bi_flashstart);
202 print_num("flash size ", (ulong)bd->bi_flashsize);
203 print_num("flash offset ", (ulong)bd->bi_flashoffset);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200204#if defined(CONFIG_SYS_SRAM_BASE)
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000205 print_num("sram start ", (ulong)bd->bi_sramstart);
206 print_num("sram size ", (ulong)bd->bi_sramsize);
Michal Simekcfc67112007-03-11 13:48:24 +0100207#endif
Michal Simek062f0782015-12-08 15:39:24 +0100208#if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
Michal Simek9fc6a062013-01-23 12:21:18 +0100209 print_eths();
Michal Simekcfc67112007-03-11 13:48:24 +0100210#endif
Masahiro Yamada8e261572014-04-04 20:09:58 +0900211 printf("baudrate = %u bps\n", gd->baudrate);
Michal Simeke945f6d2014-05-08 16:08:44 +0200212 print_num("relocaddr", gd->relocaddr);
213 print_num("reloc off", gd->reloc_off);
Michal Simekde867652015-01-27 15:41:08 +0100214 print_num("fdt_blob", (ulong)gd->fdt_blob);
215 print_num("new_fdt", (ulong)gd->new_fdt);
216 print_num("fdt_size", (ulong)gd->fdt_size);
Michal Simeke945f6d2014-05-08 16:08:44 +0200217
Michal Simekcfc67112007-03-11 13:48:24 +0100218 return 0;
219}
wdenk4a551702003-10-08 23:26:14 +0000220
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200221#elif defined(CONFIG_SPARC)
222
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200223int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Daniel Hellstrom00ab32c2008-03-26 22:36:03 +0100224{
225 bd_t *bd = gd->bd;
Daniel Hellstrom00ab32c2008-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 Bruceb57ca3e2008-06-09 20:37:16 -0500231 print_lnum("memsize ", bd->bi_memsize);
Daniel Hellstrom00ab32c2008-03-26 22:36:03 +0100232 print_num("flashstart ", bd->bi_flashstart);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200233 print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE);
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200234 print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR);
Marek Vasutd97f01a2012-07-27 08:04:33 +0000235 printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%x (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200236 CONFIG_SYS_MONITOR_LEN);
Marek Vasutd97f01a2012-07-27 08:04:33 +0000237 printf("CONFIG_SYS_MALLOC_BASE = 0x%x (%d)\n", CONFIG_SYS_MALLOC_BASE,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200238 CONFIG_SYS_MALLOC_LEN);
Marek Vasutd97f01a2012-07-27 08:04:33 +0000239 printf("CONFIG_SYS_INIT_SP_OFFSET = 0x%x (%d)\n", CONFIG_SYS_INIT_SP_OFFSET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200240 CONFIG_SYS_STACK_SIZE);
Marek Vasutd97f01a2012-07-27 08:04:33 +0000241 printf("CONFIG_SYS_PROM_OFFSET = 0x%x (%d)\n", CONFIG_SYS_PROM_OFFSET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200242 CONFIG_SYS_PROM_SIZE);
Marek Vasutd97f01a2012-07-27 08:04:33 +0000243 printf("CONFIG_SYS_GBL_DATA_OFFSET = 0x%x (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET,
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200244 GENERATED_GBL_DATA_SIZE);
Daniel Hellstrom00ab32c2008-03-26 22:36:03 +0100245
246#if defined(CONFIG_CMD_NET)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500247 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000248 printf("ip_addr = %s\n", getenv("ipaddr"));
Daniel Hellstrom00ab32c2008-03-26 22:36:03 +0100249#endif
Masahiro Yamada8e261572014-04-04 20:09:58 +0900250 printf("baudrate = %6u bps\n", gd->baudrate);
Daniel Hellstrom00ab32c2008-03-26 22:36:03 +0100251 return 0;
252}
253
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200254#elif defined(CONFIG_M68K)
255
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000256int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
TsiChung Liew8e585f02007-06-18 13:50:13 -0500257{
TsiChung Liew8e585f02007-06-18 13:50:13 -0500258 bd_t *bd = gd->bd;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500259
Macpaul Lin5902e8f2011-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-VILLARD6d0f6bc2008-10-16 15:01:15 +0200265#if defined(CONFIG_SYS_INIT_RAM_ADDR)
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000266 print_num("sramstart", (ulong)bd->bi_sramstart);
267 print_num("sramsize", (ulong)bd->bi_sramsize);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500268#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200269#if defined(CONFIG_SYS_MBAR)
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000270 print_num("mbar", bd->bi_mbar_base);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500271#endif
Timur Tabi0c277ef2011-10-05 17:08:07 -0500272 print_mhz("cpufreq", bd->bi_intfreq);
273 print_mhz("busfreq", bd->bi_busfreq);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500274#ifdef CONFIG_PCI
Timur Tabi0c277ef2011-10-05 17:08:07 -0500275 print_mhz("pcifreq", bd->bi_pcifreq);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500276#endif
277#ifdef CONFIG_EXTRA_CLOCK
Timur Tabi0c277ef2011-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);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500281#endif
Stefan Roese26667b72007-08-18 14:37:52 +0200282#if defined(CONFIG_CMD_NET)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500283 print_eth(0);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500284#if defined(CONFIG_HAS_ETH1)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500285 print_eth(1);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500286#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500287#if defined(CONFIG_HAS_ETH2)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500288 print_eth(2);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500289#endif
TsiChung Liew8e585f02007-06-18 13:50:13 -0500290#if defined(CONFIG_HAS_ETH3)
Mike Frysingerde2dff62009-02-11 18:50:10 -0500291 print_eth(3);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500292#endif
293
Mike Frysinger50a47d02012-04-04 18:53:40 +0000294 printf("ip_addr = %s\n", getenv("ipaddr"));
Stefan Roese26667b72007-08-18 14:37:52 +0200295#endif
Masahiro Yamada8e261572014-04-04 20:09:58 +0900296 printf("baudrate = %u bps\n", gd->baudrate);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500297
298 return 0;
299}
300
Mike Frysinger8dc48d72008-02-04 19:26:55 -0500301#elif defined(CONFIG_BLACKFIN)
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200302
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200303int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger8dc48d72008-02-04 19:26:55 -0500304{
Mike Frysinger8dc48d72008-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 Tabi0c277ef2011-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 Frysinger8dc48d72008-02-04 19:26:55 -0500313
Macpaul Lin5902e8f2011-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 Frysinger8dc48d72008-02-04 19:26:55 -0500320
Mike Frysingerde2dff62009-02-11 18:50:10 -0500321 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000322 printf("ip_addr = %s\n", getenv("ipaddr"));
Masahiro Yamada8e261572014-04-04 20:09:58 +0900323 printf("baudrate = %u bps\n", gd->baudrate);
Mike Frysinger8dc48d72008-02-04 19:26:55 -0500324
325 return 0;
326}
327
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200328#elif defined(CONFIG_MIPS)
wdenk8bde7f72003-06-27 21:31:46 +0000329
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000330int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk8bde7f72003-06-27 21:31:46 +0000331{
wdenk8bde7f72003-06-27 21:31:46 +0000332 bd_t *bd = gd->bd;
333
Macpaul Lin5902e8f2011-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);
wdenk8bde7f72003-06-27 21:31:46 +0000340
Mike Frysingerde2dff62009-02-11 18:50:10 -0500341 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000342 printf("ip_addr = %s\n", getenv("ipaddr"));
Masahiro Yamada8e261572014-04-04 20:09:58 +0900343 printf("baudrate = %u bps\n", gd->baudrate);
Tim Chick8cf7a412016-03-31 12:51:20 +0100344 print_num("relocaddr", gd->relocaddr);
345 print_num("reloc off", gd->reloc_off);
wdenk8bde7f72003-06-27 21:31:46 +0000346
347 return 0;
348}
wdenk8bde7f72003-06-27 21:31:46 +0000349
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200350#elif defined(CONFIG_AVR32)
351
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000352int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200353{
354 bd_t *bd = gd->bd;
355
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000356 print_num("boot_params", (ulong)bd->bi_boot_params);
Andreas Bießmanna752a8b2015-02-06 23:06:48 +0100357 print_num("memstart", (ulong)bd->bi_dram[0].start);
358 print_lnum("memsize", (u64)bd->bi_dram[0].size);
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000359 print_num("flashstart", (ulong)bd->bi_flashstart);
360 print_num("flashsize", (ulong)bd->bi_flashsize);
361 print_num("flashoffset", (ulong)bd->bi_flashoffset);
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200362
363 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000364 printf("ip_addr = %s\n", getenv("ipaddr"));
Masahiro Yamada8e261572014-04-04 20:09:58 +0900365 printf("baudrate = %u bps\n", gd->baudrate);
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200366
367 return 0;
368}
369
370#elif defined(CONFIG_ARM)
wdenk8bde7f72003-06-27 21:31:46 +0000371
Jeroen Hofstee0e350f82014-06-23 00:22:08 +0200372static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc,
373 char * const argv[])
wdenk8bde7f72003-06-27 21:31:46 +0000374{
wdenk8bde7f72003-06-27 21:31:46 +0000375 int i;
376 bd_t *bd = gd->bd;
377
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000378 print_num("arch_number", bd->bi_arch_number);
379 print_num("boot_params", (ulong)bd->bi_boot_params);
wdenk8bde7f72003-06-27 21:31:46 +0000380
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000381 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
wdenk8bde7f72003-06-27 21:31:46 +0000382 print_num("DRAM bank", i);
383 print_num("-> start", bd->bi_dram[i].start);
384 print_num("-> size", bd->bi_dram[i].size);
385 }
386
York Sune8149522015-12-04 11:57:07 -0800387#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
388 if (gd->secure_ram & MEM_RESERVE_SECURE_SECURED) {
389 print_num("Secure ram",
390 gd->secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
391 }
392#endif
Simon Glassff973802015-04-05 16:07:38 -0600393#if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
Michal Simek9fc6a062013-01-23 12:21:18 +0100394 print_eths();
Hebbara41dbbd2007-12-18 16:03:07 -0800395#endif
Masahiro Yamada8e261572014-04-04 20:09:58 +0900396 printf("baudrate = %u bps\n", gd->baudrate);
Aneesh Ve47f2db2011-06-16 23:30:48 +0000397#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Simon Glass34fd5d22012-12-13 20:48:39 +0000398 print_num("TLB addr", gd->arch.tlb_addr);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200399#endif
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000400 print_num("relocaddr", gd->relocaddr);
401 print_num("reloc off", gd->reloc_off);
402 print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
403 print_num("sp start ", gd->start_addr_sp);
Simon Glassc8fcd0f2012-12-13 20:49:13 +0000404#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000405 print_num("FB base ", gd->fb_base);
Simon Glassc8fcd0f2012-12-13 20:49:13 +0000406#endif
Hadli, Manjunath8f5d4682012-02-06 00:30:44 +0000407 /*
408 * TODO: Currently only support for davinci SOC's is added.
409 * Remove this check once all the board implement this.
410 */
411#ifdef CONFIG_CLOCKS
412 printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
413 printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
414 printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
415#endif
Hannes Schmelzer7bb7d672015-06-11 12:27:09 +0200416#ifdef CONFIG_BOARD_TYPES
417 printf("Board Type = %ld\n", gd->board_type);
418#endif
wdenk8bde7f72003-06-27 21:31:46 +0000419 return 0;
420}
421
Nobuhiro Iwamatsuebd0d062010-07-22 16:05:32 +0900422#elif defined(CONFIG_SH)
423
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000424int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Nobuhiro Iwamatsuebd0d062010-07-22 16:05:32 +0900425{
426 bd_t *bd = gd->bd;
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000427 print_num("mem start ", (ulong)bd->bi_memstart);
428 print_lnum("mem size ", (u64)bd->bi_memsize);
429 print_num("flash start ", (ulong)bd->bi_flashstart);
430 print_num("flash size ", (ulong)bd->bi_flashsize);
431 print_num("flash offset ", (ulong)bd->bi_flashoffset);
Nobuhiro Iwamatsuebd0d062010-07-22 16:05:32 +0900432
433#if defined(CONFIG_CMD_NET)
434 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000435 printf("ip_addr = %s\n", getenv("ipaddr"));
Nobuhiro Iwamatsuebd0d062010-07-22 16:05:32 +0900436#endif
Masahiro Yamada8e261572014-04-04 20:09:58 +0900437 printf("baudrate = %u bps\n", gd->baudrate);
Nobuhiro Iwamatsuebd0d062010-07-22 16:05:32 +0900438 return 0;
439}
440
Graeme Russa806ee62010-08-22 16:25:58 +1000441#elif defined(CONFIG_X86)
442
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000443int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Graeme Russa806ee62010-08-22 16:25:58 +1000444{
445 int i;
446 bd_t *bd = gd->bd;
Graeme Russa806ee62010-08-22 16:25:58 +1000447
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000448 print_num("boot_params", (ulong)bd->bi_boot_params);
449 print_num("bi_memstart", bd->bi_memstart);
450 print_num("bi_memsize", bd->bi_memsize);
451 print_num("bi_flashstart", bd->bi_flashstart);
452 print_num("bi_flashsize", bd->bi_flashsize);
453 print_num("bi_flashoffset", bd->bi_flashoffset);
454 print_num("bi_sramstart", bd->bi_sramstart);
455 print_num("bi_sramsize", bd->bi_sramsize);
456 print_num("bi_bootflags", bd->bi_bootflags);
Timur Tabi0c277ef2011-10-05 17:08:07 -0500457 print_mhz("cpufreq", bd->bi_intfreq);
458 print_mhz("busfreq", bd->bi_busfreq);
Graeme Russa806ee62010-08-22 16:25:58 +1000459
Macpaul Lin5902e8f2011-04-27 16:28:35 +0000460 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
Graeme Russa806ee62010-08-22 16:25:58 +1000461 print_num("DRAM bank", i);
462 print_num("-> start", bd->bi_dram[i].start);
463 print_num("-> size", bd->bi_dram[i].size);
464 }
465
466#if defined(CONFIG_CMD_NET)
467 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000468 printf("ip_addr = %s\n", getenv("ipaddr"));
Timur Tabi0c277ef2011-10-05 17:08:07 -0500469 print_mhz("ethspeed", bd->bi_ethspeed);
Graeme Russa806ee62010-08-22 16:25:58 +1000470#endif
Masahiro Yamada8e261572014-04-04 20:09:58 +0900471 printf("baudrate = %u bps\n", gd->baudrate);
Graeme Russa806ee62010-08-22 16:25:58 +1000472
473 return 0;
474}
475
Simon Glass6fcc3be2011-09-17 06:48:47 +0000476#elif defined(CONFIG_SANDBOX)
477
478int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
479{
480 int i;
481 bd_t *bd = gd->bd;
482
483 print_num("boot_params", (ulong)bd->bi_boot_params);
484
485 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
486 print_num("DRAM bank", i);
487 print_num("-> start", bd->bi_dram[i].start);
488 print_num("-> size", bd->bi_dram[i].size);
489 }
490
491#if defined(CONFIG_CMD_NET)
492 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000493 printf("ip_addr = %s\n", getenv("ipaddr"));
Simon Glass6fcc3be2011-09-17 06:48:47 +0000494#endif
Simon Glassc8fcd0f2012-12-13 20:49:13 +0000495#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
Simon Glass6fcc3be2011-09-17 06:48:47 +0000496 print_num("FB base ", gd->fb_base);
Simon Glassc8fcd0f2012-12-13 20:49:13 +0000497#endif
Simon Glass6fcc3be2011-09-17 06:48:47 +0000498 return 0;
499}
500
Macpaul Lin64d61462011-10-19 20:41:09 +0000501#elif defined(CONFIG_NDS32)
502
503int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
504{
505 int i;
506 bd_t *bd = gd->bd;
507
508 print_num("arch_number", bd->bi_arch_number);
509 print_num("boot_params", (ulong)bd->bi_boot_params);
510
511 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
512 print_num("DRAM bank", i);
513 print_num("-> start", bd->bi_dram[i].start);
514 print_num("-> size", bd->bi_dram[i].size);
515 }
516
517#if defined(CONFIG_CMD_NET)
518 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000519 printf("ip_addr = %s\n", getenv("ipaddr"));
Macpaul Lin64d61462011-10-19 20:41:09 +0000520#endif
Masahiro Yamada8e261572014-04-04 20:09:58 +0900521 printf("baudrate = %u bps\n", gd->baudrate);
Macpaul Lin64d61462011-10-19 20:41:09 +0000522
523 return 0;
524}
525
Stefan Kristiansson2be9fdb2011-11-18 19:21:34 +0000526#elif defined(CONFIG_OPENRISC)
527
528int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
529{
530 bd_t *bd = gd->bd;
531
532 print_num("mem start", (ulong)bd->bi_memstart);
533 print_lnum("mem size", (u64)bd->bi_memsize);
534 print_num("flash start", (ulong)bd->bi_flashstart);
535 print_num("flash size", (ulong)bd->bi_flashsize);
536 print_num("flash offset", (ulong)bd->bi_flashoffset);
537
538#if defined(CONFIG_CMD_NET)
539 print_eth(0);
Mike Frysinger50a47d02012-04-04 18:53:40 +0000540 printf("ip_addr = %s\n", getenv("ipaddr"));
Stefan Kristiansson2be9fdb2011-11-18 19:21:34 +0000541#endif
542
Masahiro Yamada8e261572014-04-04 20:09:58 +0900543 printf("baudrate = %u bps\n", gd->baudrate);
Stefan Kristiansson2be9fdb2011-11-18 19:21:34 +0000544
545 return 0;
546}
547
Alexey Brodkin946f6f22014-12-26 11:03:15 +0300548#elif defined(CONFIG_ARC)
Alexey Brodkinbc5d5422014-02-04 12:56:16 +0400549
550int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
551{
552 bd_t *bd = gd->bd;
553
554 print_num("mem start", bd->bi_memstart);
555 print_lnum("mem size", bd->bi_memsize);
556
557#if defined(CONFIG_CMD_NET)
558 print_eth(0);
559 printf("ip_addr = %s\n", getenv("ipaddr"));
560#endif
Masahiro Yamada8e261572014-04-04 20:09:58 +0900561 printf("baudrate = %d bps\n", gd->baudrate);
Alexey Brodkinbc5d5422014-02-04 12:56:16 +0400562
563 return 0;
564}
565
Reinhard Meyerc99ea792010-06-06 19:01:59 +0200566#else
567 #error "a case for this architecture does not exist!"
568#endif
wdenk8bde7f72003-06-27 21:31:46 +0000569
wdenk8bde7f72003-06-27 21:31:46 +0000570/* -------------------------------------------------------------------- */
571
wdenk0d498392003-07-01 21:06:45 +0000572U_BOOT_CMD(
573 bdinfo, 1, 1, do_bdinfo,
Peter Tyser2fb26042009-01-27 18:03:12 -0600574 "print Board Info structure",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200575 ""
wdenk8bde7f72003-06-27 21:31:46 +0000576);