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

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