fdtdec: Support reserved-memory flags
[platform/kernel/u-boot.git] / test / bloblist.c
index 0bb9e2d..b48be38 100644 (file)
@@ -7,14 +7,14 @@
 #include <bloblist.h>
 #include <log.h>
 #include <mapmem.h>
-#include <asm/state.h>
+#include <asm/global_data.h>
 #include <test/suites.h>
 #include <test/test.h>
 #include <test/ut.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
-/* Declare a new compression test */
+/* Declare a new bloblist test */
 #define BLOBLIST_TEST(_name, _flags) \
                UNIT_TEST(_name, _flags, bloblist_test)
 
@@ -33,6 +33,9 @@ enum {
        ERASE_BYTE              = '\xff',
 };
 
+static const char test1_str[] = "the eyes are open";
+static const char test2_str[] = "the mouth moves";
+
 static struct bloblist_hdr *clear_bloblist(void)
 {
        struct bloblist_hdr *hdr;
@@ -240,7 +243,6 @@ BLOBLIST_TEST(bloblist_test_checksum, 0);
 /* Test the 'bloblist info' command */
 static int bloblist_test_cmd_info(struct unit_test_state *uts)
 {
-       struct sandbox_state *state = state_get_current();
        struct bloblist_hdr *hdr;
        char *data, *data2;
 
@@ -250,8 +252,7 @@ static int bloblist_test_cmd_info(struct unit_test_state *uts)
        data2 = bloblist_ensure(TEST_TAG2, TEST_SIZE2);
 
        console_record_reset_enable();
-       if (!state->show_test_output)
-               gd->flags |= GD_FLG_SILENT;
+       ut_silence_console(uts);
        console_record_reset();
        run_command("bloblist info", 0);
        ut_assert_nextline("base:     %lx", (ulong)map_to_sysmem(hdr));
@@ -259,7 +260,7 @@ static int bloblist_test_cmd_info(struct unit_test_state *uts)
        ut_assert_nextline("alloced:  70     112 Bytes");
        ut_assert_nextline("free:     390    912 Bytes");
        ut_assert_console_end();
-       gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD);
+       ut_unsilence_console(uts);
 
        return 0;
 }
@@ -268,7 +269,6 @@ BLOBLIST_TEST(bloblist_test_cmd_info, 0);
 /* Test the 'bloblist list' command */
 static int bloblist_test_cmd_list(struct unit_test_state *uts)
 {
-       struct sandbox_state *state = state_get_current();
        struct bloblist_hdr *hdr;
        char *data, *data2;
 
@@ -278,8 +278,7 @@ static int bloblist_test_cmd_list(struct unit_test_state *uts)
        data2 = bloblist_ensure(TEST_TAG2, TEST_SIZE2);
 
        console_record_reset_enable();
-       if (!state->show_test_output)
-               gd->flags |= GD_FLG_SILENT;
+       ut_silence_console(uts);
        console_record_reset();
        run_command("bloblist list", 0);
        ut_assert_nextline("Address       Size  Tag Name");
@@ -288,7 +287,7 @@ static int bloblist_test_cmd_list(struct unit_test_state *uts)
        ut_assert_nextline("%08lx  %8x    2 SPL hand-off",
                           (ulong)map_to_sysmem(data2), TEST_SIZE2);
        ut_assert_console_end();
-       gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD);
+       ut_unsilence_console(uts);
 
        return 0;
 }
@@ -352,12 +351,259 @@ static int bloblist_test_align(struct unit_test_state *uts)
 }
 BLOBLIST_TEST(bloblist_test_align, 0);
 
