]> git.baikalelectronics.ru Git - uboot.git/commitdiff
test: cmd: fdt: Test fdt rsvmem
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Thu, 2 Mar 2023 03:08:42 +0000 (04:08 +0100)
committerSimon Glass <sjg@chromium.org>
Tue, 14 Mar 2023 22:08:51 +0000 (16:08 -0600)
Add 'fdt rsvmem' test which works as follows:
- Create custom FDT with single reserved memory (rsvmem) entry, map it to sysmem
- Add new rsvmem entry
- Delete existing older rsvmem entry
- Add new rsvmem entry again
- Always print the rsvmem list and validate it

The test case can be triggered using:
"
./u-boot -Dc 'ut fdt'
"
To dump the full output from commands used during test, add '-v' flag.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
test/cmd/fdt.c

index a73dc1eab0eb88e8457f60512f240ac52a0575a9..3b48694a00432d1dfe80797a6358886f2ea296d3 100644 (file)
@@ -1254,6 +1254,69 @@ static int fdt_test_memory(struct unit_test_state *uts)
 }
 FDT_TEST(fdt_test_memory, UT_TESTF_CONSOLE_REC);
 
+static int fdt_test_rsvmem(struct unit_test_state *uts)
+{
+       char fdt[8192];
+       ulong addr;
+
+       ut_assertok(make_test_fdt(uts, fdt, sizeof(fdt)));
+       fdt_shrink_to_minimum(fdt, 4096);       /* Resize with 4096 extra bytes */
+       fdt_add_mem_rsv(fdt, 0x42, 0x1701);
+       fdt_add_mem_rsv(fdt, 0x74656, 0x9);
+       addr = map_to_sysmem(fdt);
+       set_working_fdt_addr(addr);
+
+       /* Test default reserved memory node presence */
+       ut_assertok(console_record_reset_enable());
+       ut_assertok(run_commandf("fdt rsvmem print"));
+       ut_assert_nextline("index\t\t   start\t\t    size");
+       ut_assert_nextline("------------------------------------------------");
+       ut_assert_nextline("    %x\t%016x\t%016x", 0, 0x42, 0x1701);
+       ut_assert_nextline("    %x\t%016x\t%016x", 1, 0x74656, 0x9);
+       ut_assertok(ut_check_console_end(uts));
+
+       /* Test add new reserved memory node */
+       ut_assertok(console_record_reset_enable());
+       ut_assertok(run_commandf("fdt rsvmem add 0x1234 0x5678"));
+       ut_assertok(run_commandf("fdt rsvmem print"));
+       ut_assert_nextline("index\t\t   start\t\t    size");
+       ut_assert_nextline("------------------------------------------------");
+       ut_assert_nextline("    %x\t%016x\t%016x", 0, 0x42, 0x1701);
+       ut_assert_nextline("    %x\t%016x\t%016x", 1, 0x74656, 0x9);
+       ut_assert_nextline("    %x\t%016x\t%016x", 2, 0x1234, 0x5678);
+       ut_assertok(ut_check_console_end(uts));
+
+       /* Test delete reserved memory node */
+       ut_assertok(console_record_reset_enable());
+       ut_assertok(run_commandf("fdt rsvmem delete 0"));
+       ut_assertok(run_commandf("fdt rsvmem print"));
+       ut_assert_nextline("index\t\t   start\t\t    size");
+       ut_assert_nextline("------------------------------------------------");
+       ut_assert_nextline("    %x\t%016x\t%016x", 0, 0x74656, 0x9);
+       ut_assert_nextline("    %x\t%016x\t%016x", 1, 0x1234, 0x5678);
+       ut_assertok(ut_check_console_end(uts));
+
+       /* Test re-add new reserved memory node */
+       ut_assertok(console_record_reset_enable());
+       ut_assertok(run_commandf("fdt rsvmem add 0x42 0x1701"));
+       ut_assertok(run_commandf("fdt rsvmem print"));
+       ut_assert_nextline("index\t\t   start\t\t    size");
+       ut_assert_nextline("------------------------------------------------");
+       ut_assert_nextline("    %x\t%016x\t%016x", 0, 0x74656, 0x9);
+       ut_assert_nextline("    %x\t%016x\t%016x", 1, 0x1234, 0x5678);
+       ut_assert_nextline("    %x\t%016x\t%016x", 2, 0x42, 0x1701);
+       ut_assertok(ut_check_console_end(uts));
+
+       /* Test delete nonexistent reserved memory node */
+       ut_assertok(console_record_reset_enable());
+       ut_asserteq(1, run_commandf("fdt rsvmem delete 10"));
+       ut_assert_nextline("libfdt fdt_del_mem_rsv(): FDT_ERR_NOTFOUND");
+       ut_assertok(ut_check_console_end(uts));
+
+       return 0;
+}
+FDT_TEST(fdt_test_rsvmem, UT_TESTF_CONSOLE_REC);
+
 int do_ut_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
 {
        struct unit_test *tests = UNIT_TEST_SUITE_START(fdt_test);