msm-ds2-dap-config.h 3.6 KB

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