msm-ds2-dap-config.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * Copyright (c) 2013-2014, 2017-2018 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_DS2_DAP_CONFIG_H_
  13. #define _MSM_DS2_DAP_CONFIG_H_
  14. #include <sound/soc.h>
  15. #include "msm-dolby-common.h"
  16. #include <sound/hwdep.h>
  17. #include <uapi/sound/devdep_params.h>
  18. #ifdef CONFIG_COMPAT
  19. struct dolby_param_data32 {
  20. s32 version;
  21. s32 device_id;
  22. s32 be_id;
  23. s32 param_id;
  24. s32 length;
  25. compat_uptr_t data;
  26. };
  27. struct dolby_param_license32 {
  28. compat_uptr_t dmid;
  29. compat_uptr_t license_key;
  30. };
  31. #define SNDRV_DEVDEP_DAP_IOCTL_SET_PARAM32\
  32. _IOWR('U', 0x10, struct dolby_param_data32)
  33. #define SNDRV_DEVDEP_DAP_IOCTL_GET_PARAM32\
  34. _IOR('U', 0x11, struct dolby_param_data32)
  35. #define SNDRV_DEVDEP_DAP_IOCTL_DAP_COMMAND32\
  36. _IOWR('U', 0x13, struct dolby_param_data32)
  37. #define SNDRV_DEVDEP_DAP_IOCTL_DAP_LICENSE32\
  38. _IOWR('U', 0x14, struct dolby_param_license32)
  39. #define SNDRV_DEVDEP_DAP_IOCTL_GET_VISUALIZER32\
  40. _IOR('U', 0x15, struct dolby_param_data32)
  41. #endif
  42. #if defined(CONFIG_DOLBY_DS2) || defined(CONFIG_DOLBY_LICENSE)
  43. /* DOLBY DOLBY GUIDS */
  44. #define DS2_MODULE_ID 0x00010775
  45. #define DS2_DSP_SUPPORTED_ENDP_DEVICE 17
  46. #define DS2_DEVICES_ALL 32 /* enum val is 4 bytes */
  47. enum {
  48. DAP_CMD_COMMIT_ALL = 0,
  49. DAP_CMD_COMMIT_CHANGED = 1,
  50. DAP_CMD_USE_CACHE_FOR_INIT = 2,
  51. DAP_CMD_SET_BYPASS = 3,
  52. DAP_CMD_SET_ACTIVE_DEVICE = 4,
  53. DAP_CMD_SET_BYPASS_TYPE = 5,
  54. };
  55. struct custom_stereo_param {
  56. /* Index is 32-bit param in little endian */
  57. u16 index;
  58. u16 reserved;
  59. /* For stereo mixing, the number of out channels */
  60. u16 num_out_ch;
  61. /* For stereo mixing, the number of in channels */
  62. u16 num_in_ch;
  63. /* Out channel map FL/FR*/
  64. u16 out_fl;
  65. u16 out_fr;
  66. /* In channel map FL/FR*/
  67. u16 in_fl;
  68. u16 in_fr;
  69. /*
  70. * Weighting coefficients. Mixing will be done according to
  71. * these coefficients.
  72. */
  73. u16 op_FL_ip_FL_weight;
  74. u16 op_FL_ip_FR_weight;
  75. u16 op_FR_ip_FL_weight;
  76. u16 op_FR_ip_FR_weight;
  77. };
  78. #define DOLBY_PARAM_INT_ENDP_LENGTH 1
  79. #define DOLBY_PARAM_INT_ENDP_OFFSET (DOLBY_PARAM_PSTG_OFFSET + \
  80. DOLBY_PARAM_PSTG_LENGTH)
  81. #define MAX_DS2_PARAMS 48
  82. #define MAX_DS2_CTRL_PARAMS 4
  83. #define ALL_DS2_PARAMS (MAX_DS2_PARAMS + \
  84. MAX_DS2_CTRL_PARAMS)
  85. #define TOTAL_LENGTH_DS2_PARAM (TOTAL_LENGTH_DOLBY_PARAM + 1)
  86. int msm_ds2_dap_update_port_parameters(struct snd_hwdep *hw, struct file *file,
  87. bool open);
  88. int msm_ds2_dap_ioctl(struct snd_hwdep *hw, struct file *file,
  89. u32 cmd, void *arg);
  90. int msm_ds2_dap_compat_ioctl(struct snd_hwdep *hw,
  91. struct file *file,
  92. u32 cmd, void *arg);
  93. int msm_ds2_dap_init(int port_id, int copp_idx, int channels,
  94. bool is_custom_stereo_on);
  95. void msm_ds2_dap_deinit(int port_id);
  96. int msm_ds2_dap_set_custom_stereo_onoff(int port_id, int copp_idx,
  97. bool is_custom_stereo_enabled);
  98. /* Dolby DOLBY end */
  99. #else
  100. static inline int msm_ds2_dap_update_port_parameters(struct snd_hwdep *hw,
  101. struct file *file,
  102. bool open)
  103. {
  104. return 0;
  105. }
  106. static inline int msm_ds2_dap_ioctl(struct snd_hwdep *hw, struct file *file,
  107. u32 cmd, void *arg)
  108. {
  109. return 0;
  110. }
  111. static inline int msm_ds2_dap_compat_ioctl(struct snd_hwdep *hw,
  112. struct file *file,
  113. u32 cmd, void *arg)
  114. {
  115. return 0;
  116. }
  117. static inline int msm_ds2_dap_init(int port_id, int copp_idx, int channels,
  118. bool is_custom_stereo_on)
  119. {
  120. return 0;
  121. }
  122. static inline void msm_ds2_dap_deinit(int port_id) { }
  123. static inline int msm_ds2_dap_set_custom_stereo_onoff(int port_id, int copp_idx,
  124. bool is_custom_stereo_enabled)
  125. {
  126. return 0;
  127. }
  128. #endif
  129. #endif