]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/mfd/davinci_voicecodec.c
Merge branch 'linux-4.15' of git://github.com/skeggsb/linux into drm-fixes
[mirror_ubuntu-bionic-kernel.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>
921a2c87 30#include <linux/regmap.h>
ca26308c
MA
31
32#include <sound/pcm.h>
33
34#include <linux/mfd/davinci_voicecodec.h>
8ca9edc8 35#include <mach/hardware.h>
ca26308c 36
b8d12eac 37static const struct regmap_config davinci_vc_regmap = {
921a2c87
MB
38 .reg_bits = 32,
39 .val_bits = 32,
40};
41
ca26308c
MA
42static int __init davinci_vc_probe(struct platform_device *pdev)
43{
44 struct davinci_vc *davinci_vc;
c8eaed45 45 struct resource *res;
ca26308c
MA
46 struct mfd_cell *cell = NULL;
47 int ret;
48
099053a4
LJ
49 davinci_vc = devm_kzalloc(&pdev->dev,
50 sizeof(struct davinci_vc), GFP_KERNEL);
9fb41166 51 if (!davinci_vc)
ca26308c 52 return -ENOMEM;
ca26308c 53
c8eaed45 54 davinci_vc->clk = devm_clk_get(&pdev->dev, NULL);
ca26308c
MA
55 if (IS_ERR(davinci_vc->clk)) {
56 dev_dbg(&pdev->dev,
57 "could not get the clock for voice codec\n");
099053a4 58 return -ENODEV;
ca26308c
MA
59 }
60 clk_enable(davinci_vc->clk);
61
62 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
ca26308c 63
c8eaed45
SK
64 davinci_vc->base = devm_ioremap_resource(&pdev->dev, res);
65 if (IS_ERR(davinci_vc->base)) {
66 ret = PTR_ERR(davinci_vc->base);
67 goto fail;
ca26308c
MA
68 }
69
921a2c87
MB
70 davinci_vc->regmap = devm_regmap_init_mmio(&pdev->dev,
71 davinci_vc->base,
72 &davinci_vc_regmap);
73 if (IS_ERR(davinci_vc->regmap)) {
74 ret = PTR_ERR(davinci_vc->regmap);
75 goto fail;
76 }
77
ca26308c
MA
78 res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
79 if (!res) {
80 dev_err(&pdev->dev, "no DMA resource\n");
e2bde787 81 ret = -ENXIO;
c8eaed45 82 goto fail;
ca26308c
MA
83 }
84
85 davinci_vc->davinci_vcif.dma_tx_channel = res->start;
86 davinci_vc->davinci_vcif.dma_tx_addr =
87 (dma_addr_t)(io_v2p(davinci_vc->base) + DAVINCI_VC_WFIFO);
88
89 res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
90 if (!res) {
91 dev_err(&pdev->dev, "no DMA resource\n");
e2bde787 92 ret = -ENXIO;
c8eaed45 93 goto fail;
ca26308c
MA
94 }
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
100 davinci_vc->dev = &pdev->dev;
101 davinci_vc->pdev = pdev;
102
103 /* Voice codec interface client */
104 cell = &davinci_vc->cells[DAVINCI_VC_VCIF_CELL];
73ee6524 105 cell->name = "davinci-vcif";
cb5811cf
SO
106 cell->platform_data = davinci_vc;
107 cell->pdata_size = sizeof(*davinci_vc);
ca26308c
MA
108
109 /* Voice codec CQ93VC client */
110 cell = &davinci_vc->cells[DAVINCI_VC_CQ93VC_CELL];
73ee6524 111 cell->name = "cq93vc-codec";
cb5811cf
SO
112 cell->platform_data = davinci_vc;
113 cell->pdata_size = sizeof(*davinci_vc);
ca26308c
MA
114
115 ret = mfd_add_devices(&pdev->dev, pdev->id, davinci_vc->cells,
0848c94f 116 DAVINCI_VC_CELLS, NULL, 0, NULL);
ca26308c
MA
117 if (ret != 0) {
118 dev_err(&pdev->dev, "fail to register client devices\n");
c8eaed45 119 goto fail;
ca26308c
MA
120 }
121
122 return 0;
123
c8eaed45 124fail:
ca26308c 125 clk_disable(davinci_vc->clk);
ca26308c
MA
126
127 return ret;
128}
129
4740f73f 130static int davinci_vc_remove(struct platform_device *pdev)
ca26308c
MA
131{
132 struct davinci_vc *davinci_vc = platform_get_drvdata(pdev);
133
134 mfd_remove_devices(&pdev->dev);
135
ca26308c 136 clk_disable(davinci_vc->clk);
ca26308c 137
ca26308c
MA
138 return 0;
139}
140
141static struct platform_driver davinci_vc_driver = {
142 .driver = {
143 .name = "davinci_voicecodec",
ca26308c 144 },
84449216 145 .remove = davinci_vc_remove,
ca26308c
MA
146};
147
3de764d4 148module_platform_driver_probe(davinci_vc_driver, davinci_vc_probe);
ca26308c
MA
149
150MODULE_AUTHOR("Miguel Aguilar");
151MODULE_DESCRIPTION("Texas Instruments DaVinci Voice Codec Core Interface");
152MODULE_LICENSE("GPL");