qcom_wcnss.h 465 B

12345678910111213141516171819202122232425
  1. #ifndef __QCOM_WNCSS_H__
  2. #define __QCOM_WNCSS_H__
  3. struct qcom_iris;
  4. struct qcom_wcnss;
  5. extern struct platform_driver qcom_iris_driver;
  6. struct wcnss_vreg_info {
  7. const char * const name;
  8. int min_voltage;
  9. int max_voltage;
  10. int load_uA;
  11. bool super_turbo;
  12. };
  13. int qcom_iris_enable(struct qcom_iris *iris);
  14. void qcom_iris_disable(struct qcom_iris *iris);
  15. void qcom_wcnss_assign_iris(struct qcom_wcnss *wcnss, struct qcom_iris *iris, bool use_48mhz_xo);
  16. #endif