msm-pcm-routing-devdep.c 3.9 KB

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