q6afecal-hwdep.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /*
  2. * Copyright (c) 2015, 2017 - 2018 The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/ioctl.h>
  17. #include <sound/hwdep.h>
  18. #include <sound/msmcal-hwdep.h>
  19. #include <sound/soc.h>
  20. #include "q6afecal-hwdep.h"
  21. const int cal_size_info[Q6AFE_MAX_CAL] = {
  22. [Q6AFE_VAD_CORE_CAL] = 132,
  23. };
  24. const char *cal_name_info[Q6AFE_MAX_CAL] = {
  25. [Q6AFE_VAD_CORE_CAL] = "vad_core",
  26. };
  27. #define AFE_HW_NAME_LENGTH 40
  28. /*
  29. * q6afecal_get_fw_cal -
  30. * To get calibration from AFE HW dependent node
  31. *
  32. * @fw_data: pointer to firmware data
  33. * type: AFE calibration type
  34. *
  35. */
  36. struct firmware_cal *q6afecal_get_fw_cal(struct afe_fw_info *fw_data,
  37. enum q6afe_cal_type type)
  38. {
  39. if (!fw_data) {
  40. pr_err("%s: fw_data is NULL\n", __func__);
  41. return NULL;
  42. }
  43. if (type >= Q6AFE_MAX_CAL ||
  44. type < Q6AFE_MIN_CAL) {
  45. pr_err("%s: wrong cal type sent %d\n", __func__, type);
  46. return NULL;
  47. }
  48. mutex_lock(&fw_data->lock);
  49. if (!test_bit(Q6AFECAL_RECEIVED,
  50. &fw_data->q6afecal_state[type])) {
  51. pr_err("%s: cal not sent by userspace %d\n",
  52. __func__, type);
  53. mutex_unlock(&fw_data->lock);
  54. return NULL;
  55. }
  56. set_bit(Q6AFECAL_INITIALISED, &fw_data->q6afecal_state[type]);
  57. mutex_unlock(&fw_data->lock);
  58. return fw_data->fw[type];
  59. }
  60. EXPORT_SYMBOL(q6afecal_get_fw_cal);
  61. static int q6afecal_hwdep_ioctl_shared(struct snd_hwdep *hw,
  62. struct q6afecal_ioctl_buffer fw_user)
  63. {
  64. struct afe_fw_info *fw_data = hw->private_data;
  65. struct firmware_cal **fw = fw_data->fw;
  66. void *data;
  67. if (!test_bit(fw_user.cal_type, fw_data->cal_bit)) {
  68. pr_err("%s: q6afe didn't set this %d!!\n",
  69. __func__, fw_user.cal_type);
  70. return -EFAULT;
  71. }
  72. if (fw_user.cal_type >= Q6AFE_MAX_CAL ||
  73. fw_user.cal_type < Q6AFE_MIN_CAL) {
  74. pr_err("%s: wrong cal type sent %d\n",
  75. __func__, fw_user.cal_type);
  76. return -EFAULT;
  77. }
  78. if (fw_user.size > cal_size_info[fw_user.cal_type] ||
  79. fw_user.size <= 0) {
  80. pr_err("%s: incorrect firmware size %d for %s\n",
  81. __func__, fw_user.size,
  82. cal_name_info[fw_user.cal_type]);
  83. return -EFAULT;
  84. }
  85. data = fw[fw_user.cal_type]->data;
  86. if (copy_from_user(data, fw_user.buffer, fw_user.size))
  87. return -EFAULT;
  88. fw[fw_user.cal_type]->size = fw_user.size;
  89. mutex_lock(&fw_data->lock);
  90. set_bit(Q6AFECAL_RECEIVED, &fw_data->q6afecal_state[fw_user.cal_type]);
  91. mutex_unlock(&fw_data->lock);
  92. return 0;
  93. }
  94. #ifdef CONFIG_COMPAT
  95. struct q6afecal_ioctl_buffer32 {
  96. u32 size;
  97. compat_uptr_t buffer;
  98. enum q6afe_cal_type cal_type;
  99. };
  100. enum {
  101. SNDRV_CTL_IOCTL_HWDEP_CAL_TYPE32 =
  102. _IOW('U', 0x1, struct q6afecal_ioctl_buffer32),
  103. };
  104. static int q6afecal_hwdep_ioctl_compat(struct snd_hwdep *hw, struct file *file,
  105. unsigned int cmd, unsigned long arg)
  106. {
  107. struct q6afecal_ioctl_buffer __user *argp = (void __user *)arg;
  108. struct q6afecal_ioctl_buffer32 fw_user32;
  109. struct q6afecal_ioctl_buffer fw_user_compat;
  110. if (cmd != SNDRV_CTL_IOCTL_HWDEP_CAL_TYPE32) {
  111. pr_err("%s: wrong ioctl command sent %u!\n", __func__, cmd);
  112. return -ENOIOCTLCMD;
  113. }
  114. if (copy_from_user(&fw_user32, argp, sizeof(fw_user32))) {
  115. pr_err("%s: failed to copy\n", __func__);
  116. return -EFAULT;
  117. }
  118. fw_user_compat.size = fw_user32.size;
  119. fw_user_compat.buffer = compat_ptr(fw_user32.buffer);
  120. fw_user_compat.cal_type = fw_user32.cal_type;
  121. return q6afecal_hwdep_ioctl_shared(hw, fw_user_compat);
  122. }
  123. #else
  124. #define q6afecal_hwdep_ioctl_compat NULL
  125. #endif
  126. static int q6afecal_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
  127. unsigned int cmd, unsigned long arg)
  128. {
  129. struct q6afecal_ioctl_buffer __user *argp = (void __user *)arg;
  130. struct q6afecal_ioctl_buffer fw_user;
  131. if (cmd != SNDRV_IOCTL_HWDEP_VAD_CAL_TYPE) {
  132. pr_err("%s: wrong ioctl command sent %d!\n", __func__, cmd);
  133. return -ENOIOCTLCMD;
  134. }
  135. if (copy_from_user(&fw_user, argp, sizeof(fw_user))) {
  136. pr_err("%s: failed to copy\n", __func__);
  137. return -EFAULT;
  138. }
  139. return q6afecal_hwdep_ioctl_shared(hw, fw_user);
  140. }
  141. static int q6afecal_hwdep_release(struct snd_hwdep *hw, struct file *file)
  142. {
  143. struct afe_fw_info *fw_data = hw->private_data;
  144. mutex_lock(&fw_data->lock);
  145. /* clear all the calibrations */
  146. memset(fw_data->q6afecal_state, 0,
  147. sizeof(fw_data->q6afecal_state));
  148. mutex_unlock(&fw_data->lock);
  149. return 0;
  150. }
  151. /**
  152. * q6afe_cal_create_hwdep -
  153. * for creating HW dependent node for AFE
  154. *
  155. * @data: Pointer to hold fw data
  156. * @node: node type
  157. * @card: Pointer to sound card
  158. *
  159. */
  160. int q6afe_cal_create_hwdep(void *data, int node, void *card)
  161. {
  162. char hwname[AFE_HW_NAME_LENGTH];
  163. struct snd_hwdep *hwdep;
  164. struct firmware_cal **fw;
  165. struct afe_fw_info *fw_data = data;
  166. int err, cal_bit;
  167. if (!fw_data || !card) {
  168. pr_err("%s: Invalid parameters\n", __func__);
  169. return -EINVAL;
  170. }
  171. fw = fw_data->fw;
  172. snprintf(hwname, strlen("Q6AFE"), "Q6AFE");
  173. err = snd_hwdep_new(((struct snd_soc_card *)card)->snd_card,
  174. hwname, node, &hwdep);
  175. if (err < 0) {
  176. pr_err("%s: new hwdep for q6afe failed %d\n", __func__, err);
  177. return err;
  178. }
  179. snprintf(hwdep->name, strlen("Q6AFECAL"), "Q6AFECAL");
  180. hwdep->iface = SNDRV_HWDEP_IFACE_AUDIO_BE;
  181. hwdep->private_data = fw_data;
  182. hwdep->ops.ioctl_compat = q6afecal_hwdep_ioctl_compat;
  183. hwdep->ops.ioctl = q6afecal_hwdep_ioctl;
  184. hwdep->ops.release = q6afecal_hwdep_release;
  185. mutex_init(&fw_data->lock);
  186. for_each_set_bit(cal_bit, fw_data->cal_bit, Q6AFE_MAX_CAL) {
  187. set_bit(Q6AFECAL_UNINITIALISED,
  188. &fw_data->q6afecal_state[cal_bit]);
  189. fw[cal_bit] = kzalloc(sizeof *(fw[cal_bit]), GFP_KERNEL);
  190. if (!fw[cal_bit]) {
  191. pr_err("%s: no memory for %s cal\n",
  192. __func__, cal_name_info[cal_bit]);
  193. goto end;
  194. }
  195. }
  196. for_each_set_bit(cal_bit, fw_data->cal_bit, Q6AFE_MAX_CAL) {
  197. fw[cal_bit]->data = kzalloc(cal_size_info[cal_bit],
  198. GFP_KERNEL);
  199. if (!fw[cal_bit]->data)
  200. goto exit;
  201. set_bit(Q6AFECAL_INITIALISED,
  202. &fw_data->q6afecal_state[cal_bit]);
  203. }
  204. return 0;
  205. exit:
  206. for_each_set_bit(cal_bit, fw_data->cal_bit, Q6AFE_MAX_CAL) {
  207. kfree(fw[cal_bit]->data);
  208. fw[cal_bit]->data = NULL;
  209. }
  210. end:
  211. for_each_set_bit(cal_bit, fw_data->cal_bit, Q6AFE_MAX_CAL) {
  212. kfree(fw[cal_bit]);
  213. fw[cal_bit] = NULL;
  214. }
  215. return -ENOMEM;
  216. }
  217. EXPORT_SYMBOL(q6afe_cal_create_hwdep);