Stephen Warren | 4581b71 | 2016-06-17 09:43:59 -0600 | [diff] [blame] | 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); |
Neil Armstrong | 91f5f8b | 2018-04-03 11:40:51 +0200 | [diff] [blame^] | 17 | int sandbox_reset_test_get_bulk(struct udevice *dev); |
Stephen Warren | 4581b71 | 2016-06-17 09:43:59 -0600 | [diff] [blame] | 18 | int sandbox_reset_test_assert(struct udevice *dev); |
Neil Armstrong | 91f5f8b | 2018-04-03 11:40:51 +0200 | [diff] [blame^] | 19 | int sandbox_reset_test_assert_bulk(struct udevice *dev); |
Stephen Warren | 4581b71 | 2016-06-17 09:43:59 -0600 | [diff] [blame] | 20 | int sandbox_reset_test_deassert(struct udevice *dev); |
Neil Armstrong | 91f5f8b | 2018-04-03 11:40:51 +0200 | [diff] [blame^] | 21 | int sandbox_reset_test_deassert_bulk(struct udevice *dev); |
Stephen Warren | 4581b71 | 2016-06-17 09:43:59 -0600 | [diff] [blame] | 22 | int sandbox_reset_test_free(struct udevice *dev); |
Neil Armstrong | 91f5f8b | 2018-04-03 11:40:51 +0200 | [diff] [blame^] | 23 | int sandbox_reset_test_release_bulk(struct udevice *dev); |
Stephen Warren | 4581b71 | 2016-06-17 09:43:59 -0600 | [diff] [blame] | 24 | |
| 25 | #endif |