1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef __QCOM_Q6V5_H__
4 #define __QCOM_Q6V5_H__
6 #include <linux/kernel.h>
7 #include <linux/completion.h>
8 #include <linux/soc/qcom/qcom_aoss.h>
12 struct qcom_smem_state
;
19 struct qcom_smem_state
*state
;
22 struct icc_path
*path
;
34 struct completion start_done
;
35 struct completion stop_done
;
41 const char *load_state
;
42 void (*handover
)(struct qcom_q6v5
*q6v5
);
45 int qcom_q6v5_init(struct qcom_q6v5
*q6v5
, struct platform_device
*pdev
,
46 struct rproc
*rproc
, int crash_reason
, const char *load_state
,
47 void (*handover
)(struct qcom_q6v5
*q6v5
));
48 void qcom_q6v5_deinit(struct qcom_q6v5
*q6v5
);
50 int qcom_q6v5_prepare(struct qcom_q6v5
*q6v5
);
51 int qcom_q6v5_unprepare(struct qcom_q6v5
*q6v5
);
52 int qcom_q6v5_request_stop(struct qcom_q6v5
*q6v5
, struct qcom_sysmon
*sysmon
);
53 int qcom_q6v5_wait_for_start(struct qcom_q6v5
*q6v5
, int timeout
);
54 unsigned long qcom_q6v5_panic(struct qcom_q6v5
*q6v5
);