]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - sound/soc/pxa/corgi.c
Merge remote-tracking branches 'asoc/topic/da7213', 'asoc/topic/da732x', 'asoc/topic...
[mirror_ubuntu-zesty-kernel.git] / sound / soc / pxa / corgi.c
CommitLineData
a1eb4b3c
LG
1/*
2 * corgi.c -- SoC audio for Corgi
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 *
d331124d 7 * Authors: Liam Girdwood <lrg@slimlogic.co.uk>
a1eb4b3c
LG
8 * Richard Purdie <richard@openedhand.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.
a1eb4b3c
LG
14 */
15
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/timer.h>
fc996757 19#include <linux/i2c.h>
a1eb4b3c
LG
20#include <linux/interrupt.h>
21#include <linux/platform_device.h>
6168cda9 22#include <linux/gpio.h>
a1eb4b3c
LG
23#include <sound/core.h>
24#include <sound/pcm.h>
25#include <sound/soc.h>
a1eb4b3c
LG
26
27#include <asm/mach-types.h>
a09e64fb
RK
28#include <mach/corgi.h>
29#include <mach/audio.h>
a1eb4b3c
LG
30
31#include "../codecs/wm8731.h"
d928b25a 32#include "pxa2xx-i2s.h"
a1eb4b3c
LG
33
34#define CORGI_HP 0
35#define CORGI_MIC 1
36#define CORGI_LINE 2
37#define CORGI_HEADSET 3
38#define CORGI_HP_OFF 4
39#define CORGI_SPK_ON 0
40#define CORGI_SPK_OFF 1
41
42 /* audio clock in Hz - rounded from 12.235MHz */
43#define CORGI_AUDIO_CLOCK 12288000
44
45static int corgi_jack_func;
46static int corgi_spk_func;
47
022658be 48static void corgi_ext_control(struct snd_soc_dapm_context *dapm)
a1eb4b3c 49{
4d9e7348
CK
50 snd_soc_dapm_mutex_lock(dapm);
51
a1eb4b3c
LG
52 /* set up jack connection */
53 switch (corgi_jack_func) {
54 case CORGI_HP:
a1eb4b3c 55 /* set = unmute headphone */
6168cda9
EM
56 gpio_set_value(CORGI_GPIO_MUTE_L, 1);
57 gpio_set_value(CORGI_GPIO_MUTE_R, 1);
4d9e7348
CK
58 snd_soc_dapm_disable_pin_unlocked(dapm, "Mic Jack");
59 snd_soc_dapm_disable_pin_unlocked(dapm, "Line Jack");
60 snd_soc_dapm_enable_pin_unlocked(dapm, "Headphone Jack");
61 snd_soc_dapm_disable_pin_unlocked(dapm, "Headset Jack");
a1eb4b3c
LG
62 break;
63 case CORGI_MIC:
a1eb4b3c 64 /* reset = mute headphone */
6168cda9
EM
65 gpio_set_value(CORGI_GPIO_MUTE_L, 0);
66 gpio_set_value(CORGI_GPIO_MUTE_R, 0);
4d9e7348
CK
67 snd_soc_dapm_enable_pin_unlocked(dapm, "Mic Jack");
68 snd_soc_dapm_disable_pin_unlocked(dapm, "Line Jack");
69 snd_soc_dapm_disable_pin_unlocked(dapm, "Headphone Jack");
70 snd_soc_dapm_disable_pin_unlocked(dapm, "Headset Jack");
a1eb4b3c
LG
71 break;
72 case CORGI_LINE:
6168cda9
EM
73 gpio_set_value(CORGI_GPIO_MUTE_L, 0);
74 gpio_set_value(CORGI_GPIO_MUTE_R, 0);
4d9e7348
CK
75 snd_soc_dapm_disable_pin_unlocked(dapm, "Mic Jack");
76 snd_soc_dapm_enable_pin_unlocked(dapm, "Line Jack");
77 snd_soc_dapm_disable_pin_unlocked(dapm, "Headphone Jack");
78 snd_soc_dapm_disable_pin_unlocked(dapm, "Headset Jack");
a1eb4b3c
LG
79 break;
80 case CORGI_HEADSET:
6168cda9
EM
81 gpio_set_value(CORGI_GPIO_MUTE_L, 0);
82 gpio_set_value(CORGI_GPIO_MUTE_R, 1);
4d9e7348
CK
83 snd_soc_dapm_enable_pin_unlocked(dapm, "Mic Jack");
84 snd_soc_dapm_disable_pin_unlocked(dapm, "Line Jack");
85 snd_soc_dapm_disable_pin_unlocked(dapm, "Headphone Jack");
86 snd_soc_dapm_enable_pin_unlocked(dapm, "Headset Jack");
a1eb4b3c
LG
87 break;
88 }
89
90 if (corgi_spk_func == CORGI_SPK_ON)
4d9e7348 91 snd_soc_dapm_enable_pin_unlocked(dapm, "Ext Spk");
a5302181 92 else
4d9e7348 93 snd_soc_dapm_disable_pin_unlocked(dapm, "Ext Spk");
a1eb4b3c
LG
94
95 /* signal a DAPM event */
4d9e7348
CK
96 snd_soc_dapm_sync_unlocked(dapm);
97
98 snd_soc_dapm_mutex_unlock(dapm);
a1eb4b3c
LG
99}
100
101static int corgi_startup(struct snd_pcm_substream *substream)
102{
103 struct snd_soc_pcm_runtime *rtd = substream->private_data;
f0fba2ad 104 struct snd_soc_codec *codec = rtd->codec;
a1eb4b3c 105
71a29560
MB
106 mutex_lock(&codec->mutex);
107
a1eb4b3c 108 /* check the jack status at stream startup */
022658be 109 corgi_ext_control(&codec->dapm);
71a29560
MB
110
111 mutex_unlock(&codec->mutex);
112
a1eb4b3c
LG
113 return 0;
114}
115
116/* we need to unmute the HP at shutdown as the mute burns power on corgi */
5220ed6b 117static void corgi_shutdown(struct snd_pcm_substream *substream)
a1eb4b3c 118{
a1eb4b3c 119 /* set = unmute headphone */
6168cda9
EM
120 gpio_set_value(CORGI_GPIO_MUTE_L, 1);
121 gpio_set_value(CORGI_GPIO_MUTE_R, 1);
a1eb4b3c
LG
122}
123
d928b25a
LG
124static int corgi_hw_params(struct snd_pcm_substream *substream,
125 struct snd_pcm_hw_params *params)
126{
127 struct snd_soc_pcm_runtime *rtd = substream->private_data;
f0fba2ad
LG
128 struct snd_soc_dai *codec_dai = rtd->codec_dai;
129 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
d928b25a
LG
130 unsigned int clk = 0;
131 int ret = 0;
132
133 switch (params_rate(params)) {
134 case 8000:
135 case 16000:
136 case 48000:
137 case 96000:
138 clk = 12288000;
139 break;
140 case 11025:
141 case 22050:
142 case 44100:
143 clk = 11289600;
144 break;
145 }
146
d928b25a 147 /* set the codec system clock for DAC and ADC */
9745e824 148 ret = snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK_XTAL, clk,
d928b25a
LG
149 SND_SOC_CLOCK_IN);
150 if (ret < 0)
151 return ret;
152
153 /* set the I2S system clock as input (unused) */
64105cfd 154 ret = snd_soc_dai_set_sysclk(cpu_dai, PXA2XX_I2S_SYSCLK, 0,
d928b25a
LG
155 SND_SOC_CLOCK_IN);
156 if (ret < 0)
157 return ret;
158
159 return 0;
160}
161
a1eb4b3c
LG
162static struct snd_soc_ops corgi_ops = {
163 .startup = corgi_startup,
d928b25a 164 .hw_params = corgi_hw_params,
a1eb4b3c
LG
165 .shutdown = corgi_shutdown,
166};
167
168static int corgi_get_jack(struct snd_kcontrol *kcontrol,
169 struct snd_ctl_elem_value *ucontrol)
170{
171 ucontrol->value.integer.value[0] = corgi_jack_func;
172 return 0;
173}
174
175static int corgi_set_jack(struct snd_kcontrol *kcontrol,
176 struct snd_ctl_elem_value *ucontrol)
177{
022658be 178 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
a1eb4b3c
LG
179
180 if (corgi_jack_func == ucontrol->value.integer.value[0])
181 return 0;
182
183 corgi_jack_func = ucontrol->value.integer.value[0];
022658be 184 corgi_ext_control(&card->dapm);
a1eb4b3c
LG
185 return 1;
186}
187
188static int corgi_get_spk(struct snd_kcontrol *kcontrol,
189 struct snd_ctl_elem_value *ucontrol)
190{
191 ucontrol->value.integer.value[0] = corgi_spk_func;
192 return 0;
193}
194
195static int corgi_set_spk(struct snd_kcontrol *kcontrol,
196 struct snd_ctl_elem_value *ucontrol)
197{
022658be 198 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
a1eb4b3c
LG
199
200 if (corgi_spk_func == ucontrol->value.integer.value[0])
201 return 0;
202
203 corgi_spk_func = ucontrol->value.integer.value[0];
022658be 204 corgi_ext_control(&card->dapm);
a1eb4b3c
LG
205 return 1;
206}
207
338c7ed0
JN
208static int corgi_amp_event(struct snd_soc_dapm_widget *w,
209 struct snd_kcontrol *k, int event)
a1eb4b3c 210{
6168cda9 211 gpio_set_value(CORGI_GPIO_APM_ON, SND_SOC_DAPM_EVENT_ON(event));
a1eb4b3c
LG
212 return 0;
213}
214
338c7ed0
JN
215static int corgi_mic_event(struct snd_soc_dapm_widget *w,
216 struct snd_kcontrol *k, int event)
a1eb4b3c 217{
6168cda9 218 gpio_set_value(CORGI_GPIO_MIC_BIAS, SND_SOC_DAPM_EVENT_ON(event));
a1eb4b3c
LG
219 return 0;
220}
221
222/* corgi machine dapm widgets */
223static const struct snd_soc_dapm_widget wm8731_dapm_widgets[] = {
224SND_SOC_DAPM_HP("Headphone Jack", NULL),
225SND_SOC_DAPM_MIC("Mic Jack", corgi_mic_event),
226SND_SOC_DAPM_SPK("Ext Spk", corgi_amp_event),
227SND_SOC_DAPM_LINE("Line Jack", NULL),
228SND_SOC_DAPM_HP("Headset Jack", NULL),
229};
230
231/* Corgi machine audio map (connections to the codec pins) */
32696af1 232static const struct snd_soc_dapm_route corgi_audio_map[] = {
a1eb4b3c
LG
233
234 /* headset Jack - in = micin, out = LHPOUT*/
235 {"Headset Jack", NULL, "LHPOUT"},
236
237 /* headphone connected to LHPOUT1, RHPOUT1 */
238 {"Headphone Jack", NULL, "LHPOUT"},
239 {"Headphone Jack", NULL, "RHPOUT"},
240
241 /* speaker connected to LOUT, ROUT */
242 {"Ext Spk", NULL, "ROUT"},
243 {"Ext Spk", NULL, "LOUT"},
244
245 /* mic is connected to MICIN (via right channel of headphone jack) */
246 {"MICIN", NULL, "Mic Jack"},
247
248 /* Same as the above but no mic bias for line signals */
249 {"MICIN", NULL, "Line Jack"},
a1eb4b3c
LG
250};
251
252static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset",
253 "Off"};
254static const char *spk_function[] = {"On", "Off"};
255static const struct soc_enum corgi_enum[] = {
256 SOC_ENUM_SINGLE_EXT(5, jack_function),
257 SOC_ENUM_SINGLE_EXT(2, spk_function),
258};
259
260static const struct snd_kcontrol_new wm8731_corgi_controls[] = {
261 SOC_ENUM_EXT("Jack Function", corgi_enum[0], corgi_get_jack,
262 corgi_set_jack),
263 SOC_ENUM_EXT("Speaker Function", corgi_enum[1], corgi_get_spk,
264 corgi_set_spk),
265};
266
267/*
268 * Logic for a wm8731 as connected on a Sharp SL-C7x0 Device
269 */
f0fba2ad 270static int corgi_wm8731_init(struct snd_soc_pcm_runtime *rtd)
a1eb4b3c 271{
f0fba2ad 272 struct snd_soc_codec *codec = rtd->codec;
ce6120cc 273 struct snd_soc_dapm_context *dapm = &codec->dapm;
a1eb4b3c 274
ce6120cc
LG
275 snd_soc_dapm_nc_pin(dapm, "LLINEIN");
276 snd_soc_dapm_nc_pin(dapm, "RLINEIN");
a1eb4b3c 277
a1eb4b3c
LG
278 return 0;
279}
280
a1eb4b3c
LG
281/* corgi digital audio interface glue - connects codec <--> CPU */
282static struct snd_soc_dai_link corgi_dai = {
283 .name = "WM8731",
284 .stream_name = "WM8731",
a3adfa00 285 .cpu_dai_name = "pxa2xx-i2s",
f0fba2ad
LG
286 .codec_dai_name = "wm8731-hifi",
287 .platform_name = "pxa-pcm-audio",
99b59f3c 288 .codec_name = "wm8731.0-001b",
a1eb4b3c 289 .init = corgi_wm8731_init,
74f4dd56
AL
290 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
291 SND_SOC_DAIFMT_CBS_CFS,
d928b25a 292 .ops = &corgi_ops,
a1eb4b3c
LG
293};
294
295/* corgi audio machine driver */
34be9244 296static struct snd_soc_card corgi = {
a1eb4b3c 297 .name = "Corgi",
561c6a17 298 .owner = THIS_MODULE,
a1eb4b3c
LG
299 .dai_link = &corgi_dai,
300 .num_links = 1,
32696af1
AL
301
302 .controls = wm8731_corgi_controls,
303 .num_controls = ARRAY_SIZE(wm8731_corgi_controls),
304 .dapm_widgets = wm8731_dapm_widgets,
305 .num_dapm_widgets = ARRAY_SIZE(wm8731_dapm_widgets),
306 .dapm_routes = corgi_audio_map,
307 .num_dapm_routes = ARRAY_SIZE(corgi_audio_map),
a1eb4b3c
LG
308};
309
570f6fe1 310static int corgi_probe(struct platform_device *pdev)
a1eb4b3c 311{
34be9244 312 struct snd_soc_card *card = &corgi;
a1eb4b3c
LG
313 int ret;
314
34be9244 315 card->dev = &pdev->dev;
a1eb4b3c 316
34be9244 317 ret = snd_soc_register_card(card);
a1eb4b3c 318 if (ret)
34be9244
AL
319 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
320 ret);
a1eb4b3c
LG
321 return ret;
322}
323
570f6fe1 324static int corgi_remove(struct platform_device *pdev)
a1eb4b3c 325{
34be9244
AL
326 struct snd_soc_card *card = platform_get_drvdata(pdev);
327
328 snd_soc_unregister_card(card);
329 return 0;
a1eb4b3c
LG
330}
331
34be9244
AL
332static struct platform_driver corgi_driver = {
333 .driver = {
334 .name = "corgi-audio",
335 .owner = THIS_MODULE,
7db1698f 336 .pm = &snd_soc_pm_ops,
34be9244
AL
337 },
338 .probe = corgi_probe,
570f6fe1 339 .remove = corgi_remove,
34be9244
AL
340};
341
342module_platform_driver(corgi_driver);
a1eb4b3c
LG
343
344/* Module information */
345MODULE_AUTHOR("Richard Purdie");
346MODULE_DESCRIPTION("ALSA SoC Corgi");
347MODULE_LICENSE("GPL");
34be9244 348MODULE_ALIAS("platform:corgi-audio");