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