]> git.sur5r.net Git - u-boot/blob - arch/sandbox/include/asm/power-domain.h
cad388549eefbbc586d9d41289243a7076e807be
[u-boot] / arch / sandbox / include / asm / power-domain.h
1 /*
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
12 struct udevice;
13
14 int sandbox_power_domain_query(struct udevice *dev, unsigned long id);
15
16 int sandbox_power_domain_test_get(struct udevice *dev);
17 int sandbox_power_domain_test_on(struct udevice *dev);
18 int sandbox_power_domain_test_off(struct udevice *dev);
19 int sandbox_power_domain_test_free(struct udevice *dev);
20
21 #endif