blob: 60bfb4e1da9dce883cae4a2345bcc0772ccd337c [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 Glass2e0fa212020-05-10 14:16:37 -0600142void __weak board_detail(void)
143{
144 /* Please define board_detail() for your PPC platform */
145}
146
Simon Glass1af97562020-05-10 14:16:28 -0600147int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
148{
Simon Glass2e0fa212020-05-10 14:16:37 -0600149 bd_t *bd = gd->bd;
150
151#ifdef DEBUG
152 print_num("bd address", (ulong)bd);
153#endif
Simon Glass1aeeaeb2020-05-10 14:16:39 -0600154 if (IS_ENABLED(CONFIG_ARM))
155 print_num("arch_number", bd->bi_arch_number);
Simon Glass9e24e102020-05-10 14:16:45 -0600156 print_bi_boot_params(bd);
Simon Glass2e0fa212020-05-10 14:16:37 -0600157 print_bi_dram(bd);
Simon Glass9e24e102020-05-10 14:16:45 -0600158 print_bi_mem(bd);
159 print_bi_flash(bd);
160 print_eth_ip_addr();
Simon Glass3e1cca22020-05-10 14:16:46 -0600161 printf("baudrate = %u bps\n", gd->baudrate);
Simon Glassdf529b52020-05-10 14:16:29 -0600162 print_num("relocaddr", gd->relocaddr);
163 print_num("reloc off", gd->reloc_off);
164 print_cpu_word_size();
Simon Glass271db502020-05-10 14:16:31 -0600165#if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
166 print_eths();
167#endif
168 print_num("fdt_blob", (ulong)gd->fdt_blob);
169 print_num("new_fdt", (ulong)gd->new_fdt);
170 print_num("fdt_size", (ulong)gd->fdt_size);
Simon Glass1aeeaeb2020-05-10 14:16:39 -0600171#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO)
172 print_num("FB base ", gd->fb_base);
173#endif
174
175 /* This section is used only by ARM */
176#ifdef CONFIG_ARM
177#ifdef CONFIG_SYS_MEM_RESERVE_SECURE
178 if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) {
179 print_num("Secure ram",
180 gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
181 }
182#endif
183#ifdef CONFIG_RESV_RAM
184 if (gd->arch.resv_ram)
185 print_num("Reserved ram", gd->arch.resv_ram);
186#endif
187#if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF))
188 print_num("TLB addr", gd->arch.tlb_addr);
189#endif
190 print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
191 print_num("sp start ", gd->start_addr_sp);
192 /*
193 * TODO: Currently only support for davinci SOC's is added.
194 * Remove this check once all the board implement this.
195 */
196#ifdef CONFIG_CLOCKS
197 printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
198 printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
199 printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
200#endif
201#ifdef CONFIG_BOARD_TYPES
202 printf("Board Type = %ld\n", gd->board_type);
203#endif
204#if CONFIG_VAL(SYS_MALLOC_F_LEN)
205 printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
206 CONFIG_VAL(SYS_MALLOC_F_LEN));
207#endif
208#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
209 print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
210#endif
211#endif /* CONFIG_ARM */
Simon Glass1af97562020-05-10 14:16:28 -0600212
Simon Glass2e0fa212020-05-10 14:16:37 -0600213 /* This section is used only by ppc */
214#if defined(CONFIG_MPC8xx) || defined(CONFIG_E500)
215 print_num("immr_base", bd->bi_immr_base);
216#endif
217 if (IS_ENABLED(CONFIG_PPC)) {
218 print_num("bootflags", bd->bi_bootflags);
219 print_mhz("intfreq", bd->bi_intfreq);
220#ifdef CONFIG_ENABLE_36BIT_PHYS
221 if (IS_ENABLED(CONFIG_PHYS_64BIT))
222 puts("addressing = 36-bit\n");
223 else
224 puts("addressing = 32-bit\n");
225#endif
Simon Glass2e0fa212020-05-10 14:16:37 -0600226 board_detail();
227 }
228#if defined(CONFIG_CPM2)
229 print_mhz("cpmfreq", bd->bi_cpmfreq);
230 print_mhz("vco", bd->bi_vco);
231 print_mhz("sccfreq", bd->bi_sccfreq);
232 print_mhz("brgfreq", bd->bi_brgfreq);
233#endif
234
Simon Glass67145d12020-05-10 14:16:38 -0600235 /* This is used by m68k and ppc */
Simon Glass2e0fa212020-05-10 14:16:37 -0600236#if defined(CONFIG_SYS_INIT_RAM_ADDR)
237 print_num("sramstart", (ulong)bd->bi_sramstart);
238 print_num("sramsize", (ulong)bd->bi_sramsize);
239#endif
Simon Glass67145d12020-05-10 14:16:38 -0600240 if (IS_ENABLED(CONFIG_PPC) || IS_ENABLED(CONFIG_M68K))
241 print_mhz("busfreq", bd->bi_busfreq);
242
243 /* The rest are used only by m68k */
244#ifdef CONFIG_M68K
245#if defined(CONFIG_SYS_MBAR)
246 print_num("mbar", bd->bi_mbar_base);
247#endif
248 print_mhz("cpufreq", bd->bi_intfreq);
249 if (IS_ENABLED(CONFIG_PCI))
250 print_mhz("pcifreq", bd->bi_pcifreq);
251#ifdef CONFIG_EXTRA_CLOCK
252 print_mhz("flbfreq", bd->bi_flbfreq);
253 print_mhz("inpfreq", bd->bi_inpfreq);
254 print_mhz("vcofreq", bd->bi_vcofreq);
255#endif
256#endif
Simon Glass2e0fa212020-05-10 14:16:37 -0600257
Simon Glass1af97562020-05-10 14:16:28 -0600258 return 0;
259}
Simon Glass1af97562020-05-10 14:16:28 -0600260
wdenk8bde7f72003-06-27 21:31:46 +0000261/* -------------------------------------------------------------------- */
262
wdenk0d498392003-07-01 21:06:45 +0000263U_BOOT_CMD(
264 bdinfo, 1, 1, do_bdinfo,
Peter Tyser2fb26042009-01-27 18:03:12 -0600265 "print Board Info structure",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200266 ""
wdenk8bde7f72003-06-27 21:31:46 +0000267);