platform_init.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 __PLATFORM_INIT_H__
  13. #define __PLATFORM_INIT_H__
  14. int msm_compress_dsp_init(void);
  15. int msm_fe_dai_init(void);
  16. int msm_dai_q6_hdmi_init(void);
  17. int msm_dai_q6_init(void);
  18. int msm_dai_slim_init(void);
  19. int msm_dai_stub_init(void);
  20. int msm_lsm_client_init(void);
  21. int msm_pcm_afe_init(void);
  22. int msm_pcm_dtmf_init(void);
  23. int msm_pcm_hostless_init(void);
  24. int msm_voice_host_init(void);
  25. int msm_pcm_loopback_init(void);
  26. int msm_pcm_noirq_init(void);
  27. int msm_pcm_dsp_init(void);
  28. int msm_soc_routing_platform_init(void);
  29. int msm_pcm_voice_init(void);
  30. int msm_pcm_voip_init(void);
  31. int msm_transcode_loopback_init(void);
  32. int msm_cpe_lsm_init(void);
  33. void msm_cpe_lsm_exit(void);
  34. void msm_transcode_loopback_exit(void);
  35. void msm_pcm_voip_exit(void);
  36. void msm_pcm_voice_exit(void);
  37. void msm_soc_routing_platform_exit(void);
  38. void msm_pcm_dsp_exit(void);
  39. void msm_pcm_noirq_exit(void);
  40. void msm_pcm_loopback_exit(void);
  41. void msm_voice_host_exit(void);
  42. void msm_pcm_hostless_exit(void);
  43. void msm_pcm_dtmf_exit(void);
  44. void msm_pcm_afe_exit(void);
  45. void msm_lsm_client_exit(void);
  46. void msm_dai_stub_exit(void);
  47. void msm_dai_slim_exit(void);
  48. void msm_dai_q6_exit(void);
  49. void msm_dai_q6_hdmi_exit(void);
  50. void msm_fe_dai_exit(void);
  51. void msm_compress_dsp_exit(void);
  52. #endif