Blame view

test/dm/wdt.c 1.01 KB
0753bc2d3   maxims@google.com   dm: Simple Watchd...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  /*
   * Copyright 2017 Google, Inc
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  #include <common.h>
  #include <dm.h>
  #include <wdt.h>
  #include <asm/state.h>
  #include <asm/test.h>
  #include <dm/test.h>
  #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));
9eace7f59   Simon Glass   test: wdt: Add a ...
23
  	ut_assertnonnull(dev);
0753bc2d3   maxims@google.com   dm: Simple Watchd...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  	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;
  }
  DM_TEST(dm_test_wdt_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);