Blame view

drivers/remoteproc/qcom_wcnss.h 504 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
aed361adc   Bjorn Andersson   remoteproc: qcom:...
2
3
4
5
6
  #ifndef __QCOM_WNCSS_H__
  #define __QCOM_WNCSS_H__
  
  struct qcom_iris;
  struct qcom_wcnss;
6de1a507c   Bjorn Andersson   remoteproc: qcom_...
7
  extern struct platform_driver qcom_iris_driver;
aed361adc   Bjorn Andersson   remoteproc: qcom:...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  struct wcnss_vreg_info {
  	const char * const name;
  	int min_voltage;
  	int max_voltage;
  
  	int load_uA;
  
  	bool super_turbo;
  };
  
  int qcom_iris_enable(struct qcom_iris *iris);
  void qcom_iris_disable(struct qcom_iris *iris);
  
  void qcom_wcnss_assign_iris(struct qcom_wcnss *wcnss, struct qcom_iris *iris, bool use_48mhz_xo);
  
  #endif