2019-05-29 07:17:58 -07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2017-06-15 13:31:45 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2017 Linaro Ltd.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __VENUS_FIRMWARE_H__
|
|
|
|
|
#define __VENUS_FIRMWARE_H__
|
|
|
|
|
|
|
|
|
|
struct device;
|
|
|
|
|
|
2018-10-17 09:18:21 -04:00
|
|
|
int venus_firmware_init(struct venus_core *core);
|
|
|
|
|
void venus_firmware_deinit(struct venus_core *core);
|
2018-10-17 09:18:20 -04:00
|
|
|
int venus_boot(struct venus_core *core);
|
2018-10-17 09:18:22 -04:00
|
|
|
int venus_shutdown(struct venus_core *core);
|
2018-10-17 09:18:19 -04:00
|
|
|
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);
|
|
|
|
|
}
|
2017-06-15 13:31:45 -03:00
|
|
|
|
|
|
|
|
#endif
|