2018-12-14 20:14:29 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* (C) 2018 Theobroma Systems Design und Consulting GmbH
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <bootcount.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2018-12-14 20:14:29 +00:00
|
|
|
#include <asm/test.h>
|
|
|
|
#include <dm/test.h>
|
2020-07-19 16:15:37 +00:00
|
|
|
#include <test/test.h>
|
2018-12-14 20:14:29 +00:00
|
|
|
#include <test/ut.h>
|
|
|
|
|
|
|
|
static int dm_test_bootcount(struct unit_test_state *uts)
|
|
|
|
{
|
|
|
|
struct udevice *dev;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
ut_assertok(uclass_get_device(UCLASS_BOOTCOUNT, 0, &dev));
|
|
|
|
ut_assertok(dm_bootcount_set(dev, 0));
|
|
|
|
ut_assertok(dm_bootcount_get(dev, &val));
|
|
|
|
ut_assert(val == 0);
|
|
|
|
ut_assertok(dm_bootcount_set(dev, 0xab));
|
|
|
|
ut_assertok(dm_bootcount_get(dev, &val));
|
|
|
|
ut_assert(val == 0xab);
|
|
|
|
|
2020-05-28 09:48:55 +00:00
|
|
|
ut_assertok(uclass_get_device(UCLASS_BOOTCOUNT, 1, &dev));
|
|
|
|
ut_assertok(dm_bootcount_set(dev, 0));
|
|
|
|
ut_assertok(dm_bootcount_get(dev, &val));
|
|
|
|
ut_assert(val == 0);
|
|
|
|
ut_assertok(dm_bootcount_set(dev, 0xab));
|
|
|
|
ut_assertok(dm_bootcount_get(dev, &val));
|
|
|
|
ut_assert(val == 0xab);
|
|
|
|
|
2018-12-14 20:14:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-07-29 01:41:12 +00:00
|
|
|
DM_TEST(dm_test_bootcount, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
|
2018-12-14 20:14:29 +00:00
|
|
|
|