All firmware related code is moved into a firmware file. This is part of cleanup of venus_hfi. Change-Id: Ie915e47644dbbbe73c941488fff6db6e40160b90 Signed-off-by: Stanimir Varbanov <quic_c_svarba@quicinc.com>
17 行
381 B
C
17 行
381 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2022, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _MSM_VIDC_FIRMWARE_H_
|
|
#define _MSM_VIDC_FIRMWARE_H_
|
|
|
|
struct msm_vidc_core;
|
|
|
|
int fw_load(struct msm_vidc_core *core);
|
|
int fw_unload(struct msm_vidc_core *core);
|
|
int fw_suspend(struct msm_vidc_core *core);
|
|
int fw_resume(struct msm_vidc_core *core);
|
|
|
|
#endif
|