Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / sound / soc / pxa / tosa.c
blob838697fc2c66c22142e0e353057f5f8a16407ede
1 /*
2 * tosa.c -- SoC audio for Tosa
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
7 * Authors: Liam Girdwood <liam.girdwood@wolfsonmicro.com>
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.
15 * Revision history
16 * 30th Nov 2005 Initial version.
18 * GPIO's
19 * 1 - Jack Insertion
20 * 5 - Hookswitch (headset answer/hang up switch)
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26 #include <linux/device.h>
28 #include <sound/core.h>
29 #include <sound/pcm.h>
30 #include <sound/soc.h>
31 #include <sound/soc-dapm.h>
33 #include <asm/mach-types.h>
34 #include <asm/hardware/tmio.h>
35 #include <asm/arch/pxa-regs.h>
36 #include <asm/arch/hardware.h>
37 #include <asm/arch/audio.h>
38 #include <asm/arch/tosa.h>
40 #include "../codecs/wm9712.h"
41 #include "pxa2xx-pcm.h"
42 #include "pxa2xx-ac97.h"
44 static struct snd_soc_machine tosa;
46 #define TOSA_HP 0
47 #define TOSA_MIC_INT 1
48 #define TOSA_HEADSET 2
49 #define TOSA_HP_OFF 3
50 #define TOSA_SPK_ON 0
51 #define TOSA_SPK_OFF 1
53 static int tosa_jack_func;
54 static int tosa_spk_func;
56 static void tosa_ext_control(struct snd_soc_codec *codec)
58 int spk = 0, mic_int = 0, hp = 0, hs = 0;
60 /* set up jack connection */
61 switch (tosa_jack_func) {
62 case TOSA_HP:
63 hp = 1;
64 break;
65 case TOSA_MIC_INT:
66 mic_int = 1;
67 break;
68 case TOSA_HEADSET:
69 hs = 1;
70 break;
73 if (tosa_spk_func == TOSA_SPK_ON)
74 spk = 1;
76 snd_soc_dapm_set_endpoint(codec, "Speaker", spk);
77 snd_soc_dapm_set_endpoint(codec, "Mic (Internal)", mic_int);
78 snd_soc_dapm_set_endpoint(codec, "Headphone Jack", hp);
79 snd_soc_dapm_set_endpoint(codec, "Headset Jack", hs);
80 snd_soc_dapm_sync_endpoints(codec);
83 static int tosa_startup(struct snd_pcm_substream *substream)
85 struct snd_soc_pcm_runtime *rtd = substream->private_data;
86 struct snd_soc_codec *codec = rtd->socdev->codec;
88 /* check the jack status at stream startup */
89 tosa_ext_control(codec);
90 return 0;
93 static struct snd_soc_ops tosa_ops = {
94 .startup = tosa_startup,
97 static int tosa_get_jack(struct snd_kcontrol *kcontrol,
98 struct snd_ctl_elem_value *ucontrol)
100 ucontrol->value.integer.value[0] = tosa_jack_func;
101 return 0;
104 static int tosa_set_jack(struct snd_kcontrol *kcontrol,
105 struct snd_ctl_elem_value *ucontrol)
107 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
109 if (tosa_jack_func == ucontrol->value.integer.value[0])
110 return 0;
112 tosa_jack_func = ucontrol->value.integer.value[0];
113 tosa_ext_control(codec);
114 return 1;
117 static int tosa_get_spk(struct snd_kcontrol *kcontrol,
118 struct snd_ctl_elem_value *ucontrol)
120 ucontrol->value.integer.value[0] = tosa_spk_func;
121 return 0;
124 static int tosa_set_spk(struct snd_kcontrol *kcontrol,
125 struct snd_ctl_elem_value *ucontrol)
127 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
129 if (tosa_spk_func == ucontrol->value.integer.value[0])
130 return 0;
132 tosa_spk_func = ucontrol->value.integer.value[0];
133 tosa_ext_control(codec);
134 return 1;
137 /* tosa dapm event handlers */
138 <<<<<<< HEAD:sound/soc/pxa/tosa.c
139 static int tosa_hp_event(struct snd_soc_dapm_widget *w, int event)
140 =======
141 static int tosa_hp_event(struct snd_soc_dapm_widget *w,
142 struct snd_kcontrol *k, int event)
143 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:sound/soc/pxa/tosa.c
145 if (SND_SOC_DAPM_EVENT_ON(event))
146 set_tc6393_gpio(&tc6393_device.dev,TOSA_TC6393_L_MUTE);
147 else
148 reset_tc6393_gpio(&tc6393_device.dev,TOSA_TC6393_L_MUTE);
149 return 0;
152 /* tosa machine dapm widgets */
153 static const struct snd_soc_dapm_widget tosa_dapm_widgets[] = {
154 SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event),
155 SND_SOC_DAPM_HP("Headset Jack", NULL),
156 SND_SOC_DAPM_MIC("Mic (Internal)", NULL),
157 SND_SOC_DAPM_SPK("Speaker", NULL),
160 /* tosa audio map */
161 static const char *audio_map[][3] = {
163 /* headphone connected to HPOUTL, HPOUTR */
164 {"Headphone Jack", NULL, "HPOUTL"},
165 {"Headphone Jack", NULL, "HPOUTR"},
167 /* ext speaker connected to LOUT2, ROUT2 */
168 {"Speaker", NULL, "LOUT2"},
169 {"Speaker", NULL, "ROUT2"},
171 /* internal mic is connected to mic1, mic2 differential - with bias */
172 {"MIC1", NULL, "Mic Bias"},
173 {"MIC2", NULL, "Mic Bias"},
174 {"Mic Bias", NULL, "Mic (Internal)"},
176 /* headset is connected to HPOUTR, and LINEINR with bias */
177 {"Headset Jack", NULL, "HPOUTR"},
178 {"LINEINR", NULL, "Mic Bias"},
179 {"Mic Bias", NULL, "Headset Jack"},
181 {NULL, NULL, NULL},
184 static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset",
185 "Off"};
186 static const char *spk_function[] = {"On", "Off"};
187 static const struct soc_enum tosa_enum[] = {
188 SOC_ENUM_SINGLE_EXT(5, jack_function),
189 SOC_ENUM_SINGLE_EXT(2, spk_function),
192 static const struct snd_kcontrol_new tosa_controls[] = {
193 SOC_ENUM_EXT("Jack Function", tosa_enum[0], tosa_get_jack,
194 tosa_set_jack),
195 SOC_ENUM_EXT("Speaker Function", tosa_enum[1], tosa_get_spk,
196 tosa_set_spk),
199 static int tosa_ac97_init(struct snd_soc_codec *codec)
201 int i, err;
203 snd_soc_dapm_set_endpoint(codec, "OUT3", 0);
204 snd_soc_dapm_set_endpoint(codec, "MONOOUT", 0);
206 /* add tosa specific controls */
207 for (i = 0; i < ARRAY_SIZE(tosa_controls); i++) {
208 err = snd_ctl_add(codec->card,
209 snd_soc_cnew(&tosa_controls[i],codec, NULL));
210 if (err < 0)
211 return err;
214 /* add tosa specific widgets */
215 for (i = 0; i < ARRAY_SIZE(tosa_dapm_widgets); i++) {
216 snd_soc_dapm_new_control(codec, &tosa_dapm_widgets[i]);
219 /* set up tosa specific audio path audio_map */
220 for (i = 0; audio_map[i][0] != NULL; i++) {
221 snd_soc_dapm_connect_input(codec, audio_map[i][0],
222 audio_map[i][1], audio_map[i][2]);
225 snd_soc_dapm_sync_endpoints(codec);
226 return 0;
229 static struct snd_soc_dai_link tosa_dai[] = {
231 .name = "AC97",
232 .stream_name = "AC97 HiFi",
233 .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_HIFI],
234 .codec_dai = &wm9712_dai[WM9712_DAI_AC97_HIFI],
235 .init = tosa_ac97_init,
236 .ops = &tosa_ops,
239 .name = "AC97 Aux",
240 .stream_name = "AC97 Aux",
241 .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_AUX],
242 .codec_dai = &wm9712_dai[WM9712_DAI_AC97_AUX],
243 .ops = &tosa_ops,
247 static struct snd_soc_machine tosa = {
248 .name = "Tosa",
249 .dai_link = tosa_dai,
250 .num_links = ARRAY_SIZE(tosa_dai),
253 static struct snd_soc_device tosa_snd_devdata = {
254 .machine = &tosa,
255 .platform = &pxa2xx_soc_platform,
256 .codec_dev = &soc_codec_dev_wm9712,
259 static struct platform_device *tosa_snd_device;
261 static int __init tosa_init(void)
263 int ret;
265 if (!machine_is_tosa())
266 return -ENODEV;
268 tosa_snd_device = platform_device_alloc("soc-audio", -1);
269 if (!tosa_snd_device)
270 return -ENOMEM;
272 platform_set_drvdata(tosa_snd_device, &tosa_snd_devdata);
273 tosa_snd_devdata.dev = &tosa_snd_device->dev;
274 ret = platform_device_add(tosa_snd_device);
276 if (ret)
277 platform_device_put(tosa_snd_device);
279 return ret;
282 static void __exit tosa_exit(void)
284 platform_device_unregister(tosa_snd_device);
287 module_init(tosa_init);
288 module_exit(tosa_exit);
290 /* Module information */
291 MODULE_AUTHOR("Richard Purdie");
292 MODULE_DESCRIPTION("ALSA SoC Tosa");
293 MODULE_LICENSE("GPL");