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