blob: f4f1ba711ea5910f2ee65c1cb586baedf8947cda [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
Simon Glass7d816412020-05-10 14:16:42 -060020void print_cpu_word_size(void)
Simon Glass8d99d542020-04-30 22:02:13 -060021{
22 printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8);
23}
24
Mike Frysingerd88af4d2011-12-04 17:45:22 +000025static void print_num(const char *name, ulong value)
26{
Heinrich Schuchardt95187bb2018-10-11 13:15:01 +020027 printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value);
Mike Frysingerd88af4d2011-12-04 17:45:22 +000028}
wdenk8bde7f72003-06-27 21:31:46 +000029
Simon Glass5f3dfad2011-12-06 13:37:17 +000030__maybe_unused
Mike Frysingerd88af4d2011-12-04 17:45:22 +000031static void print_eth(int idx)
32{
33 char name[10], *val;
34 if (idx)
35 sprintf(name, "eth%iaddr", idx);
36 else
37 strcpy(name, "ethaddr");
Simon Glass00caae62017-08-03 12:22:12 -060038 val = env_get(name);
Mike Frysingerd88af4d2011-12-04 17:45:22 +000039 if (!val)
40 val = "(not set)";
41 printf("%-12s= %s\n", name, val);
42}
Mike Frysingerde2dff62009-02-11 18:50:10 -050043
Joe Hershberger05c3e682015-03-22 17:09:10 -050044#ifndef CONFIG_DM_ETH
Mike Frysingerd88af4d2011-12-04 17:45:22 +000045__maybe_unused
Michal Simek9fc6a062013-01-23 12:21:18 +010046static void print_eths(void)
47{
48 struct eth_device *dev;
49 int i = 0;
50
51 do {
52 dev = eth_get_dev_by_index(i);
53 if (dev) {
54 printf("eth%dname = %s\n", i, dev->name);
55 print_eth(i);
56 i++;
57 }
58 } while (dev);
59
60 printf("current eth = %s\n", eth_get_name());
Simon Glass00caae62017-08-03 12:22:12 -060061 printf("ip_addr = %s\n", env_get("ipaddr"));
Michal Simek9fc6a062013-01-23 12:21:18 +010062}
Joe Hershberger05c3e682015-03-22 17:09:10 -050063#endif
Michal Simek9fc6a062013-01-23 12:21:18 +010064
Daniel Schwierzeck47708452012-10-03 08:36:11 +000065static void print_lnum(const char *name, unsigned long long value)
Mike Frysingerd88af4d2011-12-04 17:45:22 +000066{
67 printf("%-12s= 0x%.8llX\n", name, value);
68}
69
Mike Frysingerd88af4d2011-12-04 17:45:22 +000070static void print_mhz(const char *name, unsigned long hz)
71{
72 char buf[32];
73
74 printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
75}
wdenk8bde7f72003-06-27 21:31:46 +000076
Max Filippov171e5392016-07-28 03:57:18 +030077
Simon Glassd67de002020-05-10 14:16:44 -060078static void print_bi_boot_params(const bd_t *bd)
Max Filippov171e5392016-07-28 03:57:18 +030079{
80 print_num("boot_params", (ulong)bd->bi_boot_params);
81}
82
Simon Glassd67de002020-05-10 14:16:44 -060083static void print_bi_mem(const bd_t *bd)
Max Filippov12feb362016-07-28 03:57:19 +030084{
85#if defined(CONFIG_SH)
86 print_num("mem start ", (ulong)bd->bi_memstart);
87 print_lnum("mem size ", (u64)bd->bi_memsize);
88#elif defined(CONFIG_ARC)
89 print_num("mem start", (ulong)bd->bi_memstart);
90 print_lnum("mem size", (u64)bd->bi_memsize);
Max Filippov12feb362016-07-28 03:57:19 +030091#else
92 print_num("memstart", (ulong)bd->bi_memstart);
93 print_lnum("memsize", (u64)bd->bi_memsize);
94#endif
95}
96
Simon Glassd67de002020-05-10 14:16:44 -060097static void print_bi_dram(const bd_t *bd)
Max Filippovfd60e992016-07-28 03:57:20 +030098{
99#ifdef CONFIG_NR_DRAM_BANKS
100 int i;
101
102 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
Simon Glassddd917b2016-08-05 21:57:27 -0600103 if (bd->bi_dram[i].size) {
104 print_num("DRAM bank", i);
105 print_num("-> start", bd->bi_dram[i].start);
106 print_num("-> size", bd->bi_dram[i].size);
107 }
Max Filippovfd60e992016-07-28 03:57:20 +0300108 }
109#endif
110}
111
Simon Glassd67de002020-05-10 14:16:44 -0600112static void print_bi_flash(const bd_t *bd)
Max Filippovf80e5352016-07-28 03:57:21 +0300113{
Simon Glass566ffde2020-05-10 14:16:43 -0600114 print_num("flashstart", (ulong)bd->bi_flashstart);
115 print_num("flashsize", (ulong)bd->bi_flashsize);
116 print_num("flashoffset", (ulong)bd->bi_flashoffset);
Max Filippovf80e5352016-07-28 03:57:21 +0300117}
118
Simon Glassd67de002020-05-10 14:16:44 -0600119static void print_eth_ip_addr(void)
Max Filippov8752e262016-07-28 03:57:22 +0300120{
121#if defined(CONFIG_CMD_NET)
122 print_eth(0);
123#if defined(CONFIG_HAS_ETH1)
124 print_eth(1);
125#endif
126#if defined(CONFIG_HAS_ETH2)
127 print_eth(2);
128#endif
129#if defined(CONFIG_HAS_ETH3)
130 print_eth(3);
131#endif
132#if defined(CONFIG_HAS_ETH4)
133 print_eth(4);
134#endif
135#if defined(CONFIG_HAS_ETH5)
136 print_eth(5);
137#endif
Simon Glass00caae62017-08-03 12:22:12 -0600138 printf("IP addr = %s\n", env_get("ipaddr"));
Max Filippov8752e262016-07-28 03:57:22 +0300139#endif
140}
141
Simon Glassd67de002020-05-10 14:16:44 -0600142static void print_baudrate(void)
Max Filippov4e3fa7d2016-07-28 03:57:23 +0300143{
144#if defined(CONFIG_PPC)
145 printf("baudrate = %6u bps\n", gd->baudrate);
Max Filippov4e3fa7d2016-07-28 03:57:23 +0300146#else
147 printf("baudrate = %u bps\n", gd->baudrate);
148#endif
149}
150
Simon Glassd67de002020-05-10 14:16:44 -0600151static void print_std_bdinfo(const bd_t *bd)
Max Filippove3795082016-07-28 03:57:24 +0300152{
153 print_bi_boot_params(bd);
154 print_bi_mem(bd);
155 print_bi_flash(bd);
156 print_eth_ip_addr();
157 print_baudrate();
158}
159
Simon Glass2e0fa212020-05-10 14:16:37 -0600160void __weak board_detail(void)
161{
162 /* Please define board_detail() for your PPC platform */
163}
164
Simon Glass1af97562020-05-10 14:16:28 -0600165int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
166{
Simon Glass2e0fa212020-05-10 14:16:37 -0600167 bd_t *bd = gd->bd;
168
169#ifdef DEBUG
170 print_num("bd address", (ulong)bd);
171#endif
Simon Glass1aeeaeb2020-05-10 14:16:39 -0600172 if (IS_ENABLED(CONFIG_ARM))
173 print_num("arch_number", bd->bi_arch_number);
Simon Glass2e0fa212020-05-10 14:16:37 -0600174 print_bi_dram(bd);
175 print_std_bdinfo(bd);
Simon Glassdf529b52020-05-10 14:16:29 -0600176 print_num("relocaddr", gd->relocaddr);
177 print_num("reloc off", gd->reloc_off);
178 print_cpu_word_size();
Simon Glass271db502020-05-10 14:16:31 -0600179#if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
180 print_eths();
181#endif
182 print_num("fdt_blob", (ulong)gd->fdt_blob);
183 print_num("new_fdt", (ulong)gd->new_fdt);
184 print_num("fdt_size", (ulong)gd->fdt_size);
Simon Glass1aeeaeb2020-05-10 14:16:39 -0600185#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO)
186 print_num("FB base ", gd->fb_base);
187#endif
188
189 /* This section is used only by ARM */
190#ifdef CONFIG_ARM
191#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
192 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) {
193 print_num("Secure ram",
194 gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
195 }
196#endif
197#ifdef CONFIG_RESV_RAM
198 if (gd->arch.resv_ram)
199 print_num("Reserved ram", gd->arch.resv_ram);
200#endif
201#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
202 print_num("TLB addr", gd->arch.tlb_addr);
203#endif
204 print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
205 print_num("sp start ", gd->start_addr_sp);
206 /*
207 * TODO: Currently only support for davinci SOC's is added.
208 * Remove this check once all the board implement this.
209 */
210#ifdef CONFIG_CLOCKS
211 printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
212 printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
213 printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
214#endif
215#ifdef CONFIG_BOARD_TYPES
216 printf("Board Type = %ld\n", gd->board_type);
217#endif
218#if CONFIG_VAL(SYS_MALLOC_F_LEN)
219 printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
220 CONFIG_VAL(SYS_MALLOC_F_LEN));
221#endif
222#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
223 print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
224#endif
225#endif /* CONFIG_ARM */
Simon Glass1af97562020-05-10 14:16:28 -0600226
Simon Glass2e0fa212020-05-10 14:16:37 -0600227 /* This section is used only by ppc */
228#if defined(CONFIG_MPC8xx) || defined(CONFIG_E500)
229 print_num("immr_base", bd->bi_immr_base);
230#endif
231 if (IS_ENABLED(CONFIG_PPC)) {
232 print_num("bootflags", bd->bi_bootflags);
233 print_mhz("intfreq", bd->bi_intfreq);
234#ifdef CONFIG_ENABLE_36BIT_PHYS
235 if (IS_ENABLED(CONFIG_PHYS_64BIT))
236 puts("addressing = 36-bit\n");
237 else
238 puts("addressing = 32-bit\n");
239#endif
Simon Glass2e0fa212020-05-10 14:16:37 -0600240 board_detail();
241 }
242#if defined(CONFIG_CPM2)
243 print_mhz("cpmfreq", bd->bi_cpmfreq);
244 print_mhz("vco", bd->bi_vco);
245 print_mhz("sccfreq", bd->bi_sccfreq);
246 print_mhz("brgfreq", bd->bi_brgfreq);
247#endif
248
Simon Glass67145d12020-05-10 14:16:38 -0600249 /* This is used by m68k and ppc */
Simon Glass2e0fa212020-05-10 14:16:37 -0600250#if defined(CONFIG_SYS_INIT_RAM_ADDR)
251 print_num("sramstart", (ulong)bd->bi_sramstart);
252 print_num("sramsize", (ulong)bd->bi_sramsize);
253#endif
Simon Glass67145d12020-05-10 14:16:38 -0600254 if (IS_ENABLED(CONFIG_PPC) || IS_ENABLED(CONFIG_M68K))
255 print_mhz("busfreq", bd->bi_busfreq);
256
257 /* The rest are used only by m68k */
258#ifdef CONFIG_M68K
259#if defined(CONFIG_SYS_MBAR)
260 print_num("mbar", bd->bi_mbar_base);
261#endif
262 print_mhz("cpufreq", bd->bi_intfreq);
263 if (IS_ENABLED(CONFIG_PCI))
264 print_mhz("pcifreq", bd->bi_pcifreq);
265#ifdef CONFIG_EXTRA_CLOCK
266 print_mhz("flbfreq", bd->bi_flbfreq);
267 print_mhz("inpfreq", bd->bi_inpfreq);
268 print_mhz("vcofreq", bd->bi_vcofreq);
269#endif
270#endif
Simon Glass2e0fa212020-05-10 14:16:37 -0600271
Simon Glass1af97562020-05-10 14:16:28 -0600272 return 0;
273}
Simon Glass1af97562020-05-10 14:16:28 -0600274
wdenk8bde7f72003-06-27 21:31:46 +0000275/* -------------------------------------------------------------------- */
276
wdenk0d498392003-07-01 21:06:45 +0000277U_BOOT_CMD(
278 bdinfo, 1, 1, do_bdinfo,
Peter Tyser2fb26042009-01-27 18:03:12 -0600279 "print Board Info structure",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200280 ""
wdenk8bde7f72003-06-27 21:31:46 +0000281);