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> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 29 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 30 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 31 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 32 | static void print_num(const char *, ulong); |
| 33 | |
Philippe De Muyter | 116095e | 2009-09-21 22:20:29 -0600 | [diff] [blame] | 34 | #if !(defined(CONFIG_ARM) || defined(CONFIG_M68K)) || defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 35 | static void print_eth(int idx); |
Wolfgang Denk | 26e42cb | 2009-03-29 00:54:21 +0100 | [diff] [blame] | 36 | #endif |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 37 | |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 38 | #if (!defined(CONFIG_ARM) && !defined(CONFIG_X86)) |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 39 | static void print_lnum(const char *, u64); |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 40 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 41 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 42 | #if defined(CONFIG_PPC) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 43 | static void print_str(const char *, const char *); |
| 44 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 45 | 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] | 46 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 47 | bd_t *bd = gd->bd; |
| 48 | char buf[32]; |
| 49 | |
| 50 | #ifdef DEBUG |
| 51 | print_num ("bd address", (ulong)bd ); |
| 52 | #endif |
| 53 | print_num ("memstart", bd->bi_memstart ); |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 54 | print_lnum ("memsize", bd->bi_memsize ); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 55 | print_num ("flashstart", bd->bi_flashstart ); |
| 56 | print_num ("flashsize", bd->bi_flashsize ); |
| 57 | print_num ("flashoffset", bd->bi_flashoffset ); |
| 58 | print_num ("sramstart", bd->bi_sramstart ); |
| 59 | print_num ("sramsize", bd->bi_sramsize ); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 60 | #if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \ |
| 61 | defined(CONFIG_8260) || defined(CONFIG_E500) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 62 | print_num ("immr_base", bd->bi_immr_base ); |
| 63 | #endif |
| 64 | print_num ("bootflags", bd->bi_bootflags ); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 65 | #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \ |
Michal Simek | 9fea65a | 2008-06-24 09:54:09 +0200 | [diff] [blame] | 66 | defined(CONFIG_405EP) || defined(CONFIG_XILINX_405) || \ |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 67 | defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 68 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \ |
| 69 | defined(CONFIG_440SP) || defined(CONFIG_440SPE) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 70 | print_str ("procfreq", strmhz(buf, bd->bi_procfreq)); |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 71 | print_str ("plb_busfreq", strmhz(buf, bd->bi_plb_busfreq)); |
Michal Simek | 9fea65a | 2008-06-24 09:54:09 +0200 | [diff] [blame] | 72 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_405) || \ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 73 | defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SPE) || \ |
| 74 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 75 | print_str ("pci_busfreq", strmhz(buf, bd->bi_pci_busfreq)); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 76 | #endif |
Michal Simek | 9fea65a | 2008-06-24 09:54:09 +0200 | [diff] [blame] | 77 | #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] | 78 | #if defined(CONFIG_CPM2) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 79 | print_str ("vco", strmhz(buf, bd->bi_vco)); |
| 80 | print_str ("sccfreq", strmhz(buf, bd->bi_sccfreq)); |
| 81 | print_str ("brgfreq", strmhz(buf, bd->bi_brgfreq)); |
| 82 | #endif |
| 83 | print_str ("intfreq", strmhz(buf, bd->bi_intfreq)); |
Jon Loeliger | 9c4c5ae | 2005-07-23 10:37:35 -0500 | [diff] [blame] | 84 | #if defined(CONFIG_CPM2) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 85 | print_str ("cpmfreq", strmhz(buf, bd->bi_cpmfreq)); |
| 86 | #endif |
| 87 | print_str ("busfreq", strmhz(buf, bd->bi_busfreq)); |
Michal Simek | 9fea65a | 2008-06-24 09:54:09 +0200 | [diff] [blame] | 88 | #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] | 89 | #if defined(CONFIG_MPC8220) |
| 90 | print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq)); |
| 91 | print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq)); |
| 92 | print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq)); |
| 93 | print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq)); |
| 94 | print_str ("pevfreq", strmhz(buf, bd->bi_pevfreq)); |
| 95 | #endif |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 96 | |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 97 | print_eth(0); |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 98 | #if defined(CONFIG_HAS_ETH1) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 99 | print_eth(1); |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 100 | #endif |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 101 | #if defined(CONFIG_HAS_ETH2) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 102 | print_eth(2); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 103 | #endif |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 104 | #if defined(CONFIG_HAS_ETH3) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 105 | print_eth(3); |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 106 | #endif |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 107 | #if defined(CONFIG_HAS_ETH4) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 108 | print_eth(4); |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 109 | #endif |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 110 | #if defined(CONFIG_HAS_ETH5) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 111 | print_eth(5); |
richardretanubun | c68a05f | 2008-09-29 18:28:23 -0400 | [diff] [blame] | 112 | #endif |
| 113 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 114 | #ifdef CONFIG_HERMES |
| 115 | print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed)); |
| 116 | #endif |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 117 | printf ("IP addr = %pI4\n", &bd->bi_ip_addr); |
| 118 | printf ("baudrate = %6ld bps\n", bd->bi_baudrate ); |
Richard Retanubun | 4b99327 | 2010-01-15 10:06:06 -0500 | [diff] [blame] | 119 | print_num ("relocaddr", gd->relocaddr); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 120 | return 0; |
| 121 | } |
| 122 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 123 | #elif defined(CONFIG_NIOS2) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 124 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 125 | 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] | 126 | { |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 127 | bd_t *bd = gd->bd; |
| 128 | |
| 129 | print_num ("mem start", (ulong)bd->bi_memstart); |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 130 | print_lnum ("mem size", (u64)bd->bi_memsize); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 131 | print_num ("flash start", (ulong)bd->bi_flashstart); |
| 132 | print_num ("flash size", (ulong)bd->bi_flashsize); |
| 133 | print_num ("flash offset", (ulong)bd->bi_flashoffset); |
| 134 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 135 | #if defined(CONFIG_SYS_SRAM_BASE) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 136 | print_num ("sram start", (ulong)bd->bi_sramstart); |
| 137 | print_num ("sram size", (ulong)bd->bi_sramsize); |
| 138 | #endif |
| 139 | |
Jon Loeliger | 9025317 | 2007-07-10 11:02:44 -0500 | [diff] [blame] | 140 | #if defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 141 | print_eth(0); |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 142 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 143 | #endif |
| 144 | |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 145 | printf ("baudrate = %ld bps\n", bd->bi_baudrate); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 146 | |
| 147 | return 0; |
| 148 | } |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 149 | |
| 150 | #elif defined(CONFIG_MICROBLAZE) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 151 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 152 | 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] | 153 | { |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 154 | bd_t *bd = gd->bd; |
| 155 | print_num ("mem start ", (ulong)bd->bi_memstart); |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 156 | print_lnum ("mem size ", (u64)bd->bi_memsize); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 157 | print_num ("flash start ", (ulong)bd->bi_flashstart); |
| 158 | print_num ("flash size ", (ulong)bd->bi_flashsize); |
| 159 | print_num ("flash offset ", (ulong)bd->bi_flashoffset); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 160 | #if defined(CONFIG_SYS_SRAM_BASE) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 161 | print_num ("sram start ", (ulong)bd->bi_sramstart); |
| 162 | print_num ("sram size ", (ulong)bd->bi_sramsize); |
| 163 | #endif |
Jon Loeliger | 9025317 | 2007-07-10 11:02:44 -0500 | [diff] [blame] | 164 | #if defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 165 | print_eth(0); |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 166 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 167 | #endif |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 168 | printf ("baudrate = %ld bps\n", (ulong)bd->bi_baudrate); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 169 | return 0; |
| 170 | } |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 171 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 172 | #elif defined(CONFIG_SPARC) |
| 173 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 174 | 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] | 175 | { |
| 176 | bd_t *bd = gd->bd; |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 177 | |
| 178 | #ifdef DEBUG |
| 179 | print_num("bd address ", (ulong) bd); |
| 180 | #endif |
| 181 | print_num("memstart ", bd->bi_memstart); |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 182 | print_lnum("memsize ", bd->bi_memsize); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 183 | print_num("flashstart ", bd->bi_flashstart); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 184 | print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE); |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 185 | print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 186 | printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%lx (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE, |
| 187 | CONFIG_SYS_MONITOR_LEN); |
| 188 | printf("CONFIG_SYS_MALLOC_BASE = 0x%lx (%d)\n", CONFIG_SYS_MALLOC_BASE, |
| 189 | CONFIG_SYS_MALLOC_LEN); |
| 190 | printf("CONFIG_SYS_INIT_SP_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_INIT_SP_OFFSET, |
| 191 | CONFIG_SYS_STACK_SIZE); |
| 192 | printf("CONFIG_SYS_PROM_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_PROM_OFFSET, |
| 193 | CONFIG_SYS_PROM_SIZE); |
| 194 | printf("CONFIG_SYS_GBL_DATA_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET, |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 195 | GENERATED_GBL_DATA_SIZE); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 196 | |
| 197 | #if defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 198 | print_eth(0); |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 199 | printf("ip_addr = %pI4\n", &bd->bi_ip_addr); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 200 | #endif |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 201 | printf("baudrate = %6ld bps\n", bd->bi_baudrate); |
Daniel Hellstrom | 00ab32c | 2008-03-26 22:36:03 +0100 | [diff] [blame] | 202 | return 0; |
| 203 | } |
| 204 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 205 | #elif defined(CONFIG_M68K) |
| 206 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 207 | static void print_str(const char *, const char *); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 208 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 209 | 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] | 210 | { |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 211 | bd_t *bd = gd->bd; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 212 | char buf[32]; |
| 213 | |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 214 | print_num ("memstart", (ulong)bd->bi_memstart); |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 215 | print_lnum ("memsize", (u64)bd->bi_memsize); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 216 | print_num ("flashstart", (ulong)bd->bi_flashstart); |
| 217 | print_num ("flashsize", (ulong)bd->bi_flashsize); |
| 218 | print_num ("flashoffset", (ulong)bd->bi_flashoffset); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 219 | #if defined(CONFIG_SYS_INIT_RAM_ADDR) |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 220 | print_num ("sramstart", (ulong)bd->bi_sramstart); |
| 221 | print_num ("sramsize", (ulong)bd->bi_sramsize); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 222 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 223 | #if defined(CONFIG_SYS_MBAR) |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 224 | print_num ("mbar", bd->bi_mbar_base); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 225 | #endif |
Richard Retanubun | ee73cc5 | 2009-01-23 09:45:34 -0500 | [diff] [blame] | 226 | print_str ("cpufreq", strmhz(buf, bd->bi_intfreq)); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 227 | print_str ("busfreq", strmhz(buf, bd->bi_busfreq)); |
| 228 | #ifdef CONFIG_PCI |
| 229 | print_str ("pcifreq", strmhz(buf, bd->bi_pcifreq)); |
| 230 | #endif |
| 231 | #ifdef CONFIG_EXTRA_CLOCK |
| 232 | print_str ("flbfreq", strmhz(buf, bd->bi_flbfreq)); |
| 233 | print_str ("inpfreq", strmhz(buf, bd->bi_inpfreq)); |
| 234 | print_str ("vcofreq", strmhz(buf, bd->bi_vcofreq)); |
| 235 | #endif |
Stefan Roese | 26667b7 | 2007-08-18 14:37:52 +0200 | [diff] [blame] | 236 | #if defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 237 | print_eth(0); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 238 | #if defined(CONFIG_HAS_ETH1) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 239 | print_eth(1); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 240 | #endif |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 241 | #if defined(CONFIG_HAS_ETH2) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 242 | print_eth(2); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 243 | #endif |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 244 | #if defined(CONFIG_HAS_ETH3) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 245 | print_eth(3); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 246 | #endif |
| 247 | |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 248 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
Stefan Roese | 26667b7 | 2007-08-18 14:37:52 +0200 | [diff] [blame] | 249 | #endif |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 250 | printf ("baudrate = %ld bps\n", bd->bi_baudrate); |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 251 | |
| 252 | return 0; |
| 253 | } |
| 254 | |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 255 | #elif defined(CONFIG_BLACKFIN) |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 256 | |
Mike Frysinger | 6dadc91 | 2008-10-20 16:15:04 -0400 | [diff] [blame] | 257 | static void print_str(const char *, const char *); |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 258 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 259 | 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] | 260 | { |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 261 | bd_t *bd = gd->bd; |
Mike Frysinger | 6dadc91 | 2008-10-20 16:15:04 -0400 | [diff] [blame] | 262 | char buf[32]; |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 263 | |
| 264 | printf("U-Boot = %s\n", bd->bi_r_version); |
| 265 | printf("CPU = %s\n", bd->bi_cpu); |
| 266 | printf("Board = %s\n", bd->bi_board_name); |
Mike Frysinger | 6dadc91 | 2008-10-20 16:15:04 -0400 | [diff] [blame] | 267 | print_str("VCO", strmhz(buf, bd->bi_vco)); |
| 268 | print_str("CCLK", strmhz(buf, bd->bi_cclk)); |
| 269 | print_str("SCLK", strmhz(buf, bd->bi_sclk)); |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 270 | |
| 271 | print_num("boot_params", (ulong)bd->bi_boot_params); |
| 272 | print_num("memstart", (ulong)bd->bi_memstart); |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 273 | print_lnum("memsize", (u64)bd->bi_memsize); |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 274 | print_num("flashstart", (ulong)bd->bi_flashstart); |
| 275 | print_num("flashsize", (ulong)bd->bi_flashsize); |
| 276 | print_num("flashoffset", (ulong)bd->bi_flashoffset); |
| 277 | |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 278 | print_eth(0); |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 279 | printf("ip_addr = %pI4\n", &bd->bi_ip_addr); |
| 280 | printf("baudrate = %d bps\n", bd->bi_baudrate); |
Mike Frysinger | 8dc48d7 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 281 | |
| 282 | return 0; |
| 283 | } |
| 284 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 285 | #elif defined(CONFIG_MIPS) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 286 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 287 | 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] | 288 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 289 | bd_t *bd = gd->bd; |
| 290 | |
| 291 | print_num ("boot_params", (ulong)bd->bi_boot_params); |
| 292 | print_num ("memstart", (ulong)bd->bi_memstart); |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 293 | print_lnum ("memsize", (u64)bd->bi_memsize); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 294 | print_num ("flashstart", (ulong)bd->bi_flashstart); |
| 295 | print_num ("flashsize", (ulong)bd->bi_flashsize); |
| 296 | print_num ("flashoffset", (ulong)bd->bi_flashoffset); |
| 297 | |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 298 | print_eth(0); |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 299 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
| 300 | printf ("baudrate = %d bps\n", bd->bi_baudrate); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 301 | |
| 302 | return 0; |
| 303 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 304 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 305 | #elif defined(CONFIG_AVR32) |
| 306 | |
| 307 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 308 | { |
| 309 | bd_t *bd = gd->bd; |
| 310 | |
| 311 | print_num ("boot_params", (ulong)bd->bi_boot_params); |
| 312 | print_num ("memstart", (ulong)bd->bi_memstart); |
| 313 | print_lnum ("memsize", (u64)bd->bi_memsize); |
| 314 | print_num ("flashstart", (ulong)bd->bi_flashstart); |
| 315 | print_num ("flashsize", (ulong)bd->bi_flashsize); |
| 316 | print_num ("flashoffset", (ulong)bd->bi_flashoffset); |
| 317 | |
| 318 | print_eth(0); |
| 319 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
| 320 | printf ("baudrate = %lu bps\n", bd->bi_baudrate); |
| 321 | |
| 322 | return 0; |
| 323 | } |
| 324 | |
| 325 | #elif defined(CONFIG_ARM) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 326 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 327 | 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] | 328 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 329 | int i; |
| 330 | bd_t *bd = gd->bd; |
| 331 | |
| 332 | print_num ("arch_number", bd->bi_arch_number); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 333 | print_num ("boot_params", (ulong)bd->bi_boot_params); |
| 334 | |
| 335 | for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) { |
| 336 | print_num("DRAM bank", i); |
| 337 | print_num("-> start", bd->bi_dram[i].start); |
| 338 | print_num("-> size", bd->bi_dram[i].size); |
| 339 | } |
| 340 | |
Hebbar | a41dbbd | 2007-12-18 16:03:07 -0800 | [diff] [blame] | 341 | #if defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 342 | print_eth(0); |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 343 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
Hebbar | a41dbbd | 2007-12-18 16:03:07 -0800 | [diff] [blame] | 344 | #endif |
Mike Frysinger | b6446b6 | 2009-02-17 00:00:53 -0500 | [diff] [blame] | 345 | printf ("baudrate = %d bps\n", bd->bi_baudrate); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 346 | #if !(defined(CONFIG_SYS_NO_ICACHE) && defined(CONFIG_SYS_NO_DCACHE)) |
| 347 | print_num ("TLB addr", gd->tlb_addr); |
| 348 | #endif |
| 349 | print_num ("relocaddr", gd->relocaddr); |
| 350 | print_num ("reloc off", gd->reloc_off); |
| 351 | print_num ("irq_sp", gd->irq_sp); /* irq stack pointer */ |
| 352 | print_num ("sp start ", gd->start_addr_sp); |
| 353 | print_num ("FB base ", gd->fb_base); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 354 | return 0; |
| 355 | } |
| 356 | |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 357 | #elif defined(CONFIG_SH) |
| 358 | |
| 359 | int do_bdinfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 360 | { |
| 361 | bd_t *bd = gd->bd; |
| 362 | print_num ("mem start ", (ulong)bd->bi_memstart); |
| 363 | print_lnum ("mem size ", (u64)bd->bi_memsize); |
| 364 | print_num ("flash start ", (ulong)bd->bi_flashstart); |
| 365 | print_num ("flash size ", (ulong)bd->bi_flashsize); |
| 366 | print_num ("flash offset ", (ulong)bd->bi_flashoffset); |
| 367 | |
| 368 | #if defined(CONFIG_CMD_NET) |
| 369 | print_eth(0); |
| 370 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
| 371 | #endif |
| 372 | printf ("baudrate = %ld bps\n", (ulong)bd->bi_baudrate); |
| 373 | return 0; |
| 374 | } |
| 375 | |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 376 | #elif defined(CONFIG_X86) |
| 377 | |
| 378 | static void print_str(const char *, const char *); |
| 379 | |
| 380 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 381 | { |
| 382 | int i; |
| 383 | bd_t *bd = gd->bd; |
| 384 | char buf[32]; |
| 385 | |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 386 | print_num ("boot_params", (ulong)bd->bi_boot_params); |
| 387 | print_num ("bi_memstart", bd->bi_memstart); |
| 388 | print_num ("bi_memsize", bd->bi_memsize); |
| 389 | print_num ("bi_flashstart", bd->bi_flashstart); |
| 390 | print_num ("bi_flashsize", bd->bi_flashsize); |
| 391 | print_num ("bi_flashoffset", bd->bi_flashoffset); |
| 392 | print_num ("bi_sramstart", bd->bi_sramstart); |
| 393 | print_num ("bi_sramsize", bd->bi_sramsize); |
| 394 | print_num ("bi_bootflags", bd->bi_bootflags); |
| 395 | print_str ("cpufreq", strmhz(buf, bd->bi_intfreq)); |
| 396 | print_str ("busfreq", strmhz(buf, bd->bi_busfreq)); |
| 397 | |
| 398 | for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) { |
| 399 | print_num("DRAM bank", i); |
| 400 | print_num("-> start", bd->bi_dram[i].start); |
| 401 | print_num("-> size", bd->bi_dram[i].size); |
| 402 | } |
| 403 | |
| 404 | #if defined(CONFIG_CMD_NET) |
| 405 | print_eth(0); |
| 406 | printf ("ip_addr = %pI4\n", &bd->bi_ip_addr); |
| 407 | print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed)); |
| 408 | #endif |
| 409 | printf ("baudrate = %d bps\n", bd->bi_baudrate); |
| 410 | |
| 411 | return 0; |
| 412 | } |
| 413 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 414 | #else |
| 415 | #error "a case for this architecture does not exist!" |
| 416 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 417 | |
| 418 | static void print_num(const char *name, ulong value) |
| 419 | { |
| 420 | printf ("%-12s= 0x%08lX\n", name, value); |
| 421 | } |
| 422 | |
Philippe De Muyter | 116095e | 2009-09-21 22:20:29 -0600 | [diff] [blame] | 423 | #if !(defined(CONFIG_ARM) || defined(CONFIG_M68K)) || defined(CONFIG_CMD_NET) |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 424 | static void print_eth(int idx) |
| 425 | { |
| 426 | char name[10], *val; |
| 427 | if (idx) |
| 428 | sprintf(name, "eth%iaddr", idx); |
| 429 | else |
| 430 | strcpy(name, "ethaddr"); |
| 431 | val = getenv(name); |
| 432 | if (!val) |
| 433 | val = "(not set)"; |
| 434 | printf("%-12s= %s\n", name, val); |
| 435 | } |
Wolfgang Denk | 26e42cb | 2009-03-29 00:54:21 +0100 | [diff] [blame] | 436 | #endif |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 437 | |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 438 | #if (!defined(CONFIG_ARM) && !defined(CONFIG_X86)) |
Becky Bruce | b57ca3e | 2008-06-09 20:37:16 -0500 | [diff] [blame] | 439 | static void print_lnum(const char *name, u64 value) |
| 440 | { |
| 441 | printf ("%-12s= 0x%.8llX\n", name, value); |
| 442 | } |
| 443 | #endif |
| 444 | |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 445 | #if defined(CONFIG_PPC) || \ |
| 446 | defined(CONFIG_M68K) || \ |
| 447 | defined(CONFIG_BLACKFIN) || \ |
| 448 | defined(CONFIG_X86) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 449 | static void print_str(const char *name, const char *str) |
| 450 | { |
| 451 | printf ("%-12s= %6s MHz\n", name, str); |
| 452 | } |
| 453 | #endif /* CONFIG_PPC */ |
| 454 | |
| 455 | |
| 456 | /* -------------------------------------------------------------------- */ |
| 457 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 458 | U_BOOT_CMD( |
| 459 | bdinfo, 1, 1, do_bdinfo, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 460 | "print Board Info structure", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 461 | "" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 462 | ); |