coreboot-kgpe-d16/tests/commonlib/bsd/helpers-test.c
Yu-Ping Wu 941db0e55c helpers: Add GENMASK macro
The GENMASK is defined in multiple files (with various names such as
MASKBIT), which sets certain consecutive bits to 1 and leaves the others
to 0. To avoid duplicate macros, add GENMASK macro to helpers.h.

GENMASK(high, low) sets bits from `high` to `low` (inclusive) to 1. For
example, GENMASK(39, 21) gives us the 64-bit vector 0x000000ffffe00000.

Remove duplicate macro definitions. Also utilize GENMASK for _BF_MASK in
mmio.h.

BUG=none
TEST=make tests/commonlib/bsd/helpers-test
TEST=emerge-cherry coreboot
BRANCH=none

Change-Id: If2e7c4827d8a7d27688534593b556a72f16f0c2b
Signed-off-by: Yu-Ping Wu <yupingso@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56543
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
2021-08-02 15:01:54 +00:00

55 lines
1.2 KiB
C

/* SPDX-License-Identifier: GPL-2.0-only */
#include <commonlib/bsd/helpers.h>
#include <tests/test.h>
static void func(void)
{
function_called();
}
static void test_genmask(void **state)
{
assert_int_equal(GENMASK(4, 4), 0x10);
assert_int_equal(GENMASK(4, 3), 0x18);
assert_int_equal(GENMASK(4, 0), 0x1f);
/* Edge cases */
assert_int_equal(GENMASK(0, 0), 1);
assert_int_equal(GENMASK(31, 31), 0x80000000);
assert_int_equal(GENMASK(31, 0), 0xffffffff);
assert_int_equal(GENMASK(63, 63), 0x8000000000000000);
assert_int_equal(GENMASK(63, 0), 0xffffffffffffffff);
}
static void test_retry(void **state)
{
int count;
/* 2-argument form */
count = 0;
assert_true(retry(3, ++count == 1));
count = 0;
assert_true(retry(3, ++count == 3));
count = 0;
assert_false(retry(3, ++count == 4));
/* 3-argument form */
expect_function_calls(func, 9);
assert_null(retry(10, NULL, func()));
assert_int_equal(retry(10, 999, func()), 999);
count = 0;
expect_function_calls(func, 3);
assert_true(retry(10, ++count == 4, func()));
}
int main(void)
{
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_genmask),
cmocka_unit_test(test_retry),
};
return cmocka_run_group_tests(tests, NULL, NULL);
}