msm-dolby-dap-config.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright (c) 2013-2014, 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_DOLBY_DAP_CONFIG_H_
  13. #define _MSM_DOLBY_DAP_CONFIG_H_
  14. #include <sound/soc.h>
  15. #include "msm-dolby-common.h"
  16. #ifdef CONFIG_DOLBY_DAP
  17. /* DOLBY DOLBY GUIDS */
  18. #define DOLBY_ADM_COPP_TOPOLOGY_ID 0x0001033B
  19. #define NUM_DOLBY_ENDP_DEVICE 23
  20. #define DOLBY_NUM_ENDP_DEPENDENT_PARAMS 3
  21. #define DOLBY_ENDDEP_PARAM_DVLO_OFFSET 0
  22. #define DOLBY_ENDDEP_PARAM_DVLO_LENGTH 1
  23. #define DOLBY_ENDDEP_PARAM_DVLI_OFFSET (DOLBY_ENDDEP_PARAM_DVLO_OFFSET + \
  24. DOLBY_ENDDEP_PARAM_DVLO_LENGTH)
  25. #define DOLBY_ENDDEP_PARAM_DVLI_LENGTH 1
  26. #define DOLBY_ENDDEP_PARAM_VMB_OFFSET (DOLBY_ENDDEP_PARAM_DVLI_OFFSET + \
  27. DOLBY_ENDDEP_PARAM_DVLI_LENGTH)
  28. #define DOLBY_ENDDEP_PARAM_VMB_LENGTH 1
  29. #define DOLBY_ENDDEP_PARAM_LENGTH (DOLBY_ENDDEP_PARAM_DVLO_LENGTH + \
  30. DOLBY_ENDDEP_PARAM_DVLI_LENGTH + DOLBY_ENDDEP_PARAM_VMB_LENGTH)
  31. #define MAX_DOLBY_PARAMS 47
  32. #define MAX_DOLBY_CTRL_PARAMS 5
  33. #define ALL_DOLBY_PARAMS (MAX_DOLBY_PARAMS + \
  34. MAX_DOLBY_CTRL_PARAMS)
  35. #define DOLBY_COMMIT_ALL_IDX MAX_DOLBY_PARAMS
  36. #define DOLBY_COMMIT_IDX (MAX_DOLBY_PARAMS+1)
  37. #define DOLBY_USE_CACHE_IDX (MAX_DOLBY_PARAMS+2)
  38. #define DOLBY_AUTO_ENDP_IDX (MAX_DOLBY_PARAMS+3)
  39. #define DOLBY_AUTO_ENDDEP_IDX (MAX_DOLBY_PARAMS+4)
  40. /* DOLBY device definitions */
  41. enum {
  42. DOLBY_ENDP_INT_SPEAKERS = 0,
  43. DOLBY_ENDP_EXT_SPEAKERS,
  44. DOLBY_ENDP_HEADPHONES,
  45. DOLBY_ENDP_HDMI,
  46. DOLBY_ENDP_SPDIF,
  47. DOLBY_ENDP_DLNA,
  48. DOLBY_ENDP_ANALOG,
  49. };
  50. /* DOLBY device definitions end */
  51. struct dolby_dap_params {
  52. uint32_t value[TOTAL_LENGTH_DOLBY_PARAM + MAX_DOLBY_PARAMS];
  53. } __packed;
  54. int msm_dolby_dap_init(int port_id, int copp_idx, int channels,
  55. bool is_custom_stereo_on);
  56. void msm_dolby_dap_deinit(int port_id);
  57. void msm_dolby_dap_add_controls(struct snd_soc_platform *platform);
  58. int dolby_dap_set_custom_stereo_onoff(int port_id, int copp_idx,
  59. bool is_custom_stereo_enabled);
  60. /* Dolby DOLBY end */
  61. #else
  62. int msm_dolby_dap_init(int port_id, int copp_idx, int channels,
  63. bool is_custom_stereo_on)
  64. {
  65. return 0;
  66. }
  67. void msm_dolby_dap_deinit(int port_id) { }
  68. void msm_dolby_dap_add_controls(struct snd_soc_platform *platform) { }
  69. int dolby_dap_set_custom_stereo_onoff(int port_id, int copp_idx,
  70. bool is_custom_stereo_enabled)
  71. {
  72. return 0;
  73. }
  74. #endif
  75. #endif