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