blob: f33245510c3bea22b35bfc424a06773f7e2ed19e [file] [log] [blame]
Janusz Krzysztofik459dc352009-07-22 05:22:28 +02001/*
2 * cx20442.c -- CX20442 ALSA Soc Audio driver
3 *
4 * Copyright 2009 Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
5 *
6 * Initially based on sound/soc/codecs/wm8400.c
7 * Copyright 2008, 2009 Wolfson Microelectronics PLC.
8 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 */
15
Janusz Krzysztofikad120da2009-07-29 12:24:46 +020016#include <linux/tty.h>
17
Janusz Krzysztofik459dc352009-07-22 05:22:28 +020018#include <sound/core.h>
19#include <sound/initval.h>
20#include <sound/soc-dapm.h>
21
22#include "cx20442.h"
23
24
25struct cx20442_priv {
26 struct snd_soc_codec codec;
27 u8 reg_cache[1];
28};
29
30#define CX20442_PM 0x0
31
32#define CX20442_TELIN 0
33#define CX20442_TELOUT 1
34#define CX20442_MIC 2
35#define CX20442_SPKOUT 3
36#define CX20442_AGC 4
37
38static const struct snd_soc_dapm_widget cx20442_dapm_widgets[] = {
39 SND_SOC_DAPM_OUTPUT("TELOUT"),
40 SND_SOC_DAPM_OUTPUT("SPKOUT"),
41 SND_SOC_DAPM_OUTPUT("AGCOUT"),
42
43 SND_SOC_DAPM_MIXER("SPKOUT Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
44
45 SND_SOC_DAPM_PGA("TELOUT Amp", CX20442_PM, CX20442_TELOUT, 0, NULL, 0),
46 SND_SOC_DAPM_PGA("SPKOUT Amp", CX20442_PM, CX20442_SPKOUT, 0, NULL, 0),
47 SND_SOC_DAPM_PGA("SPKOUT AGC", CX20442_PM, CX20442_AGC, 0, NULL, 0),
48
49 SND_SOC_DAPM_DAC("DAC", "Playback", SND_SOC_NOPM, 0, 0),
50 SND_SOC_DAPM_ADC("ADC", "Capture", SND_SOC_NOPM, 0, 0),
51
52 SND_SOC_DAPM_MIXER("Input Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
53
54 SND_SOC_DAPM_MICBIAS("TELIN Bias", CX20442_PM, CX20442_TELIN, 0),
55 SND_SOC_DAPM_MICBIAS("MIC Bias", CX20442_PM, CX20442_MIC, 0),
56
57 SND_SOC_DAPM_PGA("MIC AGC", CX20442_PM, CX20442_AGC, 0, NULL, 0),
58
59 SND_SOC_DAPM_INPUT("TELIN"),
60 SND_SOC_DAPM_INPUT("MIC"),
61 SND_SOC_DAPM_INPUT("AGCIN"),
62};
63
64static const struct snd_soc_dapm_route cx20442_audio_map[] = {
65 {"TELOUT", NULL, "TELOUT Amp"},
66
67 {"SPKOUT", NULL, "SPKOUT Mixer"},
68 {"SPKOUT Mixer", NULL, "SPKOUT Amp"},
69
70 {"TELOUT Amp", NULL, "DAC"},
71 {"SPKOUT Amp", NULL, "DAC"},
72
73 {"SPKOUT Mixer", NULL, "SPKOUT AGC"},
74 {"SPKOUT AGC", NULL, "AGCIN"},
75
76 {"AGCOUT", NULL, "MIC AGC"},
77 {"MIC AGC", NULL, "MIC"},
78
79 {"MIC Bias", NULL, "MIC"},
80 {"Input Mixer", NULL, "MIC Bias"},
81
82 {"TELIN Bias", NULL, "TELIN"},
83 {"Input Mixer", NULL, "TELIN Bias"},
84
85 {"ADC", NULL, "Input Mixer"},
86};
87
88static int cx20442_add_widgets(struct snd_soc_codec *codec)
89{
90 snd_soc_dapm_new_controls(codec, cx20442_dapm_widgets,
91 ARRAY_SIZE(cx20442_dapm_widgets));
92
93 snd_soc_dapm_add_routes(codec, cx20442_audio_map,
94 ARRAY_SIZE(cx20442_audio_map));
95
96 snd_soc_dapm_new_widgets(codec);
97 return 0;
98}
99
100static unsigned int cx20442_read_reg_cache(struct snd_soc_codec *codec,
101 unsigned int reg)
102{
103 u8 *reg_cache = codec->reg_cache;
104
105 if (reg >= codec->reg_cache_size)
106 return -EINVAL;
107
108 return reg_cache[reg];
109}
110
111enum v253_vls {
112 V253_VLS_NONE = 0,
113 V253_VLS_T,
114 V253_VLS_L,
115 V253_VLS_LT,
116 V253_VLS_S,
117 V253_VLS_ST,
118 V253_VLS_M,
119 V253_VLS_MST,
120 V253_VLS_S1,
121 V253_VLS_S1T,
122 V253_VLS_MS1T,
123 V253_VLS_M1,
124 V253_VLS_M1ST,
125 V253_VLS_M1S1T,
126 V253_VLS_H,
127 V253_VLS_HT,
128 V253_VLS_MS,
129 V253_VLS_MS1,
130 V253_VLS_M1S,
131 V253_VLS_M1S1,
132 V253_VLS_TEST,
133};
134
135static int cx20442_pm_to_v253_vls(u8 value)
136{
Janusz Krzysztofikb84eab02009-07-28 20:24:12 +0200137 switch (value & ~(1 << CX20442_AGC)) {
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200138 case 0:
139 return V253_VLS_T;
140 case (1 << CX20442_SPKOUT):
141 return V253_VLS_S1;
142 case (1 << CX20442_MIC):
143 return V253_VLS_M1;
144 case (1 << CX20442_SPKOUT) | (1 << CX20442_MIC):
145 return V253_VLS_M1S1;
146 case (1 << CX20442_TELOUT):
147 case (1 << CX20442_TELIN):
148 case (1 << CX20442_TELOUT) | (1 << CX20442_TELIN):
149 return V253_VLS_L;
150 case (1 << CX20442_TELOUT) | (1 << CX20442_MIC):
151 return V253_VLS_NONE;
152 }
153 return -EINVAL;
154}
155static int cx20442_pm_to_v253_vsp(u8 value)
156{
Janusz Krzysztofikb84eab02009-07-28 20:24:12 +0200157 switch (value & ~(1 << CX20442_AGC)) {
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200158 case (1 << CX20442_SPKOUT):
159 case (1 << CX20442_MIC):
160 case (1 << CX20442_SPKOUT) | (1 << CX20442_MIC):
161 return (bool)(value & (1 << CX20442_AGC));
162 }
163 return (value & (1 << CX20442_AGC)) ? -EINVAL : 0;
164}
165
166static int cx20442_write(struct snd_soc_codec *codec, unsigned int reg,
167 unsigned int value)
168{
169 u8 *reg_cache = codec->reg_cache;
170 int vls, vsp, old, len;
171 char buf[18];
172
173 if (reg >= codec->reg_cache_size)
174 return -EINVAL;
175
Janusz Krzysztofikb84eab02009-07-28 20:24:12 +0200176 /* hw_write and control_data pointers required for talking to the modem
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200177 * are expected to be set by the line discipline initialization code */
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200178 if (!codec->hw_write || !codec->control_data)
179 return -EIO;
180
181 old = reg_cache[reg];
182 reg_cache[reg] = value;
183
184 vls = cx20442_pm_to_v253_vls(value);
185 if (vls < 0)
186 return vls;
187
188 vsp = cx20442_pm_to_v253_vsp(value);
Janusz Krzysztofikb84eab02009-07-28 20:24:12 +0200189 if (vsp < 0)
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200190 return vsp;
191
192 if ((vls == V253_VLS_T) ||
193 (vls == cx20442_pm_to_v253_vls(old))) {
194 if (vsp == cx20442_pm_to_v253_vsp(old))
195 return 0;
196 len = snprintf(buf, ARRAY_SIZE(buf), "at+vsp=%d\r", vsp);
197 } else if (vsp == cx20442_pm_to_v253_vsp(old))
198 len = snprintf(buf, ARRAY_SIZE(buf), "at+vls=%d\r", vls);
199 else
200 len = snprintf(buf, ARRAY_SIZE(buf),
201 "at+vls=%d;+vsp=%d\r", vls, vsp);
202
203 if (unlikely(len > (ARRAY_SIZE(buf) - 1)))
204 return -ENOMEM;
205
206 if (codec->hw_write(codec->control_data, buf, len) != len)
207 return -EIO;
208
209 return 0;
210}
211
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200212
213/* Moved up here as line discipline referres it during initialization */
214static struct snd_soc_codec *cx20442_codec;
215
216
217/*
218 * Line discpline related code
219 *
220 * Any of the callback functions below can be used in two ways:
221 * 1) registerd by a machine driver as one of line discipline operations,
222 * 2) called from a machine's provided line discipline callback function
223 * in case when extra machine specific code must be run as well.
224 */
225
226/* Modem init: echo off, digital speaker off, quiet off, voice mode */
227static const char *v253_init = "ate0m0q0+fclass=8\r";
228
229/* Line discipline .open() */
230static int v253_open(struct tty_struct *tty)
231{
232 struct snd_soc_codec *codec = cx20442_codec;
233 int ret, len = strlen(v253_init);
234
235 /* Doesn't make sense without write callback */
236 if (!tty->ops->write)
237 return -EINVAL;
238
239 /* Pass the codec structure address for use by other ldisc callbacks */
240 tty->disc_data = codec;
241
242 if (tty->ops->write(tty, v253_init, len) != len) {
243 ret = -EIO;
244 goto err;
245 }
246 /* Actual setup will be performed after the modem responds. */
247 return 0;
248err:
249 tty->disc_data = NULL;
250 return ret;
251}
252
253/* Line discipline .close() */
254static void v253_close(struct tty_struct *tty)
255{
256 struct snd_soc_codec *codec = tty->disc_data;
257
258 tty->disc_data = NULL;
259
260 if (!codec)
261 return;
262
263 /* Prevent the codec driver from further accessing the modem */
264 codec->hw_write = NULL;
265 codec->control_data = NULL;
266 codec->pop_time = 0;
267}
268
269/* Line discipline .hangup() */
270static int v253_hangup(struct tty_struct *tty)
271{
272 v253_close(tty);
273 return 0;
274}
275
276/* Line discipline .receive_buf() */
277static void v253_receive(struct tty_struct *tty,
278 const unsigned char *cp, char *fp, int count)
279{
280 struct snd_soc_codec *codec = tty->disc_data;
281
282 if (!codec)
283 return;
284
285 if (!codec->control_data) {
286 /* First modem response, complete setup procedure */
287
288 /* Set up codec driver access to modem controls */
289 codec->control_data = tty;
290 codec->hw_write = (hw_write_t)tty->ops->write;
291 codec->pop_time = 1;
292 }
293}
294
295/* Line discipline .write_wakeup() */
296static void v253_wakeup(struct tty_struct *tty)
297{
298}
299
300struct tty_ldisc_ops v253_ops = {
301 .magic = TTY_LDISC_MAGIC,
302 .name = "cx20442",
303 .owner = THIS_MODULE,
304 .open = v253_open,
305 .close = v253_close,
306 .hangup = v253_hangup,
307 .receive_buf = v253_receive,
308 .write_wakeup = v253_wakeup,
309};
310EXPORT_SYMBOL_GPL(v253_ops);
311
312
313/*
314 * Codec DAI
315 */
316
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200317struct snd_soc_dai cx20442_dai = {
318 .name = "CX20442",
319 .playback = {
320 .stream_name = "Playback",
321 .channels_min = 1,
322 .channels_max = 1,
323 .rates = SNDRV_PCM_RATE_8000,
324 .formats = SNDRV_PCM_FMTBIT_S16_LE,
325 },
326 .capture = {
327 .stream_name = "Capture",
328 .channels_min = 1,
329 .channels_max = 1,
330 .rates = SNDRV_PCM_RATE_8000,
331 .formats = SNDRV_PCM_FMTBIT_S16_LE,
332 },
333};
334EXPORT_SYMBOL_GPL(cx20442_dai);
335
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200336static int cx20442_codec_probe(struct platform_device *pdev)
337{
338 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
339 struct snd_soc_codec *codec;
340 int ret;
341
Janusz Krzysztofikb84eab02009-07-28 20:24:12 +0200342 if (!cx20442_codec) {
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200343 dev_err(&pdev->dev, "cx20442 not yet discovered\n");
344 return -ENODEV;
345 }
346 codec = cx20442_codec;
347
348 socdev->card->codec = codec;
349
350 /* register pcms */
351 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
352 if (ret < 0) {
353 dev_err(&pdev->dev, "failed to create pcms\n");
354 goto pcm_err;
355 }
356
357 cx20442_add_widgets(codec);
358
359 ret = snd_soc_init_card(socdev);
360 if (ret < 0) {
361 dev_err(&pdev->dev, "failed to register card\n");
362 goto card_err;
363 }
364
365 return ret;
366
367card_err:
368 snd_soc_free_pcms(socdev);
369 snd_soc_dapm_free(socdev);
370pcm_err:
371 return ret;
372}
373
374/* power down chip */
375static int cx20442_codec_remove(struct platform_device *pdev)
376{
377 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
378
379 snd_soc_free_pcms(socdev);
380 snd_soc_dapm_free(socdev);
381
382 return 0;
383}
384
385struct snd_soc_codec_device cx20442_codec_dev = {
386 .probe = cx20442_codec_probe,
387 .remove = cx20442_codec_remove,
388};
389EXPORT_SYMBOL_GPL(cx20442_codec_dev);
390
391static int cx20442_register(struct cx20442_priv *cx20442)
392{
393 struct snd_soc_codec *codec = &cx20442->codec;
394 int ret;
395
396 mutex_init(&codec->mutex);
397 INIT_LIST_HEAD(&codec->dapm_widgets);
398 INIT_LIST_HEAD(&codec->dapm_paths);
399
400 codec->name = "CX20442";
401 codec->owner = THIS_MODULE;
402 codec->private_data = cx20442;
403
404 codec->dai = &cx20442_dai;
405 codec->num_dai = 1;
406
407 codec->reg_cache = &cx20442->reg_cache;
408 codec->reg_cache_size = ARRAY_SIZE(cx20442->reg_cache);
409 codec->read = cx20442_read_reg_cache;
410 codec->write = cx20442_write;
411
412 codec->bias_level = SND_SOC_BIAS_OFF;
413
414 cx20442_dai.dev = codec->dev;
415
416 cx20442_codec = codec;
417
418 ret = snd_soc_register_codec(codec);
419 if (ret != 0) {
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200420 dev_err(codec->dev, "Failed to register codec: %d\n", ret);
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200421 goto err;
422 }
423
424 ret = snd_soc_register_dai(&cx20442_dai);
425 if (ret != 0) {
Janusz Krzysztofikad120da2009-07-29 12:24:46 +0200426 dev_err(codec->dev, "Failed to register DAI: %d\n", ret);
Janusz Krzysztofik459dc352009-07-22 05:22:28 +0200427 goto err_codec;
428 }
429
430 return 0;
431
432err_codec:
433 snd_soc_unregister_codec(codec);
434err:
435 cx20442_codec = NULL;
436 kfree(cx20442);
437 return ret;
438}
439
440static void cx20442_unregister(struct cx20442_priv *cx20442)
441{
442 snd_soc_unregister_dai(&cx20442_dai);
443 snd_soc_unregister_codec(&cx20442->codec);
444
445 cx20442_codec = NULL;
446 kfree(cx20442);
447}
448
449static int cx20442_platform_probe(struct platform_device *pdev)
450{
451 struct cx20442_priv *cx20442;
452 struct snd_soc_codec *codec;
453
454 cx20442 = kzalloc(sizeof(struct cx20442_priv), GFP_KERNEL);
455 if (cx20442 == NULL)
456 return -ENOMEM;
457
458 codec = &cx20442->codec;
459
460 codec->control_data = NULL;
461 codec->hw_write = NULL;
462 codec->pop_time = 0;
463
464 codec->dev = &pdev->dev;
465 platform_set_drvdata(pdev, cx20442);
466
467 return cx20442_register(cx20442);
468}
469
470static int __exit cx20442_platform_remove(struct platform_device *pdev)
471{
472 struct cx20442_priv *cx20442 = platform_get_drvdata(pdev);
473
474 cx20442_unregister(cx20442);
475 return 0;
476}
477
478static struct platform_driver cx20442_platform_driver = {
479 .driver = {
480 .name = "cx20442",
481 .owner = THIS_MODULE,
482 },
483 .probe = cx20442_platform_probe,
484 .remove = __exit_p(cx20442_platform_remove),
485};
486
487static int __init cx20442_init(void)
488{
489 return platform_driver_register(&cx20442_platform_driver);
490}
491module_init(cx20442_init);
492
493static void __exit cx20442_exit(void)
494{
495 platform_driver_unregister(&cx20442_platform_driver);
496}
497module_exit(cx20442_exit);
498
499MODULE_DESCRIPTION("ASoC CX20442-11 voice modem codec driver");
500MODULE_AUTHOR("Janusz Krzysztofik");
501MODULE_LICENSE("GPL");
Janusz Krzysztofikb84eab02009-07-28 20:24:12 +0200502MODULE_ALIAS("platform:cx20442");