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