q6_init.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __Q6_INIT_H__
  6. #define __Q6_INIT_H__
  7. int adsp_err_init(void);
  8. int adm_init(void);
  9. int afe_init(void);
  10. int q6asm_init(void);
  11. int q6lsm_init(void);
  12. int voice_init(void);
  13. int audio_cal_init(void);
  14. int core_init(void);
  15. int rtac_init(void);
  16. int msm_audio_ion_init(void);
  17. int avtimer_init(void);
  18. #ifdef CONFIG_MSM_MDF
  19. int msm_mdf_init(void);
  20. void msm_mdf_exit(void);
  21. #else
  22. static inline int msm_mdf_init(void)
  23. {
  24. return 0;
  25. }
  26. static inline void msm_mdf_exit(void)
  27. {
  28. return;
  29. }
  30. #endif
  31. void avtimer_exit(void);
  32. void msm_audio_ion_exit(void);
  33. void rtac_exit(void);
  34. void core_exit(void);
  35. void audio_cal_exit(void);
  36. void voice_exit(void);
  37. void q6lsm_exit(void);
  38. void q6asm_exit(void);
  39. void afe_exit(void);
  40. void adm_exit(void);
  41. void adsp_err_exit(void);
  42. #if IS_ENABLED(CONFIG_WCD9XXX_CODEC_CORE)
  43. int audio_slimslave_init(void);
  44. void audio_slimslave_exit(void);
  45. #else
  46. static inline int audio_slimslave_init(void)
  47. {
  48. return 0;
  49. };
  50. static inline void audio_slimslave_exit(void)
  51. {
  52. };
  53. #endif
  54. #endif