msm-pcm-routing-devdep.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2014, 2016-2017, 2020 The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/kernel.h>
  5. #include <linux/platform_device.h>
  6. #include <linux/err.h>
  7. #include <linux/module.h>
  8. #include <sound/hwdep.h>
  9. #include <sound/devdep_params.h>
  10. #include "msm-pcm-routing-devdep.h"
  11. #include "msm-ds2-dap-config.h"
  12. #if IS_ENABLED(CONFIG_SND_HWDEP) && IS_ENABLED(CONFIG_AUDIO_QGKI)
  13. static int msm_pcm_routing_hwdep_open(struct snd_hwdep *hw, struct file *file)
  14. {
  15. pr_debug("%s\n", __func__);
  16. msm_ds2_dap_update_port_parameters(hw, file, true);
  17. return 0;
  18. }
  19. static int msm_pcm_routing_hwdep_release(struct snd_hwdep *hw,
  20. struct file *file)
  21. {
  22. pr_debug("%s\n", __func__);
  23. msm_ds2_dap_update_port_parameters(hw, file, false);
  24. return 0;
  25. }
  26. static int msm_pcm_routing_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
  27. unsigned int cmd, unsigned long arg)
  28. {
  29. int ret = 0;
  30. void __user *argp = (void __user *)arg;
  31. pr_debug("%s:cmd %x\n", __func__, cmd);
  32. switch (cmd) {
  33. case SNDRV_DEVDEP_DAP_IOCTL_SET_PARAM:
  34. case SNDRV_DEVDEP_DAP_IOCTL_GET_PARAM:
  35. case SNDRV_DEVDEP_DAP_IOCTL_DAP_COMMAND:
  36. case SNDRV_DEVDEP_DAP_IOCTL_DAP_LICENSE:
  37. msm_pcm_routing_acquire_lock();
  38. ret = msm_ds2_dap_ioctl(hw, file, cmd, argp);
  39. msm_pcm_routing_release_lock();
  40. break;
  41. case SNDRV_DEVDEP_DAP_IOCTL_GET_VISUALIZER:
  42. ret = msm_ds2_dap_ioctl(hw, file, cmd, argp);
  43. break;
  44. default:
  45. pr_err("%s called with invalid control 0x%X\n", __func__, cmd);
  46. ret = -EINVAL;
  47. break;
  48. }
  49. return ret;
  50. }
  51. void msm_pcm_routing_hwdep_free(struct snd_pcm *pcm)
  52. {
  53. pr_debug("%s\n", __func__);
  54. }
  55. #ifdef CONFIG_COMPAT
  56. static int msm_pcm_routing_hwdep_compat_ioctl(struct snd_hwdep *hw,
  57. struct file *file,
  58. unsigned int cmd,
  59. unsigned long arg)
  60. {
  61. int ret = 0;
  62. void __user *argp = (void __user *)arg;
  63. pr_debug("%s:cmd %x\n", __func__, cmd);
  64. switch (cmd) {
  65. case SNDRV_DEVDEP_DAP_IOCTL_SET_PARAM32:
  66. case SNDRV_DEVDEP_DAP_IOCTL_GET_PARAM32:
  67. case SNDRV_DEVDEP_DAP_IOCTL_DAP_COMMAND32:
  68. case SNDRV_DEVDEP_DAP_IOCTL_DAP_LICENSE32:
  69. msm_pcm_routing_acquire_lock();
  70. ret = msm_ds2_dap_compat_ioctl(hw, file, cmd, argp);
  71. msm_pcm_routing_release_lock();
  72. break;
  73. case SNDRV_DEVDEP_DAP_IOCTL_GET_VISUALIZER32:
  74. ret = msm_ds2_dap_compat_ioctl(hw, file, cmd, argp);
  75. break;
  76. default:
  77. pr_err("%s called with invalid control 0x%X\n", __func__, cmd);
  78. ret = -EINVAL;
  79. break;
  80. }
  81. return ret;
  82. }
  83. #endif
  84. int msm_pcm_routing_hwdep_new(struct snd_soc_pcm_runtime *runtime,
  85. struct msm_pcm_routing_bdai_data *msm_bedais)
  86. {
  87. struct snd_hwdep *hwdep;
  88. struct snd_soc_dai_link *dai_link = runtime->dai_link;
  89. int rc;
  90. if (dai_link->id < 0 ||
  91. dai_link->id >= MSM_BACKEND_DAI_MAX) {
  92. pr_err("%s:BE id %d invalid index\n",
  93. __func__, dai_link->id);
  94. return -EINVAL;
  95. }
  96. pr_debug("%s BE id %d\n", __func__, dai_link->id);
  97. rc = snd_hwdep_new(runtime->card->snd_card,
  98. msm_bedais[dai_link->id].name,
  99. dai_link->id, &hwdep);
  100. if (hwdep == NULL) {
  101. pr_err("%s: hwdep intf failed to create %s- hwdep NULL\n",
  102. __func__, msm_bedais[dai_link->id].name);
  103. return rc;
  104. }
  105. if (rc < 0) {
  106. pr_err("%s: hwdep intf failed to create %s rc %d\n", __func__,
  107. msm_bedais[dai_link->id].name, rc);
  108. return rc;
  109. }
  110. hwdep->iface = SNDRV_HWDEP_IFACE_AUDIO_BE;
  111. hwdep->private_data = &msm_bedais[dai_link->id];
  112. hwdep->ops.open = msm_pcm_routing_hwdep_open;
  113. hwdep->ops.ioctl = msm_pcm_routing_hwdep_ioctl;
  114. hwdep->ops.release = msm_pcm_routing_hwdep_release;
  115. #ifdef CONFIG_COMPAT
  116. hwdep->ops.ioctl_compat = msm_pcm_routing_hwdep_compat_ioctl;
  117. #endif /* CONFIG_COMPAT */
  118. return rc;
  119. }
  120. #endif /* CONFIG_AUDIO_QGKI && CONFIG_SND_HWDEP */