reset.h 459 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2016, NVIDIA CORPORATION.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0
  5. */
  6. #ifndef __SANDBOX_RESET_H
  7. #define __SANDBOX_RESET_H
  8. #include <common.h>
  9. struct udevice;
  10. int sandbox_reset_query(struct udevice *dev, unsigned long id);
  11. int sandbox_reset_test_get(struct udevice *dev);
  12. int sandbox_reset_test_assert(struct udevice *dev);
  13. int sandbox_reset_test_deassert(struct udevice *dev);
  14. int sandbox_reset_test_free(struct udevice *dev);
  15. #endif