Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 | // SPDX-License-Identifier: GPL-2.0+ /* * Tests for bdinfo command * * Copyright 2023 Marek Vasut <marek.vasut+renesas@mailbox.org> */ #include <common.h> #include <console.h> #include <mapmem.h> #include <asm/global_data.h> #include <dm/uclass.h> #include <test/suites.h> #include <test/ut.h> #include <dm.h> #include <env.h> #include <lmb.h> #include <net.h> #include <serial.h> #include <video.h> #include <vsprintf.h> #include <asm/cache.h> #include <asm/global_data.h> #include <display_options.h> DECLARE_GLOBAL_DATA_PTR; /* Declare a new bdinfo test */ #define BDINFO_TEST(_name, _flags) UNIT_TEST(_name, _flags, bdinfo_test) static int test_num_l(struct unit_test_state *uts, const char *name, ulong value) { ut_assert_nextline("%-12s= 0x%0*lx", name, 2 * (int)sizeof(value), value); return 0; } static int test_num_ll(struct unit_test_state *uts, const char *name, unsigned long long value) { ut_assert_nextline("%-12s= 0x%.*llx", name, 2 * (int)sizeof(ulong), value); return 0; } static int test_eth(struct unit_test_state *uts) { const int idx = eth_get_dev_index(); uchar enetaddr[6]; char name[10]; int ret; if (idx) sprintf(name, "eth%iaddr", idx); else strcpy(name, "ethaddr"); ret = eth_env_get_enetaddr_by_index("eth", idx, enetaddr); ut_assert_nextline("current eth = %s", eth_get_name()); if (!ret) ut_assert_nextline("%-12s= (not set)", name); else ut_assert_nextline("%-12s= %pM", name, enetaddr); ut_assert_nextline("IP addr = %s", env_get("ipaddr")); return 0; } static int test_video_info(struct unit_test_state *uts) { const struct udevice *dev; struct uclass *uc; uclass_id_foreach_dev(UCLASS_VIDEO, dev, uc) { ut_assert_nextline("%-12s= %s %sactive", "Video", dev->name, device_active(dev) ? "" : "in"); if (device_active(dev)) { struct video_priv *upriv = dev_get_uclass_priv(dev); struct video_uc_plat *plat = dev_get_uclass_plat(dev); ut_assertok(test_num_ll(uts, "FB base", (ulong)upriv->fb)); if (upriv->copy_fb) { ut_assertok(test_num_ll(uts, "FB copy", (ulong)upriv->copy_fb)); ut_assertok(test_num_l(uts, " copy size", plat->copy_size)); } ut_assert_nextline("%-12s= %dx%dx%d", "FB size", upriv->xsize, upriv->ysize, 1 << upriv->bpix); } } return 0; } static int lmb_test_dump_region(struct unit_test_state *uts, struct lmb_region *rgn, char *name) { unsigned long long base, size, end; enum lmb_flags flags; int i; ut_assert_nextline(" %s.cnt = 0x%lx / max = 0x%lx", name, rgn->cnt, rgn->max); for (i = 0; i < rgn->cnt; i++) { base = rgn->region[i].base; size = rgn->region[i].size; end = base + size - 1; flags = rgn->region[i].flags; /* * this entry includes the stack (get_sp()) on many platforms * so will different each time lmb_init_and_reserve() is called. * We could instead have the bdinfo command put its lmb region * in a known location, so we can check it directly, rather than * calling lmb_init_and_reserve() to create a new (and hopefully * identical one). But for now this seems good enough. */ if (!IS_ENABLED(CONFIG_SANDBOX) && i == 3) { ut_assert_nextlinen(" %s[%d]\t[", name, i); continue; } ut_assert_nextline(" %s[%d]\t[0x%llx-0x%llx], 0x%08llx bytes flags: %x", name, i, base, end, size, flags); } return 0; } static int lmb_test_dump_all(struct unit_test_state *uts, struct lmb *lmb) { ut_assert_nextline("lmb_dump_all:"); ut_assertok(lmb_test_dump_region(uts, &lmb->memory, "memory")); ut_assertok(lmb_test_dump_region(uts, &lmb->reserved, "reserved")); return 0; } static int bdinfo_check_mem(struct unit_test_state *uts) { struct bd_info *bd = gd->bd; int i; for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) { if (bd->bi_dram[i].size) { ut_assertok(test_num_l(uts, "DRAM bank", i)); ut_assertok(test_num_ll(uts, "-> start", bd->bi_dram[i].start)); ut_assertok(test_num_ll(uts, "-> size", bd->bi_dram[i].size)); } } return 0; } static int bdinfo_test_all(struct unit_test_state *uts) { ut_assertok(test_num_l(uts, "boot_params", 0)); ut_assertok(bdinfo_check_mem(uts)); /* CONFIG_SYS_HAS_SRAM testing not supported */ ut_assertok(test_num_l(uts, "flashstart", 0)); ut_assertok(test_num_l(uts, "flashsize", 0)); ut_assertok(test_num_l(uts, "flashoffset", 0)); ut_assert_nextline("baudrate = %lu bps", env_get_ulong("baudrate", 10, 1234)); ut_assertok(test_num_l(uts, "relocaddr", gd->relocaddr)); ut_assertok(test_num_l(uts, "reloc off", gd->reloc_off)); ut_assert_nextline("%-12s= %u-bit", "Build", (uint)sizeof(void *) * 8); if (IS_ENABLED(CONFIG_CMD_NET)) ut_assertok(test_eth(uts)); /* * Make sure environment variable "fdtcontroladdr" address * matches mapped control DT address. */ ut_assert(map_to_sysmem(gd->fdt_blob) == env_get_hex("fdtcontroladdr", 0x1234)); ut_assertok(test_num_l(uts, "fdt_blob", (ulong)map_to_sysmem(gd->fdt_blob))); ut_assertok(test_num_l(uts, "new_fdt", (ulong)map_to_sysmem(gd->new_fdt))); ut_assertok(test_num_l(uts, "fdt_size", (ulong)gd->fdt_size)); if (IS_ENABLED(CONFIG_VIDEO)) ut_assertok(test_video_info(uts)); /* The gd->multi_dtb_fit may not be available, hence, #if below. */ #if CONFIG_IS_ENABLED(MULTI_DTB_FIT) ut_assertok(test_num_l(uts, "multi_dtb_fit", (ulong)gd->multi_dtb_fit)); #endif if (IS_ENABLED(CONFIG_LMB) && gd->fdt_blob) { struct lmb lmb; lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob); ut_assertok(lmb_test_dump_all(uts, &lmb)); if (IS_ENABLED(CONFIG_OF_REAL)) ut_assert_nextline("devicetree = %s", fdtdec_get_srcname()); } if (IS_ENABLED(CONFIG_DM_SERIAL)) { struct serial_device_info info; ut_assertnonnull(gd->cur_serial_dev); ut_assertok(serial_getinfo(gd->cur_serial_dev, &info)); ut_assertok(test_num_l(uts, "serial addr", info.addr)); ut_assertok(test_num_l(uts, " width", info.reg_width)); ut_assertok(test_num_l(uts, " shift", info.reg_shift)); ut_assertok(test_num_l(uts, " offset", info.reg_offset)); ut_assertok(test_num_l(uts, " clock", info.clock)); } if (IS_ENABLED(CONFIG_CMD_BDINFO_EXTRA)) { ut_assert_nextlinen("stack ptr"); ut_assertok(test_num_ll(uts, "ram_top ptr", (unsigned long long)gd->ram_top)); ut_assertok(test_num_l(uts, "malloc base", gd_malloc_start())); } if (IS_ENABLED(CONFIG_X86)) ut_check_skip_to_linen(uts, " high end ="); return 0; } static int bdinfo_test_full(struct unit_test_state *uts) { /* Test BDINFO full print */ ut_assertok(console_record_reset_enable()); ut_assertok(run_commandf("bdinfo")); ut_assertok(bdinfo_test_all(uts)); ut_assertok(run_commandf("bdinfo -a")); ut_assertok(bdinfo_test_all(uts)); ut_assertok(ut_check_console_end(uts)); return 0; } BDINFO_TEST(bdinfo_test_full, UT_TESTF_CONSOLE_REC); static int bdinfo_test_help(struct unit_test_state *uts) { /* Test BDINFO unknown option help text print */ ut_assertok(console_record_reset_enable()); if (!CONFIG_IS_ENABLED(GETOPT)) { ut_asserteq(0, run_commandf("bdinfo -h")); ut_assertok(bdinfo_test_all(uts)); } else { ut_asserteq(1, run_commandf("bdinfo -h")); ut_assert_nextlinen("bdinfo: invalid option -- h"); ut_assert_nextlinen("bdinfo - print Board Info structure"); ut_assert_nextline_empty(); ut_assert_nextlinen("Usage:"); ut_assert_nextlinen("bdinfo"); } ut_assertok(ut_check_console_end(uts)); return 0; } BDINFO_TEST(bdinfo_test_help, UT_TESTF_CONSOLE_REC); static int bdinfo_test_memory(struct unit_test_state *uts) { /* Test BDINFO memory layout only print */ ut_assertok(console_record_reset_enable()); ut_assertok(run_commandf("bdinfo -m")); if (!CONFIG_IS_ENABLED(GETOPT)) ut_assertok(bdinfo_test_all(uts)); else ut_assertok(bdinfo_check_mem(uts)); ut_assertok(ut_check_console_end(uts)); return 0; } BDINFO_TEST(bdinfo_test_memory, UT_TESTF_CONSOLE_REC); static int bdinfo_test_eth(struct unit_test_state *uts) { /* Test BDINFO ethernet settings only print */ ut_assertok(console_record_reset_enable()); ut_assertok(run_commandf("bdinfo -e")); if (!CONFIG_IS_ENABLED(GETOPT)) ut_assertok(bdinfo_test_all(uts)); else if (IS_ENABLED(CONFIG_CMD_NET)) ut_assertok(test_eth(uts)); ut_assertok(ut_check_console_end(uts)); return 0; } BDINFO_TEST(bdinfo_test_eth, UT_TESTF_CONSOLE_REC); int do_ut_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { struct unit_test *tests = UNIT_TEST_SUITE_START(bdinfo_test); const int n_ents = UNIT_TEST_SUITE_COUNT(bdinfo_test); return cmd_ut_category("bdinfo", "bdinfo_test_", tests, n_ents, argc, argv); } |