q6_init.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. void avtimer_exit(void);
  27. void audio_slimslave_exit(void);
  28. void msm_audio_ion_exit(void);
  29. void rtac_exit(void);
  30. void core_exit(void);
  31. void audio_cal_exit(void);
  32. void voice_exit(void);
  33. void q6lsm_exit(void);
  34. void q6asm_exit(void);
  35. void afe_exit(void);
  36. void adm_exit(void);
  37. void adsp_err_exit(void);
  38. #endif