blob: a05b183b8bc1e00fcb7f9bb240eeb8302c83ef99 [file] [log] [blame]
Benjamin Gaignarda550b542018-11-27 13:49:50 +01001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
4 */
5
Benjamin Gaignarda550b542018-11-27 13:49:50 +01006#include <dm.h>
7#include <hwspinlock.h>
8#include <asm/state.h>
9#include <asm/test.h>
10#include <dm/test.h>
Simon Glass75c4d412020-07-19 10:15:37 -060011#include <test/test.h>
Benjamin Gaignarda550b542018-11-27 13:49:50 +010012#include <test/ut.h>
13
14/* Test that hwspinlock driver functions are called */
15static int dm_test_hwspinlock_base(struct unit_test_state *uts)
16{
17 struct sandbox_state *state = state_get_current();
18 struct hwspinlock hws;
19
20 ut_assertok(uclass_get_device(UCLASS_HWSPINLOCK, 0, &hws.dev));
21 ut_assertnonnull(hws.dev);
22 ut_asserteq(false, state->hwspinlock);
23
24 hws.id = 0;
25 ut_assertok(hwspinlock_lock_timeout(&hws, 1));
26 ut_asserteq(true, state->hwspinlock);
27
28 ut_assertok(hwspinlock_unlock(&hws));
29 ut_asserteq(false, state->hwspinlock);
30
31 ut_assertok(hwspinlock_lock_timeout(&hws, 1));
32 ut_assertok(!hwspinlock_lock_timeout(&hws, 1));
33
34 ut_assertok(hwspinlock_unlock(&hws));
35 ut_assertok(!hwspinlock_unlock(&hws));
36
37 return 0;
38}
39
Simon Glass974dccd2020-07-28 19:41:12 -060040DM_TEST(dm_test_hwspinlock_base, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);