msm-pcm-dtmf-v2.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. /* Copyright (c) 2013-2014, 2017-2018 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/init.h>
  13. #include <linux/module.h>
  14. #include <linux/time.h>
  15. #include <linux/wait.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/slab.h>
  18. #include <linux/dma-mapping.h>
  19. #include <sound/core.h>
  20. #include <sound/soc.h>
  21. #include <sound/pcm.h>
  22. #include <dsp/q6afe-v2.h>
  23. #include <dsp/q6voice.h>
  24. #include "msm-pcm-q6-v2.h"
  25. #include "msm-pcm-routing-v2.h"
  26. enum {
  27. DTMF_IN_RX,
  28. DTMF_IN_TX,
  29. };
  30. enum format {
  31. FORMAT_S16_LE = 2
  32. };
  33. struct dtmf_det_info {
  34. char session[MAX_SESSION_NAME_LEN];
  35. uint8_t dir;
  36. uint16_t high_freq;
  37. uint16_t low_freq;
  38. };
  39. struct dtmf_buf_node {
  40. struct list_head list;
  41. struct dtmf_det_info dtmf_det_pkt;
  42. };
  43. enum dtmf_state {
  44. DTMF_GEN_RX_STOPPED,
  45. DTMF_GEN_RX_STARTED,
  46. };
  47. #define DTMF_MAX_Q_LEN 10
  48. #define DTMF_PKT_SIZE sizeof(struct dtmf_det_info)
  49. struct dtmf_drv_info {
  50. enum dtmf_state state;
  51. struct snd_pcm_substream *capture_substream;
  52. struct list_head out_queue;
  53. struct list_head free_out_queue;
  54. wait_queue_head_t out_wait;
  55. struct mutex lock;
  56. spinlock_t dsp_lock;
  57. uint8_t capture_start;
  58. uint8_t capture_instance;
  59. unsigned int pcm_capture_size;
  60. unsigned int pcm_capture_count;
  61. unsigned int pcm_capture_irq_pos;
  62. unsigned int pcm_capture_buf_pos;
  63. };
  64. static struct snd_pcm_hardware msm_pcm_hardware = {
  65. .info = (SNDRV_PCM_INFO_MMAP |
  66. SNDRV_PCM_INFO_BLOCK_TRANSFER |
  67. SNDRV_PCM_INFO_MMAP_VALID |
  68. SNDRV_PCM_INFO_INTERLEAVED),
  69. .formats = SNDRV_PCM_FMTBIT_S16_LE,
  70. .channels_min = 1,
  71. .channels_max = 1,
  72. .buffer_bytes_max = (sizeof(struct dtmf_buf_node) * DTMF_MAX_Q_LEN),
  73. .period_bytes_min = DTMF_PKT_SIZE,
  74. .period_bytes_max = DTMF_PKT_SIZE,
  75. .periods_min = DTMF_MAX_Q_LEN,
  76. .periods_max = DTMF_MAX_Q_LEN,
  77. .fifo_size = 0,
  78. };
  79. static int msm_dtmf_rx_generate_put(struct snd_kcontrol *kcontrol,
  80. struct snd_ctl_elem_value *ucontrol)
  81. {
  82. uint16_t low_freq = ucontrol->value.integer.value[0];
  83. uint16_t high_freq = ucontrol->value.integer.value[1];
  84. int64_t duration = ucontrol->value.integer.value[2];
  85. uint16_t gain = ucontrol->value.integer.value[3];
  86. pr_debug("%s: low_freq=%d high_freq=%d duration=%d gain=%d\n",
  87. __func__, low_freq, high_freq, (int)duration, gain);
  88. afe_dtmf_generate_rx(duration, high_freq, low_freq, gain);
  89. return 0;
  90. }
  91. static int msm_dtmf_rx_generate_get(struct snd_kcontrol *kcontrol,
  92. struct snd_ctl_elem_value *ucontrol)
  93. {
  94. pr_debug("%s:\n", __func__);
  95. ucontrol->value.integer.value[0] = 0;
  96. return 0;
  97. }
  98. static int msm_dtmf_detect_voice_rx_put(struct snd_kcontrol *kcontrol,
  99. struct snd_ctl_elem_value *ucontrol)
  100. {
  101. int enable = ucontrol->value.integer.value[0];
  102. pr_debug("%s: enable=%d\n", __func__, enable);
  103. voc_enable_dtmf_rx_detection(voc_get_session_id(VOICE_SESSION_NAME),
  104. enable);
  105. return 0;
  106. }
  107. static int msm_dtmf_detect_voice_rx_get(struct snd_kcontrol *kcontrol,
  108. struct snd_ctl_elem_value *ucontrol)
  109. {
  110. ucontrol->value.integer.value[0] = 0;
  111. return 0;
  112. }
  113. static int msm_dtmf_detect_volte_rx_put(struct snd_kcontrol *kcontrol,
  114. struct snd_ctl_elem_value *ucontrol)
  115. {
  116. int enable = ucontrol->value.integer.value[0];
  117. pr_debug("%s: enable=%d\n", __func__, enable);
  118. voc_enable_dtmf_rx_detection(voc_get_session_id(VOLTE_SESSION_NAME),
  119. enable);
  120. return 0;
  121. }
  122. static int msm_dtmf_detect_volte_rx_get(struct snd_kcontrol *kcontrol,
  123. struct snd_ctl_elem_value *ucontrol)
  124. {
  125. ucontrol->value.integer.value[0] = 0;
  126. return 0;
  127. }
  128. static struct snd_kcontrol_new msm_dtmf_controls[] = {
  129. SOC_SINGLE_MULTI_EXT("DTMF_Generate Rx Low High Duration Gain",
  130. SND_SOC_NOPM, 0, 5000, 0, 4,
  131. msm_dtmf_rx_generate_get,
  132. msm_dtmf_rx_generate_put),
  133. SOC_SINGLE_EXT("DTMF_Detect Rx Voice enable", SND_SOC_NOPM, 0, 1, 0,
  134. msm_dtmf_detect_voice_rx_get,
  135. msm_dtmf_detect_voice_rx_put),
  136. SOC_SINGLE_EXT("DTMF_Detect Rx VoLTE enable", SND_SOC_NOPM, 0, 1, 0,
  137. msm_dtmf_detect_volte_rx_get,
  138. msm_dtmf_detect_volte_rx_put),
  139. };
  140. static int msm_pcm_dtmf_probe(struct snd_soc_platform *platform)
  141. {
  142. snd_soc_add_platform_controls(platform, msm_dtmf_controls,
  143. ARRAY_SIZE(msm_dtmf_controls));
  144. return 0;
  145. }
  146. static void dtmf_rx_detected_cb(uint8_t *pkt,
  147. char *session,
  148. void *private_data)
  149. {
  150. struct dtmf_buf_node *buf_node = NULL;
  151. struct vss_istream_evt_rx_dtmf_detected *dtmf_det_pkt =
  152. (struct vss_istream_evt_rx_dtmf_detected *)pkt;
  153. struct dtmf_drv_info *prtd = private_data;
  154. unsigned long dsp_flags;
  155. pr_debug("%s\n", __func__);
  156. if (prtd->capture_substream == NULL)
  157. return;
  158. /* Copy dtmf detected info into out_queue. */
  159. spin_lock_irqsave(&prtd->dsp_lock, dsp_flags);
  160. /* discarding dtmf detection info till start is received */
  161. if (!list_empty(&prtd->free_out_queue) && prtd->capture_start) {
  162. buf_node = list_first_entry(&prtd->free_out_queue,
  163. struct dtmf_buf_node, list);
  164. list_del(&buf_node->list);
  165. buf_node->dtmf_det_pkt.high_freq = dtmf_det_pkt->high_freq;
  166. buf_node->dtmf_det_pkt.low_freq = dtmf_det_pkt->low_freq;
  167. if (session != NULL)
  168. strlcpy(buf_node->dtmf_det_pkt.session,
  169. session, MAX_SESSION_NAME_LEN);
  170. buf_node->dtmf_det_pkt.dir = DTMF_IN_RX;
  171. pr_debug("high =%d, low=%d session=%s\n",
  172. buf_node->dtmf_det_pkt.high_freq,
  173. buf_node->dtmf_det_pkt.low_freq,
  174. buf_node->dtmf_det_pkt.session);
  175. list_add_tail(&buf_node->list, &prtd->out_queue);
  176. prtd->pcm_capture_irq_pos += prtd->pcm_capture_count;
  177. spin_unlock_irqrestore(&prtd->dsp_lock, dsp_flags);
  178. snd_pcm_period_elapsed(prtd->capture_substream);
  179. } else {
  180. spin_unlock_irqrestore(&prtd->dsp_lock, dsp_flags);
  181. pr_err("DTMF detection pkt in Rx dropped, no free node available\n");
  182. }
  183. wake_up(&prtd->out_wait);
  184. }
  185. static int msm_pcm_capture_copy(struct snd_pcm_substream *substream,
  186. int channel, unsigned long hwoff,
  187. void __user *buf, unsigned long fbytes)
  188. {
  189. int ret = 0;
  190. struct dtmf_buf_node *buf_node = NULL;
  191. struct snd_pcm_runtime *runtime = substream->runtime;
  192. struct dtmf_drv_info *prtd = runtime->private_data;
  193. unsigned long dsp_flags;
  194. ret = wait_event_interruptible_timeout(prtd->out_wait,
  195. (!list_empty(&prtd->out_queue)),
  196. 1 * HZ);
  197. if (ret > 0) {
  198. if (fbytes <= DTMF_PKT_SIZE) {
  199. spin_lock_irqsave(&prtd->dsp_lock, dsp_flags);
  200. buf_node = list_first_entry(&prtd->out_queue,
  201. struct dtmf_buf_node, list);
  202. list_del(&buf_node->list);
  203. spin_unlock_irqrestore(&prtd->dsp_lock, dsp_flags);
  204. ret = copy_to_user(buf,
  205. &buf_node->dtmf_det_pkt,
  206. fbytes);
  207. if (ret) {
  208. pr_err("%s: Copy to user returned %d\n",
  209. __func__, ret);
  210. ret = -EFAULT;
  211. }
  212. spin_lock_irqsave(&prtd->dsp_lock, dsp_flags);
  213. list_add_tail(&buf_node->list,
  214. &prtd->free_out_queue);
  215. spin_unlock_irqrestore(&prtd->dsp_lock, dsp_flags);
  216. } else {
  217. pr_err("%s: Read count %lu > DTMF_PKT_SIZE\n",
  218. __func__, fbytes);
  219. ret = -ENOMEM;
  220. }
  221. } else if (ret == 0) {
  222. pr_err("%s: No UL data available\n", __func__);
  223. ret = -ETIMEDOUT;
  224. } else {
  225. pr_err("%s: Read was interrupted\n", __func__);
  226. ret = -ERESTARTSYS;
  227. }
  228. return ret;
  229. }
  230. static int msm_pcm_copy(struct snd_pcm_substream *substream, int a,
  231. unsigned long hwoff, void __user *buf, unsigned long fbytes)
  232. {
  233. int ret = 0;
  234. pr_debug("%s() DTMF\n", __func__);
  235. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  236. ret = msm_pcm_capture_copy(substream, a, hwoff, buf, fbytes);
  237. return ret;
  238. }
  239. static int msm_pcm_open(struct snd_pcm_substream *substream)
  240. {
  241. struct snd_pcm_runtime *runtime = substream->runtime;
  242. struct dtmf_drv_info *prtd = NULL;
  243. int ret = 0;
  244. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  245. prtd = kzalloc(sizeof(struct dtmf_drv_info), GFP_KERNEL);
  246. if (prtd == NULL) {
  247. ret = -ENOMEM;
  248. goto done;
  249. }
  250. mutex_init(&prtd->lock);
  251. spin_lock_init(&prtd->dsp_lock);
  252. init_waitqueue_head(&prtd->out_wait);
  253. INIT_LIST_HEAD(&prtd->out_queue);
  254. INIT_LIST_HEAD(&prtd->free_out_queue);
  255. runtime->hw = msm_pcm_hardware;
  256. ret = snd_pcm_hw_constraint_integer(runtime,
  257. SNDRV_PCM_HW_PARAM_PERIODS);
  258. if (ret < 0)
  259. pr_info("snd_pcm_hw_constraint_integer failed\n");
  260. prtd->capture_substream = substream;
  261. prtd->capture_instance++;
  262. runtime->private_data = prtd;
  263. }
  264. done:
  265. return ret;
  266. }
  267. static int msm_pcm_close(struct snd_pcm_substream *substream)
  268. {
  269. int ret = 0;
  270. struct list_head *ptr = NULL;
  271. struct list_head *next = NULL;
  272. struct dtmf_buf_node *buf_node = NULL;
  273. struct snd_dma_buffer *c_dma_buf;
  274. struct snd_pcm_substream *c_substream;
  275. struct snd_pcm_runtime *runtime = substream->runtime;
  276. struct dtmf_drv_info *prtd = runtime->private_data;
  277. unsigned long dsp_flags;
  278. pr_debug("%s() DTMF\n", __func__);
  279. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  280. mutex_lock(&prtd->lock);
  281. wake_up(&prtd->out_wait);
  282. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  283. prtd->capture_instance--;
  284. if (!prtd->capture_instance) {
  285. if (prtd->state == DTMF_GEN_RX_STARTED) {
  286. prtd->state = DTMF_GEN_RX_STOPPED;
  287. voc_disable_dtmf_det_on_active_sessions();
  288. voc_register_dtmf_rx_detection_cb(NULL, NULL);
  289. }
  290. /* release all buffer */
  291. /* release out_queue and free_out_queue */
  292. pr_debug("release all buffer\n");
  293. c_substream = prtd->capture_substream;
  294. if (c_substream == NULL) {
  295. pr_debug("c_substream is NULL\n");
  296. mutex_unlock(&prtd->lock);
  297. return -EINVAL;
  298. }
  299. c_dma_buf = &c_substream->dma_buffer;
  300. if (c_dma_buf == NULL) {
  301. pr_debug("c_dma_buf is NULL.\n");
  302. mutex_unlock(&prtd->lock);
  303. return -EINVAL;
  304. }
  305. if (c_dma_buf->area != NULL) {
  306. spin_lock_irqsave(&prtd->dsp_lock, dsp_flags);
  307. list_for_each_safe(ptr, next,
  308. &prtd->out_queue) {
  309. buf_node = list_entry(ptr,
  310. struct dtmf_buf_node, list);
  311. list_del(&buf_node->list);
  312. }
  313. list_for_each_safe(ptr, next,
  314. &prtd->free_out_queue) {
  315. buf_node = list_entry(ptr,
  316. struct dtmf_buf_node, list);
  317. list_del(&buf_node->list);
  318. }
  319. spin_unlock_irqrestore(&prtd->dsp_lock,
  320. dsp_flags);
  321. dma_free_coherent(c_substream->pcm->card->dev,
  322. runtime->hw.buffer_bytes_max,
  323. c_dma_buf->area,
  324. c_dma_buf->addr);
  325. c_dma_buf->area = NULL;
  326. }
  327. }
  328. prtd->capture_substream = NULL;
  329. mutex_unlock(&prtd->lock);
  330. }
  331. return ret;
  332. }
  333. static int msm_pcm_hw_params(struct snd_pcm_substream *substream,
  334. struct snd_pcm_hw_params *params)
  335. {
  336. struct snd_pcm_runtime *runtime = substream->runtime;
  337. struct dtmf_drv_info *prtd = runtime->private_data;
  338. struct snd_dma_buffer *dma_buf = &substream->dma_buffer;
  339. struct dtmf_buf_node *buf_node = NULL;
  340. int i = 0, offset = 0;
  341. int ret = 0;
  342. pr_debug("%s: DTMF\n", __func__);
  343. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  344. mutex_lock(&prtd->lock);
  345. dma_buf->dev.type = SNDRV_DMA_TYPE_DEV;
  346. dma_buf->dev.dev = substream->pcm->card->dev;
  347. dma_buf->private_data = NULL;
  348. dma_buf->area = dma_alloc_coherent(substream->pcm->card->dev,
  349. runtime->hw.buffer_bytes_max,
  350. &dma_buf->addr, GFP_KERNEL);
  351. if (!dma_buf->area) {
  352. pr_err("%s:MSM DTMF dma_alloc failed\n", __func__);
  353. mutex_unlock(&prtd->lock);
  354. return -ENOMEM;
  355. }
  356. dma_buf->bytes = runtime->hw.buffer_bytes_max;
  357. memset(dma_buf->area, 0, runtime->hw.buffer_bytes_max);
  358. for (i = 0; i < DTMF_MAX_Q_LEN; i++) {
  359. pr_debug("node =%d\n", i);
  360. buf_node = (void *) dma_buf->area + offset;
  361. list_add_tail(&buf_node->list,
  362. &prtd->free_out_queue);
  363. offset = offset + sizeof(struct dtmf_buf_node);
  364. }
  365. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  366. mutex_unlock(&prtd->lock);
  367. }
  368. return ret;
  369. }
  370. static int msm_pcm_capture_prepare(struct snd_pcm_substream *substream)
  371. {
  372. struct snd_pcm_runtime *runtime = substream->runtime;
  373. struct dtmf_drv_info *prtd = runtime->private_data;
  374. pr_debug("%s: DTMF\n", __func__);
  375. prtd->pcm_capture_size = snd_pcm_lib_buffer_bytes(substream);
  376. prtd->pcm_capture_count = snd_pcm_lib_period_bytes(substream);
  377. prtd->pcm_capture_irq_pos = 0;
  378. prtd->pcm_capture_buf_pos = 0;
  379. return 0;
  380. }
  381. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  382. {
  383. struct snd_pcm_runtime *runtime = substream->runtime;
  384. struct dtmf_drv_info *prtd = runtime->private_data;
  385. pr_debug("%s: DTMF\n", __func__);
  386. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  387. mutex_lock(&prtd->lock);
  388. msm_pcm_capture_prepare(substream);
  389. if (runtime->format != FORMAT_S16_LE) {
  390. pr_err("format:%u doesn't match %d\n",
  391. (uint32_t)runtime->format, FORMAT_S16_LE);
  392. mutex_unlock(&prtd->lock);
  393. return -EINVAL;
  394. }
  395. if (prtd->capture_instance &&
  396. (prtd->state != DTMF_GEN_RX_STARTED)) {
  397. voc_register_dtmf_rx_detection_cb(dtmf_rx_detected_cb,
  398. prtd);
  399. prtd->state = DTMF_GEN_RX_STARTED;
  400. }
  401. mutex_unlock(&prtd->lock);
  402. }
  403. return 0;
  404. }
  405. static int msm_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  406. {
  407. int ret = 0;
  408. struct snd_pcm_runtime *runtime = substream->runtime;
  409. struct dtmf_drv_info *prtd = runtime->private_data;
  410. switch (cmd) {
  411. case SNDRV_PCM_TRIGGER_START:
  412. case SNDRV_PCM_TRIGGER_RESUME:
  413. pr_debug("%s: Trigger start\n", __func__);
  414. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  415. prtd->capture_start = 1;
  416. break;
  417. case SNDRV_PCM_TRIGGER_STOP:
  418. pr_debug("SNDRV_PCM_TRIGGER_STOP\n");
  419. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  420. prtd->capture_start = 0;
  421. break;
  422. default:
  423. ret = -EINVAL;
  424. break;
  425. }
  426. return ret;
  427. }
  428. static snd_pcm_uframes_t msm_pcm_pointer(struct snd_pcm_substream *substream)
  429. {
  430. snd_pcm_uframes_t ret = 0;
  431. struct snd_pcm_runtime *runtime = substream->runtime;
  432. struct dtmf_drv_info *prtd = runtime->private_data;
  433. if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  434. if (prtd->pcm_capture_irq_pos >= prtd->pcm_capture_size)
  435. prtd->pcm_capture_irq_pos = 0;
  436. ret = bytes_to_frames(runtime, (prtd->pcm_capture_irq_pos));
  437. }
  438. return ret;
  439. }
  440. static const struct snd_pcm_ops msm_pcm_ops = {
  441. .open = msm_pcm_open,
  442. .copy_user = msm_pcm_copy,
  443. .hw_params = msm_pcm_hw_params,
  444. .close = msm_pcm_close,
  445. .prepare = msm_pcm_prepare,
  446. .trigger = msm_pcm_trigger,
  447. .pointer = msm_pcm_pointer,
  448. };
  449. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  450. {
  451. struct snd_card *card = rtd->card->snd_card;
  452. int ret = 0;
  453. if (!card->dev->coherent_dma_mask)
  454. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  455. return ret;
  456. }
  457. static struct snd_soc_platform_driver msm_soc_platform = {
  458. .ops = &msm_pcm_ops,
  459. .pcm_new = msm_asoc_pcm_new,
  460. .probe = msm_pcm_dtmf_probe,
  461. };
  462. static int msm_pcm_probe(struct platform_device *pdev)
  463. {
  464. pr_debug("%s: dev name %s\n", __func__, dev_name(&pdev->dev));
  465. return snd_soc_register_platform(&pdev->dev,
  466. &msm_soc_platform);
  467. }
  468. static int msm_pcm_remove(struct platform_device *pdev)
  469. {
  470. snd_soc_unregister_platform(&pdev->dev);
  471. return 0;
  472. }
  473. static const struct of_device_id msm_pcm_dtmf_dt_match[] = {
  474. {.compatible = "qcom,msm-pcm-dtmf"},
  475. {}
  476. };
  477. MODULE_DEVICE_TABLE(of, msm_pcm_dtmf_dt_match);
  478. static struct platform_driver msm_pcm_driver = {
  479. .driver = {
  480. .name = "msm-pcm-dtmf",
  481. .owner = THIS_MODULE,
  482. .of_match_table = msm_pcm_dtmf_dt_match,
  483. },
  484. .probe = msm_pcm_probe,
  485. .remove = msm_pcm_remove,
  486. };
  487. int __init msm_pcm_dtmf_init(void)
  488. {
  489. return platform_driver_register(&msm_pcm_driver);
  490. }
  491. void msm_pcm_dtmf_exit(void)
  492. {
  493. platform_driver_unregister(&msm_pcm_driver);
  494. }
  495. MODULE_DESCRIPTION("DTMF platform driver");
  496. MODULE_LICENSE("GPL v2");