2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-04-17 19:00:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google, Inc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <wdt.h>
|
|
|
|
#include <asm/state.h>
|
|
|
|
#include <asm/test.h>
|
|
|
|
#include <dm/test.h>
|
2020-07-19 16:15:37 +00:00
|
|
|
#include <test/test.h>
|
2017-04-17 19:00:21 +00:00
|
|
|
#include <test/ut.h>
|
|
|
|
|
|
|
|
/* Test that watchdog driver functions are called */
|
|
|
|
static int dm_test_wdt_base(struct unit_test_state *uts)
|
|
|
|
{
|
|
|
|
struct sandbox_state *state = state_get_current();
|
|
|
|
struct udevice *dev;
|
|
|
|
const u64 timeout = 42;
|
|
|
|
|
|
|
|
ut_assertok(uclass_get_device(UCLASS_WDT, 0, &dev));
|
2017-06-07 16:28:43 +00:00
|
|
|
ut_assertnonnull(dev);
|
2017-04-17 19:00:21 +00:00
|
|
|
ut_asserteq(0, state->wdt.counter);
|
|
|
|
ut_asserteq(false, state->wdt.running);
|
|
|
|
|
|
|
|
ut_assertok(wdt_start(dev, timeout, 0));
|
|
|
|
ut_asserteq(timeout, state->wdt.counter);
|
|
|
|
ut_asserteq(true, state->wdt.running);
|
|
|
|
|
|
|
|
uint reset_count = state->wdt.reset_count;
|
|
|
|
ut_assertok(wdt_reset(dev));
|
|
|
|
ut_asserteq(reset_count + 1, state->wdt.reset_count);
|
|
|
|
ut_asserteq(true, state->wdt.running);
|
|
|
|
|
|
|
|
ut_assertok(wdt_stop(dev));
|
|
|
|
ut_asserteq(false, state->wdt.running);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-07-29 01:41:12 +00:00
|
|
|
DM_TEST(dm_test_wdt_base, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
|