2 * cx20442.c -- CX20442 ALSA Soc Audio driver
4 * Copyright 2009 Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
6 * Initially based on sound/soc/codecs/wm8400.c
7 * Copyright 2008, 2009 Wolfson Microelectronics PLC.
8 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
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.
16 #include <linux/tty.h>
17 #include <linux/slab.h>
19 #include <sound/core.h>
20 #include <sound/initval.h>
21 #include <sound/soc-dapm.h>
27 struct snd_soc_codec codec
;
31 #define CX20442_PM 0x0
33 #define CX20442_TELIN 0
34 #define CX20442_TELOUT 1
36 #define CX20442_SPKOUT 3
39 static const struct snd_soc_dapm_widget cx20442_dapm_widgets
[] = {
40 SND_SOC_DAPM_OUTPUT("TELOUT"),
41 SND_SOC_DAPM_OUTPUT("SPKOUT"),
42 SND_SOC_DAPM_OUTPUT("AGCOUT"),
44 SND_SOC_DAPM_MIXER("SPKOUT Mixer", SND_SOC_NOPM
, 0, 0, NULL
, 0),
46 SND_SOC_DAPM_PGA("TELOUT Amp", CX20442_PM
, CX20442_TELOUT
, 0, NULL
, 0),
47 SND_SOC_DAPM_PGA("SPKOUT Amp", CX20442_PM
, CX20442_SPKOUT
, 0, NULL
, 0),
48 SND_SOC_DAPM_PGA("SPKOUT AGC", CX20442_PM
, CX20442_AGC
, 0, NULL
, 0),
50 SND_SOC_DAPM_DAC("DAC", "Playback", SND_SOC_NOPM
, 0, 0),
51 SND_SOC_DAPM_ADC("ADC", "Capture", SND_SOC_NOPM
, 0, 0),
53 SND_SOC_DAPM_MIXER("Input Mixer", SND_SOC_NOPM
, 0, 0, NULL
, 0),
55 SND_SOC_DAPM_MICBIAS("TELIN Bias", CX20442_PM
, CX20442_TELIN
, 0),
56 SND_SOC_DAPM_MICBIAS("MIC Bias", CX20442_PM
, CX20442_MIC
, 0),
58 SND_SOC_DAPM_PGA("MIC AGC", CX20442_PM
, CX20442_AGC
, 0, NULL
, 0),
60 SND_SOC_DAPM_INPUT("TELIN"),
61 SND_SOC_DAPM_INPUT("MIC"),
62 SND_SOC_DAPM_INPUT("AGCIN"),
65 static const struct snd_soc_dapm_route cx20442_audio_map
[] = {
66 {"TELOUT", NULL
, "TELOUT Amp"},
68 {"SPKOUT", NULL
, "SPKOUT Mixer"},
69 {"SPKOUT Mixer", NULL
, "SPKOUT Amp"},
71 {"TELOUT Amp", NULL
, "DAC"},
72 {"SPKOUT Amp", NULL
, "DAC"},
74 {"SPKOUT Mixer", NULL
, "SPKOUT AGC"},
75 {"SPKOUT AGC", NULL
, "AGCIN"},
77 {"AGCOUT", NULL
, "MIC AGC"},
78 {"MIC AGC", NULL
, "MIC"},
80 {"MIC Bias", NULL
, "MIC"},
81 {"Input Mixer", NULL
, "MIC Bias"},
83 {"TELIN Bias", NULL
, "TELIN"},
84 {"Input Mixer", NULL
, "TELIN Bias"},
86 {"ADC", NULL
, "Input Mixer"},
89 static int cx20442_add_widgets(struct snd_soc_codec
*codec
)
91 snd_soc_dapm_new_controls(codec
, cx20442_dapm_widgets
,
92 ARRAY_SIZE(cx20442_dapm_widgets
));
94 snd_soc_dapm_add_routes(codec
, cx20442_audio_map
,
95 ARRAY_SIZE(cx20442_audio_map
));
100 static unsigned int cx20442_read_reg_cache(struct snd_soc_codec
*codec
,
103 u8
*reg_cache
= codec
->reg_cache
;
105 if (reg
>= codec
->reg_cache_size
)
108 return reg_cache
[reg
];
135 static int cx20442_pm_to_v253_vls(u8 value
)
137 switch (value
& ~(1 << CX20442_AGC
)) {
140 case (1 << CX20442_SPKOUT
):
141 case (1 << CX20442_MIC
):
142 case (1 << CX20442_SPKOUT
) | (1 << CX20442_MIC
):
143 return V253_VLS_M1S1
;
144 case (1 << CX20442_TELOUT
):
145 case (1 << CX20442_TELIN
):
146 case (1 << CX20442_TELOUT
) | (1 << CX20442_TELIN
):
148 case (1 << CX20442_TELOUT
) | (1 << CX20442_MIC
):
149 return V253_VLS_NONE
;
153 static int cx20442_pm_to_v253_vsp(u8 value
)
155 switch (value
& ~(1 << CX20442_AGC
)) {
156 case (1 << CX20442_SPKOUT
):
157 case (1 << CX20442_MIC
):
158 case (1 << CX20442_SPKOUT
) | (1 << CX20442_MIC
):
159 return (bool)(value
& (1 << CX20442_AGC
));
161 return (value
& (1 << CX20442_AGC
)) ? -EINVAL
: 0;
164 static int cx20442_write(struct snd_soc_codec
*codec
, unsigned int reg
,
167 u8
*reg_cache
= codec
->reg_cache
;
168 int vls
, vsp
, old
, len
;
171 if (reg
>= codec
->reg_cache_size
)
174 /* hw_write and control_data pointers required for talking to the modem
175 * are expected to be set by the line discipline initialization code */
176 if (!codec
->hw_write
|| !codec
->control_data
)
179 old
= reg_cache
[reg
];
180 reg_cache
[reg
] = value
;
182 vls
= cx20442_pm_to_v253_vls(value
);
186 vsp
= cx20442_pm_to_v253_vsp(value
);
190 if ((vls
== V253_VLS_T
) ||
191 (vls
== cx20442_pm_to_v253_vls(old
))) {
192 if (vsp
== cx20442_pm_to_v253_vsp(old
))
194 len
= snprintf(buf
, ARRAY_SIZE(buf
), "at+vsp=%d\r", vsp
);
195 } else if (vsp
== cx20442_pm_to_v253_vsp(old
))
196 len
= snprintf(buf
, ARRAY_SIZE(buf
), "at+vls=%d\r", vls
);
198 len
= snprintf(buf
, ARRAY_SIZE(buf
),
199 "at+vls=%d;+vsp=%d\r", vls
, vsp
);
201 if (unlikely(len
> (ARRAY_SIZE(buf
) - 1)))
204 dev_dbg(codec
->dev
, "%s: %s\n", __func__
, buf
);
205 if (codec
->hw_write(codec
->control_data
, buf
, len
) != len
)
212 /* Moved up here as line discipline referres it during initialization */
213 static struct snd_soc_codec
*cx20442_codec
;
217 * Line discpline related code
219 * Any of the callback functions below can be used in two ways:
220 * 1) registerd by a machine driver as one of line discipline operations,
221 * 2) called from a machine's provided line discipline callback function
222 * in case when extra machine specific code must be run as well.
225 /* Modem init: echo off, digital speaker off, quiet off, voice mode */
226 static const char *v253_init
= "ate0m0q0+fclass=8\r";
228 /* Line discipline .open() */
229 static int v253_open(struct tty_struct
*tty
)
231 struct snd_soc_codec
*codec
= cx20442_codec
;
232 int ret
, len
= strlen(v253_init
);
234 /* Doesn't make sense without write callback */
235 if (!tty
->ops
->write
)
238 /* Pass the codec structure address for use by other ldisc callbacks */
239 tty
->disc_data
= codec
;
241 if (tty
->ops
->write(tty
, v253_init
, len
) != len
) {
245 /* Actual setup will be performed after the modem responds. */
248 tty
->disc_data
= NULL
;
252 /* Line discipline .close() */
253 static void v253_close(struct tty_struct
*tty
)
255 struct snd_soc_codec
*codec
= tty
->disc_data
;
257 tty
->disc_data
= NULL
;
262 /* Prevent the codec driver from further accessing the modem */
263 codec
->hw_write
= NULL
;
264 codec
->control_data
= NULL
;
268 /* Line discipline .hangup() */
269 static int v253_hangup(struct tty_struct
*tty
)
275 /* Line discipline .receive_buf() */
276 static void v253_receive(struct tty_struct
*tty
,
277 const unsigned char *cp
, char *fp
, int count
)
279 struct snd_soc_codec
*codec
= tty
->disc_data
;
284 if (!codec
->control_data
) {
285 /* First modem response, complete setup procedure */
287 /* Set up codec driver access to modem controls */
288 codec
->control_data
= tty
;
289 codec
->hw_write
= (hw_write_t
)tty
->ops
->write
;
294 /* Line discipline .write_wakeup() */
295 static void v253_wakeup(struct tty_struct
*tty
)
299 struct tty_ldisc_ops v253_ops
= {
300 .magic
= TTY_LDISC_MAGIC
,
302 .owner
= THIS_MODULE
,
305 .hangup
= v253_hangup
,
306 .receive_buf
= v253_receive
,
307 .write_wakeup
= v253_wakeup
,
309 EXPORT_SYMBOL_GPL(v253_ops
);
316 struct snd_soc_dai cx20442_dai
= {
319 .stream_name
= "Playback",
322 .rates
= SNDRV_PCM_RATE_8000
,
323 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
326 .stream_name
= "Capture",
329 .rates
= SNDRV_PCM_RATE_8000
,
330 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
333 EXPORT_SYMBOL_GPL(cx20442_dai
);
335 static int cx20442_codec_probe(struct platform_device
*pdev
)
337 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
338 struct snd_soc_codec
*codec
;
341 if (!cx20442_codec
) {
342 dev_err(&pdev
->dev
, "cx20442 not yet discovered\n");
345 codec
= cx20442_codec
;
347 socdev
->card
->codec
= codec
;
350 ret
= snd_soc_new_pcms(socdev
, SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
);
352 dev_err(&pdev
->dev
, "failed to create pcms\n");
356 cx20442_add_widgets(codec
);
362 /* power down chip */
363 static int cx20442_codec_remove(struct platform_device
*pdev
)
365 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
367 snd_soc_free_pcms(socdev
);
368 snd_soc_dapm_free(socdev
);
373 struct snd_soc_codec_device cx20442_codec_dev
= {
374 .probe
= cx20442_codec_probe
,
375 .remove
= cx20442_codec_remove
,
377 EXPORT_SYMBOL_GPL(cx20442_codec_dev
);
379 static int cx20442_register(struct cx20442_priv
*cx20442
)
381 struct snd_soc_codec
*codec
= &cx20442
->codec
;
384 mutex_init(&codec
->mutex
);
385 INIT_LIST_HEAD(&codec
->dapm_widgets
);
386 INIT_LIST_HEAD(&codec
->dapm_paths
);
388 codec
->name
= "CX20442";
389 codec
->owner
= THIS_MODULE
;
390 snd_soc_codec_set_drvdata(codec
, cx20442
);
392 codec
->dai
= &cx20442_dai
;
395 codec
->reg_cache
= &cx20442
->reg_cache
;
396 codec
->reg_cache_size
= ARRAY_SIZE(cx20442
->reg_cache
);
397 codec
->read
= cx20442_read_reg_cache
;
398 codec
->write
= cx20442_write
;
400 codec
->bias_level
= SND_SOC_BIAS_OFF
;
402 cx20442_dai
.dev
= codec
->dev
;
404 cx20442_codec
= codec
;
406 ret
= snd_soc_register_codec(codec
);
408 dev_err(codec
->dev
, "Failed to register codec: %d\n", ret
);
412 ret
= snd_soc_register_dai(&cx20442_dai
);
414 dev_err(codec
->dev
, "Failed to register DAI: %d\n", ret
);
421 snd_soc_unregister_codec(codec
);
423 cx20442_codec
= NULL
;
428 static void cx20442_unregister(struct cx20442_priv
*cx20442
)
430 snd_soc_unregister_dai(&cx20442_dai
);
431 snd_soc_unregister_codec(&cx20442
->codec
);
433 cx20442_codec
= NULL
;
437 static int cx20442_platform_probe(struct platform_device
*pdev
)
439 struct cx20442_priv
*cx20442
;
440 struct snd_soc_codec
*codec
;
442 cx20442
= kzalloc(sizeof(struct cx20442_priv
), GFP_KERNEL
);
446 codec
= &cx20442
->codec
;
448 codec
->control_data
= NULL
;
449 codec
->hw_write
= NULL
;
452 codec
->dev
= &pdev
->dev
;
453 platform_set_drvdata(pdev
, cx20442
);
455 return cx20442_register(cx20442
);
458 static int __exit
cx20442_platform_remove(struct platform_device
*pdev
)
460 struct cx20442_priv
*cx20442
= platform_get_drvdata(pdev
);
462 cx20442_unregister(cx20442
);
466 static struct platform_driver cx20442_platform_driver
= {
469 .owner
= THIS_MODULE
,
471 .probe
= cx20442_platform_probe
,
472 .remove
= __exit_p(cx20442_platform_remove
),
475 static int __init
cx20442_init(void)
477 return platform_driver_register(&cx20442_platform_driver
);
479 module_init(cx20442_init
);
481 static void __exit
cx20442_exit(void)
483 platform_driver_unregister(&cx20442_platform_driver
);
485 module_exit(cx20442_exit
);
487 MODULE_DESCRIPTION("ASoC CX20442-11 voice modem codec driver");
488 MODULE_AUTHOR("Janusz Krzysztofik");
489 MODULE_LICENSE("GPL");
490 MODULE_ALIAS("platform:cx20442");