blob: 2a6dd6c67a5000ac900f41694853178cc7436b20 [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 Glass7b51b572019-08-01 09:46:52 -060011#include <env.h>
Tero Kristo9996cea2020-07-20 11:10:45 +030012#include <lmb.h>
Simon Glass90526e92020-05-10 11:39:56 -060013#include <net.h>
Simon Glass2189d5f2019-11-14 12:57:20 -070014#include <vsprintf.h>
Simon Glass90526e92020-05-10 11:39:56 -060015#include <asm/cache.h>
wdenk8bde7f72003-06-27 21:31:46 +000016
Wolfgang Denkd87080b2006-03-31 18:32:53 +020017DECLARE_GLOBAL_DATA_PTR;
wdenk8bde7f72003-06-27 21:31:46 +000018
Simon Glass655f17f2020-05-10 14:16:55 -060019void bdinfo_print_num(const char *name, ulong value)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000020{
Heinrich Schuchardt95187bb2018-10-11 13:15:01 +020021 printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
Mike Frysingerd88af4d2011-12-04 17:45:22 +000022}
wdenk8bde7f72003-06-27 21:31:46 +000023
Mike Frysingerd88af4d2011-12-04 17:45:22 +000024static 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 Glass00caae62017-08-03 12:22:12 -060031 val = env_get(name);
Mike Frysingerd88af4d2011-12-04 17:45:22 +000032 if (!val)
33 val = "(not set)";
34 printf("%-12s= %s\n", name, val);
35}
Mike Frysingerde2dff62009-02-11 18:50:10 -050036
Daniel Schwierzeck47708452012-10-03 08:36:11 +000037static void print_lnum(const char *name, unsigned long long value)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000038{
39 printf("%-12s= 0x%.8llX\n", name, value);
40}
41
Simon Glass655f17f2020-05-10 14:16:55 -060042void bdinfo_print_mhz(const char *name, unsigned long hz)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000043{
44 char buf[32];
45
46 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
47}
wdenk8bde7f72003-06-27 21:31:46 +000048
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090049static void print_bi_dram(const struct bd_info *bd)
Max Filippovfd60e992016-07-28 03:57:20 +030050{
51#ifdef CONFIG_NR_DRAM_BANKS
52 int i;
53
54 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
Simon Glassddd917b2016-08-05 21:57:27 -060055 if (bd->bi_dram[i].size) {
Simon Glass655f17f2020-05-10 14:16:55 -060056 bdinfo_print_num("DRAM bank", i);
57 bdinfo_print_num("-> start", bd->bi_dram[i].start);
58 bdinfo_print_num("-> size", bd->bi_dram[i].size);
Simon Glassddd917b2016-08-05 21:57:27 -060059 }
Max Filippovfd60e992016-07-28 03:57:20 +030060 }
61#endif
62}
63
Simon Glass59b0d7d2020-05-10 14:16:56 -060064__weak void arch_print_bdinfo(void)
65{
66}
67
Simon Glass1af97562020-05-10 14:16:28 -060068int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
69{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090070 struct bd_info *bd = gd->bd;
Simon Glass2e0fa212020-05-10 14:16:37 -060071
72#ifdef DEBUG
Simon Glass655f17f2020-05-10 14:16:55 -060073 bdinfo_print_num("bd address", (ulong)bd);
Simon Glass2e0fa212020-05-10 14:16:37 -060074#endif
Simon Glass655f17f2020-05-10 14:16:55 -060075 bdinfo_print_num("boot_params", (ulong)bd->bi_boot_params);
Simon Glass2e0fa212020-05-10 14:16:37 -060076 print_bi_dram(bd);
Simon Glass655f17f2020-05-10 14:16:55 -060077 bdinfo_print_num("memstart", (ulong)bd->bi_memstart);
Simon Glass537cb0d2020-05-10 14:16:47 -060078 print_lnum("memsize", (u64)bd->bi_memsize);
Simon Glass655f17f2020-05-10 14:16:55 -060079 bdinfo_print_num("flashstart", (ulong)bd->bi_flashstart);
80 bdinfo_print_num("flashsize", (ulong)bd->bi_flashsize);
81 bdinfo_print_num("flashoffset", (ulong)bd->bi_flashoffset);
Simon Glass3e1cca22020-05-10 14:16:46 -060082 printf("baudrate = %u bps\n", gd->baudrate);
Simon Glass655f17f2020-05-10 14:16:55 -060083 bdinfo_print_num("relocaddr", gd->relocaddr);
84 bdinfo_print_num("reloc off", gd->reloc_off);
Simon Glassdb76c9b2020-05-10 14:16:50 -060085 printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8);
Simon Glass8a2ba582020-05-10 14:16:54 -060086 if (IS_ENABLED(CONFIG_CMD_NET)) {
Simon Glass441539f2020-05-10 14:16:53 -060087 printf("current eth = %s\n", eth_get_name());
Simon Glass8a2ba582020-05-10 14:16:54 -060088 print_eth(0);
89 printf("IP addr = %s\n", env_get("ipaddr"));
90 }
Simon Glass655f17f2020-05-10 14:16:55 -060091 bdinfo_print_num("fdt_blob", (ulong)gd->fdt_blob);
92 bdinfo_print_num("new_fdt", (ulong)gd->new_fdt);
93 bdinfo_print_num("fdt_size", (ulong)gd->fdt_size);
Simon Glass1aeeaeb2020-05-10 14:16:39 -060094#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO)
Simon Glass655f17f2020-05-10 14:16:55 -060095 bdinfo_print_num("FB base ", gd->fb_base);
Simon Glass1aeeaeb2020-05-10 14:16:39 -060096#endif
Simon Glass1aeeaeb2020-05-10 14:16:39 -060097#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
Simon Glass655f17f2020-05-10 14:16:55 -060098 bdinfo_print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
Simon Glass1aeeaeb2020-05-10 14:16:39 -060099#endif
Tero Kristo9996cea2020-07-20 11:10:45 +0300100 if (gd->fdt_blob) {
101 struct lmb lmb;
102
103 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
104 lmb_dump_all_force(&lmb);
105 }
Simon Glass59b0d7d2020-05-10 14:16:56 -0600106
107 arch_print_bdinfo();
Simon Glass1af97562020-05-10 14:16:28 -0600108
109 return 0;
110}
Simon Glass1af97562020-05-10 14:16:28 -0600111
wdenk0d498392003-07-01 21:06:45 +0000112U_BOOT_CMD(
113 bdinfo, 1, 1, do_bdinfo,
Peter Tyser2fb26042009-01-27 18:03:12 -0600114 "print Board Info structure",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200115 ""
wdenk8bde7f72003-06-27 21:31:46 +0000116);