mfd: davinci_voicecodec: Remove unused read and write functions
[linux-block.git] / drivers / mfd / davinci_voicecodec.c
CommitLineData
ca26308c
MA
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
23#include <linux/init.h>
24#include <linux/module.h>
25#include <linux/device.h>
8c0d8fa2 26#include <linux/slab.h>
ca26308c
MA
27#include <linux/delay.h>
28#include <linux/io.h>
29#include <linux/clk.h>
30
31#include <sound/pcm.h>
32
33#include <linux/mfd/davinci_voicecodec.h>
34
ca26308c
MA
35static int __init davinci_vc_probe(struct platform_device *pdev)
36{
37 struct davinci_vc *davinci_vc;
c8eaed45 38 struct resource *res;
ca26308c
MA
39 struct mfd_cell *cell = NULL;
40 int ret;
41
099053a4
LJ
42 davinci_vc = devm_kzalloc(&pdev->dev,
43 sizeof(struct davinci_vc), GFP_KERNEL);
ca26308c
MA
44 if (!davinci_vc) {
45 dev_dbg(&pdev->dev,
46 "could not allocate memory for private data\n");
47 return -ENOMEM;
48 }
49
c8eaed45 50 davinci_vc->clk = devm_clk_get(&pdev->dev, NULL);
ca26308c
MA
51 if (IS_ERR(davinci_vc->clk)) {
52 dev_dbg(&pdev->dev,
53 "could not get the clock for voice codec\n");
099053a4 54 return -ENODEV;
ca26308c
MA
55 }
56 clk_enable(davinci_vc->clk);
57
58 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
ca26308c 59
c8eaed45
SK
60 davinci_vc->base = devm_ioremap_resource(&pdev->dev, res);
61 if (IS_ERR(davinci_vc->base)) {
62 ret = PTR_ERR(davinci_vc->base);
63 goto fail;
ca26308c
MA
64 }
65
66 res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
67 if (!res) {
68 dev_err(&pdev->dev, "no DMA resource\n");
e2bde787 69 ret = -ENXIO;
c8eaed45 70 goto fail;
ca26308c
MA
71 }
72
73 davinci_vc->davinci_vcif.dma_tx_channel = res->start;
74 davinci_vc->davinci_vcif.dma_tx_addr =
75 (dma_addr_t)(io_v2p(davinci_vc->base) + DAVINCI_VC_WFIFO);
76
77 res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
78 if (!res) {
79 dev_err(&pdev->dev, "no DMA resource\n");
e2bde787 80 ret = -ENXIO;
c8eaed45 81 goto fail;
ca26308c
MA
82 }
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
88 davinci_vc->dev = &pdev->dev;
89 davinci_vc->pdev = pdev;
90
91 /* Voice codec interface client */
92 cell = &davinci_vc->cells[DAVINCI_VC_VCIF_CELL];
73ee6524 93 cell->name = "davinci-vcif";
cb5811cf
SO
94 cell->platform_data = davinci_vc;
95 cell->pdata_size = sizeof(*davinci_vc);
ca26308c
MA
96
97 /* Voice codec CQ93VC client */
98 cell = &davinci_vc->cells[DAVINCI_VC_CQ93VC_CELL];
73ee6524 99 cell->name = "cq93vc-codec";
cb5811cf
SO
100 cell->platform_data = davinci_vc;
101 cell->pdata_size = sizeof(*davinci_vc);
ca26308c
MA
102
103 ret = mfd_add_devices(&pdev->dev, pdev->id, davinci_vc->cells,
0848c94f 104 DAVINCI_VC_CELLS, NULL, 0, NULL);
ca26308c
MA
105 if (ret != 0) {
106 dev_err(&pdev->dev, "fail to register client devices\n");
c8eaed45 107 goto fail;
ca26308c
MA
108 }
109
110 return 0;
111
c8eaed45 112fail:
ca26308c 113 clk_disable(davinci_vc->clk);
ca26308c
MA
114
115 return ret;
116}
117
4740f73f 118static int davinci_vc_remove(struct platform_device *pdev)
ca26308c
MA
119{
120 struct davinci_vc *davinci_vc = platform_get_drvdata(pdev);
121
122 mfd_remove_devices(&pdev->dev);
123
ca26308c 124 clk_disable(davinci_vc->clk);
ca26308c 125
ca26308c
MA
126 return 0;
127}
128
129static struct platform_driver davinci_vc_driver = {
130 .driver = {
131 .name = "davinci_voicecodec",
132 .owner = THIS_MODULE,
133 },
84449216 134 .remove = davinci_vc_remove,
ca26308c
MA
135};
136
3de764d4 137module_platform_driver_probe(davinci_vc_driver, davinci_vc_probe);
ca26308c
MA
138
139MODULE_AUTHOR("Miguel Aguilar");
140MODULE_DESCRIPTION("Texas Instruments DaVinci Voice Codec Core Interface");
141MODULE_LICENSE("GPL");