msm-qti-pp-config.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. #else /* CONFIG_QTI_PP */
  36. static inline int msm_adsp_inform_mixer_ctl(struct snd_soc_pcm_runtime *rtd,
  37. uint32_t *payload)
  38. {
  39. return 0;
  40. }
  41. static inline int msm_adsp_init_mixer_ctl_pp_event_queue(
  42. struct snd_soc_pcm_runtime *rtd)
  43. {
  44. return 0;
  45. }
  46. static inline int msm_adsp_clean_mixer_ctl_pp_event_queue(
  47. struct snd_soc_pcm_runtime *rtd)
  48. {
  49. return 0;
  50. }
  51. static inline int msm_adsp_stream_cmd_info(struct snd_kcontrol *kcontrol,
  52. struct snd_ctl_elem_info *uinfo)
  53. {
  54. return 0;
  55. }
  56. static inline int msm_adsp_stream_callback_get(struct snd_kcontrol *kcontrol,
  57. struct snd_ctl_elem_value *ucontrol)
  58. {
  59. return 0;
  60. }
  61. static inline int msm_adsp_stream_callback_info(struct snd_kcontrol *kcontrol,
  62. struct snd_ctl_elem_info *uinfo)
  63. {
  64. return 0;
  65. }
  66. #define msm_qti_pp_send_eq_values(fedai_id) do {} while (0)
  67. #define msm_qti_pp_send_stereo_to_custom_stereo_cmd(port_id, copp_idx, \
  68. session_id, op_FL_ip_FL_weight, op_FL_ip_FR_weight, \
  69. op_FR_ip_FL_weight, op_FR_ip_FR_weight) (0)
  70. #define msm_qti_pp_add_controls(platform) do {} while (0)
  71. #endif /* CONFIG_QTI_PP */
  72. #if defined(CONFIG_QTI_PP) && defined(CONFIG_QTI_PP_AUDIOSPHERE)
  73. int msm_qti_pp_asphere_init(int port_id, int copp_idx);
  74. void msm_qti_pp_asphere_deinit(int port_id);
  75. #else
  76. #define msm_qti_pp_asphere_init(port_id, copp_idx) (0)
  77. #define msm_qti_pp_asphere_deinit(port_id) do {} while (0)
  78. #endif
  79. #endif /* _MSM_QTI_PP_H_ */