]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/sandbox/include/asm/power-domain.h
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / sandbox / include / asm / power-domain.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0 */
61f5ddcb
SW
2/*
3 * Copyright (c) 2016, NVIDIA CORPORATION.
61f5ddcb
SW
4 */
5
6#ifndef __SANDBOX_POWER_DOMAIN_H
7#define __SANDBOX_POWER_DOMAIN_H
8
9#include <common.h>
10
11struct udevice;
12
13int sandbox_power_domain_query(struct udevice *dev, unsigned long id);
14
15int sandbox_power_domain_test_get(struct udevice *dev);
16int sandbox_power_domain_test_on(struct udevice *dev);
17int sandbox_power_domain_test_off(struct udevice *dev);
18int sandbox_power_domain_test_free(struct udevice *dev);
19
20#endif