123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537 |
- /*
- * (C) Copyright 2003
- * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
- /*
- * Boot support
- */
- #include <common.h>
- #include <command.h>
- #include <linux/compiler.h>
- DECLARE_GLOBAL_DATA_PTR;
- __maybe_unused
- static void print_num(const char *name, ulong value)
- {
- printf("%-12s= 0x%08lX\n", name, value);
- }
- __maybe_unused
- static void print_eth(int idx)
- {
- char name[10], *val;
- if (idx)
- sprintf(name, "eth%iaddr", idx);
- else
- strcpy(name, "ethaddr");
- val = getenv(name);
- if (!val)
- val = "(not set)";
- printf("%-12s= %s\n", name, val);
- }
- #ifndef CONFIG_DM_ETH
- __maybe_unused
- static void print_eths(void)
- {
- struct eth_device *dev;
- int i = 0;
- do {
- dev = eth_get_dev_by_index(i);
- if (dev) {
- printf("eth%dname = %s\n", i, dev->name);
- print_eth(i);
- i++;
- }
- } while (dev);
- printf("current eth = %s\n", eth_get_name());
- printf("ip_addr = %s\n", getenv("ipaddr"));
- }
- #endif
- __maybe_unused
- static void print_lnum(const char *name, unsigned long long value)
- {
- printf("%-12s= 0x%.8llX\n", name, value);
- }
- __maybe_unused
- static void print_mhz(const char *name, unsigned long hz)
- {
- char buf[32];
- printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
- }
- static inline void print_bi_boot_params(const bd_t *bd)
- {
- print_num("boot_params", (ulong)bd->bi_boot_params);
- }
- static inline void print_bi_mem(const bd_t *bd)
- {
- #if defined(CONFIG_SH)
- print_num("mem start ", (ulong)bd->bi_memstart);
- print_lnum("mem size ", (u64)bd->bi_memsize);
- #elif defined(CONFIG_ARC)
- print_num("mem start", (ulong)bd->bi_memstart);
- print_lnum("mem size", (u64)bd->bi_memsize);
- #elif defined(CONFIG_AVR32)
- print_num("memstart", (ulong)bd->bi_dram[0].start);
- print_lnum("memsize", (u64)bd->bi_dram[0].size);
- #else
- print_num("memstart", (ulong)bd->bi_memstart);
- print_lnum("memsize", (u64)bd->bi_memsize);
- #endif
- }
- static inline void print_bi_dram(const bd_t *bd)
- {
- #ifdef CONFIG_NR_DRAM_BANKS
- int i;
- for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
- if (bd->bi_dram[i].size) {
- print_num("DRAM bank", i);
- print_num("-> start", bd->bi_dram[i].start);
- print_num("-> size", bd->bi_dram[i].size);
- }
- }
- #endif
- }
- static inline void print_bi_flash(const bd_t *bd)
- {
- #if defined(CONFIG_MICROBLAZE) || defined(CONFIG_SH)
- print_num("flash start ", (ulong)bd->bi_flashstart);
- print_num("flash size ", (ulong)bd->bi_flashsize);
- print_num("flash offset ", (ulong)bd->bi_flashoffset);
- #elif defined(CONFIG_NIOS2) || defined(CONFIG_OPENRISC)
- print_num("flash start", (ulong)bd->bi_flashstart);
- print_num("flash size", (ulong)bd->bi_flashsize);
- print_num("flash offset", (ulong)bd->bi_flashoffset);
- #else
- print_num("flashstart", (ulong)bd->bi_flashstart);
- print_num("flashsize", (ulong)bd->bi_flashsize);
- print_num("flashoffset", (ulong)bd->bi_flashoffset);
- #endif
- }
- static inline void print_eth_ip_addr(void)
- {
- #if defined(CONFIG_CMD_NET)
- print_eth(0);
- #if defined(CONFIG_HAS_ETH1)
- print_eth(1);
- #endif
- #if defined(CONFIG_HAS_ETH2)
- print_eth(2);
- #endif
- #if defined(CONFIG_HAS_ETH3)
- print_eth(3);
- #endif
- #if defined(CONFIG_HAS_ETH4)
- print_eth(4);
- #endif
- #if defined(CONFIG_HAS_ETH5)
- print_eth(5);
- #endif
- printf("IP addr = %s\n", getenv("ipaddr"));
- #endif
- }
- static inline void print_baudrate(void)
- {
- #if defined(CONFIG_PPC)
- printf("baudrate = %6u bps\n", gd->baudrate);
- #elif defined(CONFIG_SPARC)
- printf("baudrate = %6u bps\n", gd->baudrate);
- #else
- printf("baudrate = %u bps\n", gd->baudrate);
- #endif
- }
- static inline void print_std_bdinfo(const bd_t *bd)
- {
- print_bi_boot_params(bd);
- print_bi_mem(bd);
- print_bi_flash(bd);
- print_eth_ip_addr();
- print_baudrate();
- }
- #if defined(CONFIG_PPC)
- void __weak board_detail(void)
- {
- /* Please define boot_detail() for your platform */
- }
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- #ifdef DEBUG
- print_num("bd address", (ulong)bd);
- #endif
- print_bi_mem(bd);
- print_bi_flash(bd);
- print_num("sramstart", bd->bi_sramstart);
- print_num("sramsize", bd->bi_sramsize);
- #if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
- defined(CONFIG_MPC8260) || defined(CONFIG_E500)
- print_num("immr_base", bd->bi_immr_base);
- #endif
- print_num("bootflags", bd->bi_bootflags);
- #if defined(CONFIG_405EP) || \
- defined(CONFIG_405GP) || \
- defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
- defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
- defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
- defined(CONFIG_XILINX_405)
- print_mhz("procfreq", bd->bi_procfreq);
- print_mhz("plb_busfreq", bd->bi_plb_busfreq);
- #if defined(CONFIG_405EP) || defined(CONFIG_405GP) || \
- defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
- defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
- defined(CONFIG_440SPE) || defined(CONFIG_XILINX_405)
- print_mhz("pci_busfreq", bd->bi_pci_busfreq);
- #endif
- #else /* ! CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
- #if defined(CONFIG_CPM2)
- print_mhz("vco", bd->bi_vco);
- print_mhz("sccfreq", bd->bi_sccfreq);
- print_mhz("brgfreq", bd->bi_brgfreq);
- #endif
- print_mhz("intfreq", bd->bi_intfreq);
- #if defined(CONFIG_CPM2)
- print_mhz("cpmfreq", bd->bi_cpmfreq);
- #endif
- print_mhz("busfreq", bd->bi_busfreq);
- #endif /* CONFIG_405GP, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
- #ifdef CONFIG_ENABLE_36BIT_PHYS
- #ifdef CONFIG_PHYS_64BIT
- puts("addressing = 36-bit\n");
- #else
- puts("addressing = 32-bit\n");
- #endif
- #endif
- print_eth_ip_addr();
- print_baudrate();
- print_num("relocaddr", gd->relocaddr);
- board_detail();
- return 0;
- }
- #elif defined(CONFIG_NIOS2)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_bi_dram(bd);
- print_bi_flash(bd);
- #if defined(CONFIG_SYS_SRAM_BASE)
- print_num ("sram start", (ulong)bd->bi_sramstart);
- print_num ("sram size", (ulong)bd->bi_sramsize);
- #endif
- print_eth_ip_addr();
- print_baudrate();
- return 0;
- }
- #elif defined(CONFIG_MICROBLAZE)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_bi_dram(bd);
- print_bi_flash(bd);
- #if defined(CONFIG_SYS_SRAM_BASE)
- print_num("sram start ", (ulong)bd->bi_sramstart);
- print_num("sram size ", (ulong)bd->bi_sramsize);
- #endif
- #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
- print_eths();
- #endif
- print_baudrate();
- print_num("relocaddr", gd->relocaddr);
- print_num("reloc off", gd->reloc_off);
- print_num("fdt_blob", (ulong)gd->fdt_blob);
- print_num("new_fdt", (ulong)gd->new_fdt);
- print_num("fdt_size", (ulong)gd->fdt_size);
- return 0;
- }
- #elif defined(CONFIG_SPARC)
- int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- #ifdef DEBUG
- print_num("bd address ", (ulong) bd);
- #endif
- print_num("memstart ", bd->bi_memstart);
- print_lnum("memsize ", bd->bi_memsize);
- print_num("flashstart ", bd->bi_flashstart);
- print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE);
- print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR);
- printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%x (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE,
- CONFIG_SYS_MONITOR_LEN);
- printf("CONFIG_SYS_MALLOC_BASE = 0x%x (%d)\n", CONFIG_SYS_MALLOC_BASE,
- CONFIG_SYS_MALLOC_LEN);
- printf("CONFIG_SYS_INIT_SP_OFFSET = 0x%x (%d)\n", CONFIG_SYS_INIT_SP_OFFSET,
- CONFIG_SYS_STACK_SIZE);
- printf("CONFIG_SYS_PROM_OFFSET = 0x%x (%d)\n", CONFIG_SYS_PROM_OFFSET,
- CONFIG_SYS_PROM_SIZE);
- printf("CONFIG_SYS_GBL_DATA_OFFSET = 0x%x (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET,
- GENERATED_GBL_DATA_SIZE);
- print_eth_ip_addr();
- print_baudrate();
- return 0;
- }
- #elif defined(CONFIG_M68K)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_bi_mem(bd);
- print_bi_flash(bd);
- #if defined(CONFIG_SYS_INIT_RAM_ADDR)
- print_num("sramstart", (ulong)bd->bi_sramstart);
- print_num("sramsize", (ulong)bd->bi_sramsize);
- #endif
- #if defined(CONFIG_SYS_MBAR)
- print_num("mbar", bd->bi_mbar_base);
- #endif
- print_mhz("cpufreq", bd->bi_intfreq);
- print_mhz("busfreq", bd->bi_busfreq);
- #ifdef CONFIG_PCI
- print_mhz("pcifreq", bd->bi_pcifreq);
- #endif
- #ifdef CONFIG_EXTRA_CLOCK
- print_mhz("flbfreq", bd->bi_flbfreq);
- print_mhz("inpfreq", bd->bi_inpfreq);
- print_mhz("vcofreq", bd->bi_vcofreq);
- #endif
- print_eth_ip_addr();
- print_baudrate();
- return 0;
- }
- #elif defined(CONFIG_BLACKFIN)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- printf("U-Boot = %s\n", bd->bi_r_version);
- printf("CPU = %s\n", bd->bi_cpu);
- printf("Board = %s\n", bd->bi_board_name);
- print_mhz("VCO", bd->bi_vco);
- print_mhz("CCLK", bd->bi_cclk);
- print_mhz("SCLK", bd->bi_sclk);
- print_std_bdinfo(bd);
- return 0;
- }
- #elif defined(CONFIG_MIPS)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- print_std_bdinfo(gd->bd);
- print_num("relocaddr", gd->relocaddr);
- print_num("reloc off", gd->reloc_off);
- return 0;
- }
- #elif defined(CONFIG_AVR32)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- print_std_bdinfo(gd->bd);
- return 0;
- }
- #elif defined(CONFIG_ARM)
- static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc,
- char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_num("arch_number", bd->bi_arch_number);
- print_bi_boot_params(bd);
- print_bi_dram(bd);
- #ifdef CONFIG_SYS_MEM_RESERVE_SECURE
- if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) {
- print_num("Secure ram",
- gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK);
- }
- #endif
- #if defined(CONFIG_CMD_NET) && !defined(CONFIG_DM_ETH)
- print_eths();
- #endif
- print_baudrate();
- #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
- print_num("TLB addr", gd->arch.tlb_addr);
- #endif
- print_num("relocaddr", gd->relocaddr);
- print_num("reloc off", gd->reloc_off);
- print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
- print_num("sp start ", gd->start_addr_sp);
- #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
- print_num("FB base ", gd->fb_base);
- #endif
- /*
- * TODO: Currently only support for davinci SOC's is added.
- * Remove this check once all the board implement this.
- */
- #ifdef CONFIG_CLOCKS
- printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq);
- printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq);
- printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq);
- #endif
- #ifdef CONFIG_BOARD_TYPES
- printf("Board Type = %ld\n", gd->board_type);
- #endif
- #ifdef CONFIG_SYS_MALLOC_F
- printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
- CONFIG_SYS_MALLOC_F_LEN);
- #endif
- return 0;
- }
- #elif defined(CONFIG_SH)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_bi_mem(bd);
- print_bi_flash(bd);
- print_eth_ip_addr();
- print_baudrate();
- return 0;
- }
- #elif defined(CONFIG_X86)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_bi_boot_params(bd);
- print_bi_dram(bd);
- #if defined(CONFIG_CMD_NET)
- print_eth_ip_addr();
- print_mhz("ethspeed", bd->bi_ethspeed);
- #endif
- print_baudrate();
- return 0;
- }
- #elif defined(CONFIG_SANDBOX)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_bi_boot_params(bd);
- print_bi_dram(bd);
- print_eth_ip_addr();
- #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
- print_num("FB base ", gd->fb_base);
- #endif
- return 0;
- }
- #elif defined(CONFIG_NDS32)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_num("arch_number", bd->bi_arch_number);
- print_bi_boot_params(bd);
- print_bi_dram(bd);
- print_eth_ip_addr();
- print_baudrate();
- return 0;
- }
- #elif defined(CONFIG_OPENRISC)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_bi_mem(bd);
- print_bi_flash(bd);
- print_eth_ip_addr();
- print_baudrate();
- return 0;
- }
- #elif defined(CONFIG_ARC)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- bd_t *bd = gd->bd;
- print_bi_mem(bd);
- print_eth_ip_addr();
- print_baudrate();
- return 0;
- }
- #elif defined(CONFIG_XTENSA)
- int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
- {
- print_std_bdinfo(gd->bd);
- return 0;
- }
- #else
- #error "a case for this architecture does not exist!"
- #endif
- /* -------------------------------------------------------------------- */
- U_BOOT_CMD(
- bdinfo, 1, 1, do_bdinfo,
- "print Board Info structure",
- ""
- );
|