Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Boot support |
| 9 | */ |
| 10 | #include <common.h> |
| 11 | #include <command.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 12 | #include <env.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 13 | #include <net.h> |
Simon Glass | 2189d5f | 2019-11-14 12:57:20 -0700 | [diff] [blame] | 14 | #include <vsprintf.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 15 | #include <asm/cache.h> |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 16 | #include <linux/compiler.h> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 17 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 19 | |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 20 | static void print_num(const char *name, ulong value) |
| 21 | { |
Heinrich Schuchardt | 95187bb | 2018-10-11 13:15:01 +0200 | [diff] [blame] | 22 | printf("%-12s= 0x%0*lx\n", name, 2 * (int)sizeof(value), value); |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 23 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 24 | |
Simon Glass | 5f3dfad | 2011-12-06 13:37:17 +0000 | [diff] [blame] | 25 | __maybe_unused |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 26 | static 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 Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 33 | val = env_get(name); |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 34 | if (!val) |
| 35 | val = "(not set)"; |
| 36 | printf("%-12s= %s\n", name, val); |
| 37 | } |
Mike Frysinger | de2dff6 | 2009-02-11 18:50:10 -0500 | [diff] [blame] | 38 | |
Daniel Schwierzeck | 4770845 | 2012-10-03 08:36:11 +0000 | [diff] [blame] | 39 | static void print_lnum(const char *name, unsigned long long value) |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 40 | { |
| 41 | printf("%-12s= 0x%.8llX\n", name, value); |
| 42 | } |
| 43 | |
Mike Frysinger | d88af4d | 2011-12-04 17:45:22 +0000 | [diff] [blame] | 44 | static void print_mhz(const char *name, unsigned long hz) |
| 45 | { |
| 46 | char buf[32]; |
| 47 | |
| 48 | printf("%-12s= %6s MHz\n", name, strmhz(buf, hz)); |
| 49 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 50 | |
Simon Glass | d67de00 | 2020-05-10 14:16:44 -0600 | [diff] [blame] | 51 | static void print_bi_dram(const bd_t *bd) |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 52 | { |
| 53 | #ifdef CONFIG_NR_DRAM_BANKS |
| 54 | int i; |
| 55 | |
| 56 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { |
Simon Glass | ddd917b | 2016-08-05 21:57:27 -0600 | [diff] [blame] | 57 | if (bd->bi_dram[i].size) { |
| 58 | print_num("DRAM bank", i); |
| 59 | print_num("-> start", bd->bi_dram[i].start); |
| 60 | print_num("-> size", bd->bi_dram[i].size); |
| 61 | } |
Max Filippov | fd60e99 | 2016-07-28 03:57:20 +0300 | [diff] [blame] | 62 | } |
| 63 | #endif |
| 64 | } |
| 65 | |
Simon Glass | d67de00 | 2020-05-10 14:16:44 -0600 | [diff] [blame] | 66 | static void print_eth_ip_addr(void) |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 67 | { |
| 68 | #if defined(CONFIG_CMD_NET) |
| 69 | print_eth(0); |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 70 | printf("IP addr = %s\n", env_get("ipaddr")); |
Max Filippov | 8752e26 | 2016-07-28 03:57:22 +0300 | [diff] [blame] | 71 | #endif |
| 72 | } |
| 73 | |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 74 | void __weak board_detail(void) |
| 75 | { |
| 76 | /* Please define board_detail() for your PPC platform */ |
| 77 | } |
| 78 | |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 79 | int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
| 80 | { |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 81 | bd_t *bd = gd->bd; |
| 82 | |
| 83 | #ifdef DEBUG |
| 84 | print_num("bd address", (ulong)bd); |
| 85 | #endif |
Simon Glass | 1aeeaeb | 2020-05-10 14:16:39 -0600 | [diff] [blame] | 86 | if (IS_ENABLED(CONFIG_ARM)) |
| 87 | print_num("arch_number", bd->bi_arch_number); |
Simon Glass | 3cfbe22 | 2020-05-10 14:16:48 -0600 | [diff] [blame] | 88 | print_num("boot_params", (ulong)bd->bi_boot_params); |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 89 | print_bi_dram(bd); |
Simon Glass | 537cb0d | 2020-05-10 14:16:47 -0600 | [diff] [blame] | 90 | print_num("memstart", (ulong)bd->bi_memstart); |
| 91 | print_lnum("memsize", (u64)bd->bi_memsize); |
Simon Glass | aa8b758 | 2020-05-10 14:16:49 -0600 | [diff] [blame] | 92 | print_num("flashstart", (ulong)bd->bi_flashstart); |
| 93 | print_num("flashsize", (ulong)bd->bi_flashsize); |
| 94 | print_num("flashoffset", (ulong)bd->bi_flashoffset); |
Simon Glass | 9e24e10 | 2020-05-10 14:16:45 -0600 | [diff] [blame] | 95 | print_eth_ip_addr(); |
Simon Glass | 3e1cca2 | 2020-05-10 14:16:46 -0600 | [diff] [blame] | 96 | printf("baudrate = %u bps\n", gd->baudrate); |
Simon Glass | df529b5 | 2020-05-10 14:16:29 -0600 | [diff] [blame] | 97 | print_num("relocaddr", gd->relocaddr); |
| 98 | print_num("reloc off", gd->reloc_off); |
Simon Glass | db76c9b | 2020-05-10 14:16:50 -0600 | [diff] [blame] | 99 | printf("%-12s= %u-bit\n", "Build", (uint)sizeof(void *) * 8); |
Simon Glass | 441539f | 2020-05-10 14:16:53 -0600 | [diff] [blame^] | 100 | if (IS_ENABLED(CONFIG_CMD_NET)) |
| 101 | printf("current eth = %s\n", eth_get_name()); |
Simon Glass | 271db50 | 2020-05-10 14:16:31 -0600 | [diff] [blame] | 102 | print_num("fdt_blob", (ulong)gd->fdt_blob); |
| 103 | print_num("new_fdt", (ulong)gd->new_fdt); |
| 104 | print_num("fdt_size", (ulong)gd->fdt_size); |
Simon Glass | 1aeeaeb | 2020-05-10 14:16:39 -0600 | [diff] [blame] | 105 | #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO) |
| 106 | print_num("FB base ", gd->fb_base); |
| 107 | #endif |
| 108 | |
| 109 | /* This section is used only by ARM */ |
| 110 | #ifdef CONFIG_ARM |
| 111 | #ifdef CONFIG_SYS_MEM_RESERVE_SECURE |
| 112 | if (gd->arch.secure_ram & MEM_RESERVE_SECURE_SECURED) { |
| 113 | print_num("Secure ram", |
| 114 | gd->arch.secure_ram & MEM_RESERVE_SECURE_ADDR_MASK); |
| 115 | } |
| 116 | #endif |
| 117 | #ifdef CONFIG_RESV_RAM |
| 118 | if (gd->arch.resv_ram) |
| 119 | print_num("Reserved ram", gd->arch.resv_ram); |
| 120 | #endif |
| 121 | #if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) |
| 122 | print_num("TLB addr", gd->arch.tlb_addr); |
| 123 | #endif |
| 124 | print_num("irq_sp", gd->irq_sp); /* irq stack pointer */ |
| 125 | print_num("sp start ", gd->start_addr_sp); |
| 126 | /* |
| 127 | * TODO: Currently only support for davinci SOC's is added. |
| 128 | * Remove this check once all the board implement this. |
| 129 | */ |
| 130 | #ifdef CONFIG_CLOCKS |
| 131 | printf("ARM frequency = %ld MHz\n", gd->bd->bi_arm_freq); |
| 132 | printf("DSP frequency = %ld MHz\n", gd->bd->bi_dsp_freq); |
| 133 | printf("DDR frequency = %ld MHz\n", gd->bd->bi_ddr_freq); |
| 134 | #endif |
| 135 | #ifdef CONFIG_BOARD_TYPES |
| 136 | printf("Board Type = %ld\n", gd->board_type); |
| 137 | #endif |
| 138 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
| 139 | printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr, |
| 140 | CONFIG_VAL(SYS_MALLOC_F_LEN)); |
| 141 | #endif |
| 142 | #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) |
| 143 | print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit); |
| 144 | #endif |
| 145 | #endif /* CONFIG_ARM */ |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 146 | |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 147 | /* This section is used only by ppc */ |
| 148 | #if defined(CONFIG_MPC8xx) || defined(CONFIG_E500) |
| 149 | print_num("immr_base", bd->bi_immr_base); |
| 150 | #endif |
| 151 | if (IS_ENABLED(CONFIG_PPC)) { |
| 152 | print_num("bootflags", bd->bi_bootflags); |
| 153 | print_mhz("intfreq", bd->bi_intfreq); |
| 154 | #ifdef CONFIG_ENABLE_36BIT_PHYS |
| 155 | if (IS_ENABLED(CONFIG_PHYS_64BIT)) |
| 156 | puts("addressing = 36-bit\n"); |
| 157 | else |
| 158 | puts("addressing = 32-bit\n"); |
| 159 | #endif |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 160 | board_detail(); |
| 161 | } |
| 162 | #if defined(CONFIG_CPM2) |
| 163 | print_mhz("cpmfreq", bd->bi_cpmfreq); |
| 164 | print_mhz("vco", bd->bi_vco); |
| 165 | print_mhz("sccfreq", bd->bi_sccfreq); |
| 166 | print_mhz("brgfreq", bd->bi_brgfreq); |
| 167 | #endif |
| 168 | |
Simon Glass | 67145d1 | 2020-05-10 14:16:38 -0600 | [diff] [blame] | 169 | /* This is used by m68k and ppc */ |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 170 | #if defined(CONFIG_SYS_INIT_RAM_ADDR) |
| 171 | print_num("sramstart", (ulong)bd->bi_sramstart); |
| 172 | print_num("sramsize", (ulong)bd->bi_sramsize); |
| 173 | #endif |
Simon Glass | 67145d1 | 2020-05-10 14:16:38 -0600 | [diff] [blame] | 174 | if (IS_ENABLED(CONFIG_PPC) || IS_ENABLED(CONFIG_M68K)) |
| 175 | print_mhz("busfreq", bd->bi_busfreq); |
| 176 | |
| 177 | /* The rest are used only by m68k */ |
| 178 | #ifdef CONFIG_M68K |
| 179 | #if defined(CONFIG_SYS_MBAR) |
| 180 | print_num("mbar", bd->bi_mbar_base); |
| 181 | #endif |
| 182 | print_mhz("cpufreq", bd->bi_intfreq); |
| 183 | if (IS_ENABLED(CONFIG_PCI)) |
| 184 | print_mhz("pcifreq", bd->bi_pcifreq); |
| 185 | #ifdef CONFIG_EXTRA_CLOCK |
| 186 | print_mhz("flbfreq", bd->bi_flbfreq); |
| 187 | print_mhz("inpfreq", bd->bi_inpfreq); |
| 188 | print_mhz("vcofreq", bd->bi_vcofreq); |
| 189 | #endif |
| 190 | #endif |
Simon Glass | 2e0fa21 | 2020-05-10 14:16:37 -0600 | [diff] [blame] | 191 | |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 192 | return 0; |
| 193 | } |
Simon Glass | 1af9756 | 2020-05-10 14:16:28 -0600 | [diff] [blame] | 194 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 195 | /* -------------------------------------------------------------------- */ |
| 196 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 197 | U_BOOT_CMD( |
| 198 | bdinfo, 1, 1, do_bdinfo, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 199 | "print Board Info structure", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 200 | "" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 201 | ); |