aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/cq93vc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/codecs/cq93vc.c')
-rw-r--r--sound/soc/codecs/cq93vc.c136
1 files changed, 30 insertions, 106 deletions
diff --git a/sound/soc/codecs/cq93vc.c b/sound/soc/codecs/cq93vc.c
index a320fb5a0e26..46dbfd067f79 100644
--- a/sound/soc/codecs/cq93vc.c
+++ b/sound/soc/codecs/cq93vc.c
@@ -30,19 +30,16 @@
30#include <linux/slab.h> 30#include <linux/slab.h>
31#include <linux/clk.h> 31#include <linux/clk.h>
32#include <linux/mfd/davinci_voicecodec.h> 32#include <linux/mfd/davinci_voicecodec.h>
33#include <linux/spi/spi.h>
33 34
34#include <sound/core.h> 35#include <sound/core.h>
35#include <sound/pcm.h> 36#include <sound/pcm.h>
36#include <sound/pcm_params.h> 37#include <sound/pcm_params.h>
37#include <sound/soc.h> 38#include <sound/soc.h>
38#include <sound/soc-dai.h>
39#include <sound/soc-dapm.h>
40#include <sound/initval.h> 39#include <sound/initval.h>
41 40
42#include <mach/dm365.h> 41#include <mach/dm365.h>
43 42
44#include "cq93vc.h"
45
46static inline unsigned int cq93vc_read(struct snd_soc_codec *codec, 43static inline unsigned int cq93vc_read(struct snd_soc_codec *codec,
47 unsigned int reg) 44 unsigned int reg)
48{ 45{
@@ -117,7 +114,7 @@ static int cq93vc_set_bias_level(struct snd_soc_codec *codec,
117 DAVINCI_VC_REG12_POWER_ALL_OFF); 114 DAVINCI_VC_REG12_POWER_ALL_OFF);
118 break; 115 break;
119 } 116 }
120 codec->bias_level = level; 117 codec->dapm.bias_level = level;
121 118
122 return 0; 119 return 0;
123} 120}
@@ -130,8 +127,8 @@ static struct snd_soc_dai_ops cq93vc_dai_ops = {
130 .set_sysclk = cq93vc_set_dai_sysclk, 127 .set_sysclk = cq93vc_set_dai_sysclk,
131}; 128};
132 129
133struct snd_soc_dai cq93vc_dai = { 130static struct snd_soc_dai_driver cq93vc_dai = {
134 .name = "CQ93VC", 131 .name = "cq93vc-hifi",
135 .playback = { 132 .playback = {
136 .stream_name = "Playback", 133 .stream_name = "Playback",
137 .channels_min = 1, 134 .channels_min = 1,
@@ -146,36 +143,20 @@ struct snd_soc_dai cq93vc_dai = {
146 .formats = CQ93VC_FORMATS,}, 143 .formats = CQ93VC_FORMATS,},
147 .ops = &cq93vc_dai_ops, 144 .ops = &cq93vc_dai_ops,
148}; 145};
149EXPORT_SYMBOL_GPL(cq93vc_dai);
150 146
151static int cq93vc_resume(struct platform_device *pdev) 147static int cq93vc_resume(struct snd_soc_codec *codec)
152{ 148{
153 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
154 struct snd_soc_codec *codec = socdev->card->codec;
155
156 cq93vc_set_bias_level(codec, SND_SOC_BIAS_STANDBY); 149 cq93vc_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
157 150
158 return 0; 151 return 0;
159} 152}
160 153
161static struct snd_soc_codec *cq93vc_codec; 154static int cq93vc_probe(struct snd_soc_codec *codec)
162
163static int cq93vc_probe(struct platform_device *pdev)
164{ 155{
165 struct snd_soc_device *socdev = platform_get_drvdata(pdev); 156 struct davinci_vc *davinci_vc = codec->dev->platform_data;
166 struct device *dev = &pdev->dev; 157
167 struct snd_soc_codec *codec; 158 davinci_vc->cq93vc.codec = codec;
168 int ret; 159 codec->control_data = davinci_vc;
169
170 socdev->card->codec = cq93vc_codec;
171 codec = socdev->card->codec;
172
173 /* Register pcms */
174 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
175 if (ret < 0) {
176 dev_err(dev, "%s: failed to create pcms\n", pdev->name);
177 return ret;
178 }
179 160
180 /* Set controls */ 161 /* Set controls */
181 snd_soc_add_controls(codec, cq93vc_snd_controls, 162 snd_soc_add_controls(codec, cq93vc_snd_controls,
@@ -187,108 +168,51 @@ static int cq93vc_probe(struct platform_device *pdev)
187 return 0; 168 return 0;
188} 169}
189 170
190static int cq93vc_remove(struct platform_device *pdev) 171static int cq93vc_remove(struct snd_soc_codec *codec)
191{ 172{
192 struct snd_soc_device *socdev = platform_get_drvdata(pdev); 173 cq93vc_set_bias_level(codec, SND_SOC_BIAS_OFF);
193
194 snd_soc_free_pcms(socdev);
195 snd_soc_dapm_free(socdev);
196 174
197 return 0; 175 return 0;
198} 176}
199 177
200struct snd_soc_codec_device soc_codec_dev_cq93vc = { 178static struct snd_soc_codec_driver soc_codec_dev_cq93vc = {
179 .read = cq93vc_read,
180 .write = cq93vc_write,
181 .set_bias_level = cq93vc_set_bias_level,
201 .probe = cq93vc_probe, 182 .probe = cq93vc_probe,
202 .remove = cq93vc_remove, 183 .remove = cq93vc_remove,
203 .resume = cq93vc_resume, 184 .resume = cq93vc_resume,
204}; 185};
205EXPORT_SYMBOL_GPL(soc_codec_dev_cq93vc);
206 186
207static __init int cq93vc_codec_probe(struct platform_device *pdev) 187static int cq93vc_platform_probe(struct platform_device *pdev)
208{ 188{
209 struct davinci_vc *davinci_vc = platform_get_drvdata(pdev); 189 return snd_soc_register_codec(&pdev->dev,
210 struct snd_soc_codec *codec; 190 &soc_codec_dev_cq93vc, &cq93vc_dai, 1);
211 int ret;
212
213 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
214 if (codec == NULL) {
215 dev_dbg(davinci_vc->dev,
216 "could not allocate memory for codec data\n");
217 return -ENOMEM;
218 }
219
220 davinci_vc->cq93vc.codec = codec;
221
222 cq93vc_dai.dev = &pdev->dev;
223
224 mutex_init(&codec->mutex);
225 INIT_LIST_HEAD(&codec->dapm_widgets);
226 INIT_LIST_HEAD(&codec->dapm_paths);
227 codec->dev = &pdev->dev;
228 codec->name = "CQ93VC";
229 codec->owner = THIS_MODULE;
230 codec->read = cq93vc_read;
231 codec->write = cq93vc_write;
232 codec->set_bias_level = cq93vc_set_bias_level;
233 codec->dai = &cq93vc_dai;
234 codec->num_dai = 1;
235 codec->control_data = davinci_vc;
236
237 cq93vc_codec = codec;
238
239 ret = snd_soc_register_codec(codec);
240 if (ret) {
241 dev_err(davinci_vc->dev, "failed to register codec\n");
242 goto fail1;
243 }
244
245 ret = snd_soc_register_dai(&cq93vc_dai);
246 if (ret) {
247 dev_err(davinci_vc->dev, "could register dai\n");
248 goto fail2;
249 }
250 return 0;
251
252fail2:
253 snd_soc_unregister_codec(codec);
254
255fail1:
256 kfree(codec);
257 cq93vc_codec = NULL;
258
259 return ret;
260} 191}
261 192
262static int __devexit cq93vc_codec_remove(struct platform_device *pdev) 193static int cq93vc_platform_remove(struct platform_device *pdev)
263{ 194{
264 struct snd_soc_device *socdev = platform_get_drvdata(pdev); 195 snd_soc_unregister_codec(&pdev->dev);
265 struct snd_soc_codec *codec = socdev->card->codec;
266
267 snd_soc_unregister_dai(&cq93vc_dai);
268 snd_soc_unregister_codec(&codec);
269
270 kfree(codec);
271 cq93vc_codec = NULL;
272
273 return 0; 196 return 0;
274} 197}
275 198
276static struct platform_driver cq93vc_codec_driver = { 199static struct platform_driver cq93vc_codec_driver = {
277 .driver = { 200 .driver = {
278 .name = "cq93vc", 201 .name = "cq93vc-codec",
279 .owner = THIS_MODULE, 202 .owner = THIS_MODULE,
280 }, 203 },
281 .probe = cq93vc_codec_probe, 204
282 .remove = __devexit_p(cq93vc_codec_remove), 205 .probe = cq93vc_platform_probe,
206 .remove = __devexit_p(cq93vc_platform_remove),
283}; 207};
284 208
285static __init int cq93vc_init(void) 209static int __init cq93vc_init(void)
286{ 210{
287 return platform_driver_probe(&cq93vc_codec_driver, cq93vc_codec_probe); 211 return platform_driver_register(&cq93vc_codec_driver);
288} 212}
289module_init(cq93vc_init); 213module_init(cq93vc_init);
290 214
291static __exit void cq93vc_exit(void) 215static void __exit cq93vc_exit(void)
292{ 216{
293 platform_driver_unregister(&cq93vc_codec_driver); 217 platform_driver_unregister(&cq93vc_codec_driver);
294} 218}