2 * DaVinci Voice Codec Core Interface for TI platforms
4 * Copyright (C) 2010 Texas Instruments, Inc
6 * Author: Miguel Aguilar <miguel.aguilar@ridgerun.com>
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.
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.
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
23 #include <linux/init.h>
24 #include <linux/module.h>
25 #include <linux/device.h>
26 #include <linux/slab.h>
27 #include <linux/delay.h>
29 #include <linux/clk.h>
31 #include <sound/pcm.h>
33 #include <linux/mfd/davinci_voicecodec.h>
35 u32
davinci_vc_read(struct davinci_vc
*davinci_vc
, int reg
)
37 return __raw_readl(davinci_vc
->base
+ reg
);
40 void davinci_vc_write(struct davinci_vc
*davinci_vc
,
43 __raw_writel(val
, davinci_vc
->base
+ reg
);
46 static int __init
davinci_vc_probe(struct platform_device
*pdev
)
48 struct davinci_vc
*davinci_vc
;
49 struct resource
*res
, *mem
;
50 struct mfd_cell
*cell
= NULL
;
53 davinci_vc
= kzalloc(sizeof(struct davinci_vc
), GFP_KERNEL
);
56 "could not allocate memory for private data\n");
60 davinci_vc
->clk
= clk_get(&pdev
->dev
, NULL
);
61 if (IS_ERR(davinci_vc
->clk
)) {
63 "could not get the clock for voice codec\n");
67 clk_enable(davinci_vc
->clk
);
69 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
71 dev_err(&pdev
->dev
, "no mem resource\n");
76 davinci_vc
->pbase
= res
->start
;
77 davinci_vc
->base_size
= resource_size(res
);
79 mem
= request_mem_region(davinci_vc
->pbase
, davinci_vc
->base_size
,
82 dev_err(&pdev
->dev
, "VCIF region already claimed\n");
87 davinci_vc
->base
= ioremap(davinci_vc
->pbase
, davinci_vc
->base_size
);
88 if (!davinci_vc
->base
) {
89 dev_err(&pdev
->dev
, "can't ioremap mem resource.\n");
94 res
= platform_get_resource(pdev
, IORESOURCE_DMA
, 0);
96 dev_err(&pdev
->dev
, "no DMA resource\n");
101 davinci_vc
->davinci_vcif
.dma_tx_channel
= res
->start
;
102 davinci_vc
->davinci_vcif
.dma_tx_addr
=
103 (dma_addr_t
)(io_v2p(davinci_vc
->base
) + DAVINCI_VC_WFIFO
);
105 res
= platform_get_resource(pdev
, IORESOURCE_DMA
, 1);
107 dev_err(&pdev
->dev
, "no DMA resource\n");
112 davinci_vc
->davinci_vcif
.dma_rx_channel
= res
->start
;
113 davinci_vc
->davinci_vcif
.dma_rx_addr
=
114 (dma_addr_t
)(io_v2p(davinci_vc
->base
) + DAVINCI_VC_RFIFO
);
116 davinci_vc
->dev
= &pdev
->dev
;
117 davinci_vc
->pdev
= pdev
;
119 /* Voice codec interface client */
120 cell
= &davinci_vc
->cells
[DAVINCI_VC_VCIF_CELL
];
121 cell
->name
= "davinci_vcif";
122 cell
->driver_data
= davinci_vc
;
124 /* Voice codec CQ93VC client */
125 cell
= &davinci_vc
->cells
[DAVINCI_VC_CQ93VC_CELL
];
126 cell
->name
= "cq93vc";
127 cell
->driver_data
= davinci_vc
;
129 ret
= mfd_add_devices(&pdev
->dev
, pdev
->id
, davinci_vc
->cells
,
130 DAVINCI_VC_CELLS
, NULL
, 0);
132 dev_err(&pdev
->dev
, "fail to register client devices\n");
139 iounmap(davinci_vc
->base
);
141 release_mem_region(davinci_vc
->pbase
, davinci_vc
->base_size
);
143 clk_disable(davinci_vc
->clk
);
144 clk_put(davinci_vc
->clk
);
145 davinci_vc
->clk
= NULL
;
152 static int __devexit
davinci_vc_remove(struct platform_device
*pdev
)
154 struct davinci_vc
*davinci_vc
= platform_get_drvdata(pdev
);
156 mfd_remove_devices(&pdev
->dev
);
158 iounmap(davinci_vc
->base
);
159 release_mem_region(davinci_vc
->pbase
, davinci_vc
->base_size
);
161 clk_disable(davinci_vc
->clk
);
162 clk_put(davinci_vc
->clk
);
163 davinci_vc
->clk
= NULL
;
170 static struct platform_driver davinci_vc_driver
= {
172 .name
= "davinci_voicecodec",
173 .owner
= THIS_MODULE
,
175 .remove
= __devexit_p(davinci_vc_remove
),
178 static int __init
davinci_vc_init(void)
180 return platform_driver_probe(&davinci_vc_driver
, davinci_vc_probe
);
182 module_init(davinci_vc_init
);
184 static void __exit
davinci_vc_exit(void)
186 platform_driver_unregister(&davinci_vc_driver
);
188 module_exit(davinci_vc_exit
);
190 MODULE_AUTHOR("Miguel Aguilar");
191 MODULE_DESCRIPTION("Texas Instruments DaVinci Voice Codec Core Interface");
192 MODULE_LICENSE("GPL");