davinci_voicecodec.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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 <linux/regmap.h>
  30. #include <sound/pcm.h>
  31. #include <linux/mfd/davinci_voicecodec.h>
  32. static const struct regmap_config davinci_vc_regmap = {
  33. .reg_bits = 32,
  34. .val_bits = 32,
  35. };
  36. static int __init davinci_vc_probe(struct platform_device *pdev)
  37. {
  38. struct davinci_vc *davinci_vc;
  39. struct resource *res;
  40. struct mfd_cell *cell = NULL;
  41. int ret;
  42. davinci_vc = devm_kzalloc(&pdev->dev,
  43. sizeof(struct davinci_vc), GFP_KERNEL);
  44. if (!davinci_vc) {
  45. dev_dbg(&pdev->dev,
  46. "could not allocate memory for private data\n");
  47. return -ENOMEM;
  48. }
  49. davinci_vc->clk = devm_clk_get(&pdev->dev, NULL);
  50. if (IS_ERR(davinci_vc->clk)) {
  51. dev_dbg(&pdev->dev,
  52. "could not get the clock for voice codec\n");
  53. return -ENODEV;
  54. }
  55. clk_enable(davinci_vc->clk);
  56. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  57. davinci_vc->base = devm_ioremap_resource(&pdev->dev, res);
  58. if (IS_ERR(davinci_vc->base)) {
  59. ret = PTR_ERR(davinci_vc->base);
  60. goto fail;
  61. }
  62. davinci_vc->regmap = devm_regmap_init_mmio(&pdev->dev,
  63. davinci_vc->base,
  64. &davinci_vc_regmap);
  65. if (IS_ERR(davinci_vc->regmap)) {
  66. ret = PTR_ERR(davinci_vc->regmap);
  67. goto fail;
  68. }
  69. res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
  70. if (!res) {
  71. dev_err(&pdev->dev, "no DMA resource\n");
  72. ret = -ENXIO;
  73. goto fail;
  74. }
  75. davinci_vc->davinci_vcif.dma_tx_channel = res->start;
  76. davinci_vc->davinci_vcif.dma_tx_addr =
  77. (dma_addr_t)(io_v2p(davinci_vc->base) + DAVINCI_VC_WFIFO);
  78. res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
  79. if (!res) {
  80. dev_err(&pdev->dev, "no DMA resource\n");
  81. ret = -ENXIO;
  82. goto fail;
  83. }
  84. davinci_vc->davinci_vcif.dma_rx_channel = res->start;
  85. davinci_vc->davinci_vcif.dma_rx_addr =
  86. (dma_addr_t)(io_v2p(davinci_vc->base) + DAVINCI_VC_RFIFO);
  87. davinci_vc->dev = &pdev->dev;
  88. davinci_vc->pdev = pdev;
  89. /* Voice codec interface client */
  90. cell = &davinci_vc->cells[DAVINCI_VC_VCIF_CELL];
  91. cell->name = "davinci-vcif";
  92. cell->platform_data = davinci_vc;
  93. cell->pdata_size = sizeof(*davinci_vc);
  94. /* Voice codec CQ93VC client */
  95. cell = &davinci_vc->cells[DAVINCI_VC_CQ93VC_CELL];
  96. cell->name = "cq93vc-codec";
  97. cell->platform_data = davinci_vc;
  98. cell->pdata_size = sizeof(*davinci_vc);
  99. ret = mfd_add_devices(&pdev->dev, pdev->id, davinci_vc->cells,
  100. DAVINCI_VC_CELLS, NULL, 0, NULL);
  101. if (ret != 0) {
  102. dev_err(&pdev->dev, "fail to register client devices\n");
  103. goto fail;
  104. }
  105. return 0;
  106. fail:
  107. clk_disable(davinci_vc->clk);
  108. return ret;
  109. }
  110. static int davinci_vc_remove(struct platform_device *pdev)
  111. {
  112. struct davinci_vc *davinci_vc = platform_get_drvdata(pdev);
  113. mfd_remove_devices(&pdev->dev);
  114. clk_disable(davinci_vc->clk);
  115. return 0;
  116. }
  117. static struct platform_driver davinci_vc_driver = {
  118. .driver = {
  119. .name = "davinci_voicecodec",
  120. },
  121. .remove = davinci_vc_remove,
  122. };
  123. module_platform_driver_probe(davinci_vc_driver, davinci_vc_probe);
  124. MODULE_AUTHOR("Miguel Aguilar");
  125. MODULE_DESCRIPTION("Texas Instruments DaVinci Voice Codec Core Interface");
  126. MODULE_LICENSE("GPL");