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 | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 133 | #if defined(CONFIG_MPC8220) |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 134 | print_mhz("inpfreq", bd->bi_inpfreq); |
| 135 | print_mhz("flbfreq", bd->bi_flbfreq); |
| 136 | print_mhz("pcifreq", bd->bi_pcifreq); |
| 137 | print_mhz("vcofreq", bd->bi_vcofreq); |
| 138 | print_mhz("pevfreq", bd->bi_pevfreq); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 139 | #endif |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 140 | |
Timur Tabi | 34e210f | 2012-03-15 11:42:26 +0000 | [diff] [blame] | 141 | #ifdef CONFIG_ENABLE_36BIT_PHYS |
| 142 | #ifdef CONFIG_PHYS_64BIT |
| 143 | puts("addressing = 36-bit\n"); |
| 144 | #else |
| 145 | puts("addressing = 32-bit\n"); |
| 146 | #endif |
| 147 | #endif |
| 148 | |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 149 | print_eth(0); |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 150 | #if defined(CONFIG_HAS_ETH1) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 151 | print_eth(1); |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 152 | #endif |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 153 | #if defined(CONFIG_HAS_ETH2) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 154 | print_eth(2); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 155 | #endif |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 156 | #if defined(CONFIG_HAS_ETH3) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 157 | print_eth(3); |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 158 | #endif |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 159 | #if defined(CONFIG_HAS_ETH4) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 160 | print_eth(4); |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 161 | #endif |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 162 | #if defined(CONFIG_HAS_ETH5) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 163 | print_eth(5); |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 164 | #endif |
| 165 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 166 | #ifdef CONFIG_HERMES |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 167 | print_mhz("ethspeed", bd->bi_ethspeed); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 168 | #endif |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 169 | printf("IP addr = %s\n", getenv("ipaddr")); |
Simon Glass | a7e5ee9 | 2012-10-12 14:21:14 +0000 | [diff] [blame] | 170 | printf("baudrate = %6u bps\n", bd->bi_baudrate); |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 171 | print_num("relocaddr", gd->relocaddr); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 172 | return 0; |
| 173 | } |
| 174 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 175 | #elif defined(CONFIG_NIOS2) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 176 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 177 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 178 | { |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 179 | bd_t *bd = gd->bd; |
| 180 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 181 | print_num("mem start", (ulong)bd->bi_memstart); |
| 182 | print_lnum("mem size", (u64)bd->bi_memsize); |
| 183 | print_num("flash start", (ulong)bd->bi_flashstart); |
| 184 | print_num("flash size", (ulong)bd->bi_flashsize); |
| 185 | print_num("flash offset", (ulong)bd->bi_flashoffset); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 186 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 187 | #if defined(CONFIG_SYS_SRAM_BASE) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 188 | print_num ("sram start", (ulong)bd->bi_sramstart); |
| 189 | print_num ("sram size", (ulong)bd->bi_sramsize); |
| 190 | #endif |
| 191 | |
Jon Loeliger | 9025317 | 2007-07-10 11:02:44 -0500 | [diff] [blame] | 192 | #if defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 193 | print_eth(0); |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 194 | printf("ip_addr = %s\n", getenv("ipaddr")); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 195 | #endif |
| 196 | |
Simon Glass | 7fffe2f | 2012-10-12 14:21:12 +0000 | [diff] [blame] | 197 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 198 | |
| 199 | return 0; |
| 200 | } |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 201 | |
| 202 | #elif defined(CONFIG_MICROBLAZE) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 203 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 204 | 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] | 205 | { |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 206 | bd_t *bd = gd->bd; |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 207 | print_num("mem start ", (ulong)bd->bi_memstart); |
| 208 | print_lnum("mem size ", (u64)bd->bi_memsize); |
| 209 | print_num("flash start ", (ulong)bd->bi_flashstart); |
| 210 | print_num("flash size ", (ulong)bd->bi_flashsize); |
| 211 | print_num("flash offset ", (ulong)bd->bi_flashoffset); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 212 | #if defined(CONFIG_SYS_SRAM_BASE) |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 213 | print_num("sram start ", (ulong)bd->bi_sramstart); |
| 214 | print_num("sram size ", (ulong)bd->bi_sramsize); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 215 | #endif |
Jon Loeliger | 9025317 | 2007-07-10 11:02:44 -0500 | [diff] [blame] | 216 | #if defined(CONFIG_CMD_NET) |
Michal Simek | 9fc6a06 | 2013-01-23 12:21:18 +0100 | [diff] [blame] | 217 | print_eths(); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 218 | #endif |
Michal Simek | 82b6a47 | 2013-01-23 14:15:35 +0100 | [diff] [blame^] | 219 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 220 | return 0; |
| 221 | } |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 222 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 223 | #elif defined(CONFIG_SPARC) |
| 224 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 225 | 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] | 226 | { |
| 227 | bd_t *bd = gd->bd; |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 228 | |
| 229 | #ifdef DEBUG |
| 230 | print_num("bd address ", (ulong) bd); |
| 231 | #endif |
| 232 | print_num("memstart ", bd->bi_memstart); |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 233 | print_lnum("memsize ", bd->bi_memsize); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 234 | print_num("flashstart ", bd->bi_flashstart); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 235 | print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 236 | print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 237 | 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] | 238 | CONFIG_SYS_MONITOR_LEN); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 239 | 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] | 240 | CONFIG_SYS_MALLOC_LEN); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 241 | 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] | 242 | CONFIG_SYS_STACK_SIZE); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 243 | 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] | 244 | CONFIG_SYS_PROM_SIZE); |
Marek Vasut | d97f01a | 2012-07-27 08:04:33 +0000 | [diff] [blame] | 245 | 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] | 246 | GENERATED_GBL_DATA_SIZE); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 247 | |
| 248 | #if defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 249 | print_eth(0); |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 250 | printf("ip_addr = %s\n", getenv("ipaddr")); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 251 | #endif |
Simon Glass | a8f1f1c | 2012-10-12 14:21:15 +0000 | [diff] [blame] | 252 | printf("baudrate = %6u bps\n", bd->bi_baudrate); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 253 | return 0; |
| 254 | } |
| 255 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 256 | #elif defined(CONFIG_M68K) |
| 257 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 258 | 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] | 259 | { |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 260 | bd_t *bd = gd->bd; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 261 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 262 | print_num("memstart", (ulong)bd->bi_memstart); |
| 263 | print_lnum("memsize", (u64)bd->bi_memsize); |
| 264 | print_num("flashstart", (ulong)bd->bi_flashstart); |
| 265 | print_num("flashsize", (ulong)bd->bi_flashsize); |
| 266 | print_num("flashoffset", (ulong)bd->bi_flashoffset); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 267 | #if defined(CONFIG_SYS_INIT_RAM_ADDR) |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 268 | print_num("sramstart", (ulong)bd->bi_sramstart); |
| 269 | print_num("sramsize", (ulong)bd->bi_sramsize); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 270 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 271 | #if defined(CONFIG_SYS_MBAR) |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 272 | print_num("mbar", bd->bi_mbar_base); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 273 | #endif |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 274 | print_mhz("cpufreq", bd->bi_intfreq); |
| 275 | print_mhz("busfreq", bd->bi_busfreq); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 276 | #ifdef CONFIG_PCI |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 277 | print_mhz("pcifreq", bd->bi_pcifreq); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 278 | #endif |
| 279 | #ifdef CONFIG_EXTRA_CLOCK |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 280 | print_mhz("flbfreq", bd->bi_flbfreq); |
| 281 | print_mhz("inpfreq", bd->bi_inpfreq); |
| 282 | print_mhz("vcofreq", bd->bi_vcofreq); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 283 | #endif |
Stefan Roese | 26667b7 | 2007-08-18 14:37:52 +0200 | [diff] [blame] | 284 | #if defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 285 | print_eth(0); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 286 | #if defined(CONFIG_HAS_ETH1) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 287 | print_eth(1); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 288 | #endif |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 289 | #if defined(CONFIG_HAS_ETH2) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 290 | print_eth(2); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 291 | #endif |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 292 | #if defined(CONFIG_HAS_ETH3) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 293 | print_eth(3); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 294 | #endif |
| 295 | |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 296 | printf("ip_addr = %s\n", getenv("ipaddr")); |
Stefan Roese | 26667b7 | 2007-08-18 14:37:52 +0200 | [diff] [blame] | 297 | #endif |
Simon Glass | f5a5b3c | 2012-10-12 14:21:10 +0000 | [diff] [blame] | 298 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 299 | |
| 300 | return 0; |
| 301 | } |
| 302 | |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 303 | #elif defined(CONFIG_BLACKFIN) |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 304 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 305 | 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] | 306 | { |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 307 | bd_t *bd = gd->bd; |
| 308 | |
| 309 | printf("U-Boot = %s\n", bd->bi_r_version); |
| 310 | printf("CPU = %s\n", bd->bi_cpu); |
| 311 | printf("Board = %s\n", bd->bi_board_name); |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 312 | print_mhz("VCO", bd->bi_vco); |
| 313 | print_mhz("CCLK", bd->bi_cclk); |
| 314 | print_mhz("SCLK", bd->bi_sclk); |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 315 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 316 | print_num("boot_params", (ulong)bd->bi_boot_params); |
| 317 | print_num("memstart", (ulong)bd->bi_memstart); |
| 318 | print_lnum("memsize", (u64)bd->bi_memsize); |
| 319 | print_num("flashstart", (ulong)bd->bi_flashstart); |
| 320 | print_num("flashsize", (ulong)bd->bi_flashsize); |
| 321 | print_num("flashoffset", (ulong)bd->bi_flashoffset); |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 322 | |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 323 | print_eth(0); |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 324 | printf("ip_addr = %s\n", getenv("ipaddr")); |
Simon Glass | 5e84e5a | 2012-10-12 14:21:17 +0000 | [diff] [blame] | 325 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 326 | |
| 327 | return 0; |
| 328 | } |
| 329 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 330 | #elif defined(CONFIG_MIPS) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 331 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 332 | 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] | 333 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 334 | bd_t *bd = gd->bd; |
| 335 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 336 | print_num("boot_params", (ulong)bd->bi_boot_params); |
| 337 | print_num("memstart", (ulong)bd->bi_memstart); |
| 338 | print_lnum("memsize", (u64)bd->bi_memsize); |
| 339 | print_num("flashstart", (ulong)bd->bi_flashstart); |
| 340 | print_num("flashsize", (ulong)bd->bi_flashsize); |
| 341 | print_num("flashoffset", (ulong)bd->bi_flashoffset); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 342 | |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 343 | print_eth(0); |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 344 | printf("ip_addr = %s\n", getenv("ipaddr")); |
Simon Glass | 8dc22b0 | 2012-10-12 14:21:18 +0000 | [diff] [blame] | 345 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 346 | |
| 347 | return 0; |
| 348 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 349 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 350 | #elif defined(CONFIG_AVR32) |
| 351 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 352 | 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] | 353 | { |
| 354 | bd_t *bd = gd->bd; |
| 355 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 356 | print_num("boot_params", (ulong)bd->bi_boot_params); |
| 357 | print_num("memstart", (ulong)bd->bi_memstart); |
| 358 | print_lnum("memsize", (u64)bd->bi_memsize); |
| 359 | print_num("flashstart", (ulong)bd->bi_flashstart); |
| 360 | print_num("flashsize", (ulong)bd->bi_flashsize); |
| 361 | print_num("flashoffset", (ulong)bd->bi_flashoffset); |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 362 | |
| 363 | print_eth(0); |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 364 | printf("ip_addr = %s\n", getenv("ipaddr")); |
Simon Glass | 15dc95d | 2012-10-12 14:21:09 +0000 | [diff] [blame] | 365 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 366 | |
| 367 | return 0; |
| 368 | } |
| 369 | |
| 370 | #elif defined(CONFIG_ARM) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 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[]) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 373 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 374 | int i; |
| 375 | bd_t *bd = gd->bd; |
| 376 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 377 | print_num("arch_number", bd->bi_arch_number); |
| 378 | print_num("boot_params", (ulong)bd->bi_boot_params); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 379 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 380 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 381 | print_num("DRAM bank", i); |
| 382 | print_num("-> start", bd->bi_dram[i].start); |
| 383 | print_num("-> size", bd->bi_dram[i].size); |
| 384 | } |
| 385 | |
Hebbar | a41dbbd | 2007-12-18 16:03:07 -0800 | [diff] [blame] | 386 | #if defined(CONFIG_CMD_NET) |
Michal Simek | 9fc6a06 | 2013-01-23 12:21:18 +0100 | [diff] [blame] | 387 | print_eths(); |
Hebbar | a41dbbd | 2007-12-18 16:03:07 -0800 | [diff] [blame] | 388 | #endif |
Simon Glass | e46e31a | 2012-10-12 14:21:16 +0000 | [diff] [blame] | 389 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
Aneesh V | e47f2db | 2011-06-16 23:30:48 +0000 | [diff] [blame] | 390 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 391 | print_num("TLB addr", gd->tlb_addr); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 392 | #endif |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 393 | print_num("relocaddr", gd->relocaddr); |
| 394 | print_num("reloc off", gd->reloc_off); |
| 395 | print_num("irq_sp", gd->irq_sp); /* irq stack pointer */ |
| 396 | print_num("sp start ", gd->start_addr_sp); |
| 397 | print_num("FB base ", gd->fb_base); |
Hadli, Manjunath | 8f5d468 | 2012-02-06 00:30:44 +0000 | [diff] [blame] | 398 | /* |
| 399 | * TODO: Currently only support for davinci SOC's is added. |
| 400 | * Remove this check once all the board implement this. |
| 401 | */ |
| 402 | #ifdef CONFIG_CLOCKS |
| 403 | printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq); |
| 404 | printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq); |
| 405 | printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq); |
| 406 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 407 | return 0; |
| 408 | } |
| 409 | |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 410 | #elif defined(CONFIG_SH) |
| 411 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 412 | 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] | 413 | { |
| 414 | bd_t *bd = gd->bd; |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 415 | print_num("mem start ", (ulong)bd->bi_memstart); |
| 416 | print_lnum("mem size ", (u64)bd->bi_memsize); |
| 417 | print_num("flash start ", (ulong)bd->bi_flashstart); |
| 418 | print_num("flash size ", (ulong)bd->bi_flashsize); |
| 419 | print_num("flash offset ", (ulong)bd->bi_flashoffset); |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 420 | |
| 421 | #if defined(CONFIG_CMD_NET) |
| 422 | print_eth(0); |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 423 | printf("ip_addr = %s\n", getenv("ipaddr")); |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 424 | #endif |
Simon Glass | ecd4551 | 2012-10-12 14:21:08 +0000 | [diff] [blame] | 425 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 426 | return 0; |
| 427 | } |
| 428 | |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 429 | #elif defined(CONFIG_X86) |
| 430 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 431 | 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] | 432 | { |
| 433 | int i; |
| 434 | bd_t *bd = gd->bd; |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 435 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 436 | print_num("boot_params", (ulong)bd->bi_boot_params); |
| 437 | print_num("bi_memstart", bd->bi_memstart); |
| 438 | print_num("bi_memsize", bd->bi_memsize); |
| 439 | print_num("bi_flashstart", bd->bi_flashstart); |
| 440 | print_num("bi_flashsize", bd->bi_flashsize); |
| 441 | print_num("bi_flashoffset", bd->bi_flashoffset); |
| 442 | print_num("bi_sramstart", bd->bi_sramstart); |
| 443 | print_num("bi_sramsize", bd->bi_sramsize); |
| 444 | print_num("bi_bootflags", bd->bi_bootflags); |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 445 | print_mhz("cpufreq", bd->bi_intfreq); |
| 446 | print_mhz("busfreq", bd->bi_busfreq); |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 447 | |
Macpaul Lin | 5902e8f | 2011-04-27 16:28:35 +0000 | [diff] [blame] | 448 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 449 | print_num("DRAM bank", i); |
| 450 | print_num("-> start", bd->bi_dram[i].start); |
| 451 | print_num("-> size", bd->bi_dram[i].size); |
| 452 | } |
| 453 | |
| 454 | #if defined(CONFIG_CMD_NET) |
| 455 | print_eth(0); |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 456 | printf("ip_addr = %s\n", getenv("ipaddr")); |
Timur Tabi | 0c277ef | 2011-10-05 17:08:07 -0500 | [diff] [blame] | 457 | print_mhz("ethspeed", bd->bi_ethspeed); |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 458 | #endif |
Simon Glass | 55f97c1 | 2012-10-12 14:21:20 +0000 | [diff] [blame] | 459 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 460 | |
| 461 | return 0; |
| 462 | } |
| 463 | |
Simon Glass | 6fcc3be | 2011-09-17 06:48:47 +0000 | [diff] [blame] | 464 | #elif defined(CONFIG_SANDBOX) |
| 465 | |
| 466 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 467 | { |
| 468 | int i; |
| 469 | bd_t *bd = gd->bd; |
| 470 | |
| 471 | print_num("boot_params", (ulong)bd->bi_boot_params); |
| 472 | |
| 473 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
| 474 | print_num("DRAM bank", i); |
| 475 | print_num("-> start", bd->bi_dram[i].start); |
| 476 | print_num("-> size", bd->bi_dram[i].size); |
| 477 | } |
| 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")); |
Simon Glass | 6fcc3be | 2011-09-17 06:48:47 +0000 | [diff] [blame] | 482 | #endif |
| 483 | print_num("FB base ", gd->fb_base); |
| 484 | return 0; |
| 485 | } |
| 486 | |
Macpaul Lin | 64d6146 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 487 | #elif defined(CONFIG_NDS32) |
| 488 | |
| 489 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 490 | { |
| 491 | int i; |
| 492 | bd_t *bd = gd->bd; |
| 493 | |
| 494 | print_num("arch_number", bd->bi_arch_number); |
| 495 | print_num("boot_params", (ulong)bd->bi_boot_params); |
| 496 | |
| 497 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
| 498 | print_num("DRAM bank", i); |
| 499 | print_num("-> start", bd->bi_dram[i].start); |
| 500 | print_num("-> size", bd->bi_dram[i].size); |
| 501 | } |
| 502 | |
| 503 | #if defined(CONFIG_CMD_NET) |
| 504 | print_eth(0); |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 505 | printf("ip_addr = %s\n", getenv("ipaddr")); |
Macpaul Lin | 64d6146 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 506 | #endif |
Simon Glass | a25356d | 2012-10-12 14:21:19 +0000 | [diff] [blame] | 507 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
Macpaul Lin | 64d6146 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 508 | |
| 509 | return 0; |
| 510 | } |
| 511 | |
Stefan Kristiansson | 2be9fdb | 2011-11-18 19:21:34 +0000 | [diff] [blame] | 512 | #elif defined(CONFIG_OPENRISC) |
| 513 | |
| 514 | int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 515 | { |
| 516 | bd_t *bd = gd->bd; |
| 517 | |
| 518 | print_num("mem start", (ulong)bd->bi_memstart); |
| 519 | print_lnum("mem size", (u64)bd->bi_memsize); |
| 520 | print_num("flash start", (ulong)bd->bi_flashstart); |
| 521 | print_num("flash size", (ulong)bd->bi_flashsize); |
| 522 | print_num("flash offset", (ulong)bd->bi_flashoffset); |
| 523 | |
| 524 | #if defined(CONFIG_CMD_NET) |
| 525 | print_eth(0); |
Mike Frysinger | 50a47d0 | 2012-04-04 18:53:40 +0000 | [diff] [blame] | 526 | printf("ip_addr = %s\n", getenv("ipaddr")); |
Stefan Kristiansson | 2be9fdb | 2011-11-18 19:21:34 +0000 | [diff] [blame] | 527 | #endif |
| 528 | |
Simon Glass | 7a68e33 | 2012-10-12 14:21:13 +0000 | [diff] [blame] | 529 | printf("baudrate = %u bps\n", bd->bi_baudrate); |
Stefan Kristiansson | 2be9fdb | 2011-11-18 19:21:34 +0000 | [diff] [blame] | 530 | |
| 531 | return 0; |
| 532 | } |
| 533 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 534 | #else |
| 535 | #error "a case for this architecture does not exist!" |
| 536 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 537 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 538 | /* -------------------------------------------------------------------- */ |
| 539 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 540 | U_BOOT_CMD( |
| 541 | bdinfo, 1, 1, do_bdinfo, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 542 | "print Board Info structure", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 543 | "" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 544 | ); |