Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Boot support |
| 9 | */ |
| 10 | #include <common.h> |
| 11 | #include <command.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 12 | #include <env.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 13 | #include <net.h> |
Simon Glass | 2189d5f | 2019-11-14 12:57:20 -0700 | [diff] [blame] | 14 | #include <vsprintf.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 15 | #include <asm/cache.h> |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 16 | #include <linux/compiler.h> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 17 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 19 | |
Simon Glass | 8d99d54 | 2020-04-30 22:02:13 -0600 | [diff] [blame] | 20 | __maybe_unused void print_cpu_word_size(void) |
| 21 | { |
| 22 | printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8); |
| 23 | } |
| 24 | |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 25 | __maybe_unused |
| 26 | static void print_num(const char *name, ulong value) |
| 27 | { |
Heinrich Schuchardt | 95187bb | 2018-10-11 13:15:01 +0200 | [diff] [blame] | 28 | printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value); |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 29 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 30 | |
Simon Glass | 5f3dfad | 2011-12-06 13:37:17 +0000 | [diff] [blame] | 31 | __maybe_unused |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 32 | static void print_eth(int idx) |
| 33 | { |
| 34 | char name[10], *val; |
| 35 | if (idx) |
| 36 | sprintf(name, "eth%iaddr", idx); |
| 37 | else |
| 38 | strcpy(name, "ethaddr"); |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 39 | val = env_get(name); |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 40 | if (!val) |
| 41 | val = "(not set)"; |
| 42 | printf("%-12s= %s\n", name, val); |
| 43 | } |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 44 | |
Joe Hershberger | 05c3e68 | 2015-03-22 17:09:10 -0500 | [diff] [blame] | 45 | #ifndef CONFIG_DM_ETH |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 46 | __maybe_unused |
Michal Simek | 9fc6a06 | 2013-01-23 12:21:18 +0100 | [diff] [blame] | 47 | static void print_eths(void) |
| 48 | { |
| 49 | struct eth_device *dev; |
| 50 | int i = 0; |
| 51 | |
| 52 | do { |
| 53 | dev = eth_get_dev_by_index(i); |
| 54 | if (dev) { |
| 55 | printf("eth%dname = %s\n", i, dev->name); |
| 56 | print_eth(i); |
| 57 | i++; |
| 58 | } |
| 59 | } while (dev); |
| 60 | |
| 61 | printf("current eth = %s\n", eth_get_name()); |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 62 | printf("ip_addr = %s\n", env_get("ipaddr")); |
Michal Simek | 9fc6a06 | 2013-01-23 12:21:18 +0100 | [diff] [blame] | 63 | } |
Joe Hershberger | 05c3e68 | 2015-03-22 17:09:10 -0500 | [diff] [blame] | 64 | #endif |
Michal Simek | 9fc6a06 | 2013-01-23 12:21:18 +0100 | [diff] [blame] | 65 | |
| 66 | __maybe_unused |
Daniel Schwierzeck | 4770845 | 2012-10-03 08:36:11 +0000 | [diff] [blame] | 67 | static void print_lnum(const char *name, unsigned long long value) |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 68 | { |
| 69 | printf("%-12s= 0x%.8llX\n", name, value); |
| 70 | } |
| 71 | |
| 72 | __maybe_unused |
| 73 | static void print_mhz(const char *name, unsigned long hz) |
| 74 | { |
| 75 | char buf[32]; |
| 76 | |
| 77 | printf("%-12s= %6s MHz\n", name, strmhz(buf, hz)); |
| 78 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 79 | |
Max Filippov | 171e539 | 2016-07-28 03:57:18 +0300 | [diff] [blame] | 80 | |
| 81 | static inline void print_bi_boot_params(const bd_t *bd) |
| 82 | { |
| 83 | print_num("boot_params", (ulong)bd->bi_boot_params); |
| 84 | } |
| 85 | |
Max Filippov | 12feb36 | 2016-07-28 03:57:19 +0300 | [diff] [blame] | 86 | static inline void print_bi_mem(const bd_t *bd) |
| 87 | { |
| 88 | #if defined(CONFIG_SH) |
| 89 | print_num("mem start ", (ulong)bd->bi_memstart); |
| 90 | print_lnum("mem size ", (u64)bd->bi_memsize); |
| 91 | #elif defined(CONFIG_ARC) |
| 92 | print_num("mem start", (ulong)bd->bi_memstart); |
| 93 | print_lnum("mem size", (u64)bd->bi_memsize); |
Max Filippov | 12feb36 | 2016-07-28 03:57:19 +0300 | [diff] [blame] | 94 | #else |
| 95 | print_num("memstart", (ulong)bd->bi_memstart); |
| 96 | print_lnum("memsize", (u64)bd->bi_memsize); |
| 97 | #endif |
| 98 | } |
| 99 | |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 100 | static inline void print_bi_dram(const bd_t *bd) |
| 101 | { |
| 102 | #ifdef CONFIG_NR_DRAM_BANKS |
| 103 | int i; |
| 104 | |
| 105 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
Simon Glass | ddd917b | 2016-08-05 21:57:27 -0600 | [diff] [blame] | 106 | if (bd->bi_dram[i].size) { |
| 107 | print_num("DRAM bank", i); |
| 108 | print_num("-> start", bd->bi_dram[i].start); |
| 109 | print_num("-> size", bd->bi_dram[i].size); |
| 110 | } |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 111 | } |
| 112 | #endif |
| 113 | } |
| 114 | |
Max Filippov | f80e535 | 2016-07-28 03:57:21 +0300 | [diff] [blame] | 115 | static inline void print_bi_flash(const bd_t *bd) |
| 116 | { |
| 117 | #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_SH) |
| 118 | print_num("flash start ", (ulong)bd->bi_flashstart); |
| 119 | print_num("flash size ", (ulong)bd->bi_flashsize); |
| 120 | print_num("flash offset ", (ulong)bd->bi_flashoffset); |
| 121 | |
Tom Rini | 70cc0c3 | 2017-03-14 11:08:12 -0400 | [diff] [blame] | 122 | #elif defined(CONFIG_NIOS2) |
Max Filippov | f80e535 | 2016-07-28 03:57:21 +0300 | [diff] [blame] | 123 | print_num("flash start", (ulong)bd->bi_flashstart); |
| 124 | print_num("flash size", (ulong)bd->bi_flashsize); |
| 125 | print_num("flash offset", (ulong)bd->bi_flashoffset); |
| 126 | #else |
| 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 | #endif |
| 131 | } |
| 132 | |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 133 | static inline void print_eth_ip_addr(void) |
| 134 | { |
| 135 | #if defined(CONFIG_CMD_NET) |
| 136 | print_eth(0); |
| 137 | #if defined(CONFIG_HAS_ETH1) |
| 138 | print_eth(1); |
| 139 | #endif |
| 140 | #if defined(CONFIG_HAS_ETH2) |
| 141 | print_eth(2); |
| 142 | #endif |
| 143 | #if defined(CONFIG_HAS_ETH3) |
| 144 | print_eth(3); |
| 145 | #endif |
| 146 | #if defined(CONFIG_HAS_ETH4) |
| 147 | print_eth(4); |
| 148 | #endif |
| 149 | #if defined(CONFIG_HAS_ETH5) |
| 150 | print_eth(5); |
| 151 | #endif |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 152 | printf("IP addr = %s\n", env_get("ipaddr")); |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 153 | #endif |
| 154 | } |
| 155 | |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 156 | static inline void print_baudrate(void) |
| 157 | { |
| 158 | #if defined(CONFIG_PPC) |
| 159 | printf("baudrate = %6u bps\n", gd->baudrate); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 160 | #else |
| 161 | printf("baudrate = %u bps\n", gd->baudrate); |
| 162 | #endif |
| 163 | } |
| 164 | |
Tom Rini | b37483c | 2017-05-10 15:20:12 -0400 | [diff] [blame] | 165 | static inline void __maybe_unused print_std_bdinfo(const bd_t *bd) |
Max Filippov | e379508 | 2016-07-28 03:57:24 +0300 | [diff] [blame] | 166 | { |
| 167 | print_bi_boot_params(bd); |
| 168 | print_bi_mem(bd); |
| 169 | print_bi_flash(bd); |
| 170 | print_eth_ip_addr(); |
| 171 | print_baudrate(); |
| 172 | } |
| 173 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 174 | #if defined(CONFIG_PPC) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 175 | |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 176 | #define USE_GENERIC |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 177 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 178 | #elif defined(CONFIG_NIOS2) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 179 | |
Simon Glass | 08c56d1 | 2020-05-10 14:16:30 -0600 | [diff] [blame] | 180 | #define USE_GENERIC |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 181 | |
| 182 | #elif defined(CONFIG_MICROBLAZE) |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 183 | |
Simon Glass | 271db50 | 2020-05-10 14:16:31 -0600 | [diff] [blame] | 184 | #define USE_GENERIC |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 185 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 186 | #elif defined(CONFIG_M68K) |
| 187 | |
Simon Glass | 67145d1 | 2020-05-10 14:16:38 -0600 | [diff] [blame] | 188 | #define USE_GENERIC |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 189 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 190 | #elif defined(CONFIG_MIPS) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 191 | |
Simon Glass | df529b5 | 2020-05-10 14:16:29 -0600 | [diff] [blame] | 192 | #define USE_GENERIC |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 193 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 194 | #elif defined(CONFIG_ARM) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 195 | |
Simon Glass | 1aeeaeb | 2020-05-10 14:16:39 -0600 | [diff] [blame^] | 196 | #define USE_GENERIC |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 197 | |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 198 | #elif defined(CONFIG_SH) |
| 199 | |
Simon Glass | f41b830 | 2020-05-10 14:16:32 -0600 | [diff] [blame] | 200 | #define USE_GENERIC |
Nobuhiro Iwamatsu | ebd0d06 | 2010-07-22 16:05:32 +0900 | [diff] [blame] | 201 | |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 202 | #elif defined(CONFIG_X86) |
| 203 | |
Simon Glass | 41ec71d | 2020-05-10 14:16:33 -0600 | [diff] [blame] | 204 | #define USE_GENERIC |
Graeme Russ | a806ee6 | 2010-08-22 16:25:58 +1000 | [diff] [blame] | 205 | |
Simon Glass | 6fcc3be | 2011-09-17 06:48:47 +0000 | [diff] [blame] | 206 | #elif defined(CONFIG_SANDBOX) |
| 207 | |
Simon Glass | c66981c | 2020-05-10 14:16:34 -0600 | [diff] [blame] | 208 | #define USE_GENERIC |
Simon Glass | 6fcc3be | 2011-09-17 06:48:47 +0000 | [diff] [blame] | 209 | |
Macpaul Lin | 64d6146 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 210 | #elif defined(CONFIG_NDS32) |
| 211 | |
Simon Glass | aa6b898 | 2020-05-10 14:16:35 -0600 | [diff] [blame] | 212 | #define USE_GENERIC |
Macpaul Lin | 64d6146 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 213 | |
Rick Chen | 068feb9 | 2017-12-26 13:55:58 +0800 | [diff] [blame] | 214 | #elif defined(CONFIG_RISCV) |
| 215 | |
Simon Glass | 628c85a | 2020-05-10 14:16:36 -0600 | [diff] [blame] | 216 | #define USE_GENERIC |
Rick Chen | 068feb9 | 2017-12-26 13:55:58 +0800 | [diff] [blame] | 217 | |
Alexey Brodkin | 946f6f2 | 2014-12-26 11:03:15 +0300 | [diff] [blame] | 218 | #elif defined(CONFIG_ARC) |
Alexey Brodkin | bc5d542 | 2014-02-04 12:56:16 +0400 | [diff] [blame] | 219 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 220 | int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Alexey Brodkin | bc5d542 | 2014-02-04 12:56:16 +0400 | [diff] [blame] | 221 | { |
| 222 | bd_t *bd = gd->bd; |
| 223 | |
Max Filippov | 12feb36 | 2016-07-28 03:57:19 +0300 | [diff] [blame] | 224 | print_bi_mem(bd); |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 225 | print_eth_ip_addr(); |
Max Filippov | 4e3fa7d | 2016-07-28 03:57:23 +0300 | [diff] [blame] | 226 | print_baudrate(); |
Simon Glass | 8d99d54 | 2020-04-30 22:02:13 -0600 | [diff] [blame] | 227 | print_cpu_word_size(); |
Alexey Brodkin | bc5d542 | 2014-02-04 12:56:16 +0400 | [diff] [blame] | 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Chris Zankel | de5e5ce | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 232 | #elif defined(CONFIG_XTENSA) |
| 233 | |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 234 | #define USE_GENERIC |
Chris Zankel | de5e5ce | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 235 | |
Reinhard Meyer | c99ea79 | 2010-06-06 19:01:59 +0200 | [diff] [blame] | 236 | #else |
| 237 | #error "a case for this architecture does not exist!" |
| 238 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 239 | |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 240 | /* Temporary check for archs that use generic bdinfo. Eventually all will */ |
| 241 | #ifdef USE_GENERIC |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 242 | void __weak board_detail(void) |
| 243 | { |
| 244 | /* Please define board_detail() for your PPC platform */ |
| 245 | } |
| 246 | |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 247 | int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
| 248 | { |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 249 | bd_t *bd = gd->bd; |
| 250 | |
| 251 | #ifdef DEBUG |
| 252 | print_num("bd address", (ulong)bd); |
| 253 | #endif |
Simon Glass | 1aeeaeb | 2020-05-10 14:16:39 -0600 | [diff] [blame^] | 254 | if (IS_ENABLED(CONFIG_ARM)) |
| 255 | print_num("arch_number", bd->bi_arch_number); |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 256 | print_bi_dram(bd); |
| 257 | print_std_bdinfo(bd); |
Simon Glass | df529b5 | 2020-05-10 14:16:29 -0600 | [diff] [blame] | 258 | print_num("relocaddr", gd->relocaddr); |
| 259 | print_num("reloc off", gd->reloc_off); |
| 260 | print_cpu_word_size(); |
Simon Glass | 271db50 | 2020-05-10 14:16:31 -0600 | [diff] [blame] | 261 | #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH) |
| 262 | print_eths(); |
| 263 | #endif |
| 264 | print_num("fdt_blob", (ulong)gd->fdt_blob); |
| 265 | print_num("new_fdt", (ulong)gd->new_fdt); |
| 266 | print_num("fdt_size", (ulong)gd->fdt_size); |
Simon Glass | 1aeeaeb | 2020-05-10 14:16:39 -0600 | [diff] [blame^] | 267 | #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO) |
| 268 | print_num("FB base ", gd->fb_base); |
| 269 | #endif |
| 270 | |
| 271 | /* This section is used only by ARM */ |
| 272 | #ifdef CONFIG_ARM |
| 273 | #ifdef CONFIG_SYS_MEM_RESERVE_SECURE |
| 274 | if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) { |
| 275 | print_num("Secure ram", |
| 276 | gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK); |
| 277 | } |
| 278 | #endif |
| 279 | #ifdef CONFIG_RESV_RAM |
| 280 | if (gd->arch.resv_ram) |
| 281 | print_num("Reserved ram", gd->arch.resv_ram); |
| 282 | #endif |
| 283 | #if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) |
| 284 | print_num("TLB addr", gd->arch.tlb_addr); |
| 285 | #endif |
| 286 | print_num("irq_sp", gd->irq_sp); /* irq stack pointer */ |
| 287 | print_num("sp start ", gd->start_addr_sp); |
| 288 | /* |
| 289 | * TODO: Currently only support for davinci SOC's is added. |
| 290 | * Remove this check once all the board implement this. |
| 291 | */ |
| 292 | #ifdef CONFIG_CLOCKS |
| 293 | printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq); |
| 294 | printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq); |
| 295 | printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq); |
| 296 | #endif |
| 297 | #ifdef CONFIG_BOARD_TYPES |
| 298 | printf("Board Type = %ld\n", gd->board_type); |
| 299 | #endif |
| 300 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
| 301 | printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr, |
| 302 | CONFIG_VAL(SYS_MALLOC_F_LEN)); |
| 303 | #endif |
| 304 | #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
| 305 | print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit); |
| 306 | #endif |
| 307 | #endif /* CONFIG_ARM */ |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 308 | |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 309 | /* This section is used only by ppc */ |
| 310 | #if defined(CONFIG_MPC8xx) || defined(CONFIG_E500) |
| 311 | print_num("immr_base", bd->bi_immr_base); |
| 312 | #endif |
| 313 | if (IS_ENABLED(CONFIG_PPC)) { |
| 314 | print_num("bootflags", bd->bi_bootflags); |
| 315 | print_mhz("intfreq", bd->bi_intfreq); |
| 316 | #ifdef CONFIG_ENABLE_36BIT_PHYS |
| 317 | if (IS_ENABLED(CONFIG_PHYS_64BIT)) |
| 318 | puts("addressing = 36-bit\n"); |
| 319 | else |
| 320 | puts("addressing = 32-bit\n"); |
| 321 | #endif |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 322 | board_detail(); |
| 323 | } |
| 324 | #if defined(CONFIG_CPM2) |
| 325 | print_mhz("cpmfreq", bd->bi_cpmfreq); |
| 326 | print_mhz("vco", bd->bi_vco); |
| 327 | print_mhz("sccfreq", bd->bi_sccfreq); |
| 328 | print_mhz("brgfreq", bd->bi_brgfreq); |
| 329 | #endif |
| 330 | |
Simon Glass | 67145d1 | 2020-05-10 14:16:38 -0600 | [diff] [blame] | 331 | /* This is used by m68k and ppc */ |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 332 | #if defined(CONFIG_SYS_INIT_RAM_ADDR) |
| 333 | print_num("sramstart", (ulong)bd->bi_sramstart); |
| 334 | print_num("sramsize", (ulong)bd->bi_sramsize); |
| 335 | #endif |
Simon Glass | 67145d1 | 2020-05-10 14:16:38 -0600 | [diff] [blame] | 336 | if (IS_ENABLED(CONFIG_PPC) || IS_ENABLED(CONFIG_M68K)) |
| 337 | print_mhz("busfreq", bd->bi_busfreq); |
| 338 | |
| 339 | /* The rest are used only by m68k */ |
| 340 | #ifdef CONFIG_M68K |
| 341 | #if defined(CONFIG_SYS_MBAR) |
| 342 | print_num("mbar", bd->bi_mbar_base); |
| 343 | #endif |
| 344 | print_mhz("cpufreq", bd->bi_intfreq); |
| 345 | if (IS_ENABLED(CONFIG_PCI)) |
| 346 | print_mhz("pcifreq", bd->bi_pcifreq); |
| 347 | #ifdef CONFIG_EXTRA_CLOCK |
| 348 | print_mhz("flbfreq", bd->bi_flbfreq); |
| 349 | print_mhz("inpfreq", bd->bi_inpfreq); |
| 350 | print_mhz("vcofreq", bd->bi_vcofreq); |
| 351 | #endif |
| 352 | #endif |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 353 | |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 354 | return 0; |
| 355 | } |
| 356 | #endif |
| 357 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 358 | /* -------------------------------------------------------------------- */ |
| 359 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 360 | U_BOOT_CMD( |
| 361 | bdinfo, 1, 1, do_bdinfo, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 362 | "print Board Info structure", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 363 | "" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 364 | ); |