2 * Copyright (c) 2016, NVIDIA CORPORATION.
4 * SPDX-License-Identifier: GPL-2.0
10 #include <asm/reset.h>
13 /* This must match the specifier for mbox-names="test" in the DT node */
14 #define TEST_RESET_ID 2
16 static int dm_test_reset(struct unit_test_state *uts)
18 struct udevice *dev_reset;
19 struct udevice *dev_test;
21 ut_assertok(uclass_get_device_by_name(UCLASS_RESET, "reset-ctl",
23 ut_asserteq(0, sandbox_reset_query(dev_reset, TEST_RESET_ID));
25 ut_assertok(uclass_get_device_by_name(UCLASS_MISC, "reset-ctl-test",
27 ut_assertok(sandbox_reset_test_get(dev_test));
29 ut_assertok(sandbox_reset_test_assert(dev_test));
30 ut_asserteq(1, sandbox_reset_query(dev_reset, TEST_RESET_ID));
32 ut_assertok(sandbox_reset_test_deassert(dev_test));
33 ut_asserteq(0, sandbox_reset_query(dev_reset, TEST_RESET_ID));
35 ut_assertok(sandbox_reset_test_free(dev_test));
39 DM_TEST(dm_test_reset, DM_TESTF_SCAN_FDT);