blob: 2d7d4115cb71f576d302a8f291b35f1bcad92414 [file] [log] [blame]
Jarkko Nikula49100c92010-05-05 11:14:22 +03001/*
2 * rx51.c -- SoC audio for Nokia RX-51
3 *
4 * Copyright (C) 2008 - 2009 Nokia Corporation
5 *
6 * Contact: Peter Ujfalusi <peter.ujfalusi@nokia.com>
7 * Eduardo Valentin <eduardo.valentin@nokia.com>
8 * Jarkko Nikula <jhnikula@gmail.com>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * version 2 as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 * 02110-1301 USA
23 *
24 */
25
26#include <linux/delay.h>
27#include <linux/gpio.h>
28#include <linux/platform_device.h>
29#include <sound/core.h>
Jarkko Nikula8c523112010-06-21 14:15:00 +030030#include <sound/jack.h>
Jarkko Nikula49100c92010-05-05 11:14:22 +030031#include <sound/pcm.h>
32#include <sound/soc.h>
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000033#include <plat/mcbsp.h>
Jarkko Nikula48529b32011-01-27 16:47:11 +020034#include "../codecs/tpa6130a2.h"
Jarkko Nikula49100c92010-05-05 11:14:22 +030035
36#include <asm/mach-types.h>
37
38#include "omap-mcbsp.h"
39#include "omap-pcm.h"
Jarkko Nikula49100c92010-05-05 11:14:22 +030040
Jarkko Nikula4eb54702010-06-21 14:14:59 +030041#define RX51_TVOUT_SEL_GPIO 40
Jarkko Nikula8c523112010-06-21 14:15:00 +030042#define RX51_JACK_DETECT_GPIO 177
Jarkko Nikula49100c92010-05-05 11:14:22 +030043/*
44 * REVISIT: TWL4030 GPIO base in RX-51. Now statically defined to 192. This
45 * gpio is reserved in arch/arm/mach-omap2/board-rx51-peripherals.c
46 */
47#define RX51_SPEAKER_AMP_TWL_GPIO (192 + 7)
48
Jarkko Nikula4eb54702010-06-21 14:14:59 +030049enum {
50 RX51_JACK_DISABLED,
Jarkko Nikula48529b32011-01-27 16:47:11 +020051 RX51_JACK_TVOUT, /* tv-out with stereo output */
52 RX51_JACK_HP, /* headphone: stereo output, no mic */
Jarkko Nikula4eb54702010-06-21 14:14:59 +030053};
54
Jarkko Nikula49100c92010-05-05 11:14:22 +030055static int rx51_spk_func;
56static int rx51_dmic_func;
Jarkko Nikula4eb54702010-06-21 14:14:59 +030057static int rx51_jack_func;
Jarkko Nikula49100c92010-05-05 11:14:22 +030058
59static void rx51_ext_control(struct snd_soc_codec *codec)
60{
Liam Girdwoodce6120c2010-11-05 15:53:46 +020061 struct snd_soc_dapm_context *dapm = &codec->dapm;
Jarkko Nikula48529b32011-01-27 16:47:11 +020062 int hp = 0, tvout = 0;
63
64 switch (rx51_jack_func) {
65 case RX51_JACK_TVOUT:
66 tvout = 1;
67 case RX51_JACK_HP:
68 hp = 1;
69 break;
70 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +020071
Jarkko Nikula49100c92010-05-05 11:14:22 +030072 if (rx51_spk_func)
Liam Girdwoodce6120c2010-11-05 15:53:46 +020073 snd_soc_dapm_enable_pin(dapm, "Ext Spk");
Jarkko Nikula49100c92010-05-05 11:14:22 +030074 else
Liam Girdwoodce6120c2010-11-05 15:53:46 +020075 snd_soc_dapm_disable_pin(dapm, "Ext Spk");
Jarkko Nikula49100c92010-05-05 11:14:22 +030076 if (rx51_dmic_func)
Liam Girdwoodce6120c2010-11-05 15:53:46 +020077 snd_soc_dapm_enable_pin(dapm, "DMic");
Jarkko Nikula49100c92010-05-05 11:14:22 +030078 else
Liam Girdwoodce6120c2010-11-05 15:53:46 +020079 snd_soc_dapm_disable_pin(dapm, "DMic");
Jarkko Nikula48529b32011-01-27 16:47:11 +020080 if (hp)
81 snd_soc_dapm_enable_pin(dapm, "Headphone Jack");
82 else
83 snd_soc_dapm_disable_pin(dapm, "Headphone Jack");
Jarkko Nikula49100c92010-05-05 11:14:22 +030084
Jarkko Nikula48529b32011-01-27 16:47:11 +020085 gpio_set_value(RX51_TVOUT_SEL_GPIO, tvout);
Jarkko Nikula4eb54702010-06-21 14:14:59 +030086
Liam Girdwoodce6120c2010-11-05 15:53:46 +020087 snd_soc_dapm_sync(dapm);
Jarkko Nikula49100c92010-05-05 11:14:22 +030088}
89
90static int rx51_startup(struct snd_pcm_substream *substream)
91{
92 struct snd_pcm_runtime *runtime = substream->runtime;
93 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000094 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula49100c92010-05-05 11:14:22 +030095
96 snd_pcm_hw_constraint_minmax(runtime,
97 SNDRV_PCM_HW_PARAM_CHANNELS, 2, 2);
98 rx51_ext_control(codec);
99
100 return 0;
101}
102
103static int rx51_hw_params(struct snd_pcm_substream *substream,
104 struct snd_pcm_hw_params *params)
105{
106 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000107 struct snd_soc_dai *codec_dai = rtd->codec_dai;
108 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Jarkko Nikula49100c92010-05-05 11:14:22 +0300109 int err;
110
111 /* Set codec DAI configuration */
112 err = snd_soc_dai_set_fmt(codec_dai,
113 SND_SOC_DAIFMT_DSP_A |
114 SND_SOC_DAIFMT_IB_NF |
115 SND_SOC_DAIFMT_CBM_CFM);
116 if (err < 0)
117 return err;
118
119 /* Set cpu DAI configuration */
120 err = snd_soc_dai_set_fmt(cpu_dai,
121 SND_SOC_DAIFMT_DSP_A |
122 SND_SOC_DAIFMT_IB_NF |
123 SND_SOC_DAIFMT_CBM_CFM);
124 if (err < 0)
125 return err;
126
127 /* Set the codec system clock for DAC and ADC */
128 return snd_soc_dai_set_sysclk(codec_dai, 0, 19200000,
129 SND_SOC_CLOCK_IN);
130}
131
132static struct snd_soc_ops rx51_ops = {
133 .startup = rx51_startup,
134 .hw_params = rx51_hw_params,
135};
136
137static int rx51_get_spk(struct snd_kcontrol *kcontrol,
138 struct snd_ctl_elem_value *ucontrol)
139{
140 ucontrol->value.integer.value[0] = rx51_spk_func;
141
142 return 0;
143}
144
145static int rx51_set_spk(struct snd_kcontrol *kcontrol,
146 struct snd_ctl_elem_value *ucontrol)
147{
148 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
149
150 if (rx51_spk_func == ucontrol->value.integer.value[0])
151 return 0;
152
153 rx51_spk_func = ucontrol->value.integer.value[0];
154 rx51_ext_control(codec);
155
156 return 1;
157}
158
159static int rx51_spk_event(struct snd_soc_dapm_widget *w,
160 struct snd_kcontrol *k, int event)
161{
162 if (SND_SOC_DAPM_EVENT_ON(event))
Jarkko Nikula4fff7a52010-08-23 10:36:41 +0300163 gpio_set_value_cansleep(RX51_SPEAKER_AMP_TWL_GPIO, 1);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300164 else
Jarkko Nikula4fff7a52010-08-23 10:36:41 +0300165 gpio_set_value_cansleep(RX51_SPEAKER_AMP_TWL_GPIO, 0);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300166
167 return 0;
168}
169
Jarkko Nikula48529b32011-01-27 16:47:11 +0200170static int rx51_hp_event(struct snd_soc_dapm_widget *w,
171 struct snd_kcontrol *k, int event)
172{
173 struct snd_soc_codec *codec = w->dapm->codec;
174
175 if (SND_SOC_DAPM_EVENT_ON(event))
176 tpa6130a2_stereo_enable(codec, 1);
177 else
178 tpa6130a2_stereo_enable(codec, 0);
179
180 return 0;
181}
182
Jarkko Nikula49100c92010-05-05 11:14:22 +0300183static int rx51_get_input(struct snd_kcontrol *kcontrol,
184 struct snd_ctl_elem_value *ucontrol)
185{
186 ucontrol->value.integer.value[0] = rx51_dmic_func;
187
188 return 0;
189}
190
191static int rx51_set_input(struct snd_kcontrol *kcontrol,
192 struct snd_ctl_elem_value *ucontrol)
193{
194 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
195
196 if (rx51_dmic_func == ucontrol->value.integer.value[0])
197 return 0;
198
199 rx51_dmic_func = ucontrol->value.integer.value[0];
200 rx51_ext_control(codec);
201
202 return 1;
203}
204
Jarkko Nikula4eb54702010-06-21 14:14:59 +0300205static int rx51_get_jack(struct snd_kcontrol *kcontrol,
206 struct snd_ctl_elem_value *ucontrol)
207{
208 ucontrol->value.integer.value[0] = rx51_jack_func;
209
210 return 0;
211}
212
213static int rx51_set_jack(struct snd_kcontrol *kcontrol,
214 struct snd_ctl_elem_value *ucontrol)
215{
216 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
217
218 if (rx51_jack_func == ucontrol->value.integer.value[0])
219 return 0;
220
221 rx51_jack_func = ucontrol->value.integer.value[0];
222 rx51_ext_control(codec);
223
224 return 1;
225}
226
Jarkko Nikula8c523112010-06-21 14:15:00 +0300227static struct snd_soc_jack rx51_av_jack;
228
229static struct snd_soc_jack_gpio rx51_av_jack_gpios[] = {
230 {
231 .gpio = RX51_JACK_DETECT_GPIO,
232 .name = "avdet-gpio",
233 .report = SND_JACK_VIDEOOUT,
234 .invert = 1,
235 .debounce_time = 200,
236 },
237};
238
Jarkko Nikula49100c92010-05-05 11:14:22 +0300239static const struct snd_soc_dapm_widget aic34_dapm_widgets[] = {
240 SND_SOC_DAPM_SPK("Ext Spk", rx51_spk_event),
241 SND_SOC_DAPM_MIC("DMic", NULL),
Jarkko Nikula48529b32011-01-27 16:47:11 +0200242 SND_SOC_DAPM_HP("Headphone Jack", rx51_hp_event),
Jarkko Nikula49100c92010-05-05 11:14:22 +0300243};
244
Jarkko Nikula8cda9752011-01-31 14:43:48 +0200245static const struct snd_soc_dapm_widget aic34_dapm_widgetsb[] = {
246 SND_SOC_DAPM_SPK("Earphone", NULL),
247};
248
Jarkko Nikula49100c92010-05-05 11:14:22 +0300249static const struct snd_soc_dapm_route audio_map[] = {
250 {"Ext Spk", NULL, "HPLOUT"},
251 {"Ext Spk", NULL, "HPROUT"},
Jarkko Nikula48529b32011-01-27 16:47:11 +0200252 {"Headphone Jack", NULL, "LLOUT"},
253 {"Headphone Jack", NULL, "RLOUT"},
Jarkko Nikula49100c92010-05-05 11:14:22 +0300254
255 {"DMic Rate 64", NULL, "Mic Bias 2V"},
256 {"Mic Bias 2V", NULL, "DMic"},
257};
258
Jarkko Nikula8cda9752011-01-31 14:43:48 +0200259static const struct snd_soc_dapm_route audio_mapb[] = {
260 {"b LINE2R", NULL, "MONO_LOUT"},
261 {"Earphone", NULL, "b HPLOUT"},
262};
263
Jarkko Nikula49100c92010-05-05 11:14:22 +0300264static const char *spk_function[] = {"Off", "On"};
265static const char *input_function[] = {"ADC", "Digital Mic"};
Jarkko Nikula48529b32011-01-27 16:47:11 +0200266static const char *jack_function[] = {"Off", "TV-OUT", "Headphone"};
Jarkko Nikula49100c92010-05-05 11:14:22 +0300267
268static const struct soc_enum rx51_enum[] = {
269 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(spk_function), spk_function),
270 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(input_function), input_function),
Jarkko Nikula4eb54702010-06-21 14:14:59 +0300271 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(jack_function), jack_function),
Jarkko Nikula49100c92010-05-05 11:14:22 +0300272};
273
274static const struct snd_kcontrol_new aic34_rx51_controls[] = {
275 SOC_ENUM_EXT("Speaker Function", rx51_enum[0],
276 rx51_get_spk, rx51_set_spk),
277 SOC_ENUM_EXT("Input Select", rx51_enum[1],
278 rx51_get_input, rx51_set_input),
Jarkko Nikula4eb54702010-06-21 14:14:59 +0300279 SOC_ENUM_EXT("Jack Function", rx51_enum[2],
280 rx51_get_jack, rx51_set_jack),
Jarkko Nikula49100c92010-05-05 11:14:22 +0300281};
282
Jarkko Nikula8cda9752011-01-31 14:43:48 +0200283static const struct snd_kcontrol_new aic34_rx51_controlsb[] = {
284 SOC_DAPM_PIN_SWITCH("Earphone"),
285};
286
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000287static int rx51_aic34_init(struct snd_soc_pcm_runtime *rtd)
Jarkko Nikula49100c92010-05-05 11:14:22 +0300288{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000289 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200290 struct snd_soc_dapm_context *dapm = &codec->dapm;
Jarkko Nikula49100c92010-05-05 11:14:22 +0300291 int err;
292
293 /* Set up NC codec pins */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200294 snd_soc_dapm_nc_pin(dapm, "MIC3L");
295 snd_soc_dapm_nc_pin(dapm, "MIC3R");
296 snd_soc_dapm_nc_pin(dapm, "LINE1R");
Jarkko Nikula49100c92010-05-05 11:14:22 +0300297
298 /* Add RX-51 specific controls */
299 err = snd_soc_add_controls(codec, aic34_rx51_controls,
300 ARRAY_SIZE(aic34_rx51_controls));
301 if (err < 0)
302 return err;
303
304 /* Add RX-51 specific widgets */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200305 snd_soc_dapm_new_controls(dapm, aic34_dapm_widgets,
Jarkko Nikula49100c92010-05-05 11:14:22 +0300306 ARRAY_SIZE(aic34_dapm_widgets));
307
308 /* Set up RX-51 specific audio path audio_map */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200309 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
Jarkko Nikula49100c92010-05-05 11:14:22 +0300310
Jarkko Nikula48529b32011-01-27 16:47:11 +0200311 err = tpa6130a2_add_controls(codec);
312 if (err < 0)
313 return err;
314 snd_soc_limit_volume(codec, "TPA6130A2 Headphone Playback Volume", 42);
315
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200316 snd_soc_dapm_sync(dapm);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300317
Jarkko Nikula8c523112010-06-21 14:15:00 +0300318 /* AV jack detection */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000319 err = snd_soc_jack_new(codec, "AV Jack",
Jarkko Nikula8c523112010-06-21 14:15:00 +0300320 SND_JACK_VIDEOOUT, &rx51_av_jack);
321 if (err)
322 return err;
323 err = snd_soc_jack_add_gpios(&rx51_av_jack,
324 ARRAY_SIZE(rx51_av_jack_gpios),
325 rx51_av_jack_gpios);
326
327 return err;
Jarkko Nikula49100c92010-05-05 11:14:22 +0300328}
329
Jarkko Nikula8cda9752011-01-31 14:43:48 +0200330static int rx51_aic34b_init(struct snd_soc_dapm_context *dapm)
331{
332 int err;
333
334 err = snd_soc_add_controls(dapm->codec, aic34_rx51_controlsb,
335 ARRAY_SIZE(aic34_rx51_controlsb));
336 if (err < 0)
337 return err;
338
339 err = snd_soc_dapm_new_controls(dapm, aic34_dapm_widgetsb,
340 ARRAY_SIZE(aic34_dapm_widgetsb));
341 if (err < 0)
342 return 0;
343
344 return snd_soc_dapm_add_routes(dapm, audio_mapb,
345 ARRAY_SIZE(audio_mapb));
346}
347
Jarkko Nikula49100c92010-05-05 11:14:22 +0300348/* Digital audio interface glue - connects codec <--> CPU */
349static struct snd_soc_dai_link rx51_dai[] = {
350 {
351 .name = "TLV320AIC34",
352 .stream_name = "AIC34",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000353 .cpu_dai_name = "omap-mcbsp-dai.1",
354 .codec_dai_name = "tlv320aic3x-hifi",
355 .platform_name = "omap-pcm-audio",
356 .codec_name = "tlv320aic3x-codec.2-0018",
Jarkko Nikula49100c92010-05-05 11:14:22 +0300357 .init = rx51_aic34_init,
358 .ops = &rx51_ops,
359 },
360};
361
Jarkko Nikula8cda9752011-01-31 14:43:48 +0200362struct snd_soc_aux_dev rx51_aux_dev[] = {
363 {
364 .name = "TLV320AIC34b",
365 .codec_name = "tlv320aic3x-codec.2-0019",
366 .init = rx51_aic34b_init,
367 },
368};
369
370static struct snd_soc_codec_conf rx51_codec_conf[] = {
371 {
372 .dev_name = "tlv320aic3x-codec.2-0019",
373 .name_prefix = "b",
374 },
375};
376
Jarkko Nikula49100c92010-05-05 11:14:22 +0300377/* Audio card */
378static struct snd_soc_card rx51_sound_card = {
379 .name = "RX-51",
380 .dai_link = rx51_dai,
381 .num_links = ARRAY_SIZE(rx51_dai),
Jarkko Nikula8cda9752011-01-31 14:43:48 +0200382 .aux_dev = rx51_aux_dev,
383 .num_aux_devs = ARRAY_SIZE(rx51_aux_dev),
384 .codec_conf = rx51_codec_conf,
385 .num_configs = ARRAY_SIZE(rx51_codec_conf),
Jarkko Nikula49100c92010-05-05 11:14:22 +0300386};
387
388static struct platform_device *rx51_snd_device;
389
390static int __init rx51_soc_init(void)
391{
392 int err;
393
394 if (!machine_is_nokia_rx51())
395 return -ENODEV;
396
Jarkko Nikula4eb54702010-06-21 14:14:59 +0300397 err = gpio_request(RX51_TVOUT_SEL_GPIO, "tvout_sel");
398 if (err)
399 goto err_gpio_tvout_sel;
400 gpio_direction_output(RX51_TVOUT_SEL_GPIO, 0);
401
Jarkko Nikula49100c92010-05-05 11:14:22 +0300402 rx51_snd_device = platform_device_alloc("soc-audio", -1);
403 if (!rx51_snd_device) {
404 err = -ENOMEM;
405 goto err1;
406 }
407
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000408 platform_set_drvdata(rx51_snd_device, &rx51_sound_card);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300409
410 err = platform_device_add(rx51_snd_device);
411 if (err)
412 goto err2;
413
414 return 0;
415err2:
416 platform_device_put(rx51_snd_device);
417err1:
Jarkko Nikula4eb54702010-06-21 14:14:59 +0300418 gpio_free(RX51_TVOUT_SEL_GPIO);
419err_gpio_tvout_sel:
Jarkko Nikula49100c92010-05-05 11:14:22 +0300420
421 return err;
422}
423
424static void __exit rx51_soc_exit(void)
425{
Jarkko Nikula8c523112010-06-21 14:15:00 +0300426 snd_soc_jack_free_gpios(&rx51_av_jack, ARRAY_SIZE(rx51_av_jack_gpios),
427 rx51_av_jack_gpios);
428
Jarkko Nikula49100c92010-05-05 11:14:22 +0300429 platform_device_unregister(rx51_snd_device);
Jarkko Nikula4eb54702010-06-21 14:14:59 +0300430 gpio_free(RX51_TVOUT_SEL_GPIO);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300431}
432
433module_init(rx51_soc_init);
434module_exit(rx51_soc_exit);
435
436MODULE_AUTHOR("Nokia Corporation");
437MODULE_DESCRIPTION("ALSA SoC Nokia RX-51");
438MODULE_LICENSE("GPL");