2 * corgi.c -- SoC audio for Corgi
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
7 * Authors: Liam Girdwood <lrg@slimlogic.co.uk>
8 * Richard Purdie <richard@openedhand.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/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/timer.h>
19 #include <linux/i2c.h>
20 #include <linux/interrupt.h>
21 #include <linux/platform_device.h>
22 #include <linux/gpio.h>
23 #include <sound/core.h>
24 #include <sound/pcm.h>
25 #include <sound/soc.h>
27 #include <asm/mach-types.h>
28 #include <mach/corgi.h>
29 #include <mach/audio.h>
31 #include "../codecs/wm8731.h"
32 #include "pxa2xx-i2s.h"
37 #define CORGI_HEADSET 3
38 #define CORGI_HP_OFF 4
39 #define CORGI_SPK_ON 0
40 #define CORGI_SPK_OFF 1
42 /* audio clock in Hz - rounded from 12.235MHz */
43 #define CORGI_AUDIO_CLOCK 12288000
45 static int corgi_jack_func
;
46 static int corgi_spk_func
;
48 static void corgi_ext_control(struct snd_soc_codec
*codec
)
50 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
52 /* set up jack connection */
53 switch (corgi_jack_func
) {
55 /* set = unmute headphone */
56 gpio_set_value(CORGI_GPIO_MUTE_L
, 1);
57 gpio_set_value(CORGI_GPIO_MUTE_R
, 1);
58 snd_soc_dapm_disable_pin(dapm
, "Mic Jack");
59 snd_soc_dapm_disable_pin(dapm
, "Line Jack");
60 snd_soc_dapm_enable_pin(dapm
, "Headphone Jack");
61 snd_soc_dapm_disable_pin(dapm
, "Headset Jack");
64 /* reset = mute headphone */
65 gpio_set_value(CORGI_GPIO_MUTE_L
, 0);
66 gpio_set_value(CORGI_GPIO_MUTE_R
, 0);
67 snd_soc_dapm_enable_pin(dapm
, "Mic Jack");
68 snd_soc_dapm_disable_pin(dapm
, "Line Jack");
69 snd_soc_dapm_disable_pin(dapm
, "Headphone Jack");
70 snd_soc_dapm_disable_pin(dapm
, "Headset Jack");
73 gpio_set_value(CORGI_GPIO_MUTE_L
, 0);
74 gpio_set_value(CORGI_GPIO_MUTE_R
, 0);
75 snd_soc_dapm_disable_pin(dapm
, "Mic Jack");
76 snd_soc_dapm_enable_pin(dapm
, "Line Jack");
77 snd_soc_dapm_disable_pin(dapm
, "Headphone Jack");
78 snd_soc_dapm_disable_pin(dapm
, "Headset Jack");
81 gpio_set_value(CORGI_GPIO_MUTE_L
, 0);
82 gpio_set_value(CORGI_GPIO_MUTE_R
, 1);
83 snd_soc_dapm_enable_pin(dapm
, "Mic Jack");
84 snd_soc_dapm_disable_pin(dapm
, "Line Jack");
85 snd_soc_dapm_disable_pin(dapm
, "Headphone Jack");
86 snd_soc_dapm_enable_pin(dapm
, "Headset Jack");
90 if (corgi_spk_func
== CORGI_SPK_ON
)
91 snd_soc_dapm_enable_pin(dapm
, "Ext Spk");
93 snd_soc_dapm_disable_pin(dapm
, "Ext Spk");
95 /* signal a DAPM event */
96 snd_soc_dapm_sync(dapm
);
99 static int corgi_startup(struct snd_pcm_substream
*substream
)
101 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
102 struct snd_soc_codec
*codec
= rtd
->codec
;
104 mutex_lock(&codec
->mutex
);
106 /* check the jack status at stream startup */
107 corgi_ext_control(codec
);
109 mutex_unlock(&codec
->mutex
);
114 /* we need to unmute the HP at shutdown as the mute burns power on corgi */
115 static void corgi_shutdown(struct snd_pcm_substream
*substream
)
117 /* set = unmute headphone */
118 gpio_set_value(CORGI_GPIO_MUTE_L
, 1);
119 gpio_set_value(CORGI_GPIO_MUTE_R
, 1);
122 static int corgi_hw_params(struct snd_pcm_substream
*substream
,
123 struct snd_pcm_hw_params
*params
)
125 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
126 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
127 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
128 unsigned int clk
= 0;
131 switch (params_rate(params
)) {
145 /* set codec DAI configuration */
146 ret
= snd_soc_dai_set_fmt(codec_dai
, SND_SOC_DAIFMT_I2S
|
147 SND_SOC_DAIFMT_NB_NF
| SND_SOC_DAIFMT_CBS_CFS
);
151 /* set cpu DAI configuration */
152 ret
= snd_soc_dai_set_fmt(cpu_dai
, SND_SOC_DAIFMT_I2S
|
153 SND_SOC_DAIFMT_NB_NF
| SND_SOC_DAIFMT_CBS_CFS
);
157 /* set the codec system clock for DAC and ADC */
158 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8731_SYSCLK_XTAL
, clk
,
163 /* set the I2S system clock as input (unused) */
164 ret
= snd_soc_dai_set_sysclk(cpu_dai
, PXA2XX_I2S_SYSCLK
, 0,
172 static struct snd_soc_ops corgi_ops
= {
173 .startup
= corgi_startup
,
174 .hw_params
= corgi_hw_params
,
175 .shutdown
= corgi_shutdown
,
178 static int corgi_get_jack(struct snd_kcontrol
*kcontrol
,
179 struct snd_ctl_elem_value
*ucontrol
)
181 ucontrol
->value
.integer
.value
[0] = corgi_jack_func
;
185 static int corgi_set_jack(struct snd_kcontrol
*kcontrol
,
186 struct snd_ctl_elem_value
*ucontrol
)
188 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
190 if (corgi_jack_func
== ucontrol
->value
.integer
.value
[0])
193 corgi_jack_func
= ucontrol
->value
.integer
.value
[0];
194 corgi_ext_control(codec
);
198 static int corgi_get_spk(struct snd_kcontrol
*kcontrol
,
199 struct snd_ctl_elem_value
*ucontrol
)
201 ucontrol
->value
.integer
.value
[0] = corgi_spk_func
;
205 static int corgi_set_spk(struct snd_kcontrol
*kcontrol
,
206 struct snd_ctl_elem_value
*ucontrol
)
208 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
210 if (corgi_spk_func
== ucontrol
->value
.integer
.value
[0])
213 corgi_spk_func
= ucontrol
->value
.integer
.value
[0];
214 corgi_ext_control(codec
);
218 static int corgi_amp_event(struct snd_soc_dapm_widget
*w
,
219 struct snd_kcontrol
*k
, int event
)
221 gpio_set_value(CORGI_GPIO_APM_ON
, SND_SOC_DAPM_EVENT_ON(event
));
225 static int corgi_mic_event(struct snd_soc_dapm_widget
*w
,
226 struct snd_kcontrol
*k
, int event
)
228 gpio_set_value(CORGI_GPIO_MIC_BIAS
, SND_SOC_DAPM_EVENT_ON(event
));
232 /* corgi machine dapm widgets */
233 static const struct snd_soc_dapm_widget wm8731_dapm_widgets
[] = {
234 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
235 SND_SOC_DAPM_MIC("Mic Jack", corgi_mic_event
),
236 SND_SOC_DAPM_SPK("Ext Spk", corgi_amp_event
),
237 SND_SOC_DAPM_LINE("Line Jack", NULL
),
238 SND_SOC_DAPM_HP("Headset Jack", NULL
),
241 /* Corgi machine audio map (connections to the codec pins) */
242 static const struct snd_soc_dapm_route audio_map
[] = {
244 /* headset Jack - in = micin, out = LHPOUT*/
245 {"Headset Jack", NULL
, "LHPOUT"},
247 /* headphone connected to LHPOUT1, RHPOUT1 */
248 {"Headphone Jack", NULL
, "LHPOUT"},
249 {"Headphone Jack", NULL
, "RHPOUT"},
251 /* speaker connected to LOUT, ROUT */
252 {"Ext Spk", NULL
, "ROUT"},
253 {"Ext Spk", NULL
, "LOUT"},
255 /* mic is connected to MICIN (via right channel of headphone jack) */
256 {"MICIN", NULL
, "Mic Jack"},
258 /* Same as the above but no mic bias for line signals */
259 {"MICIN", NULL
, "Line Jack"},
262 static const char *jack_function
[] = {"Headphone", "Mic", "Line", "Headset",
264 static const char *spk_function
[] = {"On", "Off"};
265 static const struct soc_enum corgi_enum
[] = {
266 SOC_ENUM_SINGLE_EXT(5, jack_function
),
267 SOC_ENUM_SINGLE_EXT(2, spk_function
),
270 static const struct snd_kcontrol_new wm8731_corgi_controls
[] = {
271 SOC_ENUM_EXT("Jack Function", corgi_enum
[0], corgi_get_jack
,
273 SOC_ENUM_EXT("Speaker Function", corgi_enum
[1], corgi_get_spk
,
278 * Logic for a wm8731 as connected on a Sharp SL-C7x0 Device
280 static int corgi_wm8731_init(struct snd_soc_pcm_runtime
*rtd
)
282 struct snd_soc_codec
*codec
= rtd
->codec
;
283 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
286 snd_soc_dapm_nc_pin(dapm
, "LLINEIN");
287 snd_soc_dapm_nc_pin(dapm
, "RLINEIN");
289 /* Add corgi specific controls */
290 err
= snd_soc_add_controls(codec
, wm8731_corgi_controls
,
291 ARRAY_SIZE(wm8731_corgi_controls
));
295 /* Add corgi specific widgets */
296 snd_soc_dapm_new_controls(dapm
, wm8731_dapm_widgets
,
297 ARRAY_SIZE(wm8731_dapm_widgets
));
299 /* Set up corgi specific audio path audio_map */
300 snd_soc_dapm_add_routes(dapm
, audio_map
, ARRAY_SIZE(audio_map
));
302 snd_soc_dapm_sync(dapm
);
306 /* corgi digital audio interface glue - connects codec <--> CPU */
307 static struct snd_soc_dai_link corgi_dai
= {
309 .stream_name
= "WM8731",
310 .cpu_dai_name
= "pxa2xx-i2s",
311 .codec_dai_name
= "wm8731-hifi",
312 .platform_name
= "pxa-pcm-audio",
313 .codec_name
= "wm8731.0-001b",
314 .init
= corgi_wm8731_init
,
318 /* corgi audio machine driver */
319 static struct snd_soc_card snd_soc_corgi
= {
321 .dai_link
= &corgi_dai
,
325 static struct platform_device
*corgi_snd_device
;
327 static int __init
corgi_init(void)
331 if (!(machine_is_corgi() || machine_is_shepherd() ||
335 corgi_snd_device
= platform_device_alloc("soc-audio", -1);
336 if (!corgi_snd_device
)
339 platform_set_drvdata(corgi_snd_device
, &snd_soc_corgi
);
340 ret
= platform_device_add(corgi_snd_device
);
343 platform_device_put(corgi_snd_device
);
348 static void __exit
corgi_exit(void)
350 platform_device_unregister(corgi_snd_device
);
353 module_init(corgi_init
);
354 module_exit(corgi_exit
);
356 /* Module information */
357 MODULE_AUTHOR("Richard Purdie");
358 MODULE_DESCRIPTION("ALSA SoC Corgi");
359 MODULE_LICENSE("GPL");