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 | 9d2b18a | 2003-06-28 23:11:04 +0000 | [diff] [blame] | 29 | #include <net.h> /* for print_IPaddr */ |
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 | |
| 33 | #if (CONFIG_COMMANDS & CFG_CMD_BDI) |
| 34 | static void print_num(const char *, ulong); |
| 35 | |
| 36 | #ifndef CONFIG_ARM /* PowerPC and other */ |
| 37 | |
| 38 | #ifdef CONFIG_PPC |
| 39 | static void print_str(const char *, const char *); |
| 40 | |
| 41 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 42 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 43 | int i; |
| 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 ); |
| 51 | print_num ("memsize", bd->bi_memsize ); |
| 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) || \ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 63 | defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \ |
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)); |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 69 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || defined(CONFIG_XILINX_ML300) || \ |
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 |
Stefan Roese | 846b0dd | 2005-08-08 12:42:22 +0200 | [diff] [blame] | 74 | #else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, 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)); |
Stefan Roese | 846b0dd | 2005-08-08 12:42:22 +0200 | [diff] [blame] | 85 | #endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_ML300, 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 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 94 | puts ("ethaddr ="); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 95 | for (i=0; i<6; ++i) { |
| 96 | printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]); |
| 97 | } |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 98 | |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 99 | #if defined(CONFIG_HAS_ETH1) |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 100 | puts ("\neth1addr ="); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 101 | for (i=0; i<6; ++i) { |
| 102 | printf ("%c%02X", i ? ':' : ' ', bd->bi_enet1addr[i]); |
| 103 | } |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 104 | #endif |
| 105 | |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 106 | #if defined(CONFIG_HAS_ETH2) |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 107 | puts ("\neth2addr ="); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 108 | for (i=0; i<6; ++i) { |
| 109 | printf ("%c%02X", i ? ':' : ' ', bd->bi_enet2addr[i]); |
| 110 | } |
| 111 | #endif |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 112 | |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 113 | #if defined(CONFIG_HAS_ETH3) |
wdenk | 03f5c55 | 2004-10-10 21:21:55 +0000 | [diff] [blame] | 114 | puts ("\neth3addr ="); |
| 115 | for (i=0; i<6; ++i) { |
| 116 | printf ("%c%02X", i ? ':' : ' ', bd->bi_enet3addr[i]); |
| 117 | } |
| 118 | #endif |
| 119 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 120 | #ifdef CONFIG_HERMES |
| 121 | print_str ("ethspeed", strmhz(buf, bd->bi_ethspeed)); |
| 122 | #endif |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 123 | puts ("\nIP addr = "); print_IPaddr (bd->bi_ip_addr); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 124 | printf ("\nbaudrate = %6ld bps\n", bd->bi_baudrate ); |
| 125 | return 0; |
| 126 | } |
| 127 | |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 128 | #elif defined(CONFIG_NIOS) /* NIOS*/ |
| 129 | |
| 130 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 131 | { |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 132 | int i; |
| 133 | bd_t *bd = gd->bd; |
| 134 | |
| 135 | print_num ("memstart", (ulong)bd->bi_memstart); |
| 136 | print_num ("memsize", (ulong)bd->bi_memsize); |
| 137 | print_num ("flashstart", (ulong)bd->bi_flashstart); |
| 138 | print_num ("flashsize", (ulong)bd->bi_flashsize); |
| 139 | print_num ("flashoffset", (ulong)bd->bi_flashoffset); |
| 140 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 141 | puts ("ethaddr ="); |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 142 | for (i=0; i<6; ++i) { |
| 143 | printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]); |
| 144 | } |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 145 | puts ("\nip_addr = "); |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 146 | print_IPaddr (bd->bi_ip_addr); |
| 147 | printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate); |
| 148 | |
| 149 | return 0; |
| 150 | } |
| 151 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 152 | #elif defined(CONFIG_NIOS2) /* Nios-II */ |
| 153 | |
| 154 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 155 | { |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 156 | int i; |
| 157 | bd_t *bd = gd->bd; |
| 158 | |
| 159 | print_num ("mem start", (ulong)bd->bi_memstart); |
| 160 | print_num ("mem size", (ulong)bd->bi_memsize); |
| 161 | print_num ("flash start", (ulong)bd->bi_flashstart); |
| 162 | print_num ("flash size", (ulong)bd->bi_flashsize); |
| 163 | print_num ("flash offset", (ulong)bd->bi_flashoffset); |
| 164 | |
| 165 | #if defined(CFG_SRAM_BASE) |
| 166 | print_num ("sram start", (ulong)bd->bi_sramstart); |
| 167 | print_num ("sram size", (ulong)bd->bi_sramsize); |
| 168 | #endif |
| 169 | |
| 170 | #if defined(CFG_CMD_NET) |
| 171 | puts ("ethaddr ="); |
| 172 | for (i=0; i<6; ++i) { |
| 173 | printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]); |
| 174 | } |
| 175 | puts ("\nip_addr = "); |
| 176 | print_IPaddr (bd->bi_ip_addr); |
| 177 | #endif |
| 178 | |
| 179 | printf ("\nbaudrate = %ld bps\n", bd->bi_baudrate); |
| 180 | |
| 181 | return 0; |
| 182 | } |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 183 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 184 | #else /* ! PPC, which leaves MIPS */ |
| 185 | |
| 186 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 187 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 188 | int i; |
| 189 | bd_t *bd = gd->bd; |
| 190 | |
| 191 | print_num ("boot_params", (ulong)bd->bi_boot_params); |
| 192 | print_num ("memstart", (ulong)bd->bi_memstart); |
| 193 | print_num ("memsize", (ulong)bd->bi_memsize); |
| 194 | print_num ("flashstart", (ulong)bd->bi_flashstart); |
| 195 | print_num ("flashsize", (ulong)bd->bi_flashsize); |
| 196 | print_num ("flashoffset", (ulong)bd->bi_flashoffset); |
| 197 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 198 | puts ("ethaddr ="); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 199 | for (i=0; i<6; ++i) { |
| 200 | printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]); |
| 201 | } |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 202 | puts ("\nip_addr = "); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 203 | print_IPaddr (bd->bi_ip_addr); |
| 204 | printf ("\nbaudrate = %d bps\n", bd->bi_baudrate); |
| 205 | |
| 206 | return 0; |
| 207 | } |
| 208 | #endif /* MIPS */ |
| 209 | |
| 210 | #else /* ARM */ |
| 211 | |
| 212 | int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 213 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 214 | int i; |
| 215 | bd_t *bd = gd->bd; |
| 216 | |
| 217 | print_num ("arch_number", bd->bi_arch_number); |
| 218 | print_num ("env_t", (ulong)bd->bi_env); |
| 219 | print_num ("boot_params", (ulong)bd->bi_boot_params); |
| 220 | |
| 221 | for (i=0; i<CONFIG_NR_DRAM_BANKS; ++i) { |
| 222 | print_num("DRAM bank", i); |
| 223 | print_num("-> start", bd->bi_dram[i].start); |
| 224 | print_num("-> size", bd->bi_dram[i].size); |
| 225 | } |
| 226 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 227 | puts ("ethaddr ="); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 228 | for (i=0; i<6; ++i) { |
| 229 | printf ("%c%02X", i ? ':' : ' ', bd->bi_enetaddr[i]); |
| 230 | } |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 231 | puts ( "\n" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 232 | "ip_addr = "); |
| 233 | print_IPaddr (bd->bi_ip_addr); |
wdenk | b79a11c | 2004-03-25 15:14:43 +0000 | [diff] [blame] | 234 | printf ("\n" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 235 | "baudrate = %d bps\n", bd->bi_baudrate); |
| 236 | |
| 237 | return 0; |
| 238 | } |
| 239 | |
| 240 | #endif /* CONFIG_ARM XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */ |
| 241 | |
| 242 | static void print_num(const char *name, ulong value) |
| 243 | { |
| 244 | printf ("%-12s= 0x%08lX\n", name, value); |
| 245 | } |
| 246 | |
| 247 | #ifdef CONFIG_PPC |
| 248 | static void print_str(const char *name, const char *str) |
| 249 | { |
| 250 | printf ("%-12s= %6s MHz\n", name, str); |
| 251 | } |
| 252 | #endif /* CONFIG_PPC */ |
| 253 | |
| 254 | |
| 255 | /* -------------------------------------------------------------------- */ |
| 256 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 257 | U_BOOT_CMD( |
| 258 | bdinfo, 1, 1, do_bdinfo, |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 259 | "bdinfo - print Board Info structure\n", |
| 260 | NULL |
| 261 | ); |
| 262 | #endif /* CFG_CMD_BDI */ |