xref: /openbmc/u-boot/arch/sandbox/include/asm/reset.h (revision 77b93e5e)
1 /*
2  * Copyright (c) 2016, NVIDIA CORPORATION.
3  *
4  * SPDX-License-Identifier: GPL-2.0
5  */
6 
7 #ifndef __SANDBOX_RESET_H
8 #define __SANDBOX_RESET_H
9 
10 #include <common.h>
11 
12 struct udevice;
13 
14 int sandbox_reset_query(struct udevice *dev, unsigned long id);
15 
16 int sandbox_reset_test_get(struct udevice *dev);
17 int sandbox_reset_test_assert(struct udevice *dev);
18 int sandbox_reset_test_deassert(struct udevice *dev);
19 int sandbox_reset_test_free(struct udevice *dev);
20 
21 #endif
22