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