wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * Boot support |
| 10 | */ |
| 11 | #include <common.h> |
| 12 | #include <command.h> |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 13 | #include <linux/compiler.h> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 14 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 15 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 16 | |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 17 | __maybe_unused |
| 18 | static void print_num(const char *name, ulong value) |
| 19 | { |
| 20 | printf("%-12s= 0x%08lX\n", name, value); |
| 21 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 22 | |
Simon Glass | 5f3dfad | 2011-12-06 13:37:17 +0000 | [diff] [blame] | 23 | __maybe_unused |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 24 | static 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 Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 36 | |
Joe Hershberger | 05c3e68 | 2015-03-22 17:09:10 -0500 | [diff] [blame] | 37 | #ifndef CONFIG_DM_ETH |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 38 | __maybe_unused |
Michal Simek | 9fc6a06 | 2013-01-23 12:21:18 +0100 | [diff] [blame] | 39 | static 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 Hershberger | 05c3e68 | 2015-03-22 17:09:10 -0500 | [diff] [blame] | 56 | #endif |
Michal Simek | 9fc6a06 | 2013-01-23 12:21:18 +0100 | [diff] [blame] | 57 | |
| 58 | __maybe_unused |
Daniel Schwierzeck | 4770845 | 2012-10-03 08:36:11 +0000 | [diff] [blame] | 59 | static void print_lnum(const char *name, unsigned long long value) |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 60 | { |
| 61 | printf("%-12s= 0x%.8llX\n", name, value); |
| 62 | } |
| 63 | |
| 64 | __maybe_unused |
| 65 | static 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 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 71 | |
Max Filippov | 171e539 | 2016-07-28 03:57:18 +0300 | [diff] [blame] | 72 | |
| 73 | static inline void print_bi_boot_params(const bd_t *bd) |
| 74 | { |
| 75 | print_num("boot_params", (ulong)bd->bi_boot_params); |
| 76 | } |
| 77 | |
Max Filippov | 12feb36 | 2016-07-28 03:57:19 +0300 | [diff] [blame] | 78 | static inline void print_bi_mem(const bd_t *bd) |
| 79 | { |
| 80 | #if defined(CONFIG_SH) |
| 81 | print_num("mem start ", (ulong)bd->bi_memstart); |
| 82 | print_lnum("mem size ", (u64)bd->bi_memsize); |
| 83 | #elif defined(CONFIG_ARC) |
| 84 | print_num("mem start", (ulong)bd->bi_memstart); |
| 85 | print_lnum("mem size", (u64)bd->bi_memsize); |
| 86 | #elif defined(CONFIG_AVR32) |
| 87 | print_num("memstart", (ulong)bd->bi_dram[0].start); |
| 88 | print_lnum("memsize", (u64)bd->bi_dram[0].size); |
| 89 | #else |
| 90 | print_num("memstart", (ulong)bd->bi_memstart); |
| 91 | print_lnum("memsize", (u64)bd->bi_memsize); |
| 92 | #endif |
| 93 | } |
| 94 | |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 95 | static inline void print_bi_dram(const bd_t *bd) |
| 96 | { |
| 97 | #ifdef CONFIG_NR_DRAM_BANKS |
| 98 | int i; |
| 99 | |
| 100 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
Simon Glass | ddd917b | 2016-08-05 21:57:27 -0600 | [diff] [blame] | 101 | if (bd->bi_dram[i].size) { |
| 102 | print_num("DRAM bank", i); |
| 103 | print_num("-> start", bd->bi_dram[i].start); |
| 104 | print_num("-> size", bd->bi_dram[i].size); |
| 105 | } |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 106 | } |
| 107 | #endif |
| 108 | } |
| 109 | |
Max Filippov | f80e535 | 2016-07-28 03:57:21 +0300 | [diff] [blame] | 110 | static inline void print_bi_flash(const bd_t *bd) |
| 111 | { |
| 112 | #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_SH) |
| 113 | print_num("flash start ", (ulong)bd->bi_flashstart); |
| 114 | print_num("flash size ", (ulong)bd->bi_flashsize); |
| 115 | print_num("flash offset ", (ulong)bd->bi_flashoffset); |
| 116 | |
| 117 | #elif defined(CONFIG_NIOS2) || defined(CONFIG_OPENRISC) |
| 118 | print_num("flash start", (ulong)bd->bi_flashstart); |
| 119 | print_num("flash size", (ulong)bd->bi_flashsize); |
| 120 | print_num("flash offset", (ulong)bd->bi_flashoffset); |
| 121 | #else |
| 122 | print_num("flashstart", (ulong)bd->bi_flashstart); |
| 123 | print_num("flashsize", (ulong)bd->bi_flashsize); |
| 124 | print_num("flashoffset", (ulong)bd->bi_flashoffset); |
| 125 | #endif |
| 126 | } |
| 127 | |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 128 | static inline void print_eth_ip_addr(void) |
| 129 | { |
| 130 | #if defined(CONFIG_CMD_NET) |
| 131 | print_eth(0); |
| 132 | #if defined(CONFIG_HAS_ETH1) |
| 133 | print_eth(1); |
| 134 | #endif |
| 135 | #if defined(CONFIG_HAS_ETH2) |
| 136 | print_eth(2); |
| 137 | #endif |
| 138 | #if defined(CONFIG_HAS_ETH3) |
| 139 | print_eth(3); |
| 140 | #endif |
| 141 | #if defined(CONFIG_HAS_ETH4) |
| 142 | print_eth(4); |
| 143 | #endif |
| 144 | #if defined(CONFIG_HAS_ETH5) |
| 145 | print_eth(5); |
| 146 | #endif |
| 147 | printf("IP addr = %s\n", getenv("ipaddr")); |
| 148 | #endif |
| 149 | } |
| 150 | |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 151 | static inline void print_baudrate(void) |
| 152 | { |
| 153 | #if defined(CONFIG_PPC) |
| 154 | printf("baudrate = %6u bps\n", gd->baudrate); |
| 155 | #elif defined(CONFIG_SPARC) |
| 156 | printf("baudrate = %6u bps\n", gd->baudrate); |
| 157 | #else |
| 158 | printf("baudrate = %u bps\n", gd->baudrate); |
| 159 | #endif |
| 160 | } |
| 161 | |
Max Filippov | e379508 | 2016-07-28 03:57:24 +0300 | [diff] [blame] | 162 | static inline void print_std_bdinfo(const bd_t *bd) |
| 163 | { |
| 164 | print_bi_boot_params(bd); |
| 165 | print_bi_mem(bd); |
| 166 | print_bi_flash(bd); |
| 167 | print_eth_ip_addr(); |
| 168 | print_baudrate(); |
| 169 | } |
| 170 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 171 | #if defined(CONFIG_PPC) |
York Sun | e793946 | 2013-05-14 08:06:39 +0000 | [diff] [blame] | 172 | void __weak board_detail(void) |
| 173 | { |
| 174 | /* Please define boot_detail() for your platform */ |
| 175 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 176 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 177 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 178 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 179 | bd_t *bd = gd->bd; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 180 | |
| 181 | #ifdef DEBUG |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 182 | print_num("bd address", (ulong)bd); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 183 | #endif |
Max Filippov | 12feb36 | 2016-07-28 03:57:19 +0300 | [diff] [blame] | 184 | print_bi_mem(bd); |
Max Filippov | f80e535 | 2016-07-28 03:57:21 +0300 | [diff] [blame] | 185 | print_bi_flash(bd); |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 186 | print_num("sramstart", bd->bi_sramstart); |
| 187 | print_num("sramsize", bd->bi_sramsize); |
| 188 | #if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \ |
Masahiro Yamada | 58dac32 | 2014-03-05 17:40:10 +0900 | [diff] [blame] | 189 | defined(CONFIG_MPC8260) || defined(CONFIG_E500) |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 190 | print_num("immr_base", bd->bi_immr_base); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 191 | #endif |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 192 | print_num("bootflags", bd->bi_bootflags); |
Matthias Fuchs | 3fb8588 | 2013-08-07 12:10:38 +0200 | [diff] [blame] | 193 | #if defined(CONFIG_405EP) || \ |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 194 | defined(CONFIG_405GP) || \ |
| 195 | defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \ |
| 196 | defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \ |
| 197 | defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \ |
| 198 | defined(CONFIG_XILINX_405) |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 199 | print_mhz("procfreq", bd->bi_procfreq); |
| 200 | print_mhz("plb_busfreq", bd->bi_plb_busfreq); |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 201 | #if defined(CONFIG_405EP) || defined(CONFIG_405GP) || \ |
| 202 | defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \ |
| 203 | defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \ |
| 204 | defined(CONFIG_440SPE) || defined(CONFIG_XILINX_405) |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 205 | print_mhz("pci_busfreq", bd->bi_pci_busfreq); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 206 | #endif |
Matthias Fuchs | 3fb8588 | 2013-08-07 12:10:38 +0200 | [diff] [blame] | 207 | #else /* ! CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */ |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 208 | #if defined(CONFIG_CPM2) |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 209 | print_mhz("vco", bd->bi_vco); |
| 210 | print_mhz("sccfreq", bd->bi_sccfreq); |
| 211 | print_mhz("brgfreq", bd->bi_brgfreq); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 212 | #endif |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 213 | print_mhz("intfreq", bd->bi_intfreq); |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 214 | #if defined(CONFIG_CPM2) |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 215 | print_mhz("cpmfreq", bd->bi_cpmfreq); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 216 | #endif |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 217 | print_mhz("busfreq", bd->bi_busfreq); |
Matthias Fuchs | 3fb8588 | 2013-08-07 12:10:38 +0200 | [diff] [blame] | 218 | #endif /* CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */ |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 219 | |
Timur Tabi | 34e210f | 2012-03-15 11:42:26 +0000 | [diff] [blame] | 220 | #ifdef CONFIG_ENABLE_36BIT_PHYS |
| 221 | #ifdef CONFIG_PHYS_64BIT |
| 222 | puts("addressing = 36-bit\n"); |
| 223 | #else |
| 224 | puts("addressing = 32-bit\n"); |
| 225 | #endif |
| 226 | #endif |
| 227 | |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 228 | print_eth_ip_addr(); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 229 | print_baudrate(); |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 230 | print_num("relocaddr", gd->relocaddr); |
York Sun | e793946 | 2013-05-14 08:06:39 +0000 | [diff] [blame] | 231 | board_detail(); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 232 | return 0; |
| 233 | } |
| 234 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 235 | #elif defined(CONFIG_NIOS2) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 236 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 237 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 238 | { |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 239 | bd_t *bd = gd->bd; |
| 240 | |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 241 | print_bi_dram(bd); |
Max Filippov | f80e535 | 2016-07-28 03:57:21 +0300 | [diff] [blame] | 242 | print_bi_flash(bd); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 243 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 244 | #if defined(CONFIG_SYS_SRAM_BASE) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 245 | print_num ("sram start", (ulong)bd->bi_sramstart); |
| 246 | print_num ("sram size", (ulong)bd->bi_sramsize); |
| 247 | #endif |
| 248 | |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 249 | print_eth_ip_addr(); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 250 | print_baudrate(); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 251 | |
| 252 | return 0; |
| 253 | } |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 254 | |
| 255 | #elif defined(CONFIG_MICROBLAZE) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 256 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 257 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 258 | { |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 259 | bd_t *bd = gd->bd; |
Michal Simek | e945f6d | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 260 | |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 261 | print_bi_dram(bd); |
Max Filippov | f80e535 | 2016-07-28 03:57:21 +0300 | [diff] [blame] | 262 | print_bi_flash(bd); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 263 | #if defined(CONFIG_SYS_SRAM_BASE) |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 264 | print_num("sram start ", (ulong)bd->bi_sramstart); |
| 265 | print_num("sram size ", (ulong)bd->bi_sramsize); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 266 | #endif |
Michal Simek | 062f078 | 2015-12-08 15:39:24 +0100 | [diff] [blame] | 267 | #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH) |
Michal Simek | 9fc6a06 | 2013-01-23 12:21:18 +0100 | [diff] [blame] | 268 | print_eths(); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 269 | #endif |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 270 | print_baudrate(); |
Michal Simek | e945f6d | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 271 | print_num("relocaddr", gd->relocaddr); |
| 272 | print_num("reloc off", gd->reloc_off); |
Michal Simek | de86765 | 2015-01-27 15:41:08 +0100 | [diff] [blame] | 273 | print_num("fdt_blob", (ulong)gd->fdt_blob); |
| 274 | print_num("new_fdt", (ulong)gd->new_fdt); |
| 275 | print_num("fdt_size", (ulong)gd->fdt_size); |
Michal Simek | e945f6d | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 276 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 277 | return 0; |
| 278 | } |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 279 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 280 | #elif defined(CONFIG_SPARC) |
| 281 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 282 | int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[]) |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 283 | { |
| 284 | bd_t *bd = gd->bd; |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 285 | |
| 286 | #ifdef DEBUG |
| 287 | print_num("bd address ", (ulong) bd); |
| 288 | #endif |
| 289 | print_num("memstart ", bd->bi_memstart); |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 290 | print_lnum("memsize ", bd->bi_memsize); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 291 | print_num("flashstart ", bd->bi_flashstart); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 292 | print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 293 | print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 294 | printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%x (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 295 | CONFIG_SYS_MONITOR_LEN); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 296 | printf("CONFIG_SYS_MALLOC_BASE = 0x%x (%d)\n", CONFIG_SYS_MALLOC_BASE, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 297 | CONFIG_SYS_MALLOC_LEN); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 298 | printf("CONFIG_SYS_INIT_SP_OFFSET = 0x%x (%d)\n", CONFIG_SYS_INIT_SP_OFFSET, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 299 | CONFIG_SYS_STACK_SIZE); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 300 | printf("CONFIG_SYS_PROM_OFFSET = 0x%x (%d)\n", CONFIG_SYS_PROM_OFFSET, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 301 | CONFIG_SYS_PROM_SIZE); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 302 | printf("CONFIG_SYS_GBL_DATA_OFFSET = 0x%x (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET, |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 303 | GENERATED_GBL_DATA_SIZE); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 304 | |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 305 | print_eth_ip_addr(); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 306 | print_baudrate(); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 307 | return 0; |
| 308 | } |
| 309 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 310 | #elif defined(CONFIG_M68K) |
| 311 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 312 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 313 | { |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 314 | bd_t *bd = gd->bd; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 315 | |
Max Filippov | 12feb36 | 2016-07-28 03:57:19 +0300 | [diff] [blame] | 316 | print_bi_mem(bd); |
Max Filippov | f80e535 | 2016-07-28 03:57:21 +0300 | [diff] [blame] | 317 | print_bi_flash(bd); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 318 | #if defined(CONFIG_SYS_INIT_RAM_ADDR) |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 319 | print_num("sramstart", (ulong)bd->bi_sramstart); |
| 320 | print_num("sramsize", (ulong)bd->bi_sramsize); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 321 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 322 | #if defined(CONFIG_SYS_MBAR) |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 323 | print_num("mbar", bd->bi_mbar_base); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 324 | #endif |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 325 | print_mhz("cpufreq", bd->bi_intfreq); |
| 326 | print_mhz("busfreq", bd->bi_busfreq); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 327 | #ifdef CONFIG_PCI |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 328 | print_mhz("pcifreq", bd->bi_pcifreq); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 329 | #endif |
| 330 | #ifdef CONFIG_EXTRA_CLOCK |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 331 | print_mhz("flbfreq", bd->bi_flbfreq); |
| 332 | print_mhz("inpfreq", bd->bi_inpfreq); |
| 333 | print_mhz("vcofreq", bd->bi_vcofreq); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 334 | #endif |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 335 | print_eth_ip_addr(); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 336 | print_baudrate(); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 337 | |
| 338 | return 0; |
| 339 | } |
| 340 | |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 341 | #elif defined(CONFIG_BLACKFIN) |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 342 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 343 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 344 | { |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 345 | bd_t *bd = gd->bd; |
| 346 | |
| 347 | printf("U-Boot = %s\n", bd->bi_r_version); |
| 348 | printf("CPU = %s\n", bd->bi_cpu); |
| 349 | printf("Board = %s\n", bd->bi_board_name); |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 350 | print_mhz("VCO", bd->bi_vco); |
| 351 | print_mhz("CCLK", bd->bi_cclk); |
| 352 | print_mhz("SCLK", bd->bi_sclk); |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 353 | |
Max Filippov | e379508 | 2016-07-28 03:57:24 +0300 | [diff] [blame] | 354 | print_std_bdinfo(bd); |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 355 | |
| 356 | return 0; |
| 357 | } |
| 358 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 359 | #elif defined(CONFIG_MIPS) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 360 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 361 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 362 | { |
Max Filippov | e379508 | 2016-07-28 03:57:24 +0300 | [diff] [blame] | 363 | print_std_bdinfo(gd->bd); |
Tim Chick | 8cf7a41 | 2016-03-31 12:51:20 +0100 | [diff] [blame] | 364 | print_num("relocaddr", gd->relocaddr); |
| 365 | print_num("reloc off", gd->reloc_off); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 366 | |
| 367 | return 0; |
| 368 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 369 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 370 | #elif defined(CONFIG_AVR32) |
| 371 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 372 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 373 | { |
Max Filippov | e379508 | 2016-07-28 03:57:24 +0300 | [diff] [blame] | 374 | print_std_bdinfo(gd->bd); |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 375 | return 0; |
| 376 | } |
| 377 | |
| 378 | #elif defined(CONFIG_ARM) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 379 | |
Jeroen Hofstee | 0e350f8 | 2014-06-23 00:22:08 +0200 | [diff] [blame] | 380 | static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, |
| 381 | char * const argv[]) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 382 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 383 | bd_t *bd = gd->bd; |
| 384 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 385 | print_num("arch_number", bd->bi_arch_number); |
Max Filippov | 171e539 | 2016-07-28 03:57:18 +0300 | [diff] [blame] | 386 | print_bi_boot_params(bd); |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 387 | print_bi_dram(bd); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 388 | |
York Sun | e814952 | 2015-12-04 11:57:07 -0800 | [diff] [blame] | 389 | #ifdef CONFIG_SYS_MEM_RESERVE_SECURE |
York Sun | e61a753 | 2016-06-24 16:46:18 -0700 | [diff] [blame] | 390 | if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) { |
York Sun | e814952 | 2015-12-04 11:57:07 -0800 | [diff] [blame] | 391 | print_num("Secure ram", |
York Sun | e61a753 | 2016-06-24 16:46:18 -0700 | [diff] [blame] | 392 | gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK); |
York Sun | e814952 | 2015-12-04 11:57:07 -0800 | [diff] [blame] | 393 | } |
| 394 | #endif |
York Sun | f2ccf7f | 2017-03-06 09:02:24 -0800 | [diff] [blame] | 395 | #ifdef CONFIG_RESV_RAM |
| 396 | if (gd->arch.resv_ram) |
| 397 | print_num("Reserved ram", gd->arch.resv_ram); |
| 398 | #endif |
Simon Glass | ff97380 | 2015-04-05 16:07:38 -0600 | [diff] [blame] | 399 | #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH) |
Michal Simek | 9fc6a06 | 2013-01-23 12:21:18 +0100 | [diff] [blame] | 400 | print_eths(); |
Hebbar | a41dbbd | 2007-12-18 16:03:07 -0800 | [diff] [blame] | 401 | #endif |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 402 | print_baudrate(); |
Aneesh V | e47f2db | 2011-06-16 23:30:48 +0000 | [diff] [blame] | 403 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) |
Simon Glass | 34fd5d2 | 2012-12-13 20:48:39 +0000 | [diff] [blame] | 404 | print_num("TLB addr", gd->arch.tlb_addr); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 405 | #endif |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 406 | print_num("relocaddr", gd->relocaddr); |
| 407 | print_num("reloc off", gd->reloc_off); |
| 408 | print_num("irq_sp", gd->irq_sp); /* irq stack pointer */ |
| 409 | print_num("sp start ", gd->start_addr_sp); |
Simon Glass | c8fcd0f | 2012-12-13 20:49:13 +0000 | [diff] [blame] | 410 | #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 411 | print_num("FB base ", gd->fb_base); |
Simon Glass | c8fcd0f | 2012-12-13 20:49:13 +0000 | [diff] [blame] | 412 | #endif |
Hadli, Manjunath | 8f5d468 | 2012-02-06 00:30:44 +0000 | [diff] [blame] | 413 | /* |
| 414 | * TODO: Currently only support for davinci SOC's is added. |
| 415 | * Remove this check once all the board implement this. |
| 416 | */ |
| 417 | #ifdef CONFIG_CLOCKS |
| 418 | printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq); |
| 419 | printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq); |
| 420 | printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq); |
| 421 | #endif |
Hannes Schmelzer | 7bb7d67 | 2015-06-11 12:27:09 +0200 | [diff] [blame] | 422 | #ifdef CONFIG_BOARD_TYPES |
| 423 | printf("Board Type = %ld\n", gd->board_type); |
| 424 | #endif |
Simon Glass | 7f7ddf2 | 2016-07-05 17:10:11 -0600 | [diff] [blame] | 425 | #ifdef CONFIG_SYS_MALLOC_F |
| 426 | printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr, |
| 427 | CONFIG_SYS_MALLOC_F_LEN); |
| 428 | #endif |
| 429 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 430 | return 0; |
| 431 | } |
| 432 | |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 433 | #elif defined(CONFIG_SH) |
| 434 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 435 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 436 | { |
| 437 | bd_t *bd = gd->bd; |
Max Filippov | 12feb36 | 2016-07-28 03:57:19 +0300 | [diff] [blame] | 438 | |
| 439 | print_bi_mem(bd); |
Max Filippov | f80e535 | 2016-07-28 03:57:21 +0300 | [diff] [blame] | 440 | print_bi_flash(bd); |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 441 | print_eth_ip_addr(); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 442 | print_baudrate(); |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 443 | return 0; |
| 444 | } |
| 445 | |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 446 | #elif defined(CONFIG_X86) |
| 447 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 448 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 449 | { |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 450 | bd_t *bd = gd->bd; |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 451 | |
Max Filippov | 171e539 | 2016-07-28 03:57:18 +0300 | [diff] [blame] | 452 | print_bi_boot_params(bd); |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 453 | |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 454 | print_bi_dram(bd); |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 455 | |
| 456 | #if defined(CONFIG_CMD_NET) |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 457 | print_eth_ip_addr(); |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 458 | print_mhz("ethspeed", bd->bi_ethspeed); |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 459 | #endif |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 460 | print_baudrate(); |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 461 | |
| 462 | return 0; |
| 463 | } |
| 464 | |
Simon Glass | 6fcc3be | 2011-09-17 06:48:47 +0000 | [diff] [blame] | 465 | #elif defined(CONFIG_SANDBOX) |
| 466 | |
| 467 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 468 | { |
Simon Glass | 6fcc3be | 2011-09-17 06:48:47 +0000 | [diff] [blame] | 469 | bd_t *bd = gd->bd; |
| 470 | |
Max Filippov | 171e539 | 2016-07-28 03:57:18 +0300 | [diff] [blame] | 471 | print_bi_boot_params(bd); |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 472 | print_bi_dram(bd); |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 473 | print_eth_ip_addr(); |
Simon Glass | 6fcc3be | 2011-09-17 06:48:47 +0000 | [diff] [blame] | 474 | |
Simon Glass | c8fcd0f | 2012-12-13 20:49:13 +0000 | [diff] [blame] | 475 | #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) |
Simon Glass | 6fcc3be | 2011-09-17 06:48:47 +0000 | [diff] [blame] | 476 | print_num("FB base ", gd->fb_base); |
Simon Glass | c8fcd0f | 2012-12-13 20:49:13 +0000 | [diff] [blame] | 477 | #endif |
Simon Glass | 6fcc3be | 2011-09-17 06:48:47 +0000 | [diff] [blame] | 478 | return 0; |
| 479 | } |
| 480 | |
Macpaul Lin | 64d6146 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 481 | #elif defined(CONFIG_NDS32) |
| 482 | |
| 483 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 484 | { |
Macpaul Lin | 64d6146 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 485 | bd_t *bd = gd->bd; |
| 486 | |
| 487 | print_num("arch_number", bd->bi_arch_number); |
Max Filippov | 171e539 | 2016-07-28 03:57:18 +0300 | [diff] [blame] | 488 | print_bi_boot_params(bd); |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 489 | print_bi_dram(bd); |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 490 | print_eth_ip_addr(); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 491 | print_baudrate(); |
Macpaul Lin | 64d6146 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 492 | |
| 493 | return 0; |
| 494 | } |
| 495 | |
Stefan Kristiansson | 2be9fdb | 2011-11-18 19:21:34 +0000 | [diff] [blame] | 496 | #elif defined(CONFIG_OPENRISC) |
| 497 | |
| 498 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 499 | { |
| 500 | bd_t *bd = gd->bd; |
| 501 | |
Max Filippov | 12feb36 | 2016-07-28 03:57:19 +0300 | [diff] [blame] | 502 | print_bi_mem(bd); |
Max Filippov | f80e535 | 2016-07-28 03:57:21 +0300 | [diff] [blame] | 503 | print_bi_flash(bd); |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 504 | print_eth_ip_addr(); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 505 | print_baudrate(); |
Stefan Kristiansson | 2be9fdb | 2011-11-18 19:21:34 +0000 | [diff] [blame] | 506 | |
| 507 | return 0; |
| 508 | } |
| 509 | |
Alexey Brodkin | 946f6f2 | 2014-12-26 11:03:15 +0300 | [diff] [blame] | 510 | #elif defined(CONFIG_ARC) |
Alexey Brodkin | bc5d542 | 2014-02-04 12:56:16 +0400 | [diff] [blame] | 511 | |
| 512 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 513 | { |
| 514 | bd_t *bd = gd->bd; |
| 515 | |
Max Filippov | 12feb36 | 2016-07-28 03:57:19 +0300 | [diff] [blame] | 516 | print_bi_mem(bd); |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 517 | print_eth_ip_addr(); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 518 | print_baudrate(); |
Alexey Brodkin | bc5d542 | 2014-02-04 12:56:16 +0400 | [diff] [blame] | 519 | |
| 520 | return 0; |
| 521 | } |
| 522 | |
Chris Zankel | de5e5ce | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 523 | #elif defined(CONFIG_XTENSA) |
| 524 | |
| 525 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 526 | { |
| 527 | print_std_bdinfo(gd->bd); |
| 528 | return 0; |
| 529 | } |
| 530 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 531 | #else |
| 532 | #error "a case for this architecture does not exist!" |
| 533 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 534 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 535 | /* -------------------------------------------------------------------- */ |
| 536 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 537 | U_BOOT_CMD( |
| 538 | bdinfo, 1, 1, do_bdinfo, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 539 | "print Board Info structure", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 540 | "" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 541 | ); |