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