blob: a7bbd073c5a80efb74f8f3f790edde9b6b271be2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk8bde7f72003-06-27 21:31:46 +00002/*
3 * (C) Copyright 2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk8bde7f72003-06-27 21:31:46 +00005 */
6
7/*
8 * Boot support
9 */
10#include <common.h>
11#include <command.h>
Simon Glass7b51b572019-08-01 09:46:52 -060012#include <env.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>
Mike Frysingerd88af4d2011-12-04 17:45:22 +000016#include <linux/compiler.h>
wdenk8bde7f72003-06-27 21:31:46 +000017
Wolfgang Denkd87080b2006-03-31 18:32:53 +020018DECLARE_GLOBAL_DATA_PTR;
wdenk8bde7f72003-06-27 21:31:46 +000019
Mike Frysingerd88af4d2011-12-04 17:45:22 +000020static void print_num(const char *name, ulong value)
21{
Heinrich Schuchardt95187bb2018-10-11 13:15:01 +020022 printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
Mike Frysingerd88af4d2011-12-04 17:45:22 +000023}
wdenk8bde7f72003-06-27 21:31:46 +000024
Simon Glass5f3dfad2011-12-06 13:37:17 +000025__maybe_unused
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
Joe Hershberger05c3e682015-03-22 17:09:10 -050039#ifndef CONFIG_DM_ETH
Mike Frysingerd88af4d2011-12-04 17:45:22 +000040__maybe_unused
Michal Simek9fc6a062013-01-23 12:21:18 +010041static void print_eths(void)
42{
43 struct eth_device *dev;
44 int i = 0;
45
46 do {
47 dev = eth_get_dev_by_index(i);
48 if (dev) {
49 printf("eth%dname = %s\n", i, dev->name);
50 print_eth(i);
51 i++;
52 }
53 } while (dev);
54
55 printf("current eth = %s\n", eth_get_name());
Simon Glass00caae62017-08-03 12:22:12 -060056 printf("ip_addr = %s\n", env_get("ipaddr"));
Michal Simek9fc6a062013-01-23 12:21:18 +010057}
Joe Hershberger05c3e682015-03-22 17:09:10 -050058#endif
Michal Simek9fc6a062013-01-23 12:21:18 +010059
Daniel Schwierzeck47708452012-10-03 08:36:11 +000060static void print_lnum(const char *name, unsigned long long value)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000061{
62 printf("%-12s= 0x%.8llX\n", name, value);
63}
64
Mike Frysingerd88af4d2011-12-04 17:45:22 +000065static void print_mhz(const char *name, unsigned long hz)
66{
67 char buf[32];
68
69 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
70}
wdenk8bde7f72003-06-27 21:31:46 +000071
Simon Glassd67de002020-05-10 14:16:44 -060072static void print_bi_dram(const bd_t *bd)
Max Filippovfd60e992016-07-28 03:57:20 +030073{
74#ifdef CONFIG_NR_DRAM_BANKS
75 int i;
76
77 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
Simon Glassddd917b2016-08-05 21:57:27 -060078 if (bd->bi_dram[i].size) {
79 print_num("DRAM bank", i);
80 print_num("-> start", bd->bi_dram[i].start);
81 print_num("-> size", bd->bi_dram[i].size);
82 }
Max Filippovfd60e992016-07-28 03:57:20 +030083 }
84#endif
85}
86
Simon Glassd67de002020-05-10 14:16:44 -060087static void print_eth_ip_addr(void)
Max Filippov8752e262016-07-28 03:57:22 +030088{
89#if defined(CONFIG_CMD_NET)
90 print_eth(0);
91#if defined(CONFIG_HAS_ETH1)
92 print_eth(1);
93#endif
94#if defined(CONFIG_HAS_ETH2)
95 print_eth(2);
96#endif
97#if defined(CONFIG_HAS_ETH3)
98 print_eth(3);
99#endif
100#if defined(CONFIG_HAS_ETH4)
101 print_eth(4);
102#endif
103#if defined(CONFIG_HAS_ETH5)
104 print_eth(5);
105#endif
Simon Glass00caae62017-08-03 12:22:12 -0600106 printf("IP addr = %s\n", env_get("ipaddr"));
Max Filippov8752e262016-07-28 03:57:22 +0300107#endif
108}
109
Simon Glass2e0fa212020-05-10 14:16:37 -0600110void __weak board_detail(void)
111{
112 /* Please define board_detail() for your PPC platform */
113}
114
Simon Glass1af97562020-05-10 14:16:28 -0600115int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
116{
Simon Glass2e0fa212020-05-10 14:16:37 -0600117 bd_t *bd = gd->bd;
118
119#ifdef DEBUG
120 print_num("bd address", (ulong)bd);
121#endif
Simon Glass1aeeaeb2020-05-10 14:16:39 -0600122 if (IS_ENABLED(CONFIG_ARM))
123 print_num("arch_number", bd->bi_arch_number);
Simon Glass3cfbe222020-05-10 14:16:48 -0600124 print_num("boot_params", (ulong)bd->bi_boot_params);
Simon Glass2e0fa212020-05-10 14:16:37 -0600125 print_bi_dram(bd);
Simon Glass537cb0d2020-05-10 14:16:47 -0600126 print_num("memstart", (ulong)bd->bi_memstart);
127 print_lnum("memsize", (u64)bd->bi_memsize);
Simon Glassaa8b7582020-05-10 14:16:49 -0600128 print_num("flashstart", (ulong)bd->bi_flashstart);
129 print_num("flashsize", (ulong)bd->bi_flashsize);
130 print_num("flashoffset", (ulong)bd->bi_flashoffset);
Simon Glass9e24e102020-05-10 14:16:45 -0600131 print_eth_ip_addr();
Simon Glass3e1cca22020-05-10 14:16:46 -0600132 printf("baudrate = %u bps\n", gd->baudrate);
Simon Glassdf529b52020-05-10 14:16:29 -0600133 print_num("relocaddr", gd->relocaddr);
134 print_num("reloc off", gd->reloc_off);
Simon Glassdb76c9b2020-05-10 14:16:50 -0600135 printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8);
Simon Glass271db502020-05-10 14:16:31 -0600136#if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
137 print_eths();
138#endif
139 print_num("fdt_blob", (ulong)gd->fdt_blob);
140 print_num("new_fdt", (ulong)gd->new_fdt);
141 print_num("fdt_size", (ulong)gd->fdt_size);
Simon Glass1aeeaeb2020-05-10 14:16:39 -0600142#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO)
143 print_num("FB base ", gd->fb_base);
144#endif
145
146 /* This section is used only by ARM */
147#ifdef CONFIG_ARM
148#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
149 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) {
150 print_num("Secure ram",
151 gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
152 }
153#endif
154#ifdef CONFIG_RESV_RAM
155 if (gd->arch.resv_ram)
156 print_num("Reserved ram", gd->arch.resv_ram);
157#endif
158#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
159 print_num("TLB addr", gd->arch.tlb_addr);
160#endif
161 print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
162 print_num("sp start ", gd->start_addr_sp);
163 /*
164 * TODO: Currently only support for davinci SOC's is added.
165 * Remove this check once all the board implement this.
166 */
167#ifdef CONFIG_CLOCKS
168 printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
169 printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
170 printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
171#endif
172#ifdef CONFIG_BOARD_TYPES
173 printf("Board Type = %ld\n", gd->board_type);
174#endif
175#if CONFIG_VAL(SYS_MALLOC_F_LEN)
176 printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
177 CONFIG_VAL(SYS_MALLOC_F_LEN));
178#endif
179#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
180 print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
181#endif
182#endif /* CONFIG_ARM */
Simon Glass1af97562020-05-10 14:16:28 -0600183
Simon Glass2e0fa212020-05-10 14:16:37 -0600184 /* This section is used only by ppc */
185#if defined(CONFIG_MPC8xx) || defined(CONFIG_E500)
186 print_num("immr_base", bd->bi_immr_base);
187#endif
188 if (IS_ENABLED(CONFIG_PPC)) {
189 print_num("bootflags", bd->bi_bootflags);
190 print_mhz("intfreq", bd->bi_intfreq);
191#ifdef CONFIG_ENABLE_36BIT_PHYS
192 if (IS_ENABLED(CONFIG_PHYS_64BIT))
193 puts("addressing = 36-bit\n");
194 else
195 puts("addressing = 32-bit\n");
196#endif
Simon Glass2e0fa212020-05-10 14:16:37 -0600197 board_detail();
198 }
199#if defined(CONFIG_CPM2)
200 print_mhz("cpmfreq", bd->bi_cpmfreq);
201 print_mhz("vco", bd->bi_vco);
202 print_mhz("sccfreq", bd->bi_sccfreq);
203 print_mhz("brgfreq", bd->bi_brgfreq);
204#endif
205
Simon Glass67145d12020-05-10 14:16:38 -0600206 /* This is used by m68k and ppc */
Simon Glass2e0fa212020-05-10 14:16:37 -0600207#if defined(CONFIG_SYS_INIT_RAM_ADDR)
208 print_num("sramstart", (ulong)bd->bi_sramstart);
209 print_num("sramsize", (ulong)bd->bi_sramsize);
210#endif
Simon Glass67145d12020-05-10 14:16:38 -0600211 if (IS_ENABLED(CONFIG_PPC) || IS_ENABLED(CONFIG_M68K))
212 print_mhz("busfreq", bd->bi_busfreq);
213
214 /* The rest are used only by m68k */
215#ifdef CONFIG_M68K
216#if defined(CONFIG_SYS_MBAR)
217 print_num("mbar", bd->bi_mbar_base);
218#endif
219 print_mhz("cpufreq", bd->bi_intfreq);
220 if (IS_ENABLED(CONFIG_PCI))
221 print_mhz("pcifreq", bd->bi_pcifreq);
222#ifdef CONFIG_EXTRA_CLOCK
223 print_mhz("flbfreq", bd->bi_flbfreq);
224 print_mhz("inpfreq", bd->bi_inpfreq);
225 print_mhz("vcofreq", bd->bi_vcofreq);
226#endif
227#endif
Simon Glass2e0fa212020-05-10 14:16:37 -0600228
Simon Glass1af97562020-05-10 14:16:28 -0600229 return 0;
230}
Simon Glass1af97562020-05-10 14:16:28 -0600231
wdenk8bde7f72003-06-27 21:31:46 +0000232/* -------------------------------------------------------------------- */
233
wdenk0d498392003-07-01 21:06:45 +0000234U_BOOT_CMD(
235 bdinfo, 1, 1, do_bdinfo,
Peter Tyser2fb26042009-01-27 18:03:12 -0600236 "print Board Info structure",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200237 ""
wdenk8bde7f72003-06-27 21:31:46 +0000238);