2 * ALSA SoC WL1273 codec driver
4 * Author: Matti Aaltonen, <matti.j.aaltonen@nokia.com>
6 * Copyright: (C) 2010, 2011 Nokia Corporation
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24 #include <linux/mfd/wl1273-core.h>
25 #include <linux/slab.h>
26 #include <linux/module.h>
27 #include <sound/pcm.h>
28 #include <sound/pcm_params.h>
29 #include <sound/soc.h>
30 #include <sound/initval.h>
34 enum wl1273_mode { WL1273_MODE_BT, WL1273_MODE_FM_RX, WL1273_MODE_FM_TX };
36 /* codec private data */
38 enum wl1273_mode mode;
39 struct wl1273_core *core;
40 unsigned int channels;
43 static int snd_wl1273_fm_set_i2s_mode(struct wl1273_core *core,
46 struct device *dev = &core->client->dev;
50 dev_dbg(dev, "rate: %d\n", rate);
51 dev_dbg(dev, "width: %d\n", width);
53 mutex_lock(&core->lock);
55 mode = core->i2s_mode & ~WL1273_IS2_WIDTH & ~WL1273_IS2_RATE;
59 mode |= WL1273_IS2_RATE_48K;
62 mode |= WL1273_IS2_RATE_44_1K;
65 mode |= WL1273_IS2_RATE_32K;
68 mode |= WL1273_IS2_RATE_22_05K;
71 mode |= WL1273_IS2_RATE_16K;
74 mode |= WL1273_IS2_RATE_12K;
77 mode |= WL1273_IS2_RATE_11_025;
80 mode |= WL1273_IS2_RATE_8K;
83 dev_err(dev, "Sampling rate: %d not supported\n", rate);
90 mode |= WL1273_IS2_WIDTH_32;
93 mode |= WL1273_IS2_WIDTH_40;
96 mode |= WL1273_IS2_WIDTH_48;
99 mode |= WL1273_IS2_WIDTH_50;
102 mode |= WL1273_IS2_WIDTH_60;
105 mode |= WL1273_IS2_WIDTH_64;
108 mode |= WL1273_IS2_WIDTH_80;
111 mode |= WL1273_IS2_WIDTH_96;
114 mode |= WL1273_IS2_WIDTH_128;
117 dev_err(dev, "Data width: %d not supported\n", width);
122 dev_dbg(dev, "WL1273_I2S_DEF_MODE: 0x%04x\n", WL1273_I2S_DEF_MODE);
123 dev_dbg(dev, "core->i2s_mode: 0x%04x\n", core->i2s_mode);
124 dev_dbg(dev, "mode: 0x%04x\n", mode);
126 if (core->i2s_mode != mode) {
127 r = core->write(core, WL1273_I2S_MODE_CONFIG_SET, mode);
131 core->i2s_mode = mode;
132 r = core->write(core, WL1273_AUDIO_ENABLE,
133 WL1273_AUDIO_ENABLE_I2S);
138 mutex_unlock(&core->lock);
143 static int snd_wl1273_fm_set_channel_number(struct wl1273_core *core,
146 struct device *dev = &core->client->dev;
149 dev_dbg(dev, "%s\n", __func__);
151 mutex_lock(&core->lock);
153 if (core->channel_number == channel_number)
156 if (channel_number == 1 && core->mode == WL1273_MODE_RX)
157 r = core->write(core, WL1273_MOST_MODE_SET, WL1273_RX_MONO);
158 else if (channel_number == 1 && core->mode == WL1273_MODE_TX)
159 r = core->write(core, WL1273_MONO_SET, WL1273_TX_MONO);
160 else if (channel_number == 2 && core->mode == WL1273_MODE_RX)
161 r = core->write(core, WL1273_MOST_MODE_SET, WL1273_RX_STEREO);
162 else if (channel_number == 2 && core->mode == WL1273_MODE_TX)
163 r = core->write(core, WL1273_MONO_SET, WL1273_TX_STEREO);
167 mutex_unlock(&core->lock);
172 static int snd_wl1273_get_audio_route(struct snd_kcontrol *kcontrol,
173 struct snd_ctl_elem_value *ucontrol)
175 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
176 struct wl1273_priv *wl1273 = snd_soc_codec_get_drvdata(codec);
178 ucontrol->value.enumerated.item[0] = wl1273->mode;
184 * TODO: Implement the audio routing in the driver. Now this control
185 * only indicates the setting that has been done elsewhere (in the user
188 static const char * const wl1273_audio_route[] = { "Bt", "FmRx", "FmTx" };
190 static int snd_wl1273_set_audio_route(struct snd_kcontrol *kcontrol,
191 struct snd_ctl_elem_value *ucontrol)
193 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
194 struct wl1273_priv *wl1273 = snd_soc_codec_get_drvdata(codec);
196 if (wl1273->mode == ucontrol->value.enumerated.item[0])
199 /* Do not allow changes while stream is running */
200 if (snd_soc_codec_is_active(codec))
203 if (ucontrol->value.enumerated.item[0] >= ARRAY_SIZE(wl1273_audio_route))
206 wl1273->mode = ucontrol->value.enumerated.item[0];
211 static SOC_ENUM_SINGLE_EXT_DECL(wl1273_enum, wl1273_audio_route);
213 static int snd_wl1273_fm_audio_get(struct snd_kcontrol *kcontrol,
214 struct snd_ctl_elem_value *ucontrol)
216 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
217 struct wl1273_priv *wl1273 = snd_soc_codec_get_drvdata(codec);
219 dev_dbg(codec->dev, "%s: enter.\n", __func__);
221 ucontrol->value.enumerated.item[0] = wl1273->core->audio_mode;
226 static int snd_wl1273_fm_audio_put(struct snd_kcontrol *kcontrol,
227 struct snd_ctl_elem_value *ucontrol)
229 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
230 struct wl1273_priv *wl1273 = snd_soc_codec_get_drvdata(codec);
233 dev_dbg(codec->dev, "%s: enter.\n", __func__);
235 val = ucontrol->value.enumerated.item[0];
236 if (wl1273->core->audio_mode == val)
239 r = wl1273->core->set_audio(wl1273->core, val);
246 static const char * const wl1273_audio_strings[] = { "Digital", "Analog" };
248 static SOC_ENUM_SINGLE_EXT_DECL(wl1273_audio_enum, wl1273_audio_strings);
250 static int snd_wl1273_fm_volume_get(struct snd_kcontrol *kcontrol,
251 struct snd_ctl_elem_value *ucontrol)
253 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
254 struct wl1273_priv *wl1273 = snd_soc_codec_get_drvdata(codec);
256 dev_dbg(codec->dev, "%s: enter.\n", __func__);
258 ucontrol->value.integer.value[0] = wl1273->core->volume;
263 static int snd_wl1273_fm_volume_put(struct snd_kcontrol *kcontrol,
264 struct snd_ctl_elem_value *ucontrol)
266 struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
267 struct wl1273_priv *wl1273 = snd_soc_codec_get_drvdata(codec);
270 dev_dbg(codec->dev, "%s: enter.\n", __func__);
272 r = wl1273->core->set_volume(wl1273->core,
273 ucontrol->value.integer.value[0]);
280 static const struct snd_kcontrol_new wl1273_controls[] = {
281 SOC_ENUM_EXT("Codec Mode", wl1273_enum,
282 snd_wl1273_get_audio_route, snd_wl1273_set_audio_route),
283 SOC_ENUM_EXT("Audio Switch", wl1273_audio_enum,
284 snd_wl1273_fm_audio_get, snd_wl1273_fm_audio_put),
285 SOC_SINGLE_EXT("Volume", 0, 0, WL1273_MAX_VOLUME, 0,
286 snd_wl1273_fm_volume_get, snd_wl1273_fm_volume_put),
289 static const struct snd_soc_dapm_widget wl1273_dapm_widgets[] = {
290 SND_SOC_DAPM_INPUT("RX"),
292 SND_SOC_DAPM_OUTPUT("TX"),
295 static const struct snd_soc_dapm_route wl1273_dapm_routes[] = {
296 { "Capture", NULL, "RX" },
298 { "TX", NULL, "Playback" },
301 static int wl1273_startup(struct snd_pcm_substream *substream,
302 struct snd_soc_dai *dai)
304 struct snd_soc_codec *codec = dai->codec;
305 struct wl1273_priv *wl1273 = snd_soc_codec_get_drvdata(codec);
307 switch (wl1273->mode) {
309 snd_pcm_hw_constraint_single(substream->runtime,
310 SNDRV_PCM_HW_PARAM_RATE, 8000);
311 snd_pcm_hw_constraint_single(substream->runtime,
312 SNDRV_PCM_HW_PARAM_CHANNELS, 1);
314 case WL1273_MODE_FM_RX:
315 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
316 pr_err("Cannot play in RX mode.\n");
320 case WL1273_MODE_FM_TX:
321 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
322 pr_err("Cannot capture in TX mode.\n");
334 static int wl1273_hw_params(struct snd_pcm_substream *substream,
335 struct snd_pcm_hw_params *params,
336 struct snd_soc_dai *dai)
338 struct wl1273_priv *wl1273 = snd_soc_codec_get_drvdata(dai->codec);
339 struct wl1273_core *core = wl1273->core;
340 unsigned int rate, width, r;
342 if (params_width(params) != 16) {
343 dev_err(dai->dev, "%d bits/sample not supported\n",
344 params_width(params));
348 rate = params_rate(params);
349 width = hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS)->min;
351 if (wl1273->mode == WL1273_MODE_BT) {
353 pr_err("Rate %d not supported.\n", params_rate(params));
357 if (params_channels(params) != 1) {
358 pr_err("Only mono supported.\n");
365 if (wl1273->mode == WL1273_MODE_FM_TX &&
366 substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
367 pr_err("Only playback supported with TX.\n");
371 if (wl1273->mode == WL1273_MODE_FM_RX &&
372 substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
373 pr_err("Only capture supported with RX.\n");
377 if (wl1273->mode != WL1273_MODE_FM_RX &&
378 wl1273->mode != WL1273_MODE_FM_TX) {
379 pr_err("Unexpected mode: %d.\n", wl1273->mode);
383 r = snd_wl1273_fm_set_i2s_mode(core, rate, width);
387 wl1273->channels = params_channels(params);
388 r = snd_wl1273_fm_set_channel_number(core, wl1273->channels);
395 static const struct snd_soc_dai_ops wl1273_dai_ops = {
396 .startup = wl1273_startup,
397 .hw_params = wl1273_hw_params,
400 static struct snd_soc_dai_driver wl1273_dai = {
403 .stream_name = "Playback",
406 .rates = SNDRV_PCM_RATE_8000_48000,
407 .formats = SNDRV_PCM_FMTBIT_S16_LE},
409 .stream_name = "Capture",
412 .rates = SNDRV_PCM_RATE_8000_48000,
413 .formats = SNDRV_PCM_FMTBIT_S16_LE},
414 .ops = &wl1273_dai_ops,
417 /* Audio interface format for the soc_card driver */
418 int wl1273_get_format(struct snd_soc_codec *codec, unsigned int *fmt)
420 struct wl1273_priv *wl1273;
422 if (codec == NULL || fmt == NULL)
425 wl1273 = snd_soc_codec_get_drvdata(codec);
427 switch (wl1273->mode) {
428 case WL1273_MODE_FM_RX:
429 case WL1273_MODE_FM_TX:
430 *fmt = SND_SOC_DAIFMT_I2S |
431 SND_SOC_DAIFMT_NB_NF |
432 SND_SOC_DAIFMT_CBM_CFM;
436 *fmt = SND_SOC_DAIFMT_DSP_A |
437 SND_SOC_DAIFMT_IB_NF |
438 SND_SOC_DAIFMT_CBM_CFM;
447 EXPORT_SYMBOL_GPL(wl1273_get_format);
449 static int wl1273_probe(struct snd_soc_codec *codec)
451 struct wl1273_core **core = codec->dev->platform_data;
452 struct wl1273_priv *wl1273;
454 dev_dbg(codec->dev, "%s.\n", __func__);
457 dev_err(codec->dev, "Platform data is missing.\n");
461 wl1273 = kzalloc(sizeof(struct wl1273_priv), GFP_KERNEL);
465 wl1273->mode = WL1273_MODE_BT;
466 wl1273->core = *core;
468 snd_soc_codec_set_drvdata(codec, wl1273);
473 static int wl1273_remove(struct snd_soc_codec *codec)
475 struct wl1273_priv *wl1273 = snd_soc_codec_get_drvdata(codec);
477 dev_dbg(codec->dev, "%s\n", __func__);
483 static struct snd_soc_codec_driver soc_codec_dev_wl1273 = {
484 .probe = wl1273_probe,
485 .remove = wl1273_remove,
487 .component_driver = {
488 .controls = wl1273_controls,
489 .num_controls = ARRAY_SIZE(wl1273_controls),
490 .dapm_widgets = wl1273_dapm_widgets,
491 .num_dapm_widgets = ARRAY_SIZE(wl1273_dapm_widgets),
492 .dapm_routes = wl1273_dapm_routes,
493 .num_dapm_routes = ARRAY_SIZE(wl1273_dapm_routes),
497 static int wl1273_platform_probe(struct platform_device *pdev)
499 return snd_soc_register_codec(&pdev->dev, &soc_codec_dev_wl1273,
503 static int wl1273_platform_remove(struct platform_device *pdev)
505 snd_soc_unregister_codec(&pdev->dev);
509 MODULE_ALIAS("platform:wl1273-codec");
511 static struct platform_driver wl1273_platform_driver = {
513 .name = "wl1273-codec",
515 .probe = wl1273_platform_probe,
516 .remove = wl1273_platform_remove,
519 module_platform_driver(wl1273_platform_driver);
521 MODULE_AUTHOR("Matti Aaltonen <matti.j.aaltonen@nokia.com>");
522 MODULE_DESCRIPTION("ASoC WL1273 codec driver");
523 MODULE_LICENSE("GPL");