blob: 62fc7a4f306bf2c85d9f765aa4685df7c917f926 [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>
33#include <sound/soc-dapm.h>
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000034#include <plat/mcbsp.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"
40#include "../codecs/tlv320aic3x.h"
41
Jarkko Nikula4eb547032010-06-21 14:14:59 +030042#define RX51_TVOUT_SEL_GPIO 40
Jarkko Nikula8c523112010-06-21 14:15:00 +030043#define RX51_JACK_DETECT_GPIO 177
Jarkko Nikula49100c92010-05-05 11:14:22 +030044/*
45 * REVISIT: TWL4030 GPIO base in RX-51. Now statically defined to 192. This
46 * gpio is reserved in arch/arm/mach-omap2/board-rx51-peripherals.c
47 */
48#define RX51_SPEAKER_AMP_TWL_GPIO (192 + 7)
49
Jarkko Nikula4eb547032010-06-21 14:14:59 +030050enum {
51 RX51_JACK_DISABLED,
52 RX51_JACK_TVOUT, /* tv-out */
53};
54
Jarkko Nikula49100c92010-05-05 11:14:22 +030055static int rx51_spk_func;
56static int rx51_dmic_func;
Jarkko Nikula4eb547032010-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;
62
Jarkko Nikula49100c92010-05-05 11:14:22 +030063 if (rx51_spk_func)
Liam Girdwoodce6120c2010-11-05 15:53:46 +020064 snd_soc_dapm_enable_pin(dapm, "Ext Spk");
Jarkko Nikula49100c92010-05-05 11:14:22 +030065 else
Liam Girdwoodce6120c2010-11-05 15:53:46 +020066 snd_soc_dapm_disable_pin(dapm, "Ext Spk");
Jarkko Nikula49100c92010-05-05 11:14:22 +030067 if (rx51_dmic_func)
Liam Girdwoodce6120c2010-11-05 15:53:46 +020068 snd_soc_dapm_enable_pin(dapm, "DMic");
Jarkko Nikula49100c92010-05-05 11:14:22 +030069 else
Liam Girdwoodce6120c2010-11-05 15:53:46 +020070 snd_soc_dapm_disable_pin(dapm, "DMic");
Jarkko Nikula49100c92010-05-05 11:14:22 +030071
Jarkko Nikula4eb547032010-06-21 14:14:59 +030072 gpio_set_value(RX51_TVOUT_SEL_GPIO,
73 rx51_jack_func == RX51_JACK_TVOUT);
74
Liam Girdwoodce6120c2010-11-05 15:53:46 +020075 snd_soc_dapm_sync(dapm);
Jarkko Nikula49100c92010-05-05 11:14:22 +030076}
77
78static int rx51_startup(struct snd_pcm_substream *substream)
79{
80 struct snd_pcm_runtime *runtime = substream->runtime;
81 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000082 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula49100c92010-05-05 11:14:22 +030083
84 snd_pcm_hw_constraint_minmax(runtime,
85 SNDRV_PCM_HW_PARAM_CHANNELS, 2, 2);
86 rx51_ext_control(codec);
87
88 return 0;
89}
90
91static int rx51_hw_params(struct snd_pcm_substream *substream,
92 struct snd_pcm_hw_params *params)
93{
94 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000095 struct snd_soc_dai *codec_dai = rtd->codec_dai;
96 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Jarkko Nikula49100c92010-05-05 11:14:22 +030097 int err;
98
99 /* Set codec DAI configuration */
100 err = snd_soc_dai_set_fmt(codec_dai,
101 SND_SOC_DAIFMT_DSP_A |
102 SND_SOC_DAIFMT_IB_NF |
103 SND_SOC_DAIFMT_CBM_CFM);
104 if (err < 0)
105 return err;
106
107 /* Set cpu DAI configuration */
108 err = snd_soc_dai_set_fmt(cpu_dai,
109 SND_SOC_DAIFMT_DSP_A |
110 SND_SOC_DAIFMT_IB_NF |
111 SND_SOC_DAIFMT_CBM_CFM);
112 if (err < 0)
113 return err;
114
115 /* Set the codec system clock for DAC and ADC */
116 return snd_soc_dai_set_sysclk(codec_dai, 0, 19200000,
117 SND_SOC_CLOCK_IN);
118}
119
120static struct snd_soc_ops rx51_ops = {
121 .startup = rx51_startup,
122 .hw_params = rx51_hw_params,
123};
124
125static int rx51_get_spk(struct snd_kcontrol *kcontrol,
126 struct snd_ctl_elem_value *ucontrol)
127{
128 ucontrol->value.integer.value[0] = rx51_spk_func;
129
130 return 0;
131}
132
133static int rx51_set_spk(struct snd_kcontrol *kcontrol,
134 struct snd_ctl_elem_value *ucontrol)
135{
136 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
137
138 if (rx51_spk_func == ucontrol->value.integer.value[0])
139 return 0;
140
141 rx51_spk_func = ucontrol->value.integer.value[0];
142 rx51_ext_control(codec);
143
144 return 1;
145}
146
147static int rx51_spk_event(struct snd_soc_dapm_widget *w,
148 struct snd_kcontrol *k, int event)
149{
150 if (SND_SOC_DAPM_EVENT_ON(event))
Jarkko Nikula4fff7a52010-08-23 10:36:41 +0300151 gpio_set_value_cansleep(RX51_SPEAKER_AMP_TWL_GPIO, 1);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300152 else
Jarkko Nikula4fff7a52010-08-23 10:36:41 +0300153 gpio_set_value_cansleep(RX51_SPEAKER_AMP_TWL_GPIO, 0);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300154
155 return 0;
156}
157
158static int rx51_get_input(struct snd_kcontrol *kcontrol,
159 struct snd_ctl_elem_value *ucontrol)
160{
161 ucontrol->value.integer.value[0] = rx51_dmic_func;
162
163 return 0;
164}
165
166static int rx51_set_input(struct snd_kcontrol *kcontrol,
167 struct snd_ctl_elem_value *ucontrol)
168{
169 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
170
171 if (rx51_dmic_func == ucontrol->value.integer.value[0])
172 return 0;
173
174 rx51_dmic_func = ucontrol->value.integer.value[0];
175 rx51_ext_control(codec);
176
177 return 1;
178}
179
Jarkko Nikula4eb547032010-06-21 14:14:59 +0300180static int rx51_get_jack(struct snd_kcontrol *kcontrol,
181 struct snd_ctl_elem_value *ucontrol)
182{
183 ucontrol->value.integer.value[0] = rx51_jack_func;
184
185 return 0;
186}
187
188static int rx51_set_jack(struct snd_kcontrol *kcontrol,
189 struct snd_ctl_elem_value *ucontrol)
190{
191 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
192
193 if (rx51_jack_func == ucontrol->value.integer.value[0])
194 return 0;
195
196 rx51_jack_func = ucontrol->value.integer.value[0];
197 rx51_ext_control(codec);
198
199 return 1;
200}
201
Jarkko Nikula8c523112010-06-21 14:15:00 +0300202static struct snd_soc_jack rx51_av_jack;
203
204static struct snd_soc_jack_gpio rx51_av_jack_gpios[] = {
205 {
206 .gpio = RX51_JACK_DETECT_GPIO,
207 .name = "avdet-gpio",
208 .report = SND_JACK_VIDEOOUT,
209 .invert = 1,
210 .debounce_time = 200,
211 },
212};
213
Jarkko Nikula49100c92010-05-05 11:14:22 +0300214static const struct snd_soc_dapm_widget aic34_dapm_widgets[] = {
215 SND_SOC_DAPM_SPK("Ext Spk", rx51_spk_event),
216 SND_SOC_DAPM_MIC("DMic", NULL),
217};
218
219static const struct snd_soc_dapm_route audio_map[] = {
220 {"Ext Spk", NULL, "HPLOUT"},
221 {"Ext Spk", NULL, "HPROUT"},
222
223 {"DMic Rate 64", NULL, "Mic Bias 2V"},
224 {"Mic Bias 2V", NULL, "DMic"},
225};
226
227static const char *spk_function[] = {"Off", "On"};
228static const char *input_function[] = {"ADC", "Digital Mic"};
Jarkko Nikula4eb547032010-06-21 14:14:59 +0300229static const char *jack_function[] = {"Off", "TV-OUT"};
Jarkko Nikula49100c92010-05-05 11:14:22 +0300230
231static const struct soc_enum rx51_enum[] = {
232 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(spk_function), spk_function),
233 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(input_function), input_function),
Jarkko Nikula4eb547032010-06-21 14:14:59 +0300234 SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(jack_function), jack_function),
Jarkko Nikula49100c92010-05-05 11:14:22 +0300235};
236
237static const struct snd_kcontrol_new aic34_rx51_controls[] = {
238 SOC_ENUM_EXT("Speaker Function", rx51_enum[0],
239 rx51_get_spk, rx51_set_spk),
240 SOC_ENUM_EXT("Input Select", rx51_enum[1],
241 rx51_get_input, rx51_set_input),
Jarkko Nikula4eb547032010-06-21 14:14:59 +0300242 SOC_ENUM_EXT("Jack Function", rx51_enum[2],
243 rx51_get_jack, rx51_set_jack),
Jarkko Nikula49100c92010-05-05 11:14:22 +0300244};
245
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000246static int rx51_aic34_init(struct snd_soc_pcm_runtime *rtd)
Jarkko Nikula49100c92010-05-05 11:14:22 +0300247{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000248 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200249 struct snd_soc_dapm_context *dapm = &codec->dapm;
Jarkko Nikula49100c92010-05-05 11:14:22 +0300250 int err;
251
252 /* Set up NC codec pins */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200253 snd_soc_dapm_nc_pin(dapm, "MIC3L");
254 snd_soc_dapm_nc_pin(dapm, "MIC3R");
255 snd_soc_dapm_nc_pin(dapm, "LINE1R");
Jarkko Nikula49100c92010-05-05 11:14:22 +0300256
257 /* Add RX-51 specific controls */
258 err = snd_soc_add_controls(codec, aic34_rx51_controls,
259 ARRAY_SIZE(aic34_rx51_controls));
260 if (err < 0)
261 return err;
262
263 /* Add RX-51 specific widgets */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200264 snd_soc_dapm_new_controls(dapm, aic34_dapm_widgets,
Jarkko Nikula49100c92010-05-05 11:14:22 +0300265 ARRAY_SIZE(aic34_dapm_widgets));
266
267 /* Set up RX-51 specific audio path audio_map */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200268 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
Jarkko Nikula49100c92010-05-05 11:14:22 +0300269
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200270 snd_soc_dapm_sync(dapm);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300271
Jarkko Nikula8c523112010-06-21 14:15:00 +0300272 /* AV jack detection */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000273 err = snd_soc_jack_new(codec, "AV Jack",
Jarkko Nikula8c523112010-06-21 14:15:00 +0300274 SND_JACK_VIDEOOUT, &rx51_av_jack);
275 if (err)
276 return err;
277 err = snd_soc_jack_add_gpios(&rx51_av_jack,
278 ARRAY_SIZE(rx51_av_jack_gpios),
279 rx51_av_jack_gpios);
280
281 return err;
Jarkko Nikula49100c92010-05-05 11:14:22 +0300282}
283
284/* Digital audio interface glue - connects codec <--> CPU */
285static struct snd_soc_dai_link rx51_dai[] = {
286 {
287 .name = "TLV320AIC34",
288 .stream_name = "AIC34",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000289 .cpu_dai_name = "omap-mcbsp-dai.1",
290 .codec_dai_name = "tlv320aic3x-hifi",
291 .platform_name = "omap-pcm-audio",
292 .codec_name = "tlv320aic3x-codec.2-0018",
Jarkko Nikula49100c92010-05-05 11:14:22 +0300293 .init = rx51_aic34_init,
294 .ops = &rx51_ops,
295 },
296};
297
Jarkko Nikula49100c92010-05-05 11:14:22 +0300298/* Audio card */
299static struct snd_soc_card rx51_sound_card = {
300 .name = "RX-51",
301 .dai_link = rx51_dai,
302 .num_links = ARRAY_SIZE(rx51_dai),
Jarkko Nikula49100c92010-05-05 11:14:22 +0300303};
304
305static struct platform_device *rx51_snd_device;
306
307static int __init rx51_soc_init(void)
308{
309 int err;
310
311 if (!machine_is_nokia_rx51())
312 return -ENODEV;
313
Jarkko Nikula4eb547032010-06-21 14:14:59 +0300314 err = gpio_request(RX51_TVOUT_SEL_GPIO, "tvout_sel");
315 if (err)
316 goto err_gpio_tvout_sel;
317 gpio_direction_output(RX51_TVOUT_SEL_GPIO, 0);
318
Jarkko Nikula49100c92010-05-05 11:14:22 +0300319 rx51_snd_device = platform_device_alloc("soc-audio", -1);
320 if (!rx51_snd_device) {
321 err = -ENOMEM;
322 goto err1;
323 }
324
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000325 platform_set_drvdata(rx51_snd_device, &rx51_sound_card);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300326
327 err = platform_device_add(rx51_snd_device);
328 if (err)
329 goto err2;
330
331 return 0;
332err2:
333 platform_device_put(rx51_snd_device);
334err1:
Jarkko Nikula4eb547032010-06-21 14:14:59 +0300335 gpio_free(RX51_TVOUT_SEL_GPIO);
336err_gpio_tvout_sel:
Jarkko Nikula49100c92010-05-05 11:14:22 +0300337
338 return err;
339}
340
341static void __exit rx51_soc_exit(void)
342{
Jarkko Nikula8c523112010-06-21 14:15:00 +0300343 snd_soc_jack_free_gpios(&rx51_av_jack, ARRAY_SIZE(rx51_av_jack_gpios),
344 rx51_av_jack_gpios);
345
Jarkko Nikula49100c92010-05-05 11:14:22 +0300346 platform_device_unregister(rx51_snd_device);
Jarkko Nikula4eb547032010-06-21 14:14:59 +0300347 gpio_free(RX51_TVOUT_SEL_GPIO);
Jarkko Nikula49100c92010-05-05 11:14:22 +0300348}
349
350module_init(rx51_soc_init);
351module_exit(rx51_soc_exit);
352
353MODULE_AUTHOR("Nokia Corporation");
354MODULE_DESCRIPTION("ALSA SoC Nokia RX-51");
355MODULE_LICENSE("GPL");