blob: 7146aa5ab2703b536a9a3209e84e47bf011f8e91 [file] [log] [blame]
Stephen Warren4581b712016-06-17 09:43:59 -06001/*
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
12struct udevice;
13
14int sandbox_reset_query(struct udevice *dev, unsigned long id);
15
16int sandbox_reset_test_get(struct udevice *dev);
17int sandbox_reset_test_assert(struct udevice *dev);
18int sandbox_reset_test_deassert(struct udevice *dev);
19int sandbox_reset_test_free(struct udevice *dev);
20
21#endif