xref: /linux/drivers/remoteproc/qcom_wcnss.h (revision 2da68a77)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __QCOM_WNCSS_H__
3 #define __QCOM_WNCSS_H__
4 
5 struct qcom_iris;
6 struct qcom_wcnss;
7 
8 extern struct platform_driver qcom_iris_driver;
9 
10 struct wcnss_vreg_info {
11 	const char * const name;
12 	int min_voltage;
13 	int max_voltage;
14 
15 	int load_uA;
16 
17 	bool super_turbo;
18 };
19 
20 struct qcom_iris *qcom_iris_probe(struct device *parent, bool *use_48mhz_xo);
21 void qcom_iris_remove(struct qcom_iris *iris);
22 int qcom_iris_enable(struct qcom_iris *iris);
23 void qcom_iris_disable(struct qcom_iris *iris);
24 
25 #endif
26