msm-qti-pp-config.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * Copyright (c) 2012-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. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #ifndef _MSM_QTI_PP_H_
  13. #define _MSM_QTI_PP_H_
  14. #include <sound/soc.h>
  15. #define DSP_BIT_WIDTH_MIXER_CTL "ASM Bit Width"
  16. #ifdef CONFIG_QTI_PP
  17. int msm_adsp_inform_mixer_ctl(struct snd_soc_pcm_runtime *rtd,
  18. uint32_t *payload);
  19. int msm_adsp_init_mixer_ctl_pp_event_queue(struct snd_soc_pcm_runtime *rtd);
  20. int msm_adsp_clean_mixer_ctl_pp_event_queue(struct snd_soc_pcm_runtime *rtd);
  21. int msm_adsp_stream_cmd_info(struct snd_kcontrol *kcontrol,
  22. struct snd_ctl_elem_info *uinfo);
  23. int msm_adsp_stream_callback_get(struct snd_kcontrol *kcontrol,
  24. struct snd_ctl_elem_value *ucontrol);
  25. int msm_adsp_stream_callback_info(struct snd_kcontrol *kcontrol,
  26. struct snd_ctl_elem_info *uinfo);
  27. void msm_qti_pp_send_eq_values(int fedai_id);
  28. int msm_qti_pp_send_stereo_to_custom_stereo_cmd(int port_id, int copp_idx,
  29. unsigned int session_id,
  30. uint16_t op_FL_ip_FL_weight,
  31. uint16_t op_FL_ip_FR_weight,
  32. uint16_t op_FR_ip_FL_weight,
  33. uint16_t op_FR_ip_FR_weight);
  34. void msm_qti_pp_add_controls(struct snd_soc_platform *platform);
  35. int msm_qti_pp_send_chmix_cfg_cmd(int port_id, int copp_idx,
  36. unsigned int session_id, int ip_channel_count,
  37. int out_channel_cnt, int *ch_wght_coeff,
  38. int session_type, int stream_type);
  39. #else /* CONFIG_QTI_PP */
  40. static inline int msm_adsp_inform_mixer_ctl(struct snd_soc_pcm_runtime *rtd,
  41. uint32_t *payload)
  42. {
  43. return 0;
  44. }
  45. static inline int msm_adsp_init_mixer_ctl_pp_event_queue(
  46. struct snd_soc_pcm_runtime *rtd)
  47. {
  48. return 0;
  49. }
  50. static inline int msm_adsp_clean_mixer_ctl_pp_event_queue(
  51. struct snd_soc_pcm_runtime *rtd)
  52. {
  53. return 0;
  54. }
  55. static inline int msm_adsp_stream_cmd_info(struct snd_kcontrol *kcontrol,
  56. struct snd_ctl_elem_info *uinfo)
  57. {
  58. return 0;
  59. }
  60. static inline int msm_adsp_stream_callback_get(struct snd_kcontrol *kcontrol,
  61. struct snd_ctl_elem_value *ucontrol)
  62. {
  63. return 0;
  64. }
  65. static inline int msm_adsp_stream_callback_info(struct snd_kcontrol *kcontrol,
  66. struct snd_ctl_elem_info *uinfo)
  67. {
  68. return 0;
  69. }
  70. int msm_qti_pp_send_chmix_cfg_cmd(int port_id, int copp_idx,
  71. unsigned int session_id, int ip_channel_count,
  72. int out_channel_cnt, int *ch_wght_coeff,
  73. int session_type, int stream_type)
  74. {
  75. return 0;
  76. }
  77. #define msm_qti_pp_send_eq_values(fedai_id) do {} while (0)
  78. #define msm_qti_pp_send_stereo_to_custom_stereo_cmd(port_id, copp_idx, \
  79. session_id, op_FL_ip_FL_weight, op_FL_ip_FR_weight, \
  80. op_FR_ip_FL_weight, op_FR_ip_FR_weight) (0)
  81. #define msm_qti_pp_add_controls(platform) do {} while (0)
  82. #endif /* CONFIG_QTI_PP */
  83. #if defined(CONFIG_QTI_PP) && defined(CONFIG_QTI_PP_AUDIOSPHERE)
  84. int msm_qti_pp_asphere_init(int port_id, int copp_idx);
  85. void msm_qti_pp_asphere_deinit(int port_id);
  86. #else
  87. #define msm_qti_pp_asphere_init(port_id, copp_idx) (0)
  88. #define msm_qti_pp_asphere_deinit(port_id) do {} while (0)
  89. #endif
  90. #endif /* _MSM_QTI_PP_H_ */