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 | /* |
Simon Glass | bda8909 | 2020-05-10 14:17:00 -0600 | [diff] [blame] | 3 | * Implements the 'bd' command to show board information |
| 4 | * |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 5 | * (C) Copyright 2003 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 9 | #include <common.h> |
| 10 | #include <command.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 11 | #include <env.h> |
Tero Kristo | 9996cea | 2020-07-20 11:10:45 +0300 | [diff] [blame] | 12 | #include <lmb.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> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 16 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 17 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 18 | |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 19 | void bdinfo_print_num(const char *name, ulong value) |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 20 | { |
Heinrich Schuchardt | 95187bb | 2018-10-11 13:15:01 +0200 | [diff] [blame] | 21 | printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value); |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 22 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 23 | |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 24 | static void print_eth(int idx) |
| 25 | { |
| 26 | char name[10], *val; |
| 27 | if (idx) |
| 28 | sprintf(name, "eth%iaddr", idx); |
| 29 | else |
| 30 | strcpy(name, "ethaddr"); |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 31 | val = env_get(name); |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 32 | if (!val) |
| 33 | val = "(not set)"; |
| 34 | printf("%-12s= %s\n", name, val); |
| 35 | } |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 36 | |
Heinrich Schuchardt | 5ce2776 | 2020-07-28 17:56:33 +0200 | [diff] [blame] | 37 | static void print_phys_addr(const char *name, phys_addr_t value) |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 38 | { |
Heinrich Schuchardt | 5ce2776 | 2020-07-28 17:56:33 +0200 | [diff] [blame] | 39 | printf("%-12s= 0x%.*llx\n", name, 2 * (int)sizeof(ulong), |
| 40 | (unsigned long long)value); |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 43 | void bdinfo_print_mhz(const char *name, unsigned long hz) |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 44 | { |
| 45 | char buf[32]; |
| 46 | |
| 47 | printf("%-12s= %6s MHz\n", name, strmhz(buf, hz)); |
| 48 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 49 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 50 | static void print_bi_dram(const struct bd_info *bd) |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 51 | { |
| 52 | #ifdef CONFIG_NR_DRAM_BANKS |
| 53 | int i; |
| 54 | |
| 55 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
Simon Glass | ddd917b | 2016-08-05 21:57:27 -0600 | [diff] [blame] | 56 | if (bd->bi_dram[i].size) { |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 57 | bdinfo_print_num("DRAM bank", i); |
| 58 | bdinfo_print_num("-> start", bd->bi_dram[i].start); |
| 59 | bdinfo_print_num("-> size", bd->bi_dram[i].size); |
Simon Glass | ddd917b | 2016-08-05 21:57:27 -0600 | [diff] [blame] | 60 | } |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 61 | } |
| 62 | #endif |
| 63 | } |
| 64 | |
Simon Glass | 59b0d7d | 2020-05-10 14:16:56 -0600 | [diff] [blame] | 65 | __weak void arch_print_bdinfo(void) |
| 66 | { |
| 67 | } |
| 68 | |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 69 | int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
| 70 | { |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 71 | struct bd_info *bd = gd->bd; |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 72 | |
| 73 | #ifdef DEBUG |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 74 | bdinfo_print_num("bd address", (ulong)bd); |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 75 | #endif |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 76 | bdinfo_print_num("boot_params", (ulong)bd->bi_boot_params); |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 77 | print_bi_dram(bd); |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 78 | bdinfo_print_num("memstart", (ulong)bd->bi_memstart); |
Heinrich Schuchardt | 5ce2776 | 2020-07-28 17:56:33 +0200 | [diff] [blame] | 79 | print_phys_addr("memsize", bd->bi_memsize); |
Ovidiu Panait | 6ecefcf | 2020-07-24 14:12:13 +0300 | [diff] [blame] | 80 | if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) { |
| 81 | bdinfo_print_num("sramstart", (ulong)bd->bi_sramstart); |
| 82 | bdinfo_print_num("sramsize", (ulong)bd->bi_sramsize); |
| 83 | } |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 84 | bdinfo_print_num("flashstart", (ulong)bd->bi_flashstart); |
| 85 | bdinfo_print_num("flashsize", (ulong)bd->bi_flashsize); |
| 86 | bdinfo_print_num("flashoffset", (ulong)bd->bi_flashoffset); |
Simon Glass | 3e1cca2 | 2020-05-10 14:16:46 -0600 | [diff] [blame] | 87 | printf("baudrate = %u bps\n", gd->baudrate); |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 88 | bdinfo_print_num("relocaddr", gd->relocaddr); |
| 89 | bdinfo_print_num("reloc off", gd->reloc_off); |
Simon Glass | db76c9b | 2020-05-10 14:16:50 -0600 | [diff] [blame] | 90 | printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8); |
Simon Glass | 8a2ba58 | 2020-05-10 14:16:54 -0600 | [diff] [blame] | 91 | if (IS_ENABLED(CONFIG_CMD_NET)) { |
Simon Glass | 441539f | 2020-05-10 14:16:53 -0600 | [diff] [blame] | 92 | printf("current eth = %s\n", eth_get_name()); |
Simon Glass | 8a2ba58 | 2020-05-10 14:16:54 -0600 | [diff] [blame] | 93 | print_eth(0); |
| 94 | printf("IP addr = %s\n", env_get("ipaddr")); |
| 95 | } |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 96 | bdinfo_print_num("fdt_blob", (ulong)gd->fdt_blob); |
| 97 | bdinfo_print_num("new_fdt", (ulong)gd->new_fdt); |
| 98 | bdinfo_print_num("fdt_size", (ulong)gd->fdt_size); |
Simon Glass | 1aeeaeb | 2020-05-10 14:16:39 -0600 | [diff] [blame] | 99 | #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO) |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 100 | bdinfo_print_num("FB base ", gd->fb_base); |
Simon Glass | 1aeeaeb | 2020-05-10 14:16:39 -0600 | [diff] [blame] | 101 | #endif |
Simon Glass | 1aeeaeb | 2020-05-10 14:16:39 -0600 | [diff] [blame] | 102 | #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
Simon Glass | 655f17f | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 103 | bdinfo_print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit); |
Simon Glass | 1aeeaeb | 2020-05-10 14:16:39 -0600 | [diff] [blame] | 104 | #endif |
Tero Kristo | 9996cea | 2020-07-20 11:10:45 +0300 | [diff] [blame] | 105 | if (gd->fdt_blob) { |
| 106 | struct lmb lmb; |
| 107 | |
| 108 | lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob); |
| 109 | lmb_dump_all_force(&lmb); |
| 110 | } |
Simon Glass | 59b0d7d | 2020-05-10 14:16:56 -0600 | [diff] [blame] | 111 | |
| 112 | arch_print_bdinfo(); |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 113 | |
| 114 | return 0; |
| 115 | } |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 116 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 117 | U_BOOT_CMD( |
| 118 | bdinfo, 1, 1, do_bdinfo, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 119 | "print Board Info structure", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 120 | "" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 121 | ); |