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 struct wcnss_vreg_info {
9 	const char * const name;
10 	int min_voltage;
11 	int max_voltage;
12 
13 	int load_uA;
14 
15 	bool super_turbo;
16 };
17 
18 struct qcom_iris *qcom_iris_probe(struct device *parent, bool *use_48mhz_xo);
19 void qcom_iris_remove(struct qcom_iris *iris);
20 int qcom_iris_enable(struct qcom_iris *iris);
21 void qcom_iris_disable(struct qcom_iris *iris);
22 
23 #endif
24