msm-dts-srs-tm-config.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. /*
  2. * Copyright (c) 2012-2014, 2016-2017, 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. #include <linux/err.h>
  14. #include <linux/module.h>
  15. #include <linux/bitops.h>
  16. #include <linux/mutex.h>
  17. #include <linux/atomic.h>
  18. #include <sound/asound.h>
  19. #include <sound/control.h>
  20. #include <asoc/msm-dts-srs-tm-config.h>
  21. #include <dsp/msm_audio_ion.h>
  22. #include <dsp/q6adm-v2.h>
  23. #include "msm-pcm-routing-v2.h"
  24. static int srs_port_id[AFE_MAX_PORTS] = {-1};
  25. static int srs_copp_idx[AFE_MAX_PORTS] = {-1};
  26. static union srs_trumedia_params_u msm_srs_trumedia_params;
  27. static struct ion_client *ion_client;
  28. static struct ion_handle *ion_handle;
  29. static struct param_outband po;
  30. static atomic_t ref_cnt;
  31. #define ION_MEM_SIZE (8 * 1024)
  32. static int set_port_id(int port_id, int copp_idx)
  33. {
  34. int index = adm_validate_and_get_port_index(port_id);
  35. if (index < 0) {
  36. pr_err("%s: Invalid port idx %d port_id %#x\n", __func__, index,
  37. port_id);
  38. return -EINVAL;
  39. }
  40. srs_port_id[index] = port_id;
  41. srs_copp_idx[index] = copp_idx;
  42. return 0;
  43. }
  44. static void msm_dts_srs_tm_send_params(__s32 port_id, __u32 techs)
  45. {
  46. __s32 index = adm_validate_and_get_port_index(port_id);
  47. if (index < 0) {
  48. pr_err("%s: Invalid port idx %d port_id 0x%x\n",
  49. __func__, index, port_id);
  50. return;
  51. }
  52. if ((srs_copp_idx[index] < 0) ||
  53. (srs_copp_idx[index] >= MAX_COPPS_PER_PORT)) {
  54. pr_debug("%s: send params called before copp open. so, caching\n",
  55. __func__);
  56. return;
  57. }
  58. pr_debug("SRS %s: called, port_id = %d, techs flags = %u\n",
  59. __func__, port_id, techs);
  60. /* force all if techs is set to 1 */
  61. if (techs == 1)
  62. techs = 0xFFFFFFFF;
  63. if (techs & (1 << SRS_ID_WOWHD))
  64. srs_trumedia_open(port_id, srs_copp_idx[index], SRS_ID_WOWHD,
  65. (void *)&msm_srs_trumedia_params.srs_params.wowhd);
  66. if (techs & (1 << SRS_ID_CSHP))
  67. srs_trumedia_open(port_id, srs_copp_idx[index], SRS_ID_CSHP,
  68. (void *)&msm_srs_trumedia_params.srs_params.cshp);
  69. if (techs & (1 << SRS_ID_HPF))
  70. srs_trumedia_open(port_id, srs_copp_idx[index], SRS_ID_HPF,
  71. (void *)&msm_srs_trumedia_params.srs_params.hpf);
  72. if (techs & (1 << SRS_ID_AEQ))
  73. srs_trumedia_open(port_id, srs_copp_idx[index], SRS_ID_AEQ,
  74. (void *)&msm_srs_trumedia_params.srs_params.aeq);
  75. if (techs & (1 << SRS_ID_HL))
  76. srs_trumedia_open(port_id, srs_copp_idx[index], SRS_ID_HL,
  77. (void *)&msm_srs_trumedia_params.srs_params.hl);
  78. if (techs & (1 << SRS_ID_GEQ))
  79. srs_trumedia_open(port_id, srs_copp_idx[index], SRS_ID_GEQ,
  80. (void *)&msm_srs_trumedia_params.srs_params.geq);
  81. if (techs & (1 << SRS_ID_GLOBAL))
  82. srs_trumedia_open(port_id, srs_copp_idx[index], SRS_ID_GLOBAL,
  83. (void *)&msm_srs_trumedia_params.srs_params.global);
  84. }
  85. static int msm_dts_srs_trumedia_control_get(struct snd_kcontrol *kcontrol,
  86. struct snd_ctl_elem_value *ucontrol)
  87. {
  88. ucontrol->value.integer.value[0] = 0;
  89. return 0;
  90. }
  91. static int msm_dts_srs_trumedia_control_set_(int port_id,
  92. struct snd_kcontrol *kcontrol,
  93. struct snd_ctl_elem_value *ucontrol)
  94. {
  95. __u16 offset, value, max = sizeof(msm_srs_trumedia_params) >> 1;
  96. if (SRS_CMD_UPLOAD ==
  97. (ucontrol->value.integer.value[0] & SRS_CMD_UPLOAD)) {
  98. __u32 techs = ucontrol->value.integer.value[0] & 0xFF;
  99. __s32 index = adm_validate_and_get_port_index(port_id);
  100. if (index < 0) {
  101. pr_err("%s: Invalid port idx %d port_id 0x%x\n",
  102. __func__, index, port_id);
  103. return -EINVAL;
  104. }
  105. pr_debug("SRS %s: send params request, flag = %u\n",
  106. __func__, techs);
  107. if (srs_port_id[index] >= 0 && techs)
  108. msm_dts_srs_tm_send_params(port_id, techs);
  109. return 0;
  110. }
  111. offset = (__u16)((ucontrol->value.integer.value[0] &
  112. SRS_PARAM_OFFSET_MASK) >> 16);
  113. value = (__u16)(ucontrol->value.integer.value[0] &
  114. SRS_PARAM_VALUE_MASK);
  115. if (offset < max) {
  116. msm_srs_trumedia_params.raw_params[offset] = value;
  117. pr_debug("SRS %s: index set... (max %d, requested %d, value 0x%X)\n",
  118. __func__, max, offset, value);
  119. } else {
  120. pr_err("SRS %s: index out of bounds! (max %d, requested %d)\n",
  121. __func__, max, offset);
  122. }
  123. return 0;
  124. }
  125. static int msm_dts_srs_trumedia_control_set(struct snd_kcontrol *kcontrol,
  126. struct snd_ctl_elem_value *ucontrol)
  127. {
  128. int ret, port_id;
  129. pr_debug("SRS control normal called\n");
  130. msm_pcm_routing_acquire_lock();
  131. port_id = SLIMBUS_0_RX;
  132. ret = msm_dts_srs_trumedia_control_set_(port_id, kcontrol, ucontrol);
  133. msm_pcm_routing_release_lock();
  134. return ret;
  135. }
  136. static int msm_dts_srs_trumedia_control_i2s_set(struct snd_kcontrol *kcontrol,
  137. struct snd_ctl_elem_value *ucontrol)
  138. {
  139. int ret, port_id;
  140. pr_debug("SRS control I2S called\n");
  141. msm_pcm_routing_acquire_lock();
  142. port_id = PRIMARY_I2S_RX;
  143. ret = msm_dts_srs_trumedia_control_set_(port_id, kcontrol, ucontrol);
  144. msm_pcm_routing_release_lock();
  145. return ret;
  146. }
  147. static int msm_dts_srs_trumedia_control_mi2s_set(struct snd_kcontrol *kcontrol,
  148. struct snd_ctl_elem_value *ucontrol)
  149. {
  150. int ret, port_id;
  151. pr_debug("SRS control MI2S called\n");
  152. msm_pcm_routing_acquire_lock();
  153. port_id = AFE_PORT_ID_PRIMARY_MI2S_RX;
  154. ret = msm_dts_srs_trumedia_control_set_(port_id, kcontrol, ucontrol);
  155. msm_pcm_routing_release_lock();
  156. return ret;
  157. }
  158. static int msm_dts_srs_trumedia_control_hdmi_set(struct snd_kcontrol *kcontrol,
  159. struct snd_ctl_elem_value *ucontrol)
  160. {
  161. int ret, port_id;
  162. pr_debug("SRS control HDMI called\n");
  163. msm_pcm_routing_acquire_lock();
  164. port_id = HDMI_RX;
  165. ret = msm_dts_srs_trumedia_control_set_(port_id, kcontrol, ucontrol);
  166. msm_pcm_routing_release_lock();
  167. return ret;
  168. }
  169. static const struct snd_kcontrol_new lpa_srs_trumedia_controls[] = {
  170. {.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  171. .name = "SRS TruMedia",
  172. .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |
  173. SNDRV_CTL_ELEM_ACCESS_READWRITE,
  174. .info = snd_soc_info_volsw,
  175. .get = msm_dts_srs_trumedia_control_get,
  176. .put = msm_dts_srs_trumedia_control_set,
  177. .private_value = ((unsigned long)&(struct soc_mixer_control)
  178. {.reg = SND_SOC_NOPM,
  179. .rreg = SND_SOC_NOPM,
  180. .shift = 0,
  181. .rshift = 0,
  182. .max = 0xFFFFFFFF,
  183. .platform_max = 0xFFFFFFFF,
  184. .invert = 0
  185. })
  186. }
  187. };
  188. static const struct snd_kcontrol_new lpa_srs_trumedia_controls_hdmi[] = {
  189. {.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  190. .name = "SRS TruMedia HDMI",
  191. .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |
  192. SNDRV_CTL_ELEM_ACCESS_READWRITE,
  193. .info = snd_soc_info_volsw,
  194. .get = msm_dts_srs_trumedia_control_get,
  195. .put = msm_dts_srs_trumedia_control_hdmi_set,
  196. .private_value = ((unsigned long)&(struct soc_mixer_control)
  197. {.reg = SND_SOC_NOPM,
  198. .rreg = SND_SOC_NOPM,
  199. .shift = 0,
  200. .rshift = 0,
  201. .max = 0xFFFFFFFF,
  202. .platform_max = 0xFFFFFFFF,
  203. .invert = 0
  204. })
  205. }
  206. };
  207. static const struct snd_kcontrol_new lpa_srs_trumedia_controls_i2s[] = {
  208. {.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  209. .name = "SRS TruMedia I2S",
  210. .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |
  211. SNDRV_CTL_ELEM_ACCESS_READWRITE,
  212. .info = snd_soc_info_volsw,
  213. .get = msm_dts_srs_trumedia_control_get,
  214. .put = msm_dts_srs_trumedia_control_i2s_set,
  215. .private_value = ((unsigned long)&(struct soc_mixer_control)
  216. {.reg = SND_SOC_NOPM,
  217. .rreg = SND_SOC_NOPM,
  218. .shift = 0,
  219. .rshift = 0,
  220. .max = 0xFFFFFFFF,
  221. .platform_max = 0xFFFFFFFF,
  222. .invert = 0
  223. })
  224. }
  225. };
  226. static const struct snd_kcontrol_new lpa_srs_trumedia_controls_mi2s[] = {
  227. {
  228. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  229. .name = "SRS TruMedia MI2S",
  230. .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |
  231. SNDRV_CTL_ELEM_ACCESS_READWRITE,
  232. .info = snd_soc_info_volsw,
  233. .get = msm_dts_srs_trumedia_control_get,
  234. .put = msm_dts_srs_trumedia_control_mi2s_set,
  235. .private_value = ((unsigned long)&(struct soc_mixer_control)
  236. {
  237. .reg = SND_SOC_NOPM,
  238. .rreg = SND_SOC_NOPM,
  239. .shift = 0,
  240. .rshift = 0,
  241. .max = 0xFFFFFFFF,
  242. .platform_max = 0xFFFFFFFF,
  243. .invert = 0
  244. })
  245. }
  246. };
  247. void msm_dts_srs_tm_add_controls(struct snd_soc_platform *platform)
  248. {
  249. snd_soc_add_platform_controls(platform,
  250. lpa_srs_trumedia_controls,
  251. ARRAY_SIZE(lpa_srs_trumedia_controls));
  252. snd_soc_add_platform_controls(platform,
  253. lpa_srs_trumedia_controls_hdmi,
  254. ARRAY_SIZE(lpa_srs_trumedia_controls_hdmi));
  255. snd_soc_add_platform_controls(platform,
  256. lpa_srs_trumedia_controls_i2s,
  257. ARRAY_SIZE(lpa_srs_trumedia_controls_i2s));
  258. snd_soc_add_platform_controls(platform,
  259. lpa_srs_trumedia_controls_mi2s,
  260. ARRAY_SIZE(lpa_srs_trumedia_controls_mi2s));
  261. }
  262. static int reg_ion_mem(void)
  263. {
  264. int rc;
  265. rc = msm_audio_ion_alloc("SRS_TRUMEDIA", &ion_client, &ion_handle,
  266. ION_MEM_SIZE, &po.paddr, (size_t *)&po.size,
  267. &po.kvaddr);
  268. if (rc != 0)
  269. pr_err("%s: failed to allocate memory.\n", __func__);
  270. pr_debug("%s: exited ion_client = %pK, ion_handle = %pK, phys_addr = %lu, length = %d, vaddr = %pK, rc = 0x%x\n",
  271. __func__, ion_client, ion_handle, (long)po.paddr,
  272. (unsigned int)po.size, po.kvaddr, rc);
  273. return rc;
  274. }
  275. void msm_dts_srs_tm_ion_memmap(struct param_outband *po_)
  276. {
  277. if (po.kvaddr == NULL) {
  278. pr_debug("%s: callingreg_ion_mem()\n", __func__);
  279. reg_ion_mem();
  280. }
  281. po_->size = ION_MEM_SIZE;
  282. po_->kvaddr = po.kvaddr;
  283. po_->paddr = po.paddr;
  284. }
  285. static void unreg_ion_mem(void)
  286. {
  287. msm_audio_ion_free(ion_client, ion_handle);
  288. po.kvaddr = NULL;
  289. po.paddr = 0;
  290. po.size = 0;
  291. }
  292. void msm_dts_srs_tm_deinit(int port_id)
  293. {
  294. set_port_id(port_id, -1);
  295. atomic_dec(&ref_cnt);
  296. if (po.kvaddr != NULL) {
  297. if (!atomic_read(&ref_cnt)) {
  298. pr_debug("%s: calling unreg_ion_mem()\n", __func__);
  299. unreg_ion_mem();
  300. }
  301. }
  302. }
  303. void msm_dts_srs_tm_init(int port_id, int copp_idx)
  304. {
  305. int cur_ref_cnt = 0;
  306. if (set_port_id(port_id, copp_idx) < 0) {
  307. pr_err("%s: Invalid port_id: %d\n", __func__, port_id);
  308. return;
  309. }
  310. cur_ref_cnt = atomic_read(&ref_cnt);
  311. atomic_inc(&ref_cnt);
  312. if (!cur_ref_cnt && po.kvaddr == NULL) {
  313. pr_debug("%s: calling reg_ion_mem()\n", __func__);
  314. if (reg_ion_mem() != 0) {
  315. atomic_dec(&ref_cnt);
  316. po.kvaddr = NULL;
  317. return;
  318. }
  319. }
  320. msm_dts_srs_tm_send_params(port_id, 1);
  321. }