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

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