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
9struct udevice;
10
11int sandbox_power_domain_query(struct udevice *dev, unsigned long id);
12
13int sandbox_power_domain_test_get(struct udevice *dev);
14int sandbox_power_domain_test_on(struct udevice *dev);
15int sandbox_power_domain_test_off(struct udevice *dev);
16int sandbox_power_domain_test_free(struct udevice *dev);
17
18#endif
19