Merge remote-tracking branches 'asoc/topic/mc13783', 'asoc/topic/msm8916', 'asoc...
[linux-block.git] / sound / soc / codecs / cx20442.c
1 /*
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
16 #include <linux/tty.h>
17 #include <linux/slab.h>
18 #include <linux/module.h>
19 #include <linux/regulator/consumer.h>
20
21 #include <sound/core.h>
22 #include <sound/initval.h>
23 #include <sound/soc.h>
24
25 #include "cx20442.h"
26
27
28 struct cx20442_priv {
29         struct tty_struct *tty;
30         struct regulator *por;
31 };
32
33 #define CX20442_PM              0x0
34
35 #define CX20442_TELIN           0
36 #define CX20442_TELOUT          1
37 #define CX20442_MIC             2
38 #define CX20442_SPKOUT          3
39 #define CX20442_AGC             4
40
41 static const struct snd_soc_dapm_widget cx20442_dapm_widgets[] = {
42         SND_SOC_DAPM_OUTPUT("TELOUT"),
43         SND_SOC_DAPM_OUTPUT("SPKOUT"),
44         SND_SOC_DAPM_OUTPUT("AGCOUT"),
45
46         SND_SOC_DAPM_MIXER("SPKOUT Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
47
48         SND_SOC_DAPM_PGA("TELOUT Amp", CX20442_PM, CX20442_TELOUT, 0, NULL, 0),
49         SND_SOC_DAPM_PGA("SPKOUT Amp", CX20442_PM, CX20442_SPKOUT, 0, NULL, 0),
50         SND_SOC_DAPM_PGA("SPKOUT AGC", CX20442_PM, CX20442_AGC, 0, NULL, 0),
51
52         SND_SOC_DAPM_DAC("DAC", "Playback", SND_SOC_NOPM, 0, 0),
53         SND_SOC_DAPM_ADC("ADC", "Capture", SND_SOC_NOPM, 0, 0),
54
55         SND_SOC_DAPM_MIXER("Input Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
56
57         SND_SOC_DAPM_MICBIAS("TELIN Bias", CX20442_PM, CX20442_TELIN, 0),
58         SND_SOC_DAPM_MICBIAS("MIC Bias", CX20442_PM, CX20442_MIC, 0),
59
60         SND_SOC_DAPM_PGA("MIC AGC", CX20442_PM, CX20442_AGC, 0, NULL, 0),
61
62         SND_SOC_DAPM_INPUT("TELIN"),
63         SND_SOC_DAPM_INPUT("MIC"),
64         SND_SOC_DAPM_INPUT("AGCIN"),
65 };
66
67 static const struct snd_soc_dapm_route cx20442_audio_map[] = {
68         {"TELOUT", NULL, "TELOUT Amp"},
69
70         {"SPKOUT", NULL, "SPKOUT Mixer"},
71         {"SPKOUT Mixer", NULL, "SPKOUT Amp"},
72
73         {"TELOUT Amp", NULL, "DAC"},
74         {"SPKOUT Amp", NULL, "DAC"},
75
76         {"SPKOUT Mixer", NULL, "SPKOUT AGC"},
77         {"SPKOUT AGC", NULL, "AGCIN"},
78
79         {"AGCOUT", NULL, "MIC AGC"},
80         {"MIC AGC", NULL, "MIC"},
81
82         {"MIC Bias", NULL, "MIC"},
83         {"Input Mixer", NULL, "MIC Bias"},
84
85         {"TELIN Bias", NULL, "TELIN"},
86         {"Input Mixer", NULL, "TELIN Bias"},
87
88         {"ADC", NULL, "Input Mixer"},
89 };
90
91 enum v253_vls {
92         V253_VLS_NONE = 0,
93         V253_VLS_T,
94         V253_VLS_L,
95         V253_VLS_LT,
96         V253_VLS_S,
97         V253_VLS_ST,
98         V253_VLS_M,
99         V253_VLS_MST,
100         V253_VLS_S1,
101         V253_VLS_S1T,
102         V253_VLS_MS1T,
103         V253_VLS_M1,
104         V253_VLS_M1ST,
105         V253_VLS_M1S1T,
106         V253_VLS_H,
107         V253_VLS_HT,
108         V253_VLS_MS,
109         V253_VLS_MS1,
110         V253_VLS_M1S,
111         V253_VLS_M1S1,
112         V253_VLS_TEST,
113 };
114
115 #if 0
116 /* FIXME : these function will be re-used */
117 static int cx20442_pm_to_v253_vls(u8 value)
118 {
119         switch (value & ~(1 << CX20442_AGC)) {
120         case 0:
121                 return V253_VLS_T;
122         case (1 << CX20442_SPKOUT):
123         case (1 << CX20442_MIC):
124         case (1 << CX20442_SPKOUT) | (1 << CX20442_MIC):
125                 return V253_VLS_M1S1;
126         case (1 << CX20442_TELOUT):
127         case (1 << CX20442_TELIN):
128         case (1 << CX20442_TELOUT) | (1 << CX20442_TELIN):
129                 return V253_VLS_L;
130         case (1 << CX20442_TELOUT) | (1 << CX20442_MIC):
131                 return V253_VLS_NONE;
132         }
133         return -EINVAL;
134 }
135 static int cx20442_pm_to_v253_vsp(u8 value)
136 {
137         switch (value & ~(1 << CX20442_AGC)) {
138         case (1 << CX20442_SPKOUT):
139         case (1 << CX20442_MIC):
140         case (1 << CX20442_SPKOUT) | (1 << CX20442_MIC):
141                 return (bool)(value & (1 << CX20442_AGC));
142         }
143         return (value & (1 << CX20442_AGC)) ? -EINVAL : 0;
144 }
145
146 static int cx20442_write(struct snd_soc_codec *codec, unsigned int reg,
147                                                         unsigned int value)
148 {
149         struct cx20442_priv *cx20442 = snd_soc_codec_get_drvdata(codec);
150         u8 *reg_cache = codec->reg_cache;
151         int vls, vsp, old, len;
152         char buf[18];
153
154         if (reg >= codec->driver->reg_cache_size)
155                 return -EINVAL;
156
157         /* tty and write pointers required for talking to the modem
158          * are expected to be set by the line discipline initialization code */
159         if (!cx20442->tty || !cx20442->tty->ops->write)
160                 return -EIO;
161
162         old = reg_cache[reg];
163         reg_cache[reg] = value;
164
165         vls = cx20442_pm_to_v253_vls(value);
166         if (vls < 0)
167                 return vls;
168
169         vsp = cx20442_pm_to_v253_vsp(value);
170         if (vsp < 0)
171                 return vsp;
172
173         if ((vls == V253_VLS_T) ||
174                         (vls == cx20442_pm_to_v253_vls(old))) {
175                 if (vsp == cx20442_pm_to_v253_vsp(old))
176                         return 0;
177                 len = snprintf(buf, ARRAY_SIZE(buf), "at+vsp=%d\r", vsp);
178         } else if (vsp == cx20442_pm_to_v253_vsp(old))
179                 len = snprintf(buf, ARRAY_SIZE(buf), "at+vls=%d\r", vls);
180         else
181                 len = snprintf(buf, ARRAY_SIZE(buf),
182                                         "at+vls=%d;+vsp=%d\r", vls, vsp);
183
184         if (unlikely(len > (ARRAY_SIZE(buf) - 1)))
185                 return -ENOMEM;
186
187         dev_dbg(codec->dev, "%s: %s\n", __func__, buf);
188         if (cx20442->tty->ops->write(cx20442->tty, buf, len) != len)
189                 return -EIO;
190
191         return 0;
192 }
193 #endif
194
195 /*
196  * Line discpline related code
197  *
198  * Any of the callback functions below can be used in two ways:
199  * 1) registerd by a machine driver as one of line discipline operations,
200  * 2) called from a machine's provided line discipline callback function
201  *    in case when extra machine specific code must be run as well.
202  */
203
204 /* Modem init: echo off, digital speaker off, quiet off, voice mode */
205 static const char *v253_init = "ate0m0q0+fclass=8\r";
206
207 /* Line discipline .open() */
208 static int v253_open(struct tty_struct *tty)
209 {
210         int ret, len = strlen(v253_init);
211
212         /* Doesn't make sense without write callback */
213         if (!tty->ops->write)
214                 return -EINVAL;
215
216         /* Won't work if no codec pointer has been passed by a card driver */
217         if (!tty->disc_data)
218                 return -ENODEV;
219
220         tty->receive_room = 16;
221         if (tty->ops->write(tty, v253_init, len) != len) {
222                 ret = -EIO;
223                 goto err;
224         }
225         /* Actual setup will be performed after the modem responds. */
226         return 0;
227 err:
228         tty->disc_data = NULL;
229         return ret;
230 }
231
232 /* Line discipline .close() */
233 static void v253_close(struct tty_struct *tty)
234 {
235         struct snd_soc_codec *codec = tty->disc_data;
236         struct cx20442_priv *cx20442;
237
238         tty->disc_data = NULL;
239
240         if (!codec)
241                 return;
242
243         cx20442 = snd_soc_codec_get_drvdata(codec);
244
245         /* Prevent the codec driver from further accessing the modem */
246         cx20442->tty = NULL;
247         codec->component.card->pop_time = 0;
248 }
249
250 /* Line discipline .hangup() */
251 static int v253_hangup(struct tty_struct *tty)
252 {
253         v253_close(tty);
254         return 0;
255 }
256
257 /* Line discipline .receive_buf() */
258 static void v253_receive(struct tty_struct *tty,
259                                 const unsigned char *cp, char *fp, int count)
260 {
261         struct snd_soc_codec *codec = tty->disc_data;
262         struct cx20442_priv *cx20442;
263
264         if (!codec)
265                 return;
266
267         cx20442 = snd_soc_codec_get_drvdata(codec);
268
269         if (!cx20442->tty) {
270                 /* First modem response, complete setup procedure */
271
272                 /* Set up codec driver access to modem controls */
273                 cx20442->tty = tty;
274                 codec->component.card->pop_time = 1;
275         }
276 }
277
278 /* Line discipline .write_wakeup() */
279 static void v253_wakeup(struct tty_struct *tty)
280 {
281 }
282
283 struct tty_ldisc_ops v253_ops = {
284         .magic = TTY_LDISC_MAGIC,
285         .name = "cx20442",
286         .owner = THIS_MODULE,
287         .open = v253_open,
288         .close = v253_close,
289         .hangup = v253_hangup,
290         .receive_buf = v253_receive,
291         .write_wakeup = v253_wakeup,
292 };
293 EXPORT_SYMBOL_GPL(v253_ops);
294
295
296 /*
297  * Codec DAI
298  */
299
300 static struct snd_soc_dai_driver cx20442_dai = {
301         .name = "cx20442-voice",
302         .playback = {
303                 .stream_name = "Playback",
304                 .channels_min = 1,
305                 .channels_max = 1,
306                 .rates = SNDRV_PCM_RATE_8000,
307                 .formats = SNDRV_PCM_FMTBIT_S16_LE,
308         },
309         .capture = {
310                 .stream_name = "Capture",
311                 .channels_min = 1,
312                 .channels_max = 1,
313                 .rates = SNDRV_PCM_RATE_8000,
314                 .formats = SNDRV_PCM_FMTBIT_S16_LE,
315         },
316 };
317
318 static int cx20442_set_bias_level(struct snd_soc_codec *codec,
319                 enum snd_soc_bias_level level)
320 {
321         struct cx20442_priv *cx20442 = snd_soc_codec_get_drvdata(codec);
322         int err = 0;
323
324         switch (level) {
325         case SND_SOC_BIAS_PREPARE:
326                 if (snd_soc_codec_get_bias_level(codec) != SND_SOC_BIAS_STANDBY)
327                         break;
328                 if (IS_ERR(cx20442->por))
329                         err = PTR_ERR(cx20442->por);
330                 else
331                         err = regulator_enable(cx20442->por);
332                 break;
333         case SND_SOC_BIAS_STANDBY:
334                 if (snd_soc_codec_get_bias_level(codec) != SND_SOC_BIAS_PREPARE)
335                         break;
336                 if (IS_ERR(cx20442->por))
337                         err = PTR_ERR(cx20442->por);
338                 else
339                         err = regulator_disable(cx20442->por);
340                 break;
341         default:
342                 break;
343         }
344
345         return err;
346 }
347
348 static int cx20442_codec_probe(struct snd_soc_codec *codec)
349 {
350         struct cx20442_priv *cx20442;
351
352         cx20442 = kzalloc(sizeof(struct cx20442_priv), GFP_KERNEL);
353         if (cx20442 == NULL)
354                 return -ENOMEM;
355
356         cx20442->por = regulator_get(codec->dev, "POR");
357         if (IS_ERR(cx20442->por))
358                 dev_warn(codec->dev, "failed to get the regulator");
359         cx20442->tty = NULL;
360
361         snd_soc_codec_set_drvdata(codec, cx20442);
362         codec->component.card->pop_time = 0;
363
364         return 0;
365 }
366
367 /* power down chip */
368 static int cx20442_codec_remove(struct snd_soc_codec *codec)
369 {
370         struct cx20442_priv *cx20442 = snd_soc_codec_get_drvdata(codec);
371
372         if (cx20442->tty) {
373                 struct tty_struct *tty = cx20442->tty;
374                 tty_hangup(tty);
375         }
376
377         if (!IS_ERR(cx20442->por)) {
378                 /* should be already in STANDBY, hence disabled */
379                 regulator_put(cx20442->por);
380         }
381
382         snd_soc_codec_set_drvdata(codec, NULL);
383         kfree(cx20442);
384         return 0;
385 }
386
387 static const u8 cx20442_reg;
388
389 static const struct snd_soc_codec_driver cx20442_codec_dev = {
390         .probe =        cx20442_codec_probe,
391         .remove =       cx20442_codec_remove,
392         .set_bias_level = cx20442_set_bias_level,
393
394         .component_driver = {
395                 .dapm_widgets           = cx20442_dapm_widgets,
396                 .num_dapm_widgets       = ARRAY_SIZE(cx20442_dapm_widgets),
397                 .dapm_routes            = cx20442_audio_map,
398                 .num_dapm_routes        = ARRAY_SIZE(cx20442_audio_map),
399         },
400 };
401
402 static int cx20442_platform_probe(struct platform_device *pdev)
403 {
404         return snd_soc_register_codec(&pdev->dev,
405                         &cx20442_codec_dev, &cx20442_dai, 1);
406 }
407
408 static int cx20442_platform_remove(struct platform_device *pdev)
409 {
410         snd_soc_unregister_codec(&pdev->dev);
411         return 0;
412 }
413
414 static struct platform_driver cx20442_platform_driver = {
415         .driver = {
416                 .name = "cx20442-codec",
417                 },
418         .probe = cx20442_platform_probe,
419         .remove = cx20442_platform_remove,
420 };
421
422 module_platform_driver(cx20442_platform_driver);
423
424 MODULE_DESCRIPTION("ASoC CX20442-11 voice modem codec driver");
425 MODULE_AUTHOR("Janusz Krzysztofik");
426 MODULE_LICENSE("GPL");
427 MODULE_ALIAS("platform:cx20442-codec");