Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 2 | /* |
Simon Glass | f12b3e4 | 2020-05-10 14:17:00 -0600 | [diff] [blame] | 3 | * Implements the 'bd' command to show board information |
| 4 | * |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 5 | * (C) Copyright 2003 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 9 | #include <command.h> |
Simon Glass | 3bbcf6f | 2020-09-22 21:16:40 -0600 | [diff] [blame] | 10 | #include <dm.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 11 | #include <env.h> |
Marek Vasut | e44df15 | 2023-10-07 23:40:58 +0200 | [diff] [blame] | 12 | #include <getopt.h> |
Tero Kristo | 97c418b | 2020-07-20 11:10:45 +0300 | [diff] [blame] | 13 | #include <lmb.h> |
Marek Vasut | ef1ee8f | 2023-04-22 15:01:31 +0200 | [diff] [blame] | 14 | #include <mapmem.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 15 | #include <net.h> |
Simon Glass | 3ddee31 | 2023-07-12 09:04:37 -0600 | [diff] [blame] | 16 | #include <serial.h> |
Simon Glass | 3bbcf6f | 2020-09-22 21:16:40 -0600 | [diff] [blame] | 17 | #include <video.h> |
Simon Glass | f5c208d | 2019-11-14 12:57:20 -0700 | [diff] [blame] | 18 | #include <vsprintf.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 19 | #include <asm/cache.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 20 | #include <asm/global_data.h> |
Ovidiu Panait | 608c11e | 2022-08-29 20:02:04 +0300 | [diff] [blame] | 21 | #include <display_options.h> |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 22 | |
Wolfgang Denk | 6405a15 | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 23 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 24 | |
Ovidiu Panait | 608c11e | 2022-08-29 20:02:04 +0300 | [diff] [blame] | 25 | void bdinfo_print_size(const char *name, uint64_t size) |
| 26 | { |
| 27 | printf("%-12s= ", name); |
| 28 | print_size(size, "\n"); |
| 29 | } |
| 30 | |
Simon Glass | 3a12725 | 2023-03-10 12:47:14 -0800 | [diff] [blame] | 31 | void bdinfo_print_str(const char *name, const char *str) |
| 32 | { |
| 33 | printf("%-12s= %s\n", name, str); |
| 34 | } |
| 35 | |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 36 | void bdinfo_print_num_l(const char *name, ulong value) |
Mike Frysinger | 1a8d658 | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 37 | { |
Heinrich Schuchardt | 7959642 | 2018-10-11 13:15:01 +0200 | [diff] [blame] | 38 | printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value); |
Mike Frysinger | 1a8d658 | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 39 | } |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 40 | |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 41 | void bdinfo_print_num_ll(const char *name, unsigned long long value) |
| 42 | { |
| 43 | printf("%-12s= 0x%.*llx\n", name, 2 * (int)sizeof(ulong), value); |
| 44 | } |
| 45 | |
Marek Vasut | 01193e9 | 2023-04-22 15:01:33 +0200 | [diff] [blame] | 46 | static void print_eth(void) |
Mike Frysinger | 1a8d658 | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 47 | { |
Marek Vasut | 01193e9 | 2023-04-22 15:01:33 +0200 | [diff] [blame] | 48 | const int idx = eth_get_dev_index(); |
| 49 | uchar enetaddr[6]; |
| 50 | char name[10]; |
| 51 | int ret; |
| 52 | |
Mike Frysinger | 1a8d658 | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 53 | if (idx) |
| 54 | sprintf(name, "eth%iaddr", idx); |
| 55 | else |
| 56 | strcpy(name, "ethaddr"); |
Marek Vasut | 01193e9 | 2023-04-22 15:01:33 +0200 | [diff] [blame] | 57 | |
| 58 | ret = eth_env_get_enetaddr_by_index("eth", idx, enetaddr); |
Marek Vasut | aefcd7a | 2023-04-22 15:01:32 +0200 | [diff] [blame] | 59 | |
| 60 | printf("current eth = %s\n", eth_get_name()); |
Marek Vasut | 01193e9 | 2023-04-22 15:01:33 +0200 | [diff] [blame] | 61 | if (!ret) |
| 62 | printf("%-12s= (not set)\n", name); |
| 63 | else |
| 64 | printf("%-12s= %pM\n", name, enetaddr); |
Marek Vasut | aefcd7a | 2023-04-22 15:01:32 +0200 | [diff] [blame] | 65 | printf("IP addr = %s\n", env_get("ipaddr")); |
Mike Frysinger | 1a8d658 | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 66 | } |
Mike Frysinger | 9335cc7 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 67 | |
Simon Glass | 7e24663 | 2020-05-10 14:16:55 -0600 | [diff] [blame] | 68 | void bdinfo_print_mhz(const char *name, unsigned long hz) |
Mike Frysinger | 1a8d658 | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 69 | { |
| 70 | char buf[32]; |
| 71 | |
| 72 | printf("%-12s= %6s MHz\n", name, strmhz(buf, hz)); |
| 73 | } |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 74 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 75 | static void print_bi_dram(const struct bd_info *bd) |
Max Filippov | ba21c79 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 76 | { |
Max Filippov | ba21c79 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 77 | int i; |
| 78 | |
| 79 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
Simon Glass | cf16168 | 2016-08-05 21:57:27 -0600 | [diff] [blame] | 80 | if (bd->bi_dram[i].size) { |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 81 | bdinfo_print_num_l("DRAM bank", i); |
Bin Meng | f5dc7f6 | 2021-01-31 20:36:06 +0800 | [diff] [blame] | 82 | bdinfo_print_num_ll("-> start", bd->bi_dram[i].start); |
| 83 | bdinfo_print_num_ll("-> size", bd->bi_dram[i].size); |
Simon Glass | cf16168 | 2016-08-05 21:57:27 -0600 | [diff] [blame] | 84 | } |
Max Filippov | ba21c79 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 85 | } |
Max Filippov | ba21c79 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 86 | } |
| 87 | |
Simon Glass | a83ab16 | 2020-05-10 14:16:56 -0600 | [diff] [blame] | 88 | __weak void arch_print_bdinfo(void) |
| 89 | { |
Simon Glass | 3bbcf6f | 2020-09-22 21:16:40 -0600 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | static void show_video_info(void) |
| 93 | { |
| 94 | const struct udevice *dev; |
| 95 | struct uclass *uc; |
| 96 | |
| 97 | uclass_id_foreach_dev(UCLASS_VIDEO, dev, uc) { |
| 98 | printf("%-12s= %s %sactive\n", "Video", dev->name, |
| 99 | device_active(dev) ? "" : "in"); |
| 100 | if (device_active(dev)) { |
| 101 | struct video_priv *upriv = dev_get_uclass_priv(dev); |
Simon Glass | 32dc453 | 2023-03-10 12:47:18 -0800 | [diff] [blame] | 102 | struct video_uc_plat *plat = dev_get_uclass_plat(dev); |
Simon Glass | 3bbcf6f | 2020-09-22 21:16:40 -0600 | [diff] [blame] | 103 | |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 104 | bdinfo_print_num_ll("FB base", (ulong)upriv->fb); |
Simon Glass | 32dc453 | 2023-03-10 12:47:18 -0800 | [diff] [blame] | 105 | if (upriv->copy_fb) { |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 106 | bdinfo_print_num_ll("FB copy", |
| 107 | (ulong)upriv->copy_fb); |
Simon Glass | 32dc453 | 2023-03-10 12:47:18 -0800 | [diff] [blame] | 108 | bdinfo_print_num_l(" copy size", |
| 109 | plat->copy_size); |
| 110 | } |
Simon Glass | 3bbcf6f | 2020-09-22 21:16:40 -0600 | [diff] [blame] | 111 | printf("%-12s= %dx%dx%d\n", "FB size", upriv->xsize, |
| 112 | upriv->ysize, 1 << upriv->bpix); |
| 113 | } |
| 114 | } |
Simon Glass | a83ab16 | 2020-05-10 14:16:56 -0600 | [diff] [blame] | 115 | } |
| 116 | |
Simon Glass | 3ddee31 | 2023-07-12 09:04:37 -0600 | [diff] [blame] | 117 | static void print_serial(struct udevice *dev) |
| 118 | { |
| 119 | struct serial_device_info info; |
| 120 | int ret; |
| 121 | |
| 122 | if (!dev || !IS_ENABLED(CONFIG_DM_SERIAL)) |
| 123 | return; |
| 124 | |
| 125 | ret = serial_getinfo(dev, &info); |
| 126 | if (ret) |
| 127 | return; |
| 128 | |
| 129 | bdinfo_print_num_l("serial addr", info.addr); |
| 130 | bdinfo_print_num_l(" width", info.reg_width); |
| 131 | bdinfo_print_num_l(" shift", info.reg_shift); |
| 132 | bdinfo_print_num_l(" offset", info.reg_offset); |
| 133 | bdinfo_print_num_l(" clock", info.clock); |
| 134 | } |
| 135 | |
Marek Vasut | e44df15 | 2023-10-07 23:40:58 +0200 | [diff] [blame] | 136 | static int bdinfo_print_all(struct bd_info *bd) |
Chris Zankel | 41e3737 | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 137 | { |
Simon Glass | 61c621e | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 138 | #ifdef DEBUG |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 139 | bdinfo_print_num_l("bd address", (ulong)bd); |
Simon Glass | 61c621e | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 140 | #endif |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 141 | bdinfo_print_num_l("boot_params", (ulong)bd->bi_boot_params); |
Simon Glass | 61c621e | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 142 | print_bi_dram(bd); |
Ovidiu Panait | 3ae4e95 | 2020-07-24 14:12:13 +0300 | [diff] [blame] | 143 | if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) { |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 144 | bdinfo_print_num_l("sramstart", (ulong)bd->bi_sramstart); |
| 145 | bdinfo_print_num_l("sramsize", (ulong)bd->bi_sramsize); |
Ovidiu Panait | 3ae4e95 | 2020-07-24 14:12:13 +0300 | [diff] [blame] | 146 | } |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 147 | bdinfo_print_num_l("flashstart", (ulong)bd->bi_flashstart); |
| 148 | bdinfo_print_num_l("flashsize", (ulong)bd->bi_flashsize); |
| 149 | bdinfo_print_num_l("flashoffset", (ulong)bd->bi_flashoffset); |
Simon Glass | 981c71a | 2020-05-10 14:16:46 -0600 | [diff] [blame] | 150 | printf("baudrate = %u bps\n", gd->baudrate); |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 151 | bdinfo_print_num_l("relocaddr", gd->relocaddr); |
| 152 | bdinfo_print_num_l("reloc off", gd->reloc_off); |
Simon Glass | 6bda308 | 2020-05-10 14:16:50 -0600 | [diff] [blame] | 153 | printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8); |
Jerome Forissier | c4d17bd | 2024-10-16 12:04:10 +0200 | [diff] [blame] | 154 | if (IS_ENABLED(CONFIG_CMD_NET) || IS_ENABLED(CONFIG_CMD_NET_LWIP)) |
Marek Vasut | 01193e9 | 2023-04-22 15:01:33 +0200 | [diff] [blame] | 155 | print_eth(); |
Marek Vasut | ef1ee8f | 2023-04-22 15:01:31 +0200 | [diff] [blame] | 156 | bdinfo_print_num_l("fdt_blob", (ulong)map_to_sysmem(gd->fdt_blob)); |
Simon Glass | 52cb504 | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 157 | if (IS_ENABLED(CONFIG_VIDEO)) |
Simon Glass | 3bbcf6f | 2020-09-22 21:16:40 -0600 | [diff] [blame] | 158 | show_video_info(); |
Simon Glass | 6d0c543 | 2020-05-10 14:16:39 -0600 | [diff] [blame] | 159 | #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
Bin Meng | 1ae7a0c | 2021-01-31 20:36:05 +0800 | [diff] [blame] | 160 | bdinfo_print_num_l("multi_dtb_fit", (ulong)gd->multi_dtb_fit); |
Simon Glass | 6d0c543 | 2020-05-10 14:16:39 -0600 | [diff] [blame] | 161 | #endif |
Michal Simek | d0ed5d1 | 2022-09-07 09:52:09 +0200 | [diff] [blame] | 162 | if (IS_ENABLED(CONFIG_LMB) && gd->fdt_blob) { |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 163 | lmb_dump_all_force(); |
Simon Glass | 8f9ce7e | 2021-12-16 20:59:34 -0700 | [diff] [blame] | 164 | if (IS_ENABLED(CONFIG_OF_REAL)) |
| 165 | printf("devicetree = %s\n", fdtdec_get_srcname()); |
Tero Kristo | 97c418b | 2020-07-20 11:10:45 +0300 | [diff] [blame] | 166 | } |
Simon Glass | 3ddee31 | 2023-07-12 09:04:37 -0600 | [diff] [blame] | 167 | print_serial(gd->cur_serial_dev); |
Simon Glass | a83ab16 | 2020-05-10 14:16:56 -0600 | [diff] [blame] | 168 | |
Simon Glass | 5087c77 | 2023-07-15 21:38:46 -0600 | [diff] [blame] | 169 | if (IS_ENABLED(CONFIG_CMD_BDINFO_EXTRA)) { |
| 170 | bdinfo_print_num_ll("stack ptr", (ulong)&bd); |
| 171 | bdinfo_print_num_ll("ram_top ptr", (ulong)gd->ram_top); |
Simon Glass | 345c974 | 2023-07-15 21:38:53 -0600 | [diff] [blame] | 172 | bdinfo_print_num_l("malloc base", gd_malloc_start()); |
Simon Glass | 5087c77 | 2023-07-15 21:38:46 -0600 | [diff] [blame] | 173 | } |
| 174 | |
Simon Glass | a83ab16 | 2020-05-10 14:16:56 -0600 | [diff] [blame] | 175 | arch_print_bdinfo(); |
Simon Glass | 6faf66b | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 176 | |
Chris Zankel | 41e3737 | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 177 | return 0; |
| 178 | } |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 179 | |
Marek Vasut | e44df15 | 2023-10-07 23:40:58 +0200 | [diff] [blame] | 180 | int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
| 181 | { |
| 182 | struct bd_info *bd = gd->bd; |
| 183 | struct getopt_state gs; |
| 184 | int opt; |
| 185 | |
| 186 | if (!CONFIG_IS_ENABLED(GETOPT) || argc == 1) |
| 187 | return bdinfo_print_all(bd); |
| 188 | |
| 189 | getopt_init_state(&gs); |
Marek Vasut | f5c2f7c | 2023-10-07 23:41:00 +0200 | [diff] [blame] | 190 | while ((opt = getopt(&gs, argc, argv, "aem")) > 0) { |
Marek Vasut | e44df15 | 2023-10-07 23:40:58 +0200 | [diff] [blame] | 191 | switch (opt) { |
| 192 | case 'a': |
| 193 | return bdinfo_print_all(bd); |
Marek Vasut | f5c2f7c | 2023-10-07 23:41:00 +0200 | [diff] [blame] | 194 | case 'e': |
Jerome Forissier | c4d17bd | 2024-10-16 12:04:10 +0200 | [diff] [blame] | 195 | if (!IS_ENABLED(CONFIG_CMD_NET) && |
| 196 | !IS_ENABLED(CONFIG_CMD_NET_LWIP)) |
Marek Vasut | f5c2f7c | 2023-10-07 23:41:00 +0200 | [diff] [blame] | 197 | return CMD_RET_USAGE; |
| 198 | print_eth(); |
| 199 | return CMD_RET_SUCCESS; |
Marek Vasut | dc57e93 | 2023-10-07 23:40:59 +0200 | [diff] [blame] | 200 | case 'm': |
| 201 | print_bi_dram(bd); |
| 202 | return CMD_RET_SUCCESS; |
Marek Vasut | e44df15 | 2023-10-07 23:40:58 +0200 | [diff] [blame] | 203 | default: |
| 204 | return CMD_RET_USAGE; |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | return CMD_RET_USAGE; |
| 209 | } |
| 210 | |
wdenk | f287a24 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 211 | U_BOOT_CMD( |
Marek Vasut | e44df15 | 2023-10-07 23:40:58 +0200 | [diff] [blame] | 212 | bdinfo, 2, 1, do_bdinfo, |
Peter Tyser | dfb72b8 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 213 | "print Board Info structure", |
Wolfgang Denk | c54781c | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 214 | "" |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 215 | ); |