blob: 8d8daa6336afebc080cbb7ddf4854ee3337d1197 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk8bde7f72003-06-27 21:31:46 +00002/*
Simon Glassbda89092020-05-10 14:17:00 -06003 * Implements the 'bd' command to show board information
4 *
wdenk8bde7f72003-06-27 21:31:46 +00005 * (C) Copyright 2003
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk8bde7f72003-06-27 21:31:46 +00007 */
8
wdenk8bde7f72003-06-27 21:31:46 +00009#include <common.h>
10#include <command.h>
Simon Glass308b1a92020-09-22 21:16:40 -060011#include <dm.h>
Simon Glass7b51b572019-08-01 09:46:52 -060012#include <env.h>
Tero Kristo9996cea2020-07-20 11:10:45 +030013#include <lmb.h>
Simon Glass90526e92020-05-10 11:39:56 -060014#include <net.h>
Simon Glass308b1a92020-09-22 21:16:40 -060015#include <video.h>
Simon Glass2189d5f2019-11-14 12:57:20 -070016#include <vsprintf.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <asm/cache.h>
wdenk8bde7f72003-06-27 21:31:46 +000018
Wolfgang Denkd87080b2006-03-31 18:32:53 +020019DECLARE_GLOBAL_DATA_PTR;
wdenk8bde7f72003-06-27 21:31:46 +000020
Simon Glass655f17f2020-05-10 14:16:55 -060021void bdinfo_print_num(const char *name, ulong value)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000022{
Heinrich Schuchardt95187bb2018-10-11 13:15:01 +020023 printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
Mike Frysingerd88af4d2011-12-04 17:45:22 +000024}
wdenk8bde7f72003-06-27 21:31:46 +000025
Mike Frysingerd88af4d2011-12-04 17:45:22 +000026static void print_eth(int idx)
27{
28 char name[10], *val;
29 if (idx)
30 sprintf(name, "eth%iaddr", idx);
31 else
32 strcpy(name, "ethaddr");
Simon Glass00caae62017-08-03 12:22:12 -060033 val = env_get(name);
Mike Frysingerd88af4d2011-12-04 17:45:22 +000034 if (!val)
35 val = "(not set)";
36 printf("%-12s= %s\n", name, val);
37}
Mike Frysingerde2dff62009-02-11 18:50:10 -050038
Simon Glass308b1a92020-09-22 21:16:40 -060039static void print_phys_addr(const char *name, phys_addr_t value)
40{
41 printf("%-12s= 0x%.*llx\n", name, 2 * (int)sizeof(ulong),
42 (unsigned long long)value);
43}
44
Simon Glass655f17f2020-05-10 14:16:55 -060045void bdinfo_print_mhz(const char *name, unsigned long hz)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000046{
47 char buf[32];
48
49 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
50}
wdenk8bde7f72003-06-27 21:31:46 +000051
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090052static void print_bi_dram(const struct bd_info *bd)
Max Filippovfd60e992016-07-28 03:57:20 +030053{
Max Filippovfd60e992016-07-28 03:57:20 +030054 int i;
55
56 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
Simon Glassddd917b2016-08-05 21:57:27 -060057 if (bd->bi_dram[i].size) {
Simon Glass655f17f2020-05-10 14:16:55 -060058 bdinfo_print_num("DRAM bank", i);
59 bdinfo_print_num("-> start", bd->bi_dram[i].start);
60 bdinfo_print_num("-> size", bd->bi_dram[i].size);
Simon Glassddd917b2016-08-05 21:57:27 -060061 }
Max Filippovfd60e992016-07-28 03:57:20 +030062 }
Max Filippovfd60e992016-07-28 03:57:20 +030063}
64
Simon Glass59b0d7d2020-05-10 14:16:56 -060065__weak void arch_print_bdinfo(void)
66{
67}
68
Simon Glass308b1a92020-09-22 21:16:40 -060069static void show_video_info(void)
70{
71 const struct udevice *dev;
72 struct uclass *uc;
73
74 uclass_id_foreach_dev(UCLASS_VIDEO, dev, uc) {
75 printf("%-12s= %s %sactive\n", "Video", dev->name,
76 device_active(dev) ? "" : "in");
77 if (device_active(dev)) {
78 struct video_priv *upriv = dev_get_uclass_priv(dev);
79
80 print_phys_addr("FB base", (ulong)upriv->fb);
81 if (upriv->copy_fb)
82 print_phys_addr("FB copy", (ulong)upriv->copy_fb);
83 printf("%-12s= %dx%dx%d\n", "FB size", upriv->xsize,
84 upriv->ysize, 1 << upriv->bpix);
85 }
86 }
87}
88
Simon Glass1af97562020-05-10 14:16:28 -060089int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
90{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090091 struct bd_info *bd = gd->bd;
Simon Glass2e0fa212020-05-10 14:16:37 -060092
93#ifdef DEBUG
Simon Glass655f17f2020-05-10 14:16:55 -060094 bdinfo_print_num("bd address", (ulong)bd);
Simon Glass2e0fa212020-05-10 14:16:37 -060095#endif
Simon Glass655f17f2020-05-10 14:16:55 -060096 bdinfo_print_num("boot_params", (ulong)bd->bi_boot_params);
Simon Glass2e0fa212020-05-10 14:16:37 -060097 print_bi_dram(bd);
Ovidiu Panait6ecefcf2020-07-24 14:12:13 +030098 if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) {
99 bdinfo_print_num("sramstart", (ulong)bd->bi_sramstart);
100 bdinfo_print_num("sramsize", (ulong)bd->bi_sramsize);
101 }
Simon Glass655f17f2020-05-10 14:16:55 -0600102 bdinfo_print_num("flashstart", (ulong)bd->bi_flashstart);
103 bdinfo_print_num("flashsize", (ulong)bd->bi_flashsize);
104 bdinfo_print_num("flashoffset", (ulong)bd->bi_flashoffset);
Simon Glass3e1cca22020-05-10 14:16:46 -0600105 printf("baudrate = %u bps\n", gd->baudrate);
Simon Glass655f17f2020-05-10 14:16:55 -0600106 bdinfo_print_num("relocaddr", gd->relocaddr);
107 bdinfo_print_num("reloc off", gd->reloc_off);
Simon Glassdb76c9b2020-05-10 14:16:50 -0600108 printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8);
Simon Glass8a2ba582020-05-10 14:16:54 -0600109 if (IS_ENABLED(CONFIG_CMD_NET)) {
Simon Glass441539f2020-05-10 14:16:53 -0600110 printf("current eth = %s\n", eth_get_name());
Simon Glass8a2ba582020-05-10 14:16:54 -0600111 print_eth(0);
112 printf("IP addr = %s\n", env_get("ipaddr"));
113 }
Simon Glass655f17f2020-05-10 14:16:55 -0600114 bdinfo_print_num("fdt_blob", (ulong)gd->fdt_blob);
115 bdinfo_print_num("new_fdt", (ulong)gd->new_fdt);
116 bdinfo_print_num("fdt_size", (ulong)gd->fdt_size);
Simon Glass308b1a92020-09-22 21:16:40 -0600117 if (IS_ENABLED(CONFIG_DM_VIDEO))
118 show_video_info();
119#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
Simon Glass655f17f2020-05-10 14:16:55 -0600120 bdinfo_print_num("FB base ", gd->fb_base);
Simon Glass1aeeaeb2020-05-10 14:16:39 -0600121#endif
Simon Glass1aeeaeb2020-05-10 14:16:39 -0600122#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
Simon Glass655f17f2020-05-10 14:16:55 -0600123 bdinfo_print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
Simon Glass1aeeaeb2020-05-10 14:16:39 -0600124#endif
Tero Kristo9996cea2020-07-20 11:10:45 +0300125 if (gd->fdt_blob) {
126 struct lmb lmb;
127
128 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
129 lmb_dump_all_force(&lmb);
130 }
Simon Glass59b0d7d2020-05-10 14:16:56 -0600131
132 arch_print_bdinfo();
Simon Glass1af97562020-05-10 14:16:28 -0600133
134 return 0;
135}
Simon Glass1af97562020-05-10 14:16:28 -0600136
wdenk0d498392003-07-01 21:06:45 +0000137U_BOOT_CMD(
138 bdinfo, 1, 1, do_bdinfo,
Peter Tyser2fb26042009-01-27 18:03:12 -0600139 "print Board Info structure",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200140 ""
wdenk8bde7f72003-06-27 21:31:46 +0000141);