msm-ds2-dap-config.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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_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. #define DOLBY_PARAM_INT_ENDP_LENGTH 1
  56. #define DOLBY_PARAM_INT_ENDP_OFFSET (DOLBY_PARAM_PSTG_OFFSET + \
  57. DOLBY_PARAM_PSTG_LENGTH)
  58. #define MAX_DS2_PARAMS 48
  59. #define MAX_DS2_CTRL_PARAMS 4
  60. #define ALL_DS2_PARAMS (MAX_DS2_PARAMS + \
  61. MAX_DS2_CTRL_PARAMS)
  62. #define TOTAL_LENGTH_DS2_PARAM (TOTAL_LENGTH_DOLBY_PARAM + 1)
  63. int msm_ds2_dap_update_port_parameters(struct snd_hwdep *hw, struct file *file,
  64. bool open);
  65. int msm_ds2_dap_ioctl(struct snd_hwdep *hw, struct file *file,
  66. u32 cmd, void *arg);
  67. int msm_ds2_dap_compat_ioctl(struct snd_hwdep *hw,
  68. struct file *file,
  69. u32 cmd, void *arg);
  70. int msm_ds2_dap_init(int port_id, int copp_idx, int channels,
  71. bool is_custom_stereo_on);
  72. void msm_ds2_dap_deinit(int port_id);
  73. int msm_ds2_dap_set_custom_stereo_onoff(int port_id, int copp_idx,
  74. bool is_custom_stereo_enabled);
  75. /* Dolby DOLBY end */
  76. #else
  77. static inline int msm_ds2_dap_update_port_parameters(struct snd_hwdep *hw,
  78. struct file *file,
  79. bool open)
  80. {
  81. return 0;
  82. }
  83. static inline int msm_ds2_dap_ioctl(struct snd_hwdep *hw, struct file *file,
  84. u32 cmd, void *arg)
  85. {
  86. return 0;
  87. }
  88. static inline int msm_ds2_dap_compat_ioctl(struct snd_hwdep *hw,
  89. struct file *file,
  90. u32 cmd, void *arg)
  91. {
  92. return 0;
  93. }
  94. static inline int msm_ds2_dap_init(int port_id, int copp_idx, int channels,
  95. bool is_custom_stereo_on)
  96. {
  97. return 0;
  98. }
  99. static inline void msm_ds2_dap_deinit(int port_id) { }
  100. static inline int msm_ds2_dap_set_custom_stereo_onoff(int port_id, int copp_idx,
  101. bool is_custom_stereo_enabled)
  102. {
  103. return 0;
  104. }
  105. #endif
  106. #endif