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