davinci_voicecodec.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /*
  2. * DaVinci Voice Codec Core Interface for TI platforms
  3. *
  4. * Copyright (C) 2010 Texas Instruments, Inc
  5. *
  6. * Author: Miguel Aguilar <miguel.aguilar@ridgerun.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #include <linux/init.h>
  23. #include <linux/module.h>
  24. #include <linux/device.h>
  25. #include <linux/slab.h>
  26. #include <linux/delay.h>
  27. #include <linux/io.h>
  28. #include <linux/clk.h>
  29. #include <sound/pcm.h>
  30. #include <linux/mfd/davinci_voicecodec.h>
  31. u32 davinci_vc_read(struct davinci_vc *davinci_vc, int reg)
  32. {
  33. return __raw_readl(davinci_vc->base + reg);
  34. }
  35. void davinci_vc_write(struct davinci_vc *davinci_vc,
  36. int reg, u32 val)
  37. {
  38. __raw_writel(val, davinci_vc->base + reg);
  39. }
  40. static int __init davinci_vc_probe(struct platform_device *pdev)
  41. {
  42. struct davinci_vc *davinci_vc;
  43. struct resource *res, *mem;
  44. struct mfd_cell *cell = NULL;
  45. int ret;
  46. davinci_vc = kzalloc(sizeof(struct davinci_vc), GFP_KERNEL);
  47. if (!davinci_vc) {
  48. dev_dbg(&pdev->dev,
  49. "could not allocate memory for private data\n");
  50. return -ENOMEM;
  51. }
  52. davinci_vc->clk = clk_get(&pdev->dev, NULL);
  53. if (IS_ERR(davinci_vc->clk)) {
  54. dev_dbg(&pdev->dev,
  55. "could not get the clock for voice codec\n");
  56. ret = -ENODEV;
  57. goto fail1;
  58. }
  59. clk_enable(davinci_vc->clk);
  60. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  61. if (!res) {
  62. dev_err(&pdev->dev, "no mem resource\n");
  63. ret = -ENODEV;
  64. goto fail2;
  65. }
  66. davinci_vc->pbase = res->start;
  67. davinci_vc->base_size = resource_size(res);
  68. mem = request_mem_region(davinci_vc->pbase, davinci_vc->base_size,
  69. pdev->name);
  70. if (!mem) {
  71. dev_err(&pdev->dev, "VCIF region already claimed\n");
  72. ret = -EBUSY;
  73. goto fail2;
  74. }
  75. davinci_vc->base = ioremap(davinci_vc->pbase, davinci_vc->base_size);
  76. if (!davinci_vc->base) {
  77. dev_err(&pdev->dev, "can't ioremap mem resource.\n");
  78. ret = -ENOMEM;
  79. goto fail3;
  80. }
  81. res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
  82. if (!res) {
  83. dev_err(&pdev->dev, "no DMA resource\n");
  84. ret = -ENXIO;
  85. goto fail4;
  86. }
  87. davinci_vc->davinci_vcif.dma_tx_channel = res->start;
  88. davinci_vc->davinci_vcif.dma_tx_addr =
  89. (dma_addr_t)(io_v2p(davinci_vc->base) + DAVINCI_VC_WFIFO);
  90. res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
  91. if (!res) {
  92. dev_err(&pdev->dev, "no DMA resource\n");
  93. ret = -ENXIO;
  94. goto fail4;
  95. }
  96. davinci_vc->davinci_vcif.dma_rx_channel = res->start;
  97. davinci_vc->davinci_vcif.dma_rx_addr =
  98. (dma_addr_t)(io_v2p(davinci_vc->base) + DAVINCI_VC_RFIFO);
  99. davinci_vc->dev = &pdev->dev;
  100. davinci_vc->pdev = pdev;
  101. /* Voice codec interface client */
  102. cell = &davinci_vc->cells[DAVINCI_VC_VCIF_CELL];
  103. cell->name = "davinci-vcif";
  104. cell->platform_data = davinci_vc;
  105. cell->pdata_size = sizeof(*davinci_vc);
  106. /* Voice codec CQ93VC client */
  107. cell = &davinci_vc->cells[DAVINCI_VC_CQ93VC_CELL];
  108. cell->name = "cq93vc-codec";
  109. cell->platform_data = davinci_vc;
  110. cell->pdata_size = sizeof(*davinci_vc);
  111. ret = mfd_add_devices(&pdev->dev, pdev->id, davinci_vc->cells,
  112. DAVINCI_VC_CELLS, NULL, 0);
  113. if (ret != 0) {
  114. dev_err(&pdev->dev, "fail to register client devices\n");
  115. goto fail4;
  116. }
  117. return 0;
  118. fail4:
  119. iounmap(davinci_vc->base);
  120. fail3:
  121. release_mem_region(davinci_vc->pbase, davinci_vc->base_size);
  122. fail2:
  123. clk_disable(davinci_vc->clk);
  124. clk_put(davinci_vc->clk);
  125. davinci_vc->clk = NULL;
  126. fail1:
  127. kfree(davinci_vc);
  128. return ret;
  129. }
  130. static int __devexit davinci_vc_remove(struct platform_device *pdev)
  131. {
  132. struct davinci_vc *davinci_vc = platform_get_drvdata(pdev);
  133. mfd_remove_devices(&pdev->dev);
  134. iounmap(davinci_vc->base);
  135. release_mem_region(davinci_vc->pbase, davinci_vc->base_size);
  136. clk_disable(davinci_vc->clk);
  137. clk_put(davinci_vc->clk);
  138. davinci_vc->clk = NULL;
  139. kfree(davinci_vc);
  140. return 0;
  141. }
  142. static struct platform_driver davinci_vc_driver = {
  143. .driver = {
  144. .name = "davinci_voicecodec",
  145. .owner = THIS_MODULE,
  146. },
  147. .remove = __devexit_p(davinci_vc_remove),
  148. };
  149. static int __init davinci_vc_init(void)
  150. {
  151. return platform_driver_probe(&davinci_vc_driver, davinci_vc_probe);
  152. }
  153. module_init(davinci_vc_init);
  154. static void __exit davinci_vc_exit(void)
  155. {
  156. platform_driver_unregister(&davinci_vc_driver);
  157. }
  158. module_exit(davinci_vc_exit);
  159. MODULE_AUTHOR("Miguel Aguilar");
  160. MODULE_DESCRIPTION("Texas Instruments DaVinci Voice Codec Core Interface");
  161. MODULE_LICENSE("GPL");