+/* Test relocation of a bloblist */
+static int bloblist_test_reloc(struct unit_test_state *uts)
+{
+       const uint large_size = TEST_BLOBLIST_SIZE;
+       const uint small_size = 0x20;
+       void *old_ptr, *new_ptr;
+       void *blob1, *blob2;
+       ulong new_addr;
+       ulong new_size;
+
+       ut_assertok(bloblist_new(TEST_ADDR, TEST_BLOBLIST_SIZE, 0));
+       old_ptr = map_sysmem(TEST_ADDR, TEST_BLOBLIST_SIZE);
+
+       /* Add one blob and then one that won't fit */
+       blob1 = bloblist_add(TEST_TAG, small_size, 0);
+       ut_assertnonnull(blob1);
+       blob2 = bloblist_add(TEST_TAG2, large_size, 0);
+       ut_assertnull(blob2);
+
+       /* Relocate the bloblist somewhere else, a bit larger */
+       new_addr = TEST_ADDR + TEST_BLOBLIST_SIZE;
+       new_size = TEST_BLOBLIST_SIZE + 0x100;
+       new_ptr = map_sysmem(new_addr, TEST_BLOBLIST_SIZE);
+       bloblist_reloc(new_ptr, new_size, old_ptr, TEST_BLOBLIST_SIZE);
+       gd->bloblist = new_ptr;
+
+       /* Check the old blob is there and that we can now add the bigger one */
+       ut_assertnonnull(bloblist_find(TEST_TAG, small_size));
+       ut_assertnull(bloblist_find(TEST_TAG2, small_size));
+       blob2 = bloblist_add(TEST_TAG2, large_size, 0);
+       ut_assertnonnull(blob2);
+
+       return 0;
+}
+BLOBLIST_TEST(bloblist_test_reloc, 0);
+
+/* Test expansion of a blob */
+static int bloblist_test_grow(struct unit_test_state *uts)
+{
+       const uint small_size = 0x20;
+       void *blob1, *blob2, *blob1_new;
+       struct bloblist_hdr *hdr;
+       void *ptr;
+
+       ptr = map_sysmem(TEST_ADDR, TEST_BLOBLIST_SIZE);
+       hdr = ptr;
+       memset(hdr, ERASE_BYTE, TEST_BLOBLIST_SIZE);
+
+       /* Create two blobs */
+       ut_assertok(bloblist_new(TEST_ADDR, TEST_BLOBLIST_SIZE, 0));
+       blob1 = bloblist_add(TEST_TAG, small_size, 0);
+       ut_assertnonnull(blob1);
+       ut_assertok(check_zero(blob1, small_size));
+       strcpy(blob1, test1_str);
+
+       blob2 = bloblist_add(TEST_TAG2, small_size, 0);
+       ut_assertnonnull(blob2);
+       strcpy(blob2, test2_str);
+
+       ut_asserteq(sizeof(struct bloblist_hdr) +
+                   sizeof(struct bloblist_rec) * 2 + small_size * 2,
+                   hdr->alloced);
+
+       /* Resize the first one */
+       ut_assertok(bloblist_resize(TEST_TAG, small_size + 4));
+
+       /* The first one should not have moved, just got larger */
+       blob1_new = bloblist_find(TEST_TAG, small_size + 4);
+       ut_asserteq_ptr(blob1, blob1_new);
+
+       /* The new space should be zeroed */
+       ut_assertok(check_zero(blob1 + small_size, 4));
+
+       /* The second one should have moved */
+       blob2 = bloblist_find(TEST_TAG2, small_size);
+       ut_assertnonnull(blob2);
+       ut_asserteq_str(test2_str, blob2);
+
+       /* The header should have more bytes in use */
+       hdr = ptr;
+       ut_asserteq(sizeof(struct bloblist_hdr) +
+                   sizeof(struct bloblist_rec) * 2 + small_size * 2 +
+                   BLOBLIST_ALIGN,
+                   hdr->alloced);
+
+       return 0;
+}
+BLOBLIST_TEST(bloblist_test_grow, 0);
+
+/* Test shrinking of a blob */
+static int bloblist_test_shrink(struct unit_test_state *uts)
+{
+       const uint small_size = 0x20;
+       void *blob1, *blob2, *blob1_new;
+       struct bloblist_hdr *hdr;
+       int new_size;
+       void *ptr;
+
+       ptr = map_sysmem(TEST_ADDR, TEST_BLOBLIST_SIZE);
+
+       /* Create two blobs */
+       ut_assertok(bloblist_new(TEST_ADDR, TEST_BLOBLIST_SIZE, 0));
+       blob1 = bloblist_add(TEST_TAG, small_size, 0);
+       ut_assertnonnull(blob1);
+       strcpy(blob1, test1_str);
+
+       blob2 = bloblist_add(TEST_TAG2, small_size, 0);
+       ut_assertnonnull(blob2);
+       strcpy(blob2, test2_str);
+
+       hdr = ptr;
+       ut_asserteq(sizeof(struct bloblist_hdr) +
+                   sizeof(struct bloblist_rec) * 2 + small_size * 2,
+                   hdr->alloced);
+
+       /* Resize the first one */
+       new_size = small_size - BLOBLIST_ALIGN - 4;
+       ut_assertok(bloblist_resize(TEST_TAG, new_size));
+
+       /* The first one should not have moved, just got smaller */
+       blob1_new = bloblist_find(TEST_TAG, new_size);
+       ut_asserteq_ptr(blob1, blob1_new);
+
+       /* The second one should have moved */
+       blob2 = bloblist_find(TEST_TAG2, small_size);
+       ut_assertnonnull(blob2);
+       ut_asserteq_str(test2_str, blob2);
+
+       /* The header should have fewer bytes in use */
+       hdr = ptr;
+       ut_asserteq(sizeof(struct bloblist_hdr) +
+                   sizeof(struct bloblist_rec) * 2 + small_size * 2 -
+                   BLOBLIST_ALIGN,
+                   hdr->alloced);
+
+       return 0;
+}
+BLOBLIST_TEST(bloblist_test_shrink, 0);
+
+/* Test failing to adjust a blob size */
+static int bloblist_test_resize_fail(struct unit_test_state *uts)
+{
+       const uint small_size = 0x20;
+       struct bloblist_hdr *hdr;
+       void *blob1, *blob2;
+       int new_size;
+       void *ptr;
+
+       ptr = map_sysmem(TEST_ADDR, TEST_BLOBLIST_SIZE);
+
+       /* Create two blobs */
+       ut_assertok(bloblist_new(TEST_ADDR, TEST_BLOBLIST_SIZE, 0));
+       blob1 = bloblist_add(TEST_TAG, small_size, 0);
+       ut_assertnonnull(blob1);
+
+       blob2 = bloblist_add(TEST_TAG2, small_size, 0);
+       ut_assertnonnull(blob2);
+
+       hdr = ptr;
+       ut_asserteq(sizeof(struct bloblist_hdr) +
+                   sizeof(struct bloblist_rec) * 2 + small_size * 2,
+                   hdr->alloced);
+
+       /* Resize the first one, to check the boundary conditions */
+       ut_asserteq(-EINVAL, bloblist_resize(TEST_TAG, -1));
+
+       new_size = small_size + (hdr->size - hdr->alloced);
+       ut_asserteq(-ENOSPC, bloblist_resize(TEST_TAG, new_size + 1));
+       ut_assertok(bloblist_resize(TEST_TAG, new_size));
+
+       return 0;
+}
+BLOBLIST_TEST(bloblist_test_resize_fail, 0);
+
+/* Test expanding the last blob in a bloblist */
+static int bloblist_test_resize_last(struct unit_test_state *uts)
+{
+       const uint small_size = 0x20;
+       struct bloblist_hdr *hdr;
+       void *blob1, *blob2, *blob2_new;
+       int alloced_val;
+       void *ptr;
+
+       ptr = map_sysmem(TEST_ADDR, TEST_BLOBLIST_SIZE);
+       memset(ptr, ERASE_BYTE, TEST_BLOBLIST_SIZE);
+       hdr = ptr;
+
+       /* Create two blobs */
+       ut_assertok(bloblist_new(TEST_ADDR, TEST_BLOBLIST_SIZE, 0));
+       blob1 = bloblist_add(TEST_TAG, small_size, 0);
+       ut_assertnonnull(blob1);
+
+       blob2 = bloblist_add(TEST_TAG2, small_size, 0);
+       ut_assertnonnull(blob2);
+
+       /* Check the byte after the last blob */
+       alloced_val = sizeof(struct bloblist_hdr) +
+                   sizeof(struct bloblist_rec) * 2 + small_size * 2;
+       ut_asserteq(alloced_val, hdr->alloced);
+       ut_asserteq_ptr((void *)hdr + alloced_val, blob2 + small_size);
+       ut_asserteq((u8)ERASE_BYTE, *((u8 *)hdr + hdr->alloced));
+
+       /* Resize the second one, checking nothing changes */
+       ut_asserteq(0, bloblist_resize(TEST_TAG2, small_size + 4));
+
+       blob2_new = bloblist_find(TEST_TAG2, small_size + 4);
+       ut_asserteq_ptr(blob2, blob2_new);
+
+       /*
+        * the new blob should encompass the byte we checked now, so it should
+        * be zeroed. This zeroing should affect only the four new bytes added
+        * to the blob.
+        */
+       ut_asserteq(0, *((u8 *)hdr + alloced_val));
+       ut_asserteq((u8)ERASE_BYTE, *((u8 *)hdr + alloced_val + 4));
+
+       /* Check that the new top of the allocated blobs has not been touched */
+       alloced_val += BLOBLIST_ALIGN;
+       ut_asserteq(alloced_val, hdr->alloced);
+       ut_asserteq((u8)ERASE_BYTE, *((u8 *)hdr + hdr->alloced));
+
+       return 0;
+}
+BLOBLIST_TEST(bloblist_test_resize_last, 0);
+
+/* Check a completely full bloblist */
+static int bloblist_test_blob_maxsize(struct unit_test_state *uts)
+{
+       void *ptr;
+       int size;
+
+       /* At the start there should be no records */
+       clear_bloblist();
+       ut_assertok(bloblist_new(TEST_ADDR, TEST_BLOBLIST_SIZE, 0));
+
+       /* Add a blob that takes up all space */
+       size = TEST_BLOBLIST_SIZE - sizeof(struct bloblist_hdr) -
+               sizeof(struct bloblist_rec);
+       ptr = bloblist_add(TEST_TAG, size, 0);
+       ut_assertnonnull(ptr);
+
+       ptr = bloblist_add(TEST_TAG, size + 1, 0);
+       ut_assertnull(ptr);
+
+       return 0;
+}
+BLOBLIST_TEST(bloblist_test_blob_maxsize, 0);
+
 int do_ut_bloblist(struct cmd_tbl *cmdtp, int flag, int argc,
                   char *const argv[])
 {
-       struct unit_test *tests = ll_entry_start(struct unit_test,
-                                                bloblist_test);
-       const int n_ents = ll_entry_count(struct unit_test, bloblist_test);
+       struct unit_test *tests = UNIT_TEST_SUITE_START(bloblist_test);
+       const int n_ents = UNIT_TEST_SUITE_COUNT(bloblist_test);
 
        return cmd_ut_category("bloblist", "bloblist_test_",
                               tests, n_ents, argc, argv);