97fb5e8d9b
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 and only version 2 as published by the free software foundation this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 294 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190529141900.825281744@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
27 lines
650 B
C
27 lines
650 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2017 Linaro Ltd.
|
|
*/
|
|
#ifndef __VENUS_FIRMWARE_H__
|
|
#define __VENUS_FIRMWARE_H__
|
|
|
|
struct device;
|
|
|
|
int venus_firmware_init(struct venus_core *core);
|
|
void venus_firmware_deinit(struct venus_core *core);
|
|
int venus_boot(struct venus_core *core);
|
|
int venus_shutdown(struct venus_core *core);
|
|
int venus_set_hw_state(struct venus_core *core, bool suspend);
|
|
|
|
static inline int venus_set_hw_state_suspend(struct venus_core *core)
|
|
{
|
|
return venus_set_hw_state(core, false);
|
|
}
|
|
|
|
static inline int venus_set_hw_state_resume(struct venus_core *core)
|
|
{
|
|
return venus_set_hw_state(core, true);
|
|
}
|
|
|
|
#endif
|