power-domain.h 499 B

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