q6_init.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. Copyright (c) 2017, The Linux Foundation. All rights reserved.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License version 2 and
  5. only version 2 as published by the Free Software Foundation.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. *
  11. */
  12. #ifndef __Q6_INIT_H__
  13. #define __Q6_INIT_H__
  14. int adsp_err_init(void);
  15. int adm_init(void);
  16. int afe_init(void);
  17. int q6asm_init(void);
  18. int q6lsm_init(void);
  19. int voice_init(void);
  20. int audio_cal_init(void);
  21. int core_init(void);
  22. int rtac_init(void);
  23. int msm_audio_ion_init(void);
  24. int audio_slimslave_init(void);
  25. int avtimer_init(void);
  26. #ifdef CONFIG_MSM_MDF
  27. int msm_mdf_init(void);
  28. void msm_mdf_exit(void);
  29. #else
  30. static inline int msm_mdf_init(void)
  31. {
  32. return 0;
  33. }
  34. static inline void msm_mdf_exit(void)
  35. {
  36. return;
  37. }
  38. #endif
  39. void avtimer_exit(void);
  40. void audio_slimslave_exit(void);
  41. void msm_audio_ion_exit(void);
  42. void rtac_exit(void);
  43. void core_exit(void);
  44. void audio_cal_exit(void);
  45. void voice_exit(void);
  46. void q6lsm_exit(void);
  47. void q6asm_exit(void);
  48. void afe_exit(void);
  49. void adm_exit(void);
  50. void adsp_err_exit(void);
  51. #endif